2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
23 * @copyright 2010 Dongsheng Cai
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 require_once("$CFG->libdir/externallib.php");
28 require_once("$CFG->libdir/filelib.php");
31 * Files external functions
35 * @copyright 2011 Jerome Mouneyrac
36 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
39 class core_files_external
extends external_api
{
42 * Returns description of get_files parameters
44 * @return external_function_parameters
47 public static function get_files_parameters() {
48 return new external_function_parameters(
50 'contextid' => new external_value(PARAM_INT
, 'context id Set to -1 to use contextlevel and instanceid.'),
51 'component' => new external_value(PARAM_TEXT
, 'component'),
52 'filearea' => new external_value(PARAM_TEXT
, 'file area'),
53 'itemid' => new external_value(PARAM_INT
, 'associated id'),
54 'filepath' => new external_value(PARAM_PATH
, 'file path'),
55 'filename' => new external_value(PARAM_TEXT
, 'file name'),
56 'modified' => new external_value(PARAM_INT
, 'timestamp to return files changed after this time.', VALUE_DEFAULT
, null),
57 'contextlevel' => new external_value(PARAM_ALPHA
, 'The context level for the file location.', VALUE_DEFAULT
, null),
58 'instanceid' => new external_value(PARAM_INT
, 'The instance id for where the file is located.', VALUE_DEFAULT
, null)
65 * Return moodle files listing
67 * @param int $contextid context id
68 * @param int $component component
69 * @param int $filearea file area
70 * @param int $itemid item id
71 * @param string $filepath file path
72 * @param string $filename file name
73 * @param int $modified timestamp to return files changed after this time.
74 * @param string $contextlevel The context level for the file location.
75 * @param int $instanceid The instance id for where the file is located.
77 * @since Moodle 2.9 Returns additional fields (timecreated, filesize, author, license)
80 public static function get_files($contextid, $component, $filearea, $itemid, $filepath, $filename, $modified = null,
81 $contextlevel = null, $instanceid = null) {
84 'contextid' => $contextid,
85 'component' => $component,
86 'filearea' => $filearea,
88 'filepath' => $filepath,
89 'filename' => $filename,
90 'modified' => $modified,
91 'contextlevel' => $contextlevel,
92 'instanceid' => $instanceid);
93 $fileinfo = self
::validate_parameters(self
::get_files_parameters(), $parameters);
95 $browser = get_file_browser();
97 // We need to preserve backwards compatibility. Zero will use the system context and minus one will
98 // use the addtional parameters to determine the context.
99 // TODO MDL-40489 get_context_from_params should handle this logic.
100 if ($fileinfo['contextid'] == 0) {
101 $context = context_system
::instance();
103 if ($fileinfo['contextid'] == -1) {
104 $fileinfo['contextid'] = null;
106 $context = self
::get_context_from_params($fileinfo);
108 self
::validate_context($context);
110 if (empty($fileinfo['component'])) {
111 $fileinfo['component'] = null;
113 if (empty($fileinfo['filearea'])) {
114 $fileinfo['filearea'] = null;
116 if (empty($fileinfo['filename'])) {
117 $fileinfo['filename'] = null;
119 if (empty($fileinfo['filepath'])) {
120 $fileinfo['filepath'] = null;
124 $return['parents'] = array();
125 $return['files'] = array();
128 if ($file = $browser->get_file_info(
129 $context, $fileinfo['component'], $fileinfo['filearea'], $fileinfo['itemid'],
130 $fileinfo['filepath'], $fileinfo['filename'])) {
131 $level = $file->get_parent();
133 $params = $level->get_params();
134 $params['filename'] = $level->get_visible_name();
135 array_unshift($return['parents'], $params);
136 $level = $level->get_parent();
138 $children = $file->get_children();
139 foreach ($children as $child) {
141 $params = $child->get_params();
142 $timemodified = $child->get_timemodified();
143 $timecreated = $child->get_timecreated();
145 if ($child->is_directory()) {
146 if ((is_null($modified)) or ($modified < $timemodified)) {
148 'contextid' => $params['contextid'],
149 'component' => $params['component'],
150 'filearea' => $params['filearea'],
151 'itemid' => $params['itemid'],
152 'filepath' => $params['filepath'],
153 'filename' => $child->get_visible_name(),
156 'timemodified' => $timemodified,
157 'timecreated' => $timecreated,
165 if ((is_null($modified)) or ($modified < $timemodified)) {
167 'contextid' => $params['contextid'],
168 'component' => $params['component'],
169 'filearea' => $params['filearea'],
170 'itemid' => $params['itemid'],
171 'filepath' => $params['filepath'],
172 'filename' => $child->get_visible_name(),
173 'url' => $child->get_url(),
175 'timemodified' => $timemodified,
176 'timecreated' => $timecreated,
177 'filesize' => $child->get_filesize(),
178 'author' => $child->get_author(),
179 'license' => $child->get_license()
186 $return['files'] = $list;
191 * Returns description of get_files returns
193 * @return external_single_structure
194 * @since Moodle 2.9 Returns additional fields for files (timecreated, filesize, author, license)
197 public static function get_files_returns() {
198 return new external_single_structure(
200 'parents' => new external_multiple_structure(
201 new external_single_structure(
203 'contextid' => new external_value(PARAM_INT
, ''),
204 'component' => new external_value(PARAM_COMPONENT
, ''),
205 'filearea' => new external_value(PARAM_AREA
, ''),
206 'itemid' => new external_value(PARAM_INT
, ''),
207 'filepath' => new external_value(PARAM_TEXT
, ''),
208 'filename' => new external_value(PARAM_TEXT
, ''),
212 'files' => new external_multiple_structure(
213 new external_single_structure(
215 'contextid' => new external_value(PARAM_INT
, ''),
216 'component' => new external_value(PARAM_COMPONENT
, ''),
217 'filearea' => new external_value(PARAM_AREA
, ''),
218 'itemid' => new external_value(PARAM_INT
, ''),
219 'filepath' => new external_value(PARAM_TEXT
, ''),
220 'filename' => new external_value(PARAM_TEXT
, ''),
221 'isdir' => new external_value(PARAM_BOOL
, ''),
222 'url' => new external_value(PARAM_TEXT
, ''),
223 'timemodified' => new external_value(PARAM_INT
, ''),
224 'timecreated' => new external_value(PARAM_INT
, 'Time created', VALUE_OPTIONAL
),
225 'filesize' => new external_value(PARAM_INT
, 'File size', VALUE_OPTIONAL
),
226 'author' => new external_value(PARAM_TEXT
, 'File owner', VALUE_OPTIONAL
),
227 'license' => new external_value(PARAM_TEXT
, 'File license', VALUE_OPTIONAL
),
236 * Returns description of upload parameters
238 * @return external_function_parameters
241 public static function upload_parameters() {
242 return new external_function_parameters(
244 'contextid' => new external_value(PARAM_INT
, 'context id', VALUE_DEFAULT
, null),
245 'component' => new external_value(PARAM_COMPONENT
, 'component'),
246 'filearea' => new external_value(PARAM_AREA
, 'file area'),
247 'itemid' => new external_value(PARAM_INT
, 'associated id'),
248 'filepath' => new external_value(PARAM_PATH
, 'file path'),
249 'filename' => new external_value(PARAM_FILE
, 'file name'),
250 'filecontent' => new external_value(PARAM_TEXT
, 'file content'),
251 'contextlevel' => new external_value(PARAM_ALPHA
, 'The context level to put the file in,
252 (block, course, coursecat, system, user, module)', VALUE_DEFAULT
, null),
253 'instanceid' => new external_value(PARAM_INT
, 'The Instance id of item associated
254 with the context level', VALUE_DEFAULT
, null)
260 * Uploading a file to moodle
262 * @param int $contextid context id
263 * @param string $component component
264 * @param string $filearea file area
265 * @param int $itemid item id
266 * @param string $filepath file path
267 * @param string $filename file name
268 * @param string $filecontent file content
269 * @param string $contextlevel Context level (block, course, coursecat, system, user or module)
270 * @param int $instanceid Instance id of the item associated with the context level
274 public static function upload($contextid, $component, $filearea, $itemid, $filepath, $filename, $filecontent, $contextlevel, $instanceid) {
277 $fileinfo = self
::validate_parameters(self
::upload_parameters(), array(
278 'contextid' => $contextid, 'component' => $component, 'filearea' => $filearea, 'itemid' => $itemid,
279 'filepath' => $filepath, 'filename' => $filename, 'filecontent' => $filecontent, 'contextlevel' => $contextlevel,
280 'instanceid' => $instanceid));
282 if (!isset($fileinfo['filecontent'])) {
283 throw new moodle_exception('nofile');
286 $dir = make_temp_directory('wsupload');
288 if (empty($fileinfo['filename'])) {
289 $filename = uniqid('wsupload', true).'_'.time().'.tmp';
291 $filename = $fileinfo['filename'];
294 if (file_exists($dir.$filename)) {
295 $savedfilepath = $dir.uniqid('m').$filename;
297 $savedfilepath = $dir.$filename;
300 file_put_contents($savedfilepath, base64_decode($fileinfo['filecontent']));
301 @chmod
($savedfilepath, $CFG->filepermissions
);
302 unset($fileinfo['filecontent']);
304 if (!empty($fileinfo['filepath'])) {
305 $filepath = $fileinfo['filepath'];
310 // Only allow uploads to draft area
311 if (!($fileinfo['component'] == 'user' and $fileinfo['filearea'] == 'draft')) {
312 throw new coding_exception('File can be uploaded to user draft area only');
315 $filearea = $fileinfo['filearea'];
319 if (isset($fileinfo['itemid'])) {
320 $itemid = $fileinfo['itemid'];
322 if ($filearea == 'draft' && $itemid <= 0) {
323 // Generate a draft area for the files.
324 $itemid = file_get_unused_draft_itemid();
325 } else if ($filearea == 'private') {
326 // TODO MDL-31116 in user private area, itemid is always 0.
330 // We need to preserve backword compatibility. Context id is no more a required.
331 if (empty($fileinfo['contextid'])) {
332 unset($fileinfo['contextid']);
335 // Get and validate context.
336 $context = self
::get_context_from_params($fileinfo);
337 self
::validate_context($context);
338 if (($fileinfo['component'] == 'user' and $fileinfo['filearea'] == 'private')) {
339 throw new moodle_exception('privatefilesupload');
342 $browser = get_file_browser();
344 // Check existing file.
345 if ($file = $browser->get_file_info($context, $component, $filearea, $itemid, $filepath, $filename)) {
346 throw new moodle_exception('fileexist');
349 // Move file to filepool.
350 if ($dir = $browser->get_file_info($context, $component, $filearea, $itemid, $filepath, '.')) {
351 $info = $dir->create_file_from_pathname($filename, $savedfilepath);
352 $params = $info->get_params();
353 unlink($savedfilepath);
355 'contextid'=>$params['contextid'],
356 'component'=>$params['component'],
357 'filearea'=>$params['filearea'],
358 'itemid'=>$params['itemid'],
359 'filepath'=>$params['filepath'],
360 'filename'=>$params['filename'],
361 'url'=>$info->get_url()
364 throw new moodle_exception('nofile');
369 * Returns description of upload returns
371 * @return external_single_structure
374 public static function upload_returns() {
375 return new external_single_structure(
377 'contextid' => new external_value(PARAM_INT
, ''),
378 'component' => new external_value(PARAM_COMPONENT
, ''),
379 'filearea' => new external_value(PARAM_AREA
, ''),
380 'itemid' => new external_value(PARAM_INT
, ''),
381 'filepath' => new external_value(PARAM_TEXT
, ''),
382 'filename' => new external_value(PARAM_FILE
, ''),
383 'url' => new external_value(PARAM_TEXT
, ''),