MDL-21695 adding help and link strings
[moodle.git] / draftfile.php
blobde82ca43ab9432a135223eefb7070f2a9d5f22e8
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * This script serves draft files of current user
21 * @package moodlecore
22 * @subpackage file
23 * @copyright 2008 Petr Skoda (http://skodak.org)
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 // disable moodle specific debug messages and any errors in output
28 define('NO_DEBUG_DISPLAY', true);
30 require_once('config.php');
31 require_once('lib/filelib.php');
33 require_login();
34 if (isguestuser()) {
35 print_error('noguest');
38 $relativepath = get_file_argument();
40 // relative path must start with '/'
41 if (!$relativepath) {
42 print_error('invalidargorconf');
43 } else if ($relativepath{0} != '/') {
44 print_error('pathdoesnotstartslash');
47 // extract relative path components
48 $args = explode('/', ltrim($relativepath, '/'));
50 if (count($args) == 0) { // always at least user id
51 print_error('invalidarguments');
54 $contextid = (int)array_shift($args);
55 $filearea = array_shift($args);
57 $context = get_context_instance_by_id($contextid);
58 if ($context->contextlevel != CONTEXT_USER) {
59 print_error('invalidarguments');
62 $userid = $context->instanceid;
63 if ($USER->id != $userid) {
64 print_error('invaliduserid');
67 switch ($filearea) {
68 case 'user_draft':
69 $itemid = (int)array_shift($args);
70 break;
71 default:
72 send_file_not_found();
75 $relativepath = '/'.implode('/', $args);
78 $fs = get_file_storage();
80 $fullpath = $context->id.$filearea.$itemid.$relativepath;
82 if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->get_filename() == '.') {
83 send_file_not_found();
86 // ========================================
87 // finally send the file
88 // ========================================
89 session_get_instance()->write_close(); // unlock session during fileserving
90 send_stored_file($file, 0, false, true); // force download - security first!