forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpluginfile.php
181 lines (139 loc) · 5.37 KB
/
pluginfile.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php // $Id$
require_once('config.php');
require_once('lib/filelib.php');
// disable moodle specific debug messages
disable_debugging();
$relativepath = get_file_argument('file.php');
$forcedownload = optional_param('forcedownload', 0, PARAM_BOOL);
// relative path must start with '/'
if (!$relativepath) {
print_error('invalidargorconf');
} else if ($relativepath{0} != '/') {
print_error('pathdoesnotstartslash');
}
// extract relative path components
$args = explode('/', ltrim($relativepath, '/'));
if (count($args) == 0) { // always at least user id
print_error('invalidarguments');
}
$contextid = (int)array_shift($args);
$filearea = array_shift($args);
$context = get_context_instance_by_id($contextid);
$fs = get_file_storage();
if ($context->contextlevel == CONTEXT_SYSTEM) {
if ($filearea === 'blog') {
if (empty($CFG->bloglevel)) {
print_error('siteblogdisable', 'blog');
}
if ($CFG->bloglevel < BLOG_GLOBAL_LEVEL) {
require_login();
if (isguestuser()) {
print_error('noguest');
}
if ($CFG->bloglevel == BLOG_USER_LEVEL) {
if ($USER->id != $entry->userid) {
not_found();
}
}
}
$entryid = (int)array_shift($args);
if (!$entry = $DB->get_record('post', array('module'=>'blog', 'id'=>$entryid))) {
not_found();
}
if ('publishstate' === 'public') {
if ($CFG->forcelogin) {
require_login();
}
} else if ('publishstate' === 'site') {
require_login();
//ok
} else if ('publishstate' === 'draft') {
require_login();
if ($USER->id != $entry->userid) {
not_found();
}
}
//TODO: implement shared course and shared group access
$relativepath = '/'.implode('/', $args);
$fullpath = $context->id.'blog'.$entryid.$relativepath;
if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
not_found();
}
send_stored_file($file, 10*60, 0, true); // downlaod MUST be forced - security!
} else {
not_found();
}
} else if ($context->contextlevel == CONTEXT_USER) {
not_found();
} else if ($context->contextlevel == CONTEXT_COURSECAT) {
if ($filearea !== 'intro') {
not_found();
}
if ($CFG->forcelogin) {
// no login necessary - unless login forced everywhere
require_login();
}
$relativepath = '/'.implode('/', $args);
$fullpath = $context->id.'intro0'.$relativepath;
if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->get_filename() == '.') {
not_found();
}
session_write_close(); // unlock session during fileserving
send_stored_file($file, 60*60, 0, $forcedownload);
} else if ($context->contextlevel == CONTEXT_COURSE) {
if ($filearea !== 'intro' and $filearea !== 'backup') {
not_found();
}
if (!$course = $DB->get_record('course', array('id'=>$context->instanceid))) {
print_error('invalidcourseid');
}
if ($filearea === 'backup') {
require_login($course);
require_capability('moodle/site:backupdownload', $context);
} else {
if ($CFG->forcelogin) {
require_login();
}
}
$relativepath = '/'.implode('/', $args);
$fullpath = $context->id.'intro0'.$relativepath;
if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
not_found();
}
session_write_close(); // unlock session during fileserving
send_stored_file($file, 60*60, 0, $forcedownload);
} else if ($context->contextlevel == CONTEXT_MODULE) {
if (!$coursecontext = get_context_instance_by_id(get_parent_contextid($context))) {
not_found();
}
if (!$course = $DB->get_record('course', array('id'=>$coursecontext->instanceid))) {
not_found();
}
$modinfo = get_fast_modinfo($course);
if (empty($modinfo->cms[$context->instanceid])) {
not_found();
}
$cminfo = $modinfo->cms[$context->instanceid];
$modname = $cminfo->modname;
$libfile = "$CFG->dirroot/mod/$modname/lib.php";
if (file_exists($libfile)) {
require_once($libfile);
$filefunction = $modname.'_pluginfile';
if (function_exists($filefunction)) {
if ($filefunction($course, $cminfo, $context, $filearea, $args) !== false) {
die;
}
}
}
not_found();
} else if ($context->contextlevel == CONTEXT_BLOCK) {
//not supported yet
not_found();
} else {
not_found();
}
function not_found() {
global $CFG;
header('HTTP/1.0 404 not found');
print_error('filenotfound', 'error', $CFG->wwwroot.'/'); //this is not displayed on IIS??
}