forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
file.php
54 lines (40 loc) · 1.57 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
<?PHP // $Id$
// This function fetches files from the data directory
// Syntax: file.php/courseid/dir/.../dir/filename.ext
require("config.php");
require("files/mimetypes.php");
$lifetime = 86400;
if (isset($file)) { // workaround for situations where / syntax doesn't work
$PATH_INFO = $file;
}
if (!$PATH_INFO) {
error("This script DEPENDS on PATH_INFO being available. Read the README.");
}
if (! $args = get_slash_arguments()) {
error("No valid arguments supplied");
}
$numargs = count($args);
$courseid = (integer)$args[0];
$course = get_record("course", "id", $courseid);
if ($course->category) {
require_login($courseid);
}
// it's OK to get here if no course was specified
$pathname = "$CFG->dataroot$PATH_INFO";
$filename = $args[$numargs-1];
$mimetype = mimeinfo("type", $filename);
if (file_exists($pathname)) {
$lastmodified = filemtime($pathname);
header("Last-Modified: " . gmdate("D, d M Y H:i:s", $lastmodified) . " GMT");
header("Expires: " . gmdate("D, d M Y H:i:s", time() + $lifetime) . " GMT");
header("Cache-control: max_age = $lifetime"); // a day
header("Pragma: ");
header("Content-disposition: inline; filename=$filename");
header("Content-length: ".filesize($pathname));
header("Content-type: $mimetype");
readfile("$pathname");
} else {
error("Sorry, but the file you are looking for was not found", "course/view.php?id=$courseid");
}
exit;
?>