2001-11-22 06:23:56 +00:00
|
|
|
<?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;
|
|
|
|
|
2002-08-26 09:48:00 +00:00
|
|
|
if (isset($file)) { // workaround for situations where / syntax doesn't work
|
|
|
|
$PATH_INFO = $file;
|
|
|
|
}
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
if (!$PATH_INFO) {
|
2002-08-26 09:48:00 +00:00
|
|
|
error("This script DEPENDS on PATH_INFO being available. Read the README.");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$args = get_slash_arguments();
|
|
|
|
$numargs = count($args);
|
|
|
|
$courseid = (integer)$args[0];
|
|
|
|
|
2001-11-25 15:48:24 +00:00
|
|
|
$course = get_record("course", "id", $courseid);
|
|
|
|
|
|
|
|
if ($course->category) {
|
2001-11-22 06:23:56 +00:00
|
|
|
require_login($courseid);
|
|
|
|
}
|
|
|
|
|
2001-11-25 15:48:24 +00:00
|
|
|
// it's OK to get here if no course was specified
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
$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: ");
|
2002-09-02 09:06:43 +00:00
|
|
|
header("Content-disposition: inline; filename=$filename");
|
|
|
|
header("Content-length: ".filesize($pathname));
|
2001-11-22 06:23:56 +00:00
|
|
|
header("Content-type: $mimetype");
|
|
|
|
readfile("$pathname");
|
|
|
|
} else {
|
2001-11-25 15:48:24 +00:00
|
|
|
error("Sorry, but the file you are looking for was not found", "course/view.php?id=$courseid");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exit;
|
|
|
|
?>
|