2009-05-21 09:44:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
2010-05-22 13:10:05 +00:00
|
|
|
* This script fetches legacy course files in dataroot directory, it is enabled
|
2010-07-11 11:43:15 +00:00
|
|
|
* only if course->legacyfiles == 2. DO not link to this file in new code.
|
2009-05-21 09:44:26 +00:00
|
|
|
*
|
|
|
|
* Syntax: file.php/courseid/dir/dir/dir/filename.ext
|
|
|
|
* file.php/courseid/dir/dir/dir/filename.ext?forcedownload=1 (download instead of inline)
|
|
|
|
* file.php/courseid/dir (returns index.html from dir)
|
|
|
|
* Workaround: file.php?file=/courseid/dir/dir/dir/filename.ext
|
|
|
|
*
|
2010-09-06 11:29:21 +00:00
|
|
|
* @package core
|
2009-05-21 09:44:26 +00:00
|
|
|
* @subpackage file
|
|
|
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2009-10-31 22:02:05 +00:00
|
|
|
// disable moodle specific debug messages and any errors in output
|
|
|
|
define('NO_DEBUG_DISPLAY', true);
|
|
|
|
|
2009-05-21 09:44:26 +00:00
|
|
|
require_once('config.php');
|
|
|
|
require_once('lib/filelib.php');
|
|
|
|
|
|
|
|
$relativepath = get_file_argument();
|
|
|
|
$forcedownload = optional_param('forcedownload', 0, PARAM_BOOL);
|
|
|
|
|
|
|
|
// relative path must start with '/', because of backup/restore!!!
|
|
|
|
if (!$relativepath) {
|
2022-04-12 09:38:41 +05:30
|
|
|
throw new \moodle_exception('invalidargorconf');
|
2019-10-19 20:52:24 +02:00
|
|
|
} else if ($relativepath[0] != '/') {
|
2022-04-12 09:38:41 +05:30
|
|
|
throw new \moodle_exception('pathdoesnotstartslash');
|
2009-05-21 09:44:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// extract relative path components
|
|
|
|
$args = explode('/', ltrim($relativepath, '/'));
|
|
|
|
|
|
|
|
if (count($args) == 0) { // always at least courseid, may search for index.html in course root
|
2022-04-12 09:38:41 +05:30
|
|
|
throw new \moodle_exception('invalidarguments');
|
2009-05-21 09:44:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$courseid = (int)array_shift($args);
|
2010-07-03 13:37:13 +00:00
|
|
|
$relativepath = implode('/', $args);
|
2009-05-21 09:44:26 +00:00
|
|
|
|
|
|
|
// security: limit access to existing course subdirectories
|
2013-08-21 13:42:30 +08:00
|
|
|
$course = $DB->get_record('course', array('id'=>$courseid), '*', MUST_EXIST);
|
2010-05-22 13:10:05 +00:00
|
|
|
|
2010-09-03 19:14:33 +00:00
|
|
|
if ($course->legacyfiles != 2) {
|
|
|
|
// course files disabled
|
|
|
|
send_file_not_found();
|
|
|
|
}
|
|
|
|
|
2009-05-21 09:44:26 +00:00
|
|
|
if ($course->id != SITEID) {
|
2012-04-22 17:41:47 +02:00
|
|
|
require_login($course, true, null, false);
|
2009-05-21 09:44:26 +00:00
|
|
|
|
|
|
|
} else if ($CFG->forcelogin) {
|
2018-03-12 09:33:43 +08:00
|
|
|
if (empty($CFG->sitepolicyhandler) and !empty($CFG->sitepolicy)
|
2010-07-03 13:37:13 +00:00
|
|
|
and ($CFG->sitepolicy == $CFG->wwwroot.'/file.php/'.$relativepath
|
|
|
|
or $CFG->sitepolicy == $CFG->wwwroot.'/file.php?file=/'.$relativepath)) {
|
2009-05-21 09:44:26 +00:00
|
|
|
//do not require login for policy file
|
2003-01-12 06:53:25 +00:00
|
|
|
} else {
|
2009-05-21 09:44:26 +00:00
|
|
|
require_login(0, true, null, false);
|
2006-09-21 06:38:27 +00:00
|
|
|
}
|
2009-05-21 09:44:26 +00:00
|
|
|
}
|
2006-09-21 06:38:27 +00:00
|
|
|
|
2012-08-02 11:20:48 +08:00
|
|
|
$context = context_course::instance($course->id);
|
2002-08-26 09:48:00 +00:00
|
|
|
|
2009-05-21 09:44:26 +00:00
|
|
|
$fs = get_file_storage();
|
2008-07-31 22:15:30 +00:00
|
|
|
|
2010-07-03 13:37:13 +00:00
|
|
|
$fullpath = "/$context->id/course/legacy/0/$relativepath";
|
2004-03-16 07:20:00 +00:00
|
|
|
|
2009-05-21 09:44:26 +00:00
|
|
|
if (!$file = $fs->get_file_by_hash(sha1($fullpath))) {
|
|
|
|
if (strrpos($fullpath, '/') !== strlen($fullpath) -1 ) {
|
|
|
|
$fullpath .= '/';
|
2004-09-07 14:13:19 +00:00
|
|
|
}
|
2015-01-11 09:38:56 +01:00
|
|
|
// Try to fallback to the directory named as the supposed file.
|
|
|
|
if (!$file = $fs->get_file_by_hash(sha1($fullpath.'.'))) {
|
2009-05-21 09:44:26 +00:00
|
|
|
send_file_not_found();
|
2005-02-22 23:36:20 +00:00
|
|
|
}
|
2009-05-21 09:44:26 +00:00
|
|
|
}
|
|
|
|
// do not serve dirs
|
|
|
|
if ($file->get_filename() == '.') {
|
|
|
|
if (!$file = $fs->get_file_by_hash(sha1($fullpath.'index.html'))) {
|
|
|
|
if (!$file = $fs->get_file_by_hash(sha1($fullpath.'index.htm'))) {
|
|
|
|
if (!$file = $fs->get_file_by_hash(sha1($fullpath.'Default.htm'))) {
|
|
|
|
send_file_not_found();
|
2008-07-31 22:15:30 +00:00
|
|
|
}
|
|
|
|
}
|
2004-12-14 18:57:51 +00:00
|
|
|
}
|
2009-05-21 09:44:26 +00:00
|
|
|
}
|
2004-04-26 03:41:45 +00:00
|
|
|
|
2009-05-21 09:44:26 +00:00
|
|
|
// ========================================
|
|
|
|
// finally send the file
|
|
|
|
// ========================================
|
2013-09-08 08:38:52 +02:00
|
|
|
\core\session\manager::write_close(); // Unlock session during file serving.
|
2013-10-20 23:11:25 +02:00
|
|
|
send_stored_file($file, null, $CFG->filteruploadedfiles, $forcedownload);
|
2004-12-14 18:57:51 +00:00
|
|
|
|
2008-07-31 22:15:30 +00:00
|
|
|
|