forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
file.php
96 lines (75 loc) · 3.15 KB
/
file.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?PHP // $Id$
// This function fetches files from the data directory
// Syntax: file.php/courseid/dir/.../dir/filename.ext
require_once("config.php");
require_once("files/mimetypes.php");
if (empty($CFG->filelifetime)) {
$CFG->filelifetime = 86400; /// Seconds for files to remain in caches
}
if (isset($file)) { // workaround for situations where / syntax doesn't work
$pathinfo = $file;
} else {
$pathinfo = get_slash_arguments("file.php");
}
if (!$pathinfo) {
error("No file parameters!");
}
$pathinfo = urldecode($pathinfo);
if (! $args = parse_slash_arguments($pathinfo)) {
error("No valid arguments supplied");
}
$numargs = count($args);
if ($numargs < 2 or empty($args[1])) {
error("No valid arguments supplied");
}
$courseid = (integer)$args[0];
$course = get_record("course", "id", $courseid);
if ($course->category) {
require_login($courseid);
} else if ($CFG->forcelogin) {
require_login();
}
// it's OK to get here if no course was specified
$pathname = "$CFG->dataroot$pathinfo";
if ($pathargs = explode("?",$pathname)) {
$pathname = $pathargs[0]; // Only keep what's before the '?'
}
$filename = $args[$numargs-1];
if ($fileargs = explode("?",$filename)) {
$filename = $fileargs[0]; // Only keep what's before the '?'
}
if (file_exists($pathname)) {
$lastmodified = filemtime($pathname);
$mimetype = mimeinfo("type", $filename);
header("Last-Modified: " . gmdate("D, d M Y H:i:s", $lastmodified) . " GMT");
header("Expires: " . gmdate("D, d M Y H:i:s", time() + $CFG->filelifetime) . " GMT");
header("Cache-control: max_age = $CFG->filelifetime");
header("Pragma: ");
header("Content-disposition: inline; filename=$filename");
if (empty($CFG->filteruploadedfiles)) {
header("Content-length: ".filesize($pathname));
header("Content-type: $mimetype");
readfile($pathname);
} else { /// Try and put the file through filters
if ($mimetype == "text/html") {
$output = format_text(implode('', file($pathname)), FORMAT_HTML, NULL, $courseid);
header("Content-length: ".strlen($output));
header("Content-type: text/html");
echo $output;
} else if ($mimetype == "text/plain") {
$options->newlines = false;
$output = '<pre>'.format_text(implode('', file($pathname)), FORMAT_MOODLE, $options, $courseid).'</pre>';
header("Content-length: ".strlen($output));
header("Content-type: text/html");
echo $output;
} else { /// Just send it out raw
header("Content-length: ".filesize($pathname));
header("Content-type: $mimetype");
readfile($pathname);
}
}
} else {
error("Sorry, but the file you are looking for was not found ($pathname)", "course/view.php?id=$courseid");
}
exit;
?>