MDL-40392 Navigation -> my courses listing tests
[moodle.git] / lib / filelib.php
blob6c9096838e831f17a7c149147f3fe8195f64880f
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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/>.
17 /**
18 * Functions for file handling.
20 * @package core_files
21 * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') || die();
27 /**
28 * BYTESERVING_BOUNDARY - string unique string constant.
30 define('BYTESERVING_BOUNDARY', 's1k2o3d4a5k6s7');
32 /**
33 * Unlimited area size constant
35 define('FILE_AREA_MAX_BYTES_UNLIMITED', -1);
37 require_once("$CFG->libdir/filestorage/file_exceptions.php");
38 require_once("$CFG->libdir/filestorage/file_storage.php");
39 require_once("$CFG->libdir/filestorage/zip_packer.php");
40 require_once("$CFG->libdir/filebrowser/file_browser.php");
42 /**
43 * Encodes file serving url
45 * @deprecated use moodle_url factory methods instead
47 * @todo MDL-31071 deprecate this function
48 * @global stdClass $CFG
49 * @param string $urlbase
50 * @param string $path /filearea/itemid/dir/dir/file.exe
51 * @param bool $forcedownload
52 * @param bool $https https url required
53 * @return string encoded file url
55 function file_encode_url($urlbase, $path, $forcedownload=false, $https=false) {
56 global $CFG;
58 //TODO: deprecate this
60 if ($CFG->slasharguments) {
61 $parts = explode('/', $path);
62 $parts = array_map('rawurlencode', $parts);
63 $path = implode('/', $parts);
64 $return = $urlbase.$path;
65 if ($forcedownload) {
66 $return .= '?forcedownload=1';
68 } else {
69 $path = rawurlencode($path);
70 $return = $urlbase.'?file='.$path;
71 if ($forcedownload) {
72 $return .= '&amp;forcedownload=1';
76 if ($https) {
77 $return = str_replace('http://', 'https://', $return);
80 return $return;
83 /**
84 * Prepares 'editor' formslib element from data in database
86 * The passed $data record must contain field foobar, foobarformat and optionally foobartrust. This
87 * function then copies the embedded files into draft area (assigning itemids automatically),
88 * creates the form element foobar_editor and rewrites the URLs so the embedded images can be
89 * displayed.
90 * In your mform definition, you must have an 'editor' element called foobar_editor. Then you call
91 * your mform's set_data() supplying the object returned by this function.
93 * @category files
94 * @param stdClass $data database field that holds the html text with embedded media
95 * @param string $field the name of the database field that holds the html text with embedded media
96 * @param array $options editor options (like maxifiles, maxbytes etc.)
97 * @param stdClass $context context of the editor
98 * @param string $component
99 * @param string $filearea file area name
100 * @param int $itemid item id, required if item exists
101 * @return stdClass modified data object
103 function file_prepare_standard_editor($data, $field, array $options, $context=null, $component=null, $filearea=null, $itemid=null) {
104 $options = (array)$options;
105 if (!isset($options['trusttext'])) {
106 $options['trusttext'] = false;
108 if (!isset($options['forcehttps'])) {
109 $options['forcehttps'] = false;
111 if (!isset($options['subdirs'])) {
112 $options['subdirs'] = false;
114 if (!isset($options['maxfiles'])) {
115 $options['maxfiles'] = 0; // no files by default
117 if (!isset($options['noclean'])) {
118 $options['noclean'] = false;
121 //sanity check for passed context. This function doesn't expect $option['context'] to be set
122 //But this function is called before creating editor hence, this is one of the best places to check
123 //if context is used properly. This check notify developer that they missed passing context to editor.
124 if (isset($context) && !isset($options['context'])) {
125 //if $context is not null then make sure $option['context'] is also set.
126 debugging('Context for editor is not set in editoroptions. Hence editor will not respect editor filters', DEBUG_DEVELOPER);
127 } else if (isset($options['context']) && isset($context)) {
128 //If both are passed then they should be equal.
129 if ($options['context']->id != $context->id) {
130 $exceptionmsg = 'Editor context ['.$options['context']->id.'] is not equal to passed context ['.$context->id.']';
131 throw new coding_exception($exceptionmsg);
135 if (is_null($itemid) or is_null($context)) {
136 $contextid = null;
137 $itemid = null;
138 if (!isset($data)) {
139 $data = new stdClass();
141 if (!isset($data->{$field})) {
142 $data->{$field} = '';
144 if (!isset($data->{$field.'format'})) {
145 $data->{$field.'format'} = editors_get_preferred_format();
147 if (!$options['noclean']) {
148 $data->{$field} = clean_text($data->{$field}, $data->{$field.'format'});
151 } else {
152 if ($options['trusttext']) {
153 // noclean ignored if trusttext enabled
154 if (!isset($data->{$field.'trust'})) {
155 $data->{$field.'trust'} = 0;
157 $data = trusttext_pre_edit($data, $field, $context);
158 } else {
159 if (!$options['noclean']) {
160 $data->{$field} = clean_text($data->{$field}, $data->{$field.'format'});
163 $contextid = $context->id;
166 if ($options['maxfiles'] != 0) {
167 $draftid_editor = file_get_submitted_draft_itemid($field);
168 $currenttext = file_prepare_draft_area($draftid_editor, $contextid, $component, $filearea, $itemid, $options, $data->{$field});
169 $data->{$field.'_editor'} = array('text'=>$currenttext, 'format'=>$data->{$field.'format'}, 'itemid'=>$draftid_editor);
170 } else {
171 $data->{$field.'_editor'} = array('text'=>$data->{$field}, 'format'=>$data->{$field.'format'}, 'itemid'=>0);
174 return $data;
178 * Prepares the content of the 'editor' form element with embedded media files to be saved in database
180 * This function moves files from draft area to the destination area and
181 * encodes URLs to the draft files so they can be safely saved into DB. The
182 * form has to contain the 'editor' element named foobar_editor, where 'foobar'
183 * is the name of the database field to hold the wysiwyg editor content. The
184 * editor data comes as an array with text, format and itemid properties. This
185 * function automatically adds $data properties foobar, foobarformat and
186 * foobartrust, where foobar has URL to embedded files encoded.
188 * @category files
189 * @param stdClass $data raw data submitted by the form
190 * @param string $field name of the database field containing the html with embedded media files
191 * @param array $options editor options (trusttext, subdirs, maxfiles, maxbytes etc.)
192 * @param stdClass $context context, required for existing data
193 * @param string $component file component
194 * @param string $filearea file area name
195 * @param int $itemid item id, required if item exists
196 * @return stdClass modified data object
198 function file_postupdate_standard_editor($data, $field, array $options, $context, $component=null, $filearea=null, $itemid=null) {
199 $options = (array)$options;
200 if (!isset($options['trusttext'])) {
201 $options['trusttext'] = false;
203 if (!isset($options['forcehttps'])) {
204 $options['forcehttps'] = false;
206 if (!isset($options['subdirs'])) {
207 $options['subdirs'] = false;
209 if (!isset($options['maxfiles'])) {
210 $options['maxfiles'] = 0; // no files by default
212 if (!isset($options['maxbytes'])) {
213 $options['maxbytes'] = 0; // unlimited
216 if ($options['trusttext']) {
217 $data->{$field.'trust'} = trusttext_trusted($context);
218 } else {
219 $data->{$field.'trust'} = 0;
222 $editor = $data->{$field.'_editor'};
224 if ($options['maxfiles'] == 0 or is_null($filearea) or is_null($itemid) or empty($editor['itemid'])) {
225 $data->{$field} = $editor['text'];
226 } else {
227 $data->{$field} = file_save_draft_area_files($editor['itemid'], $context->id, $component, $filearea, $itemid, $options, $editor['text'], $options['forcehttps']);
229 $data->{$field.'format'} = $editor['format'];
231 return $data;
235 * Saves text and files modified by Editor formslib element
237 * @category files
238 * @param stdClass $data $database entry field
239 * @param string $field name of data field
240 * @param array $options various options
241 * @param stdClass $context context - must already exist
242 * @param string $component
243 * @param string $filearea file area name
244 * @param int $itemid must already exist, usually means data is in db
245 * @return stdClass modified data obejct
247 function file_prepare_standard_filemanager($data, $field, array $options, $context=null, $component=null, $filearea=null, $itemid=null) {
248 $options = (array)$options;
249 if (!isset($options['subdirs'])) {
250 $options['subdirs'] = false;
252 if (is_null($itemid) or is_null($context)) {
253 $itemid = null;
254 $contextid = null;
255 } else {
256 $contextid = $context->id;
259 $draftid_editor = file_get_submitted_draft_itemid($field.'_filemanager');
260 file_prepare_draft_area($draftid_editor, $contextid, $component, $filearea, $itemid, $options);
261 $data->{$field.'_filemanager'} = $draftid_editor;
263 return $data;
267 * Saves files modified by File manager formslib element
269 * @todo MDL-31073 review this function
270 * @category files
271 * @param stdClass $data $database entry field
272 * @param string $field name of data field
273 * @param array $options various options
274 * @param stdClass $context context - must already exist
275 * @param string $component
276 * @param string $filearea file area name
277 * @param int $itemid must already exist, usually means data is in db
278 * @return stdClass modified data obejct
280 function file_postupdate_standard_filemanager($data, $field, array $options, $context, $component, $filearea, $itemid) {
281 $options = (array)$options;
282 if (!isset($options['subdirs'])) {
283 $options['subdirs'] = false;
285 if (!isset($options['maxfiles'])) {
286 $options['maxfiles'] = -1; // unlimited
288 if (!isset($options['maxbytes'])) {
289 $options['maxbytes'] = 0; // unlimited
292 if (empty($data->{$field.'_filemanager'})) {
293 $data->$field = '';
295 } else {
296 file_save_draft_area_files($data->{$field.'_filemanager'}, $context->id, $component, $filearea, $itemid, $options);
297 $fs = get_file_storage();
299 if ($fs->get_area_files($context->id, $component, $filearea, $itemid)) {
300 $data->$field = '1'; // TODO: this is an ugly hack (skodak)
301 } else {
302 $data->$field = '';
306 return $data;
310 * Generate a draft itemid
312 * @category files
313 * @global moodle_database $DB
314 * @global stdClass $USER
315 * @return int a random but available draft itemid that can be used to create a new draft
316 * file area.
318 function file_get_unused_draft_itemid() {
319 global $DB, $USER;
321 if (isguestuser() or !isloggedin()) {
322 // guests and not-logged-in users can not be allowed to upload anything!!!!!!
323 print_error('noguest');
326 $contextid = context_user::instance($USER->id)->id;
328 $fs = get_file_storage();
329 $draftitemid = rand(1, 999999999);
330 while ($files = $fs->get_area_files($contextid, 'user', 'draft', $draftitemid)) {
331 $draftitemid = rand(1, 999999999);
334 return $draftitemid;
338 * Initialise a draft file area from a real one by copying the files. A draft
339 * area will be created if one does not already exist. Normally you should
340 * get $draftitemid by calling file_get_submitted_draft_itemid('elementname');
342 * @category files
343 * @global stdClass $CFG
344 * @global stdClass $USER
345 * @param int $draftitemid the id of the draft area to use, or 0 to create a new one, in which case this parameter is updated.
346 * @param int $contextid This parameter and the next two identify the file area to copy files from.
347 * @param string $component
348 * @param string $filearea helps indentify the file area.
349 * @param int $itemid helps identify the file area. Can be null if there are no files yet.
350 * @param array $options text and file options ('subdirs'=>false, 'forcehttps'=>false)
351 * @param string $text some html content that needs to have embedded links rewritten to point to the draft area.
352 * @return string|null returns string if $text was passed in, the rewritten $text is returned. Otherwise NULL.
354 function file_prepare_draft_area(&$draftitemid, $contextid, $component, $filearea, $itemid, array $options=null, $text=null) {
355 global $CFG, $USER, $CFG;
357 $options = (array)$options;
358 if (!isset($options['subdirs'])) {
359 $options['subdirs'] = false;
361 if (!isset($options['forcehttps'])) {
362 $options['forcehttps'] = false;
365 $usercontext = context_user::instance($USER->id);
366 $fs = get_file_storage();
368 if (empty($draftitemid)) {
369 // create a new area and copy existing files into
370 $draftitemid = file_get_unused_draft_itemid();
371 $file_record = array('contextid'=>$usercontext->id, 'component'=>'user', 'filearea'=>'draft', 'itemid'=>$draftitemid);
372 if (!is_null($itemid) and $files = $fs->get_area_files($contextid, $component, $filearea, $itemid)) {
373 foreach ($files as $file) {
374 if ($file->is_directory() and $file->get_filepath() === '/') {
375 // we need a way to mark the age of each draft area,
376 // by not copying the root dir we force it to be created automatically with current timestamp
377 continue;
379 if (!$options['subdirs'] and ($file->is_directory() or $file->get_filepath() !== '/')) {
380 continue;
382 $draftfile = $fs->create_file_from_storedfile($file_record, $file);
383 // XXX: This is a hack for file manager (MDL-28666)
384 // File manager needs to know the original file information before copying
385 // to draft area, so we append these information in mdl_files.source field
386 // {@link file_storage::search_references()}
387 // {@link file_storage::search_references_count()}
388 $sourcefield = $file->get_source();
389 $newsourcefield = new stdClass;
390 $newsourcefield->source = $sourcefield;
391 $original = new stdClass;
392 $original->contextid = $contextid;
393 $original->component = $component;
394 $original->filearea = $filearea;
395 $original->itemid = $itemid;
396 $original->filename = $file->get_filename();
397 $original->filepath = $file->get_filepath();
398 $newsourcefield->original = file_storage::pack_reference($original);
399 $draftfile->set_source(serialize($newsourcefield));
400 // End of file manager hack
403 if (!is_null($text)) {
404 // at this point there should not be any draftfile links yet,
405 // because this is a new text from database that should still contain the @@pluginfile@@ links
406 // this happens when developers forget to post process the text
407 $text = str_replace("\"$CFG->httpswwwroot/draftfile.php", "\"$CFG->httpswwwroot/brokenfile.php#", $text);
409 } else {
410 // nothing to do
413 if (is_null($text)) {
414 return null;
417 // relink embedded files - editor can not handle @@PLUGINFILE@@ !
418 return file_rewrite_pluginfile_urls($text, 'draftfile.php', $usercontext->id, 'user', 'draft', $draftitemid, $options);
422 * Convert encoded URLs in $text from the @@PLUGINFILE@@/... form to an actual URL.
424 * @category files
425 * @global stdClass $CFG
426 * @param string $text The content that may contain ULRs in need of rewriting.
427 * @param string $file The script that should be used to serve these files. pluginfile.php, draftfile.php, etc.
428 * @param int $contextid This parameter and the next two identify the file area to use.
429 * @param string $component
430 * @param string $filearea helps identify the file area.
431 * @param int $itemid helps identify the file area.
432 * @param array $options text and file options ('forcehttps'=>false)
433 * @return string the processed text.
435 function file_rewrite_pluginfile_urls($text, $file, $contextid, $component, $filearea, $itemid, array $options=null) {
436 global $CFG;
438 $options = (array)$options;
439 if (!isset($options['forcehttps'])) {
440 $options['forcehttps'] = false;
443 if (!$CFG->slasharguments) {
444 $file = $file . '?file=';
447 $baseurl = "$CFG->wwwroot/$file/$contextid/$component/$filearea/";
449 if ($itemid !== null) {
450 $baseurl .= "$itemid/";
453 if ($options['forcehttps']) {
454 $baseurl = str_replace('http://', 'https://', $baseurl);
457 return str_replace('@@PLUGINFILE@@/', $baseurl, $text);
461 * Returns information about files in a draft area.
463 * @global stdClass $CFG
464 * @global stdClass $USER
465 * @param int $draftitemid the draft area item id.
466 * @param string $filepath path to the directory from which the information have to be retrieved.
467 * @return array with the following entries:
468 * 'filecount' => number of files in the draft area.
469 * 'filesize' => total size of the files in the draft area.
470 * 'foldercount' => number of folders in the draft area.
471 * 'filesize_without_references' => total size of the area excluding file references.
472 * (more information will be added as needed).
474 function file_get_draft_area_info($draftitemid, $filepath = '/') {
475 global $CFG, $USER;
477 $usercontext = context_user::instance($USER->id);
478 $fs = get_file_storage();
480 $results = array(
481 'filecount' => 0,
482 'foldercount' => 0,
483 'filesize' => 0,
484 'filesize_without_references' => 0
487 if ($filepath != '/') {
488 $draftfiles = $fs->get_directory_files($usercontext->id, 'user', 'draft', $draftitemid, $filepath, true, true);
489 } else {
490 $draftfiles = $fs->get_area_files($usercontext->id, 'user', 'draft', $draftitemid, 'id', true);
492 foreach ($draftfiles as $file) {
493 if ($file->is_directory()) {
494 $results['foldercount'] += 1;
495 } else {
496 $results['filecount'] += 1;
499 $filesize = $file->get_filesize();
500 $results['filesize'] += $filesize;
501 if (!$file->is_external_file()) {
502 $results['filesize_without_references'] += $filesize;
506 return $results;
510 * Returns whether a draft area has exceeded/will exceed its size limit.
512 * Please note that the unlimited value for $areamaxbytes is -1 {@link FILE_AREA_MAX_BYTES_UNLIMITED}, not 0.
514 * @param int $draftitemid the draft area item id.
515 * @param int $areamaxbytes the maximum size allowed in this draft area.
516 * @param int $newfilesize the size that would be added to the current area.
517 * @param bool $includereferences true to include the size of the references in the area size.
518 * @return bool true if the area will/has exceeded its limit.
519 * @since 2.4
521 function file_is_draft_area_limit_reached($draftitemid, $areamaxbytes, $newfilesize = 0, $includereferences = false) {
522 if ($areamaxbytes != FILE_AREA_MAX_BYTES_UNLIMITED) {
523 $draftinfo = file_get_draft_area_info($draftitemid);
524 $areasize = $draftinfo['filesize_without_references'];
525 if ($includereferences) {
526 $areasize = $draftinfo['filesize'];
528 if ($areasize + $newfilesize > $areamaxbytes) {
529 return true;
532 return false;
536 * Get used space of files
537 * @global moodle_database $DB
538 * @global stdClass $USER
539 * @return int total bytes
541 function file_get_user_used_space() {
542 global $DB, $USER;
544 $usercontext = context_user::instance($USER->id);
545 $sql = "SELECT SUM(files1.filesize) AS totalbytes FROM {files} files1
546 JOIN (SELECT contenthash, filename, MAX(id) AS id
547 FROM {files}
548 WHERE contextid = ? AND component = ? AND filearea != ?
549 GROUP BY contenthash, filename) files2 ON files1.id = files2.id";
550 $params = array('contextid'=>$usercontext->id, 'component'=>'user', 'filearea'=>'draft');
551 $record = $DB->get_record_sql($sql, $params);
552 return (int)$record->totalbytes;
556 * Convert any string to a valid filepath
557 * @todo review this function
558 * @param string $str
559 * @return string path
561 function file_correct_filepath($str) { //TODO: what is this? (skodak) - No idea (Fred)
562 if ($str == '/' or empty($str)) {
563 return '/';
564 } else {
565 return '/'.trim($str, '/').'/';
570 * Generate a folder tree of draft area of current USER recursively
572 * @todo MDL-31073 use normal return value instead, this does not fit the rest of api here (skodak)
573 * @param int $draftitemid
574 * @param string $filepath
575 * @param mixed $data
577 function file_get_drafarea_folders($draftitemid, $filepath, &$data) {
578 global $USER, $OUTPUT, $CFG;
579 $data->children = array();
580 $context = context_user::instance($USER->id);
581 $fs = get_file_storage();
582 if ($files = $fs->get_directory_files($context->id, 'user', 'draft', $draftitemid, $filepath, false)) {
583 foreach ($files as $file) {
584 if ($file->is_directory()) {
585 $item = new stdClass();
586 $item->sortorder = $file->get_sortorder();
587 $item->filepath = $file->get_filepath();
589 $foldername = explode('/', trim($item->filepath, '/'));
590 $item->fullname = trim(array_pop($foldername), '/');
592 $item->id = uniqid();
593 file_get_drafarea_folders($draftitemid, $item->filepath, $item);
594 $data->children[] = $item;
595 } else {
596 continue;
603 * Listing all files (including folders) in current path (draft area)
604 * used by file manager
605 * @param int $draftitemid
606 * @param string $filepath
607 * @return stdClass
609 function file_get_drafarea_files($draftitemid, $filepath = '/') {
610 global $USER, $OUTPUT, $CFG;
612 $context = context_user::instance($USER->id);
613 $fs = get_file_storage();
615 $data = new stdClass();
616 $data->path = array();
617 $data->path[] = array('name'=>get_string('files'), 'path'=>'/');
619 // will be used to build breadcrumb
620 $trail = '/';
621 if ($filepath !== '/') {
622 $filepath = file_correct_filepath($filepath);
623 $parts = explode('/', $filepath);
624 foreach ($parts as $part) {
625 if ($part != '' && $part != null) {
626 $trail .= ($part.'/');
627 $data->path[] = array('name'=>$part, 'path'=>$trail);
632 $list = array();
633 $maxlength = 12;
634 if ($files = $fs->get_directory_files($context->id, 'user', 'draft', $draftitemid, $filepath, false)) {
635 foreach ($files as $file) {
636 $item = new stdClass();
637 $item->filename = $file->get_filename();
638 $item->filepath = $file->get_filepath();
639 $item->fullname = trim($item->filename, '/');
640 $filesize = $file->get_filesize();
641 $item->size = $filesize ? $filesize : null;
642 $item->filesize = $filesize ? display_size($filesize) : '';
644 $item->sortorder = $file->get_sortorder();
645 $item->author = $file->get_author();
646 $item->license = $file->get_license();
647 $item->datemodified = $file->get_timemodified();
648 $item->datecreated = $file->get_timecreated();
649 $item->isref = $file->is_external_file();
650 if ($item->isref && $file->get_status() == 666) {
651 $item->originalmissing = true;
653 // find the file this draft file was created from and count all references in local
654 // system pointing to that file
655 $source = @unserialize($file->get_source());
656 if (isset($source->original)) {
657 $item->refcount = $fs->search_references_count($source->original);
660 if ($file->is_directory()) {
661 $item->filesize = 0;
662 $item->icon = $OUTPUT->pix_url(file_folder_icon(24))->out(false);
663 $item->type = 'folder';
664 $foldername = explode('/', trim($item->filepath, '/'));
665 $item->fullname = trim(array_pop($foldername), '/');
666 $item->thumbnail = $OUTPUT->pix_url(file_folder_icon(90))->out(false);
667 } else {
668 // do NOT use file browser here!
669 $item->mimetype = get_mimetype_description($file);
670 if (file_extension_in_typegroup($file->get_filename(), 'archive')) {
671 $item->type = 'zip';
672 } else {
673 $item->type = 'file';
675 $itemurl = moodle_url::make_draftfile_url($draftitemid, $item->filepath, $item->filename);
676 $item->url = $itemurl->out();
677 $item->icon = $OUTPUT->pix_url(file_file_icon($file, 24))->out(false);
678 $item->thumbnail = $OUTPUT->pix_url(file_file_icon($file, 90))->out(false);
679 if ($imageinfo = $file->get_imageinfo()) {
680 $item->realthumbnail = $itemurl->out(false, array('preview' => 'thumb', 'oid' => $file->get_timemodified()));
681 $item->realicon = $itemurl->out(false, array('preview' => 'tinyicon', 'oid' => $file->get_timemodified()));
682 $item->image_width = $imageinfo['width'];
683 $item->image_height = $imageinfo['height'];
686 $list[] = $item;
689 $data->itemid = $draftitemid;
690 $data->list = $list;
691 return $data;
695 * Returns draft area itemid for a given element.
697 * @category files
698 * @param string $elname name of formlib editor element, or a hidden form field that stores the draft area item id, etc.
699 * @return int the itemid, or 0 if there is not one yet.
701 function file_get_submitted_draft_itemid($elname) {
702 // this is a nasty hack, ideally all new elements should use arrays here or there should be a new parameter
703 if (!isset($_REQUEST[$elname])) {
704 return 0;
706 if (is_array($_REQUEST[$elname])) {
707 $param = optional_param_array($elname, 0, PARAM_INT);
708 if (!empty($param['itemid'])) {
709 $param = $param['itemid'];
710 } else {
711 debugging('Missing itemid, maybe caused by unset maxfiles option', DEBUG_DEVELOPER);
712 return false;
715 } else {
716 $param = optional_param($elname, 0, PARAM_INT);
719 if ($param) {
720 require_sesskey();
723 return $param;
727 * Restore the original source field from draft files
729 * Do not use this function because it makes field files.source inconsistent
730 * for draft area files. This function will be deprecated in 2.6
732 * @param stored_file $storedfile This only works with draft files
733 * @return stored_file
735 function file_restore_source_field_from_draft_file($storedfile) {
736 $source = @unserialize($storedfile->get_source());
737 if (!empty($source)) {
738 if (is_object($source)) {
739 $restoredsource = $source->source;
740 $storedfile->set_source($restoredsource);
741 } else {
742 throw new moodle_exception('invalidsourcefield', 'error');
745 return $storedfile;
748 * Saves files from a draft file area to a real one (merging the list of files).
749 * Can rewrite URLs in some content at the same time if desired.
751 * @category files
752 * @global stdClass $USER
753 * @param int $draftitemid the id of the draft area to use. Normally obtained
754 * from file_get_submitted_draft_itemid('elementname') or similar.
755 * @param int $contextid This parameter and the next two identify the file area to save to.
756 * @param string $component
757 * @param string $filearea indentifies the file area.
758 * @param int $itemid helps identifies the file area.
759 * @param array $options area options (subdirs=>false, maxfiles=-1, maxbytes=0)
760 * @param string $text some html content that needs to have embedded links rewritten
761 * to the @@PLUGINFILE@@ form for saving in the database.
762 * @param bool $forcehttps force https urls.
763 * @return string|null if $text was passed in, the rewritten $text is returned. Otherwise NULL.
765 function file_save_draft_area_files($draftitemid, $contextid, $component, $filearea, $itemid, array $options=null, $text=null, $forcehttps=false) {
766 global $USER;
768 $usercontext = context_user::instance($USER->id);
769 $fs = get_file_storage();
771 $options = (array)$options;
772 if (!isset($options['subdirs'])) {
773 $options['subdirs'] = false;
775 if (!isset($options['maxfiles'])) {
776 $options['maxfiles'] = -1; // unlimited
778 if (!isset($options['maxbytes']) || $options['maxbytes'] == USER_CAN_IGNORE_FILE_SIZE_LIMITS) {
779 $options['maxbytes'] = 0; // unlimited
781 if (!isset($options['areamaxbytes'])) {
782 $options['areamaxbytes'] = FILE_AREA_MAX_BYTES_UNLIMITED; // Unlimited.
784 $allowreferences = true;
785 if (isset($options['return_types']) && !($options['return_types'] & FILE_REFERENCE)) {
786 // we assume that if $options['return_types'] is NOT specified, we DO allow references.
787 // this is not exactly right. BUT there are many places in code where filemanager options
788 // are not passed to file_save_draft_area_files()
789 $allowreferences = false;
792 // Check if the draft area has exceeded the authorised limit. This should never happen as validation
793 // should have taken place before, unless the user is doing something nauthly. If so, let's just not save
794 // anything at all in the next area.
795 if (file_is_draft_area_limit_reached($draftitemid, $options['areamaxbytes'])) {
796 return null;
799 $draftfiles = $fs->get_area_files($usercontext->id, 'user', 'draft', $draftitemid, 'id');
800 $oldfiles = $fs->get_area_files($contextid, $component, $filearea, $itemid, 'id');
802 // One file in filearea means it is empty (it has only top-level directory '.').
803 if (count($draftfiles) > 1 || count($oldfiles) > 1) {
804 // we have to merge old and new files - we want to keep file ids for files that were not changed
805 // we change time modified for all new and changed files, we keep time created as is
807 $newhashes = array();
808 $filecount = 0;
809 foreach ($draftfiles as $file) {
810 if (!$options['subdirs'] && ($file->get_filepath() !== '/' or $file->is_directory())) {
811 continue;
813 if (!$allowreferences && $file->is_external_file()) {
814 continue;
816 if (!$file->is_directory()) {
817 if ($options['maxbytes'] and $options['maxbytes'] < $file->get_filesize()) {
818 // oversized file - should not get here at all
819 continue;
821 if ($options['maxfiles'] != -1 and $options['maxfiles'] <= $filecount) {
822 // more files - should not get here at all
823 continue;
825 $filecount++;
827 $newhash = $fs->get_pathname_hash($contextid, $component, $filearea, $itemid, $file->get_filepath(), $file->get_filename());
828 $newhashes[$newhash] = $file;
831 // Loop through oldfiles and decide which we need to delete and which to update.
832 // After this cycle the array $newhashes will only contain the files that need to be added.
833 foreach ($oldfiles as $oldfile) {
834 $oldhash = $oldfile->get_pathnamehash();
835 if (!isset($newhashes[$oldhash])) {
836 // delete files not needed any more - deleted by user
837 $oldfile->delete();
838 continue;
841 $newfile = $newhashes[$oldhash];
842 // Now we know that we have $oldfile and $newfile for the same path.
843 // Let's check if we can update this file or we need to delete and create.
844 if ($newfile->is_directory()) {
845 // Directories are always ok to just update.
846 } else if (($source = @unserialize($newfile->get_source())) && isset($source->original)) {
847 // File has the 'original' - we need to update the file (it may even have not been changed at all).
848 $original = file_storage::unpack_reference($source->original);
849 if ($original['filename'] !== $oldfile->get_filename() || $original['filepath'] !== $oldfile->get_filepath()) {
850 // Very odd, original points to another file. Delete and create file.
851 $oldfile->delete();
852 continue;
854 } else {
855 // The same file name but absence of 'original' means that file was deteled and uploaded again.
856 // By deleting and creating new file we properly manage all existing references.
857 $oldfile->delete();
858 continue;
861 // status changed, we delete old file, and create a new one
862 if ($oldfile->get_status() != $newfile->get_status()) {
863 // file was changed, use updated with new timemodified data
864 $oldfile->delete();
865 // This file will be added later
866 continue;
869 // Updated author
870 if ($oldfile->get_author() != $newfile->get_author()) {
871 $oldfile->set_author($newfile->get_author());
873 // Updated license
874 if ($oldfile->get_license() != $newfile->get_license()) {
875 $oldfile->set_license($newfile->get_license());
878 // Updated file source
879 // Field files.source for draftarea files contains serialised object with source and original information.
880 // We only store the source part of it for non-draft file area.
881 $newsource = $newfile->get_source();
882 if ($source = @unserialize($newfile->get_source())) {
883 $newsource = $source->source;
885 if ($oldfile->get_source() !== $newsource) {
886 $oldfile->set_source($newsource);
889 // Updated sort order
890 if ($oldfile->get_sortorder() != $newfile->get_sortorder()) {
891 $oldfile->set_sortorder($newfile->get_sortorder());
894 // Update file timemodified
895 if ($oldfile->get_timemodified() != $newfile->get_timemodified()) {
896 $oldfile->set_timemodified($newfile->get_timemodified());
899 // Replaced file content
900 if (!$oldfile->is_directory() &&
901 ($oldfile->get_contenthash() != $newfile->get_contenthash() ||
902 $oldfile->get_filesize() != $newfile->get_filesize() ||
903 $oldfile->get_referencefileid() != $newfile->get_referencefileid() ||
904 $oldfile->get_userid() != $newfile->get_userid())) {
905 $oldfile->replace_file_with($newfile);
906 // push changes to all local files that are referencing this file
907 $fs->update_references_to_storedfile($oldfile);
910 // unchanged file or directory - we keep it as is
911 unset($newhashes[$oldhash]);
914 // Add fresh file or the file which has changed status
915 // the size and subdirectory tests are extra safety only, the UI should prevent it
916 foreach ($newhashes as $file) {
917 $file_record = array('contextid'=>$contextid, 'component'=>$component, 'filearea'=>$filearea, 'itemid'=>$itemid, 'timemodified'=>time());
918 if ($source = @unserialize($file->get_source())) {
919 // Field files.source for draftarea files contains serialised object with source and original information.
920 // We only store the source part of it for non-draft file area.
921 $file_record['source'] = $source->source;
924 if ($file->is_external_file()) {
925 $repoid = $file->get_repository_id();
926 if (!empty($repoid)) {
927 $file_record['repositoryid'] = $repoid;
928 $file_record['reference'] = $file->get_reference();
932 $fs->create_file_from_storedfile($file_record, $file);
936 // note: do not purge the draft area - we clean up areas later in cron,
937 // the reason is that user might press submit twice and they would loose the files,
938 // also sometimes we might want to use hacks that save files into two different areas
940 if (is_null($text)) {
941 return null;
942 } else {
943 return file_rewrite_urls_to_pluginfile($text, $draftitemid, $forcehttps);
948 * Convert the draft file area URLs in some content to @@PLUGINFILE@@ tokens
949 * ready to be saved in the database. Normally, this is done automatically by
950 * {@link file_save_draft_area_files()}.
952 * @category files
953 * @param string $text the content to process.
954 * @param int $draftitemid the draft file area the content was using.
955 * @param bool $forcehttps whether the content contains https URLs. Default false.
956 * @return string the processed content.
958 function file_rewrite_urls_to_pluginfile($text, $draftitemid, $forcehttps = false) {
959 global $CFG, $USER;
961 $usercontext = context_user::instance($USER->id);
963 $wwwroot = $CFG->wwwroot;
964 if ($forcehttps) {
965 $wwwroot = str_replace('http://', 'https://', $wwwroot);
968 // relink embedded files if text submitted - no absolute links allowed in database!
969 $text = str_ireplace("$wwwroot/draftfile.php/$usercontext->id/user/draft/$draftitemid/", '@@PLUGINFILE@@/', $text);
971 if (strpos($text, 'draftfile.php?file=') !== false) {
972 $matches = array();
973 preg_match_all("!$wwwroot/draftfile.php\?file=%2F{$usercontext->id}%2Fuser%2Fdraft%2F{$draftitemid}%2F[^'\",&<>|`\s:\\\\]+!iu", $text, $matches);
974 if ($matches) {
975 foreach ($matches[0] as $match) {
976 $replace = str_ireplace('%2F', '/', $match);
977 $text = str_replace($match, $replace, $text);
980 $text = str_ireplace("$wwwroot/draftfile.php?file=/$usercontext->id/user/draft/$draftitemid/", '@@PLUGINFILE@@/', $text);
983 return $text;
987 * Set file sort order
989 * @global moodle_database $DB
990 * @param int $contextid the context id
991 * @param string $component file component
992 * @param string $filearea file area.
993 * @param int $itemid itemid.
994 * @param string $filepath file path.
995 * @param string $filename file name.
996 * @param int $sortorder the sort order of file.
997 * @return bool
999 function file_set_sortorder($contextid, $component, $filearea, $itemid, $filepath, $filename, $sortorder) {
1000 global $DB;
1001 $conditions = array('contextid'=>$contextid, 'component'=>$component, 'filearea'=>$filearea, 'itemid'=>$itemid, 'filepath'=>$filepath, 'filename'=>$filename);
1002 if ($file_record = $DB->get_record('files', $conditions)) {
1003 $sortorder = (int)$sortorder;
1004 $file_record->sortorder = $sortorder;
1005 $DB->update_record('files', $file_record);
1006 return true;
1008 return false;
1012 * reset file sort order number to 0
1013 * @global moodle_database $DB
1014 * @param int $contextid the context id
1015 * @param string $component
1016 * @param string $filearea file area.
1017 * @param int|bool $itemid itemid.
1018 * @return bool
1020 function file_reset_sortorder($contextid, $component, $filearea, $itemid=false) {
1021 global $DB;
1023 $conditions = array('contextid'=>$contextid, 'component'=>$component, 'filearea'=>$filearea);
1024 if ($itemid !== false) {
1025 $conditions['itemid'] = $itemid;
1028 $file_records = $DB->get_records('files', $conditions);
1029 foreach ($file_records as $file_record) {
1030 $file_record->sortorder = 0;
1031 $DB->update_record('files', $file_record);
1033 return true;
1037 * Returns description of upload error
1039 * @param int $errorcode found in $_FILES['filename.ext']['error']
1040 * @return string error description string, '' if ok
1042 function file_get_upload_error($errorcode) {
1044 switch ($errorcode) {
1045 case 0: // UPLOAD_ERR_OK - no error
1046 $errmessage = '';
1047 break;
1049 case 1: // UPLOAD_ERR_INI_SIZE
1050 $errmessage = get_string('uploadserverlimit');
1051 break;
1053 case 2: // UPLOAD_ERR_FORM_SIZE
1054 $errmessage = get_string('uploadformlimit');
1055 break;
1057 case 3: // UPLOAD_ERR_PARTIAL
1058 $errmessage = get_string('uploadpartialfile');
1059 break;
1061 case 4: // UPLOAD_ERR_NO_FILE
1062 $errmessage = get_string('uploadnofilefound');
1063 break;
1065 // Note: there is no error with a value of 5
1067 case 6: // UPLOAD_ERR_NO_TMP_DIR
1068 $errmessage = get_string('uploadnotempdir');
1069 break;
1071 case 7: // UPLOAD_ERR_CANT_WRITE
1072 $errmessage = get_string('uploadcantwrite');
1073 break;
1075 case 8: // UPLOAD_ERR_EXTENSION
1076 $errmessage = get_string('uploadextension');
1077 break;
1079 default:
1080 $errmessage = get_string('uploadproblem');
1083 return $errmessage;
1087 * Recursive function formating an array in POST parameter
1088 * @param array $arraydata - the array that we are going to format and add into &$data array
1089 * @param string $currentdata - a row of the final postdata array at instant T
1090 * when finish, it's assign to $data under this format: name[keyname][][]...[]='value'
1091 * @param array $data - the final data array containing all POST parameters : 1 row = 1 parameter
1093 function format_array_postdata_for_curlcall($arraydata, $currentdata, &$data) {
1094 foreach ($arraydata as $k=>$v) {
1095 $newcurrentdata = $currentdata;
1096 if (is_array($v)) { //the value is an array, call the function recursively
1097 $newcurrentdata = $newcurrentdata.'['.urlencode($k).']';
1098 format_array_postdata_for_curlcall($v, $newcurrentdata, $data);
1099 } else { //add the POST parameter to the $data array
1100 $data[] = $newcurrentdata.'['.urlencode($k).']='.urlencode($v);
1106 * Transform a PHP array into POST parameter
1107 * (see the recursive function format_array_postdata_for_curlcall)
1108 * @param array $postdata
1109 * @return array containing all POST parameters (1 row = 1 POST parameter)
1111 function format_postdata_for_curlcall($postdata) {
1112 $data = array();
1113 foreach ($postdata as $k=>$v) {
1114 if (is_array($v)) {
1115 $currentdata = urlencode($k);
1116 format_array_postdata_for_curlcall($v, $currentdata, $data);
1117 } else {
1118 $data[] = urlencode($k).'='.urlencode($v);
1121 $convertedpostdata = implode('&', $data);
1122 return $convertedpostdata;
1126 * Fetches content of file from Internet (using proxy if defined). Uses cURL extension if present.
1127 * Due to security concerns only downloads from http(s) sources are supported.
1129 * @todo MDL-31073 add version test for '7.10.5'
1130 * @category files
1131 * @param string $url file url starting with http(s)://
1132 * @param array $headers http headers, null if none. If set, should be an
1133 * associative array of header name => value pairs.
1134 * @param array $postdata array means use POST request with given parameters
1135 * @param bool $fullresponse return headers, responses, etc in a similar way snoopy does
1136 * (if false, just returns content)
1137 * @param int $timeout timeout for complete download process including all file transfer
1138 * (default 5 minutes)
1139 * @param int $connecttimeout timeout for connection to server; this is the timeout that
1140 * usually happens if the remote server is completely down (default 20 seconds);
1141 * may not work when using proxy
1142 * @param bool $skipcertverify If true, the peer's SSL certificate will not be checked.
1143 * Only use this when already in a trusted location.
1144 * @param string $tofile store the downloaded content to file instead of returning it.
1145 * @param bool $calctimeout false by default, true enables an extra head request to try and determine
1146 * filesize and appropriately larger timeout based on $CFG->curltimeoutkbitrate
1147 * @return mixed false if request failed or content of the file as string if ok. True if file downloaded into $tofile successfully.
1149 function download_file_content($url, $headers=null, $postdata=null, $fullresponse=false, $timeout=300, $connecttimeout=20, $skipcertverify=false, $tofile=NULL, $calctimeout=false) {
1150 global $CFG;
1152 // some extra security
1153 $newlines = array("\r", "\n");
1154 if (is_array($headers) ) {
1155 foreach ($headers as $key => $value) {
1156 $headers[$key] = str_replace($newlines, '', $value);
1159 $url = str_replace($newlines, '', $url);
1160 if (!preg_match('|^https?://|i', $url)) {
1161 if ($fullresponse) {
1162 $response = new stdClass();
1163 $response->status = 0;
1164 $response->headers = array();
1165 $response->response_code = 'Invalid protocol specified in url';
1166 $response->results = '';
1167 $response->error = 'Invalid protocol specified in url';
1168 return $response;
1169 } else {
1170 return false;
1174 // check if proxy (if used) should be bypassed for this url
1175 $proxybypass = is_proxybypass($url);
1177 if (!$ch = curl_init($url)) {
1178 debugging('Can not init curl.');
1179 return false;
1182 // set extra headers
1183 if (is_array($headers) ) {
1184 $headers2 = array();
1185 foreach ($headers as $key => $value) {
1186 $headers2[] = "$key: $value";
1188 curl_setopt($ch, CURLOPT_HTTPHEADER, $headers2);
1191 if ($skipcertverify) {
1192 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
1195 // use POST if requested
1196 if (is_array($postdata)) {
1197 $postdata = format_postdata_for_curlcall($postdata);
1198 curl_setopt($ch, CURLOPT_POST, true);
1199 curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
1202 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
1203 curl_setopt($ch, CURLOPT_HEADER, false);
1204 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $connecttimeout);
1206 if ($cacert = curl::get_cacert()) {
1207 curl_setopt($ch, CURLOPT_CAINFO, $cacert);
1210 if (!ini_get('open_basedir') and !ini_get('safe_mode')) {
1211 // TODO: add version test for '7.10.5'
1212 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
1213 curl_setopt($ch, CURLOPT_MAXREDIRS, 5);
1216 if (!empty($CFG->proxyhost) and !$proxybypass) {
1217 // SOCKS supported in PHP5 only
1218 if (!empty($CFG->proxytype) and ($CFG->proxytype == 'SOCKS5')) {
1219 if (defined('CURLPROXY_SOCKS5')) {
1220 curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
1221 } else {
1222 curl_close($ch);
1223 if ($fullresponse) {
1224 $response = new stdClass();
1225 $response->status = '0';
1226 $response->headers = array();
1227 $response->response_code = 'SOCKS5 proxy is not supported in PHP4';
1228 $response->results = '';
1229 $response->error = 'SOCKS5 proxy is not supported in PHP4';
1230 return $response;
1231 } else {
1232 debugging("SOCKS5 proxy is not supported in PHP4.", DEBUG_ALL);
1233 return false;
1238 curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, false);
1240 if (empty($CFG->proxyport)) {
1241 curl_setopt($ch, CURLOPT_PROXY, $CFG->proxyhost);
1242 } else {
1243 curl_setopt($ch, CURLOPT_PROXY, $CFG->proxyhost.':'.$CFG->proxyport);
1246 if (!empty($CFG->proxyuser) and !empty($CFG->proxypassword)) {
1247 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $CFG->proxyuser.':'.$CFG->proxypassword);
1248 if (defined('CURLOPT_PROXYAUTH')) {
1249 // any proxy authentication if PHP 5.1
1250 curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_BASIC | CURLAUTH_NTLM);
1255 // set up header and content handlers
1256 $received = new stdClass();
1257 $received->headers = array(); // received headers array
1258 $received->tofile = $tofile;
1259 $received->fh = null;
1260 curl_setopt($ch, CURLOPT_HEADERFUNCTION, partial('download_file_content_header_handler', $received));
1261 if ($tofile) {
1262 curl_setopt($ch, CURLOPT_WRITEFUNCTION, partial('download_file_content_write_handler', $received));
1265 if (!isset($CFG->curltimeoutkbitrate)) {
1266 //use very slow rate of 56kbps as a timeout speed when not set
1267 $bitrate = 56;
1268 } else {
1269 $bitrate = $CFG->curltimeoutkbitrate;
1272 // try to calculate the proper amount for timeout from remote file size.
1273 // if disabled or zero, we won't do any checks nor head requests.
1274 if ($calctimeout && $bitrate > 0) {
1275 //setup header request only options
1276 curl_setopt_array ($ch, array(
1277 CURLOPT_RETURNTRANSFER => false,
1278 CURLOPT_NOBODY => true)
1281 curl_exec($ch);
1282 $info = curl_getinfo($ch);
1283 $err = curl_error($ch);
1285 if ($err === '' && $info['download_content_length'] > 0) { //no curl errors
1286 $timeout = max($timeout, ceil($info['download_content_length'] * 8 / ($bitrate * 1024))); //adjust for large files only - take max timeout.
1288 //reinstate affected curl options
1289 curl_setopt_array ($ch, array(
1290 CURLOPT_RETURNTRANSFER => true,
1291 CURLOPT_NOBODY => false,
1292 CURLOPT_HTTPGET => true)
1296 curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
1297 $result = curl_exec($ch);
1299 // try to detect encoding problems
1300 if ((curl_errno($ch) == 23 or curl_errno($ch) == 61) and defined('CURLOPT_ENCODING')) {
1301 curl_setopt($ch, CURLOPT_ENCODING, 'none');
1302 $result = curl_exec($ch);
1305 if ($received->fh) {
1306 fclose($received->fh);
1309 if (curl_errno($ch)) {
1310 $error = curl_error($ch);
1311 $error_no = curl_errno($ch);
1312 curl_close($ch);
1314 if ($fullresponse) {
1315 $response = new stdClass();
1316 if ($error_no == 28) {
1317 $response->status = '-100'; // mimic snoopy
1318 } else {
1319 $response->status = '0';
1321 $response->headers = array();
1322 $response->response_code = $error;
1323 $response->results = false;
1324 $response->error = $error;
1325 return $response;
1326 } else {
1327 debugging("cURL request for \"$url\" failed with: $error ($error_no)", DEBUG_ALL);
1328 return false;
1331 } else {
1332 $info = curl_getinfo($ch);
1333 curl_close($ch);
1335 if (empty($info['http_code'])) {
1336 // for security reasons we support only true http connections (Location: file:// exploit prevention)
1337 $response = new stdClass();
1338 $response->status = '0';
1339 $response->headers = array();
1340 $response->response_code = 'Unknown cURL error';
1341 $response->results = false; // do NOT change this, we really want to ignore the result!
1342 $response->error = 'Unknown cURL error';
1344 } else {
1345 $response = new stdClass();
1346 $response->status = (string)$info['http_code'];
1347 $response->headers = $received->headers;
1348 $response->response_code = $received->headers[0];
1349 $response->results = $result;
1350 $response->error = '';
1353 if ($fullresponse) {
1354 return $response;
1355 } else if ($info['http_code'] != 200) {
1356 debugging("cURL request for \"$url\" failed, HTTP response code: ".$response->response_code, DEBUG_ALL);
1357 return false;
1358 } else {
1359 return $response->results;
1365 * internal implementation
1366 * @param stdClass $received
1367 * @param resource $ch
1368 * @param mixed $header
1369 * @return int header length
1371 function download_file_content_header_handler($received, $ch, $header) {
1372 $received->headers[] = $header;
1373 return strlen($header);
1377 * internal implementation
1378 * @param stdClass $received
1379 * @param resource $ch
1380 * @param mixed $data
1382 function download_file_content_write_handler($received, $ch, $data) {
1383 if (!$received->fh) {
1384 $received->fh = fopen($received->tofile, 'w');
1385 if ($received->fh === false) {
1386 // bad luck, file creation or overriding failed
1387 return 0;
1390 if (fwrite($received->fh, $data) === false) {
1391 // bad luck, write failed, let's abort completely
1392 return 0;
1394 return strlen($data);
1398 * Returns a list of information about file types based on extensions.
1400 * The following elements expected in value array for each extension:
1401 * 'type' - mimetype
1402 * 'icon' - location of the icon file. If value is FILENAME, then either pix/f/FILENAME.gif
1403 * or pix/f/FILENAME.png must be present in moodle and contain 16x16 filetype icon;
1404 * also files with bigger sizes under names
1405 * FILENAME-24, FILENAME-32, FILENAME-64, FILENAME-128, FILENAME-256 are recommended.
1406 * 'groups' (optional) - array of filetype groups this filetype extension is part of;
1407 * commonly used in moodle the following groups:
1408 * - web_image - image that can be included as <img> in HTML
1409 * - image - image that we can parse using GD to find it's dimensions, also used for portfolio format
1410 * - video - file that can be imported as video in text editor
1411 * - audio - file that can be imported as audio in text editor
1412 * - archive - we can extract files from this archive
1413 * - spreadsheet - used for portfolio format
1414 * - document - used for portfolio format
1415 * - presentation - used for portfolio format
1416 * 'string' (optional) - the name of the string from lang/en/mimetypes.php that displays
1417 * human-readable description for this filetype;
1418 * Function {@link get_mimetype_description()} first looks at the presence of string for
1419 * particular mimetype (value of 'type'), if not found looks for string specified in 'string'
1420 * attribute, if not found returns the value of 'type';
1421 * 'defaulticon' (boolean, optional) - used by function {@link file_mimetype_icon()} to find
1422 * an icon for mimetype. If an entry with 'defaulticon' is not found for a particular mimetype,
1423 * this function will return first found icon; Especially usefull for types such as 'text/plain'
1425 * @category files
1426 * @return array List of information about file types based on extensions.
1427 * Associative array of extension (lower-case) to associative array
1428 * from 'element name' to data. Current element names are 'type' and 'icon'.
1429 * Unknown types should use the 'xxx' entry which includes defaults.
1431 function &get_mimetypes_array() {
1432 static $mimearray = array (
1433 'xxx' => array ('type'=>'document/unknown', 'icon'=>'unknown'),
1434 '3gp' => array ('type'=>'video/quicktime', 'icon'=>'quicktime', 'groups'=>array('video'), 'string'=>'video'),
1435 'aac' => array ('type'=>'audio/aac', 'icon'=>'audio', 'groups'=>array('audio'), 'string'=>'audio'),
1436 'accdb' => array ('type'=>'application/msaccess', 'icon'=>'base'),
1437 'ai' => array ('type'=>'application/postscript', 'icon'=>'eps', 'groups'=>array('image'), 'string'=>'image'),
1438 'aif' => array ('type'=>'audio/x-aiff', 'icon'=>'audio', 'groups'=>array('audio'), 'string'=>'audio'),
1439 'aiff' => array ('type'=>'audio/x-aiff', 'icon'=>'audio', 'groups'=>array('audio'), 'string'=>'audio'),
1440 'aifc' => array ('type'=>'audio/x-aiff', 'icon'=>'audio', 'groups'=>array('audio'), 'string'=>'audio'),
1441 'applescript' => array ('type'=>'text/plain', 'icon'=>'text'),
1442 'asc' => array ('type'=>'text/plain', 'icon'=>'sourcecode'),
1443 'asm' => array ('type'=>'text/plain', 'icon'=>'sourcecode'),
1444 'au' => array ('type'=>'audio/au', 'icon'=>'audio', 'groups'=>array('audio'), 'string'=>'audio'),
1445 'avi' => array ('type'=>'video/x-ms-wm', 'icon'=>'avi', 'groups'=>array('video','web_video'), 'string'=>'video'),
1446 'bmp' => array ('type'=>'image/bmp', 'icon'=>'bmp', 'groups'=>array('image'), 'string'=>'image'),
1447 'c' => array ('type'=>'text/plain', 'icon'=>'sourcecode'),
1448 'cct' => array ('type'=>'shockwave/director', 'icon'=>'flash'),
1449 'cpp' => array ('type'=>'text/plain', 'icon'=>'sourcecode'),
1450 'cs' => array ('type'=>'application/x-csh', 'icon'=>'sourcecode'),
1451 'css' => array ('type'=>'text/css', 'icon'=>'text', 'groups'=>array('web_file')),
1452 'csv' => array ('type'=>'text/csv', 'icon'=>'spreadsheet', 'groups'=>array('spreadsheet')),
1453 'dv' => array ('type'=>'video/x-dv', 'icon'=>'quicktime', 'groups'=>array('video'), 'string'=>'video'),
1454 'dmg' => array ('type'=>'application/octet-stream', 'icon'=>'unknown'),
1456 'doc' => array ('type'=>'application/msword', 'icon'=>'document', 'groups'=>array('document')),
1457 'docx' => array ('type'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'icon'=>'document', 'groups'=>array('document')),
1458 'docm' => array ('type'=>'application/vnd.ms-word.document.macroEnabled.12', 'icon'=>'document'),
1459 'dotx' => array ('type'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.template', 'icon'=>'document'),
1460 'dotm' => array ('type'=>'application/vnd.ms-word.template.macroEnabled.12', 'icon'=>'document'),
1462 'dcr' => array ('type'=>'application/x-director', 'icon'=>'flash'),
1463 'dif' => array ('type'=>'video/x-dv', 'icon'=>'quicktime', 'groups'=>array('video'), 'string'=>'video'),
1464 'dir' => array ('type'=>'application/x-director', 'icon'=>'flash'),
1465 'dxr' => array ('type'=>'application/x-director', 'icon'=>'flash'),
1466 'eps' => array ('type'=>'application/postscript', 'icon'=>'eps'),
1467 'epub' => array ('type'=>'application/epub+zip', 'icon'=>'epub', 'groups'=>array('document')),
1468 'fdf' => array ('type'=>'application/pdf', 'icon'=>'pdf'),
1469 'flv' => array ('type'=>'video/x-flv', 'icon'=>'flash', 'groups'=>array('video','web_video'), 'string'=>'video'),
1470 'f4v' => array ('type'=>'video/mp4', 'icon'=>'flash', 'groups'=>array('video','web_video'), 'string'=>'video'),
1472 'gallery' => array ('type'=>'application/x-smarttech-notebook', 'icon'=>'archive'),
1473 'galleryitem' => array ('type'=>'application/x-smarttech-notebook', 'icon'=>'archive'),
1474 'gallerycollection' => array ('type'=>'application/x-smarttech-notebook', 'icon'=>'archive'),
1475 'gif' => array ('type'=>'image/gif', 'icon'=>'gif', 'groups'=>array('image', 'web_image'), 'string'=>'image'),
1476 'gtar' => array ('type'=>'application/x-gtar', 'icon'=>'archive', 'groups'=>array('archive'), 'string'=>'archive'),
1477 'tgz' => array ('type'=>'application/g-zip', 'icon'=>'archive', 'groups'=>array('archive'), 'string'=>'archive'),
1478 'gz' => array ('type'=>'application/g-zip', 'icon'=>'archive', 'groups'=>array('archive'), 'string'=>'archive'),
1479 'gzip' => array ('type'=>'application/g-zip', 'icon'=>'archive', 'groups'=>array('archive'), 'string'=>'archive'),
1480 'h' => array ('type'=>'text/plain', 'icon'=>'sourcecode'),
1481 'hpp' => array ('type'=>'text/plain', 'icon'=>'sourcecode'),
1482 'hqx' => array ('type'=>'application/mac-binhex40', 'icon'=>'archive', 'groups'=>array('archive'), 'string'=>'archive'),
1483 'htc' => array ('type'=>'text/x-component', 'icon'=>'markup'),
1484 'html' => array ('type'=>'text/html', 'icon'=>'html', 'groups'=>array('web_file')),
1485 'xhtml'=> array ('type'=>'application/xhtml+xml', 'icon'=>'html', 'groups'=>array('web_file')),
1486 'htm' => array ('type'=>'text/html', 'icon'=>'html', 'groups'=>array('web_file')),
1487 'ico' => array ('type'=>'image/vnd.microsoft.icon', 'icon'=>'image', 'groups'=>array('image'), 'string'=>'image'),
1488 'ics' => array ('type'=>'text/calendar', 'icon'=>'text'),
1489 'isf' => array ('type'=>'application/inspiration', 'icon'=>'isf'),
1490 'ist' => array ('type'=>'application/inspiration.template', 'icon'=>'isf'),
1491 'java' => array ('type'=>'text/plain', 'icon'=>'sourcecode'),
1492 'jar' => array ('type'=>'application/java-archive', 'icon' => 'archive'),
1493 'jcb' => array ('type'=>'text/xml', 'icon'=>'markup'),
1494 'jcl' => array ('type'=>'text/xml', 'icon'=>'markup'),
1495 'jcw' => array ('type'=>'text/xml', 'icon'=>'markup'),
1496 'jmt' => array ('type'=>'text/xml', 'icon'=>'markup'),
1497 'jmx' => array ('type'=>'text/xml', 'icon'=>'markup'),
1498 'jpe' => array ('type'=>'image/jpeg', 'icon'=>'jpeg', 'groups'=>array('image', 'web_image'), 'string'=>'image'),
1499 'jpeg' => array ('type'=>'image/jpeg', 'icon'=>'jpeg', 'groups'=>array('image', 'web_image'), 'string'=>'image'),
1500 'jpg' => array ('type'=>'image/jpeg', 'icon'=>'jpeg', 'groups'=>array('image', 'web_image'), 'string'=>'image'),
1501 'jqz' => array ('type'=>'text/xml', 'icon'=>'markup'),
1502 'js' => array ('type'=>'application/x-javascript', 'icon'=>'text', 'groups'=>array('web_file')),
1503 'latex'=> array ('type'=>'application/x-latex', 'icon'=>'text'),
1504 'm' => array ('type'=>'text/plain', 'icon'=>'sourcecode'),
1505 'mbz' => array ('type'=>'application/vnd.moodle.backup', 'icon'=>'moodle'),
1506 'mdb' => array ('type'=>'application/x-msaccess', 'icon'=>'base'),
1507 'mht' => array ('type'=>'message/rfc822', 'icon'=>'archive'),
1508 'mhtml'=> array ('type'=>'message/rfc822', 'icon'=>'archive'),
1509 'mov' => array ('type'=>'video/quicktime', 'icon'=>'quicktime', 'groups'=>array('video','web_video'), 'string'=>'video'),
1510 'movie'=> array ('type'=>'video/x-sgi-movie', 'icon'=>'quicktime', 'groups'=>array('video'), 'string'=>'video'),
1511 'm3u' => array ('type'=>'audio/x-mpegurl', 'icon'=>'mp3', 'groups'=>array('audio'), 'string'=>'audio'),
1512 'mp3' => array ('type'=>'audio/mp3', 'icon'=>'mp3', 'groups'=>array('audio','web_audio'), 'string'=>'audio'),
1513 'mp4' => array ('type'=>'video/mp4', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
1514 'm4v' => array ('type'=>'video/mp4', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
1515 'm4a' => array ('type'=>'audio/mp4', 'icon'=>'mp3', 'groups'=>array('audio'), 'string'=>'audio'),
1516 'mpeg' => array ('type'=>'video/mpeg', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
1517 'mpe' => array ('type'=>'video/mpeg', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
1518 'mpg' => array ('type'=>'video/mpeg', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
1519 'mpr' => array ('type'=>'application/vnd.moodle.profiling', 'icon'=>'moodle'),
1521 'nbk' => array ('type'=>'application/x-smarttech-notebook', 'icon'=>'archive'),
1522 'notebook' => array ('type'=>'application/x-smarttech-notebook', 'icon'=>'archive'),
1524 'odt' => array ('type'=>'application/vnd.oasis.opendocument.text', 'icon'=>'writer', 'groups'=>array('document')),
1525 'ott' => array ('type'=>'application/vnd.oasis.opendocument.text-template', 'icon'=>'writer', 'groups'=>array('document')),
1526 'oth' => array ('type'=>'application/vnd.oasis.opendocument.text-web', 'icon'=>'oth', 'groups'=>array('document')),
1527 'odm' => array ('type'=>'application/vnd.oasis.opendocument.text-master', 'icon'=>'writer'),
1528 'odg' => array ('type'=>'application/vnd.oasis.opendocument.graphics', 'icon'=>'draw'),
1529 'otg' => array ('type'=>'application/vnd.oasis.opendocument.graphics-template', 'icon'=>'draw'),
1530 'odp' => array ('type'=>'application/vnd.oasis.opendocument.presentation', 'icon'=>'impress'),
1531 'otp' => array ('type'=>'application/vnd.oasis.opendocument.presentation-template', 'icon'=>'impress'),
1532 'ods' => array ('type'=>'application/vnd.oasis.opendocument.spreadsheet', 'icon'=>'calc', 'groups'=>array('spreadsheet')),
1533 'ots' => array ('type'=>'application/vnd.oasis.opendocument.spreadsheet-template', 'icon'=>'calc', 'groups'=>array('spreadsheet')),
1534 'odc' => array ('type'=>'application/vnd.oasis.opendocument.chart', 'icon'=>'chart'),
1535 'odf' => array ('type'=>'application/vnd.oasis.opendocument.formula', 'icon'=>'math'),
1536 'odb' => array ('type'=>'application/vnd.oasis.opendocument.database', 'icon'=>'base'),
1537 'odi' => array ('type'=>'application/vnd.oasis.opendocument.image', 'icon'=>'draw'),
1538 'oga' => array ('type'=>'audio/ogg', 'icon'=>'audio', 'groups'=>array('audio'), 'string'=>'audio'),
1539 'ogg' => array ('type'=>'audio/ogg', 'icon'=>'audio', 'groups'=>array('audio'), 'string'=>'audio'),
1540 'ogv' => array ('type'=>'video/ogg', 'icon'=>'video', 'groups'=>array('video'), 'string'=>'video'),
1542 'pct' => array ('type'=>'image/pict', 'icon'=>'image', 'groups'=>array('image'), 'string'=>'image'),
1543 'pdf' => array ('type'=>'application/pdf', 'icon'=>'pdf'),
1544 'php' => array ('type'=>'text/plain', 'icon'=>'sourcecode'),
1545 'pic' => array ('type'=>'image/pict', 'icon'=>'image', 'groups'=>array('image'), 'string'=>'image'),
1546 'pict' => array ('type'=>'image/pict', 'icon'=>'image', 'groups'=>array('image'), 'string'=>'image'),
1547 'png' => array ('type'=>'image/png', 'icon'=>'png', 'groups'=>array('image', 'web_image'), 'string'=>'image'),
1549 'pps' => array ('type'=>'application/vnd.ms-powerpoint', 'icon'=>'powerpoint', 'groups'=>array('presentation')),
1550 'ppt' => array ('type'=>'application/vnd.ms-powerpoint', 'icon'=>'powerpoint', 'groups'=>array('presentation')),
1551 'pptx' => array ('type'=>'application/vnd.openxmlformats-officedocument.presentationml.presentation', 'icon'=>'powerpoint'),
1552 'pptm' => array ('type'=>'application/vnd.ms-powerpoint.presentation.macroEnabled.12', 'icon'=>'powerpoint'),
1553 'potx' => array ('type'=>'application/vnd.openxmlformats-officedocument.presentationml.template', 'icon'=>'powerpoint'),
1554 'potm' => array ('type'=>'application/vnd.ms-powerpoint.template.macroEnabled.12', 'icon'=>'powerpoint'),
1555 'ppam' => array ('type'=>'application/vnd.ms-powerpoint.addin.macroEnabled.12', 'icon'=>'powerpoint'),
1556 'ppsx' => array ('type'=>'application/vnd.openxmlformats-officedocument.presentationml.slideshow', 'icon'=>'powerpoint'),
1557 'ppsm' => array ('type'=>'application/vnd.ms-powerpoint.slideshow.macroEnabled.12', 'icon'=>'powerpoint'),
1559 'ps' => array ('type'=>'application/postscript', 'icon'=>'pdf'),
1560 'qt' => array ('type'=>'video/quicktime', 'icon'=>'quicktime', 'groups'=>array('video','web_video'), 'string'=>'video'),
1561 'ra' => array ('type'=>'audio/x-realaudio-plugin', 'icon'=>'audio', 'groups'=>array('audio','web_audio'), 'string'=>'audio'),
1562 'ram' => array ('type'=>'audio/x-pn-realaudio-plugin', 'icon'=>'audio', 'groups'=>array('audio'), 'string'=>'audio'),
1563 'rhb' => array ('type'=>'text/xml', 'icon'=>'markup'),
1564 'rm' => array ('type'=>'audio/x-pn-realaudio-plugin', 'icon'=>'audio', 'groups'=>array('audio'), 'string'=>'audio'),
1565 'rmvb' => array ('type'=>'application/vnd.rn-realmedia-vbr', 'icon'=>'video', 'groups'=>array('video'), 'string'=>'video'),
1566 'rtf' => array ('type'=>'text/rtf', 'icon'=>'text', 'groups'=>array('document')),
1567 'rtx' => array ('type'=>'text/richtext', 'icon'=>'text'),
1568 'rv' => array ('type'=>'audio/x-pn-realaudio-plugin', 'icon'=>'audio', 'groups'=>array('video'), 'string'=>'video'),
1569 'sh' => array ('type'=>'application/x-sh', 'icon'=>'sourcecode'),
1570 'sit' => array ('type'=>'application/x-stuffit', 'icon'=>'archive', 'groups'=>array('archive'), 'string'=>'archive'),
1571 'smi' => array ('type'=>'application/smil', 'icon'=>'text'),
1572 'smil' => array ('type'=>'application/smil', 'icon'=>'text'),
1573 'sqt' => array ('type'=>'text/xml', 'icon'=>'markup'),
1574 'svg' => array ('type'=>'image/svg+xml', 'icon'=>'image', 'groups'=>array('image','web_image'), 'string'=>'image'),
1575 'svgz' => array ('type'=>'image/svg+xml', 'icon'=>'image', 'groups'=>array('image','web_image'), 'string'=>'image'),
1576 'swa' => array ('type'=>'application/x-director', 'icon'=>'flash'),
1577 'swf' => array ('type'=>'application/x-shockwave-flash', 'icon'=>'flash', 'groups'=>array('video','web_video')),
1578 'swfl' => array ('type'=>'application/x-shockwave-flash', 'icon'=>'flash', 'groups'=>array('video','web_video')),
1580 'sxw' => array ('type'=>'application/vnd.sun.xml.writer', 'icon'=>'writer'),
1581 'stw' => array ('type'=>'application/vnd.sun.xml.writer.template', 'icon'=>'writer'),
1582 'sxc' => array ('type'=>'application/vnd.sun.xml.calc', 'icon'=>'calc'),
1583 'stc' => array ('type'=>'application/vnd.sun.xml.calc.template', 'icon'=>'calc'),
1584 'sxd' => array ('type'=>'application/vnd.sun.xml.draw', 'icon'=>'draw'),
1585 'std' => array ('type'=>'application/vnd.sun.xml.draw.template', 'icon'=>'draw'),
1586 'sxi' => array ('type'=>'application/vnd.sun.xml.impress', 'icon'=>'impress'),
1587 'sti' => array ('type'=>'application/vnd.sun.xml.impress.template', 'icon'=>'impress'),
1588 'sxg' => array ('type'=>'application/vnd.sun.xml.writer.global', 'icon'=>'writer'),
1589 'sxm' => array ('type'=>'application/vnd.sun.xml.math', 'icon'=>'math'),
1591 'tar' => array ('type'=>'application/x-tar', 'icon'=>'archive', 'groups'=>array('archive'), 'string'=>'archive'),
1592 'tif' => array ('type'=>'image/tiff', 'icon'=>'tiff', 'groups'=>array('image'), 'string'=>'image'),
1593 'tiff' => array ('type'=>'image/tiff', 'icon'=>'tiff', 'groups'=>array('image'), 'string'=>'image'),
1594 'tex' => array ('type'=>'application/x-tex', 'icon'=>'text'),
1595 'texi' => array ('type'=>'application/x-texinfo', 'icon'=>'text'),
1596 'texinfo' => array ('type'=>'application/x-texinfo', 'icon'=>'text'),
1597 'tsv' => array ('type'=>'text/tab-separated-values', 'icon'=>'text'),
1598 'txt' => array ('type'=>'text/plain', 'icon'=>'text', 'defaulticon'=>true),
1599 'wav' => array ('type'=>'audio/wav', 'icon'=>'wav', 'groups'=>array('audio'), 'string'=>'audio'),
1600 'webm' => array ('type'=>'video/webm', 'icon'=>'video', 'groups'=>array('video'), 'string'=>'video'),
1601 'wmv' => array ('type'=>'video/x-ms-wmv', 'icon'=>'wmv', 'groups'=>array('video'), 'string'=>'video'),
1602 'asf' => array ('type'=>'video/x-ms-asf', 'icon'=>'wmv', 'groups'=>array('video'), 'string'=>'video'),
1604 'xbk' => array ('type'=>'application/x-smarttech-notebook', 'icon'=>'archive'),
1605 'xdp' => array ('type'=>'application/pdf', 'icon'=>'pdf'),
1606 'xfd' => array ('type'=>'application/pdf', 'icon'=>'pdf'),
1607 'xfdf' => array ('type'=>'application/pdf', 'icon'=>'pdf'),
1609 'xls' => array ('type'=>'application/vnd.ms-excel', 'icon'=>'spreadsheet', 'groups'=>array('spreadsheet')),
1610 'xlsx' => array ('type'=>'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'icon'=>'spreadsheet'),
1611 'xlsm' => array ('type'=>'application/vnd.ms-excel.sheet.macroEnabled.12', 'icon'=>'spreadsheet', 'groups'=>array('spreadsheet')),
1612 'xltx' => array ('type'=>'application/vnd.openxmlformats-officedocument.spreadsheetml.template', 'icon'=>'spreadsheet'),
1613 'xltm' => array ('type'=>'application/vnd.ms-excel.template.macroEnabled.12', 'icon'=>'spreadsheet'),
1614 'xlsb' => array ('type'=>'application/vnd.ms-excel.sheet.binary.macroEnabled.12', 'icon'=>'spreadsheet'),
1615 'xlam' => array ('type'=>'application/vnd.ms-excel.addin.macroEnabled.12', 'icon'=>'spreadsheet'),
1617 'xml' => array ('type'=>'application/xml', 'icon'=>'markup'),
1618 'xsl' => array ('type'=>'text/xml', 'icon'=>'markup'),
1620 'zip' => array ('type'=>'application/zip', 'icon'=>'archive', 'groups'=>array('archive'), 'string'=>'archive')
1622 return $mimearray;
1626 * Obtains information about a filetype based on its extension. Will
1627 * use a default if no information is present about that particular
1628 * extension.
1630 * @category files
1631 * @param string $element Desired information (usually 'icon'
1632 * for icon filename or 'type' for MIME type. Can also be
1633 * 'icon24', ...32, 48, 64, 72, 80, 96, 128, 256)
1634 * @param string $filename Filename we're looking up
1635 * @return string Requested piece of information from array
1637 function mimeinfo($element, $filename) {
1638 global $CFG;
1639 $mimeinfo = & get_mimetypes_array();
1640 static $iconpostfixes = array(256=>'-256', 128=>'-128', 96=>'-96', 80=>'-80', 72=>'-72', 64=>'-64', 48=>'-48', 32=>'-32', 24=>'-24', 16=>'');
1642 $filetype = strtolower(pathinfo($filename, PATHINFO_EXTENSION));
1643 if (empty($filetype)) {
1644 $filetype = 'xxx'; // file without extension
1646 if (preg_match('/^icon(\d*)$/', $element, $iconsizematch)) {
1647 $iconsize = max(array(16, (int)$iconsizematch[1]));
1648 $filenames = array($mimeinfo['xxx']['icon']);
1649 if ($filetype != 'xxx' && isset($mimeinfo[$filetype]['icon'])) {
1650 array_unshift($filenames, $mimeinfo[$filetype]['icon']);
1652 // find the file with the closest size, first search for specific icon then for default icon
1653 foreach ($filenames as $filename) {
1654 foreach ($iconpostfixes as $size => $postfix) {
1655 $fullname = $CFG->dirroot.'/pix/f/'.$filename.$postfix;
1656 if ($iconsize >= $size && (file_exists($fullname.'.png') || file_exists($fullname.'.gif'))) {
1657 return $filename.$postfix;
1661 } else if (isset($mimeinfo[$filetype][$element])) {
1662 return $mimeinfo[$filetype][$element];
1663 } else if (isset($mimeinfo['xxx'][$element])) {
1664 return $mimeinfo['xxx'][$element]; // By default
1665 } else {
1666 return null;
1671 * Obtains information about a filetype based on the MIME type rather than
1672 * the other way around.
1674 * @category files
1675 * @param string $element Desired information ('extension', 'icon', 'icon-24', etc.)
1676 * @param string $mimetype MIME type we're looking up
1677 * @return string Requested piece of information from array
1679 function mimeinfo_from_type($element, $mimetype) {
1680 /* array of cached mimetype->extension associations */
1681 static $cached = array();
1682 $mimeinfo = & get_mimetypes_array();
1684 if (!array_key_exists($mimetype, $cached)) {
1685 $cached[$mimetype] = null;
1686 foreach($mimeinfo as $filetype => $values) {
1687 if ($values['type'] == $mimetype) {
1688 if ($cached[$mimetype] === null) {
1689 $cached[$mimetype] = '.'.$filetype;
1691 if (!empty($values['defaulticon'])) {
1692 $cached[$mimetype] = '.'.$filetype;
1693 break;
1697 if (empty($cached[$mimetype])) {
1698 $cached[$mimetype] = '.xxx';
1701 if ($element === 'extension') {
1702 return $cached[$mimetype];
1703 } else {
1704 return mimeinfo($element, $cached[$mimetype]);
1709 * Return the relative icon path for a given file
1711 * Usage:
1712 * <code>
1713 * // $file - instance of stored_file or file_info
1714 * $icon = $OUTPUT->pix_url(file_file_icon($file))->out();
1715 * echo html_writer::empty_tag('img', array('src' => $icon, 'alt' => get_mimetype_description($file)));
1716 * </code>
1717 * or
1718 * <code>
1719 * echo $OUTPUT->pix_icon(file_file_icon($file), get_mimetype_description($file));
1720 * </code>
1722 * @param stored_file|file_info|stdClass|array $file (in case of object attributes $file->filename
1723 * and $file->mimetype are expected)
1724 * @param int $size The size of the icon. Defaults to 16 can also be 24, 32, 64, 128, 256
1725 * @return string
1727 function file_file_icon($file, $size = null) {
1728 if (!is_object($file)) {
1729 $file = (object)$file;
1731 if (isset($file->filename)) {
1732 $filename = $file->filename;
1733 } else if (method_exists($file, 'get_filename')) {
1734 $filename = $file->get_filename();
1735 } else if (method_exists($file, 'get_visible_name')) {
1736 $filename = $file->get_visible_name();
1737 } else {
1738 $filename = '';
1740 if (isset($file->mimetype)) {
1741 $mimetype = $file->mimetype;
1742 } else if (method_exists($file, 'get_mimetype')) {
1743 $mimetype = $file->get_mimetype();
1744 } else {
1745 $mimetype = '';
1747 $mimetypes = &get_mimetypes_array();
1748 if ($filename) {
1749 $extension = strtolower(pathinfo($filename, PATHINFO_EXTENSION));
1750 if ($extension && !empty($mimetypes[$extension])) {
1751 // if file name has known extension, return icon for this extension
1752 return file_extension_icon($filename, $size);
1755 return file_mimetype_icon($mimetype, $size);
1759 * Return the relative icon path for a folder image
1761 * Usage:
1762 * <code>
1763 * $icon = $OUTPUT->pix_url(file_folder_icon())->out();
1764 * echo html_writer::empty_tag('img', array('src' => $icon));
1765 * </code>
1766 * or
1767 * <code>
1768 * echo $OUTPUT->pix_icon(file_folder_icon(32));
1769 * </code>
1771 * @param int $iconsize The size of the icon. Defaults to 16 can also be 24, 32, 48, 64, 72, 80, 96, 128, 256
1772 * @return string
1774 function file_folder_icon($iconsize = null) {
1775 global $CFG;
1776 static $iconpostfixes = array(256=>'-256', 128=>'-128', 96=>'-96', 80=>'-80', 72=>'-72', 64=>'-64', 48=>'-48', 32=>'-32', 24=>'-24', 16=>'');
1777 static $cached = array();
1778 $iconsize = max(array(16, (int)$iconsize));
1779 if (!array_key_exists($iconsize, $cached)) {
1780 foreach ($iconpostfixes as $size => $postfix) {
1781 $fullname = $CFG->dirroot.'/pix/f/folder'.$postfix;
1782 if ($iconsize >= $size && (file_exists($fullname.'.png') || file_exists($fullname.'.gif'))) {
1783 $cached[$iconsize] = 'f/folder'.$postfix;
1784 break;
1788 return $cached[$iconsize];
1792 * Returns the relative icon path for a given mime type
1794 * This function should be used in conjunction with $OUTPUT->pix_url to produce
1795 * a return the full path to an icon.
1797 * <code>
1798 * $mimetype = 'image/jpg';
1799 * $icon = $OUTPUT->pix_url(file_mimetype_icon($mimetype))->out();
1800 * echo html_writer::empty_tag('img', array('src' => $icon, 'alt' => get_mimetype_description($mimetype)));
1801 * </code>
1803 * @category files
1804 * @todo MDL-31074 When an $OUTPUT->icon method is available this function should be altered
1805 * to conform with that.
1806 * @param string $mimetype The mimetype to fetch an icon for
1807 * @param int $size The size of the icon. Defaults to 16 can also be 24, 32, 64, 128, 256
1808 * @return string The relative path to the icon
1810 function file_mimetype_icon($mimetype, $size = NULL) {
1811 return 'f/'.mimeinfo_from_type('icon'.$size, $mimetype);
1815 * Returns the relative icon path for a given file name
1817 * This function should be used in conjunction with $OUTPUT->pix_url to produce
1818 * a return the full path to an icon.
1820 * <code>
1821 * $filename = '.jpg';
1822 * $icon = $OUTPUT->pix_url(file_extension_icon($filename))->out();
1823 * echo html_writer::empty_tag('img', array('src' => $icon, 'alt' => '...'));
1824 * </code>
1826 * @todo MDL-31074 When an $OUTPUT->icon method is available this function should be altered
1827 * to conform with that.
1828 * @todo MDL-31074 Implement $size
1829 * @category files
1830 * @param string $filename The filename to get the icon for
1831 * @param int $size The size of the icon. Defaults to 16 can also be 24, 32, 64, 128, 256
1832 * @return string
1834 function file_extension_icon($filename, $size = NULL) {
1835 return 'f/'.mimeinfo('icon'.$size, $filename);
1839 * Obtains descriptions for file types (e.g. 'Microsoft Word document') from the
1840 * mimetypes.php language file.
1842 * @param mixed $obj - instance of stored_file or file_info or array/stdClass with field
1843 * 'filename' and 'mimetype', or just a string with mimetype (though it is recommended to
1844 * have filename); In case of array/stdClass the field 'mimetype' is optional.
1845 * @param bool $capitalise If true, capitalises first character of result
1846 * @return string Text description
1848 function get_mimetype_description($obj, $capitalise=false) {
1849 $filename = $mimetype = '';
1850 if (is_object($obj) && method_exists($obj, 'get_filename') && method_exists($obj, 'get_mimetype')) {
1851 // this is an instance of stored_file
1852 $mimetype = $obj->get_mimetype();
1853 $filename = $obj->get_filename();
1854 } else if (is_object($obj) && method_exists($obj, 'get_visible_name') && method_exists($obj, 'get_mimetype')) {
1855 // this is an instance of file_info
1856 $mimetype = $obj->get_mimetype();
1857 $filename = $obj->get_visible_name();
1858 } else if (is_array($obj) || is_object ($obj)) {
1859 $obj = (array)$obj;
1860 if (!empty($obj['filename'])) {
1861 $filename = $obj['filename'];
1863 if (!empty($obj['mimetype'])) {
1864 $mimetype = $obj['mimetype'];
1866 } else {
1867 $mimetype = $obj;
1869 $mimetypefromext = mimeinfo('type', $filename);
1870 if (empty($mimetype) || $mimetypefromext !== 'document/unknown') {
1871 // if file has a known extension, overwrite the specified mimetype
1872 $mimetype = $mimetypefromext;
1874 $extension = strtolower(pathinfo($filename, PATHINFO_EXTENSION));
1875 if (empty($extension)) {
1876 $mimetypestr = mimeinfo_from_type('string', $mimetype);
1877 $extension = str_replace('.', '', mimeinfo_from_type('extension', $mimetype));
1878 } else {
1879 $mimetypestr = mimeinfo('string', $filename);
1881 $chunks = explode('/', $mimetype, 2);
1882 $chunks[] = '';
1883 $attr = array(
1884 'mimetype' => $mimetype,
1885 'ext' => $extension,
1886 'mimetype1' => $chunks[0],
1887 'mimetype2' => $chunks[1],
1889 $a = array();
1890 foreach ($attr as $key => $value) {
1891 $a[$key] = $value;
1892 $a[strtoupper($key)] = strtoupper($value);
1893 $a[ucfirst($key)] = ucfirst($value);
1896 // MIME types may include + symbol but this is not permitted in string ids.
1897 $safemimetype = str_replace('+', '_', $mimetype);
1898 $safemimetypestr = str_replace('+', '_', $mimetypestr);
1899 if (get_string_manager()->string_exists($safemimetype, 'mimetypes')) {
1900 $result = get_string($safemimetype, 'mimetypes', (object)$a);
1901 } else if (get_string_manager()->string_exists($safemimetypestr, 'mimetypes')) {
1902 $result = get_string($safemimetypestr, 'mimetypes', (object)$a);
1903 } else if (get_string_manager()->string_exists('default', 'mimetypes')) {
1904 $result = get_string('default', 'mimetypes', (object)$a);
1905 } else {
1906 $result = $mimetype;
1908 if ($capitalise) {
1909 $result=ucfirst($result);
1911 return $result;
1915 * Returns array of elements of type $element in type group(s)
1917 * @param string $element name of the element we are interested in, usually 'type' or 'extension'
1918 * @param string|array $groups one group or array of groups/extensions/mimetypes
1919 * @return array
1921 function file_get_typegroup($element, $groups) {
1922 static $cached = array();
1923 if (!is_array($groups)) {
1924 $groups = array($groups);
1926 if (!array_key_exists($element, $cached)) {
1927 $cached[$element] = array();
1929 $result = array();
1930 foreach ($groups as $group) {
1931 if (!array_key_exists($group, $cached[$element])) {
1932 // retrieive and cache all elements of type $element for group $group
1933 $mimeinfo = & get_mimetypes_array();
1934 $cached[$element][$group] = array();
1935 foreach ($mimeinfo as $extension => $value) {
1936 $value['extension'] = '.'.$extension;
1937 if (empty($value[$element])) {
1938 continue;
1940 if (($group === '.'.$extension || $group === $value['type'] ||
1941 (!empty($value['groups']) && in_array($group, $value['groups']))) &&
1942 !in_array($value[$element], $cached[$element][$group])) {
1943 $cached[$element][$group][] = $value[$element];
1947 $result = array_merge($result, $cached[$element][$group]);
1949 return array_values(array_unique($result));
1953 * Checks if file with name $filename has one of the extensions in groups $groups
1955 * @see get_mimetypes_array()
1956 * @param string $filename name of the file to check
1957 * @param string|array $groups one group or array of groups to check
1958 * @param bool $checktype if true and extension check fails, find the mimetype and check if
1959 * file mimetype is in mimetypes in groups $groups
1960 * @return bool
1962 function file_extension_in_typegroup($filename, $groups, $checktype = false) {
1963 $extension = pathinfo($filename, PATHINFO_EXTENSION);
1964 if (!empty($extension) && in_array('.'.strtolower($extension), file_get_typegroup('extension', $groups))) {
1965 return true;
1967 return $checktype && file_mimetype_in_typegroup(mimeinfo('type', $filename), $groups);
1971 * Checks if mimetype $mimetype belongs to one of the groups $groups
1973 * @see get_mimetypes_array()
1974 * @param string $mimetype
1975 * @param string|array $groups one group or array of groups to check
1976 * @return bool
1978 function file_mimetype_in_typegroup($mimetype, $groups) {
1979 return !empty($mimetype) && in_array($mimetype, file_get_typegroup('type', $groups));
1983 * Requested file is not found or not accessible, does not return, terminates script
1985 * @global stdClass $CFG
1986 * @global stdClass $COURSE
1988 function send_file_not_found() {
1989 global $CFG, $COURSE;
1990 send_header_404();
1991 print_error('filenotfound', 'error', $CFG->wwwroot.'/course/view.php?id='.$COURSE->id); //this is not displayed on IIS??
1994 * Helper function to send correct 404 for server.
1996 function send_header_404() {
1997 if (substr(php_sapi_name(), 0, 3) == 'cgi') {
1998 header("Status: 404 Not Found");
1999 } else {
2000 header('HTTP/1.0 404 not found');
2005 * Enhanced readfile() with optional acceleration.
2006 * @param string|stored_file $file
2007 * @param string $mimetype
2008 * @param bool $accelerate
2009 * @return void
2011 function readfile_accel($file, $mimetype, $accelerate) {
2012 global $CFG;
2014 if ($mimetype === 'text/plain') {
2015 // there is no encoding specified in text files, we need something consistent
2016 header('Content-Type: text/plain; charset=utf-8');
2017 } else {
2018 header('Content-Type: '.$mimetype);
2021 $lastmodified = is_object($file) ? $file->get_timemodified() : filemtime($file);
2022 header('Last-Modified: '. gmdate('D, d M Y H:i:s', $lastmodified) .' GMT');
2024 if (is_object($file)) {
2025 if (empty($_SERVER['HTTP_RANGE'])) {
2026 // Use Etag only when not byteserving,
2027 // is it tag of this range or whole file?
2028 header('Etag: ' . $file->get_contenthash());
2030 if (isset($_SERVER['HTTP_IF_NONE_MATCH']) and $_SERVER['HTTP_IF_NONE_MATCH'] === $file->get_contenthash()) {
2031 header('HTTP/1.1 304 Not Modified');
2032 return;
2036 // if etag present for stored file rely on it exclusively
2037 if (!empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) and (empty($_SERVER['HTTP_IF_NONE_MATCH']) or !is_object($file))) {
2038 // get unixtime of request header; clip extra junk off first
2039 $since = strtotime(preg_replace('/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"]));
2040 if ($since && $since >= $lastmodified) {
2041 header('HTTP/1.1 304 Not Modified');
2042 return;
2046 if ($accelerate and !empty($CFG->xsendfile)) {
2047 if (empty($CFG->disablebyteserving) and $mimetype !== 'text/plain') {
2048 header('Accept-Ranges: bytes');
2049 } else {
2050 header('Accept-Ranges: none');
2053 if (is_object($file)) {
2054 $fs = get_file_storage();
2055 if ($fs->xsendfile($file->get_contenthash())) {
2056 return;
2059 } else {
2060 require_once("$CFG->libdir/xsendfilelib.php");
2061 if (xsendfile($file)) {
2062 return;
2067 $filesize = is_object($file) ? $file->get_filesize() : filesize($file);
2069 header('Last-Modified: '. gmdate('D, d M Y H:i:s', $lastmodified) .' GMT');
2071 if ($accelerate and empty($CFG->disablebyteserving) and $mimetype !== 'text/plain') {
2072 header('Accept-Ranges: bytes');
2074 if (!empty($_SERVER['HTTP_RANGE']) and strpos($_SERVER['HTTP_RANGE'],'bytes=') !== FALSE) {
2075 // byteserving stuff - for acrobat reader and download accelerators
2076 // see: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35
2077 // inspired by: http://www.coneural.org/florian/papers/04_byteserving.php
2078 $ranges = false;
2079 if (preg_match_all('/(\d*)-(\d*)/', $_SERVER['HTTP_RANGE'], $ranges, PREG_SET_ORDER)) {
2080 foreach ($ranges as $key=>$value) {
2081 if ($ranges[$key][1] == '') {
2082 //suffix case
2083 $ranges[$key][1] = $filesize - $ranges[$key][2];
2084 $ranges[$key][2] = $filesize - 1;
2085 } else if ($ranges[$key][2] == '' || $ranges[$key][2] > $filesize - 1) {
2086 //fix range length
2087 $ranges[$key][2] = $filesize - 1;
2089 if ($ranges[$key][2] != '' && $ranges[$key][2] < $ranges[$key][1]) {
2090 //invalid byte-range ==> ignore header
2091 $ranges = false;
2092 break;
2094 //prepare multipart header
2095 $ranges[$key][0] = "\r\n--".BYTESERVING_BOUNDARY."\r\nContent-Type: $mimetype\r\n";
2096 $ranges[$key][0] .= "Content-Range: bytes {$ranges[$key][1]}-{$ranges[$key][2]}/$filesize\r\n\r\n";
2098 } else {
2099 $ranges = false;
2101 if ($ranges) {
2102 if (is_object($file)) {
2103 $handle = $file->get_content_file_handle();
2104 } else {
2105 $handle = fopen($file, 'rb');
2107 byteserving_send_file($handle, $mimetype, $ranges, $filesize);
2110 } else {
2111 // Do not byteserve
2112 header('Accept-Ranges: none');
2115 header('Content-Length: '.$filesize);
2117 if ($filesize > 10000000) {
2118 // for large files try to flush and close all buffers to conserve memory
2119 while(@ob_get_level()) {
2120 if (!@ob_end_flush()) {
2121 break;
2126 // send the whole file content
2127 if (is_object($file)) {
2128 $file->readfile();
2129 } else {
2130 readfile($file);
2135 * Similar to readfile_accel() but designed for strings.
2136 * @param string $string
2137 * @param string $mimetype
2138 * @param bool $accelerate
2139 * @return void
2141 function readstring_accel($string, $mimetype, $accelerate) {
2142 global $CFG;
2144 if ($mimetype === 'text/plain') {
2145 // there is no encoding specified in text files, we need something consistent
2146 header('Content-Type: text/plain; charset=utf-8');
2147 } else {
2148 header('Content-Type: '.$mimetype);
2150 header('Last-Modified: '. gmdate('D, d M Y H:i:s', time()) .' GMT');
2151 header('Accept-Ranges: none');
2153 if ($accelerate and !empty($CFG->xsendfile)) {
2154 $fs = get_file_storage();
2155 if ($fs->xsendfile(sha1($string))) {
2156 return;
2160 header('Content-Length: '.strlen($string));
2161 echo $string;
2165 * Handles the sending of temporary file to user, download is forced.
2166 * File is deleted after abort or successful sending, does not return, script terminated
2168 * @param string $path path to file, preferably from moodledata/temp/something; or content of file itself
2169 * @param string $filename proposed file name when saving file
2170 * @param bool $pathisstring If the path is string
2172 function send_temp_file($path, $filename, $pathisstring=false) {
2173 global $CFG;
2175 if (check_browser_version('Firefox', '1.5')) {
2176 // only FF is known to correctly save to disk before opening...
2177 $mimetype = mimeinfo('type', $filename);
2178 } else {
2179 $mimetype = 'application/x-forcedownload';
2182 // close session - not needed anymore
2183 session_get_instance()->write_close();
2185 if (!$pathisstring) {
2186 if (!file_exists($path)) {
2187 send_header_404();
2188 print_error('filenotfound', 'error', $CFG->wwwroot.'/');
2190 // executed after normal finish or abort
2191 @register_shutdown_function('send_temp_file_finished', $path);
2194 // if user is using IE, urlencode the filename so that multibyte file name will show up correctly on popup
2195 if (check_browser_version('MSIE')) {
2196 $filename = urlencode($filename);
2199 header('Content-Disposition: attachment; filename="'.$filename.'"');
2200 if (strpos($CFG->wwwroot, 'https://') === 0) { //https sites - watch out for IE! KB812935 and KB316431
2201 header('Cache-Control: max-age=10');
2202 header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
2203 header('Pragma: ');
2204 } else { //normal http - prevent caching at all cost
2205 header('Cache-Control: private, must-revalidate, pre-check=0, post-check=0, max-age=0');
2206 header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
2207 header('Pragma: no-cache');
2210 // send the contents - we can not accelerate this because the file will be deleted asap
2211 if ($pathisstring) {
2212 readstring_accel($path, $mimetype, false);
2213 } else {
2214 readfile_accel($path, $mimetype, false);
2215 @unlink($path);
2218 die; //no more chars to output
2222 * Internal callback function used by send_temp_file()
2224 * @param string $path
2226 function send_temp_file_finished($path) {
2227 if (file_exists($path)) {
2228 @unlink($path);
2233 * Handles the sending of file data to the user's browser, including support for
2234 * byteranges etc.
2236 * @category files
2237 * @param string $path Path of file on disk (including real filename), or actual content of file as string
2238 * @param string $filename Filename to send
2239 * @param int $lifetime Number of seconds before the file should expire from caches (default 24 hours)
2240 * @param int $filter 0 (default)=no filtering, 1=all files, 2=html files only
2241 * @param bool $pathisstring If true (default false), $path is the content to send and not the pathname
2242 * @param bool $forcedownload If true (default false), forces download of file rather than view in browser/plugin
2243 * @param string $mimetype Include to specify the MIME type; leave blank to have it guess the type from $filename
2244 * @param bool $dontdie - return control to caller afterwards. this is not recommended and only used for cleanup tasks.
2245 * if this is passed as true, ignore_user_abort is called. if you don't want your processing to continue on cancel,
2246 * you must detect this case when control is returned using connection_aborted. Please not that session is closed
2247 * and should not be reopened.
2248 * @return null script execution stopped unless $dontdie is true
2250 function send_file($path, $filename, $lifetime = 'default' , $filter=0, $pathisstring=false, $forcedownload=false, $mimetype='', $dontdie=false) {
2251 global $CFG, $COURSE;
2253 if ($dontdie) {
2254 ignore_user_abort(true);
2257 // MDL-11789, apply $CFG->filelifetime here
2258 if ($lifetime === 'default') {
2259 if (!empty($CFG->filelifetime)) {
2260 $lifetime = $CFG->filelifetime;
2261 } else {
2262 $lifetime = 86400;
2266 session_get_instance()->write_close(); // unlock session during fileserving
2268 // Use given MIME type if specified, otherwise guess it using mimeinfo.
2269 // IE, Konqueror and Opera open html file directly in browser from web even when directed to save it to disk :-O
2270 // only Firefox saves all files locally before opening when content-disposition: attachment stated
2271 $isFF = check_browser_version('Firefox', '1.5'); // only FF > 1.5 properly tested
2272 $mimetype = ($forcedownload and !$isFF) ? 'application/x-forcedownload' :
2273 ($mimetype ? $mimetype : mimeinfo('type', $filename));
2275 // if user is using IE, urlencode the filename so that multibyte file name will show up correctly on popup
2276 if (check_browser_version('MSIE')) {
2277 $filename = rawurlencode($filename);
2280 if ($forcedownload) {
2281 header('Content-Disposition: attachment; filename="'.$filename.'"');
2282 } else {
2283 header('Content-Disposition: inline; filename="'.$filename.'"');
2286 if ($lifetime > 0) {
2287 $nobyteserving = false;
2288 header('Cache-Control: max-age='.$lifetime);
2289 header('Expires: '. gmdate('D, d M Y H:i:s', time() + $lifetime) .' GMT');
2290 header('Pragma: ');
2292 } else { // Do not cache files in proxies and browsers
2293 $nobyteserving = true;
2294 if (strpos($CFG->wwwroot, 'https://') === 0) { //https sites - watch out for IE! KB812935 and KB316431
2295 header('Cache-Control: max-age=10');
2296 header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
2297 header('Pragma: ');
2298 } else { //normal http - prevent caching at all cost
2299 header('Cache-Control: private, must-revalidate, pre-check=0, post-check=0, max-age=0');
2300 header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
2301 header('Pragma: no-cache');
2305 if (empty($filter)) {
2306 // send the contents
2307 if ($pathisstring) {
2308 readstring_accel($path, $mimetype, !$dontdie);
2309 } else {
2310 readfile_accel($path, $mimetype, !$dontdie);
2313 } else {
2314 // Try to put the file through filters
2315 if ($mimetype == 'text/html') {
2316 $options = new stdClass();
2317 $options->noclean = true;
2318 $options->nocache = true; // temporary workaround for MDL-5136
2319 $text = $pathisstring ? $path : implode('', file($path));
2321 $text = file_modify_html_header($text);
2322 $output = format_text($text, FORMAT_HTML, $options, $COURSE->id);
2324 readstring_accel($output, $mimetype, false);
2326 } else if (($mimetype == 'text/plain') and ($filter == 1)) {
2327 // only filter text if filter all files is selected
2328 $options = new stdClass();
2329 $options->newlines = false;
2330 $options->noclean = true;
2331 $text = htmlentities($pathisstring ? $path : implode('', file($path)), ENT_QUOTES, 'UTF-8');
2332 $output = '<pre>'. format_text($text, FORMAT_MOODLE, $options, $COURSE->id) .'</pre>';
2334 readstring_accel($output, $mimetype, false);
2336 } else {
2337 // send the contents
2338 if ($pathisstring) {
2339 readstring_accel($path, $mimetype, !$dontdie);
2340 } else {
2341 readfile_accel($path, $mimetype, !$dontdie);
2345 if ($dontdie) {
2346 return;
2348 die; //no more chars to output!!!
2352 * Handles the sending of file data to the user's browser, including support for
2353 * byteranges etc.
2355 * The $options parameter supports the following keys:
2356 * (string|null) preview - send the preview of the file (e.g. "thumb" for a thumbnail)
2357 * (string|null) filename - overrides the implicit filename
2358 * (bool) dontdie - return control to caller afterwards. this is not recommended and only used for cleanup tasks.
2359 * if this is passed as true, ignore_user_abort is called. if you don't want your processing to continue on cancel,
2360 * you must detect this case when control is returned using connection_aborted. Please not that session is closed
2361 * and should not be reopened.
2363 * @category files
2364 * @param stored_file $stored_file local file object
2365 * @param int $lifetime Number of seconds before the file should expire from caches (default 24 hours)
2366 * @param int $filter 0 (default)=no filtering, 1=all files, 2=html files only
2367 * @param bool $forcedownload If true (default false), forces download of file rather than view in browser/plugin
2368 * @param array $options additional options affecting the file serving
2369 * @return null script execution stopped unless $options['dontdie'] is true
2371 function send_stored_file($stored_file, $lifetime=86400 , $filter=0, $forcedownload=false, array $options=array()) {
2372 global $CFG, $COURSE;
2374 if (empty($options['filename'])) {
2375 $filename = null;
2376 } else {
2377 $filename = $options['filename'];
2380 if (empty($options['dontdie'])) {
2381 $dontdie = false;
2382 } else {
2383 $dontdie = true;
2386 if (!empty($options['preview'])) {
2387 // replace the file with its preview
2388 $fs = get_file_storage();
2389 $preview_file = $fs->get_file_preview($stored_file, $options['preview']);
2390 if (!$preview_file) {
2391 // unable to create a preview of the file, send its default mime icon instead
2392 if ($options['preview'] === 'tinyicon') {
2393 $size = 24;
2394 } else if ($options['preview'] === 'thumb') {
2395 $size = 90;
2396 } else {
2397 $size = 256;
2399 $fileicon = file_file_icon($stored_file, $size);
2400 send_file($CFG->dirroot.'/pix/'.$fileicon.'.png', basename($fileicon).'.png');
2401 } else {
2402 // preview images have fixed cache lifetime and they ignore forced download
2403 // (they are generated by GD and therefore they are considered reasonably safe).
2404 $stored_file = $preview_file;
2405 $lifetime = DAYSECS;
2406 $filter = 0;
2407 $forcedownload = false;
2411 // handle external resource
2412 if ($stored_file && $stored_file->is_external_file() && !isset($options['sendcachedexternalfile'])) {
2413 $stored_file->send_file($lifetime, $filter, $forcedownload, $options);
2414 die;
2417 if (!$stored_file or $stored_file->is_directory()) {
2418 // nothing to serve
2419 if ($dontdie) {
2420 return;
2422 die;
2425 if ($dontdie) {
2426 ignore_user_abort(true);
2429 session_get_instance()->write_close(); // unlock session during fileserving
2431 // Use given MIME type if specified, otherwise guess it using mimeinfo.
2432 // IE, Konqueror and Opera open html file directly in browser from web even when directed to save it to disk :-O
2433 // only Firefox saves all files locally before opening when content-disposition: attachment stated
2434 $filename = is_null($filename) ? $stored_file->get_filename() : $filename;
2435 $isFF = check_browser_version('Firefox', '1.5'); // only FF > 1.5 properly tested
2436 $mimetype = ($forcedownload and !$isFF) ? 'application/x-forcedownload' :
2437 ($stored_file->get_mimetype() ? $stored_file->get_mimetype() : mimeinfo('type', $filename));
2439 // if user is using IE, urlencode the filename so that multibyte file name will show up correctly on popup
2440 if (check_browser_version('MSIE')) {
2441 $filename = rawurlencode($filename);
2444 if ($forcedownload) {
2445 header('Content-Disposition: attachment; filename="'.$filename.'"');
2446 } else {
2447 header('Content-Disposition: inline; filename="'.$filename.'"');
2450 if ($lifetime > 0) {
2451 header('Cache-Control: max-age='.$lifetime);
2452 header('Expires: '. gmdate('D, d M Y H:i:s', time() + $lifetime) .' GMT');
2453 header('Pragma: ');
2455 } else { // Do not cache files in proxies and browsers
2456 if (strpos($CFG->wwwroot, 'https://') === 0) { //https sites - watch out for IE! KB812935 and KB316431
2457 header('Cache-Control: max-age=10');
2458 header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
2459 header('Pragma: ');
2460 } else { //normal http - prevent caching at all cost
2461 header('Cache-Control: private, must-revalidate, pre-check=0, post-check=0, max-age=0');
2462 header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
2463 header('Pragma: no-cache');
2467 if (empty($filter)) {
2468 // send the contents
2469 readfile_accel($stored_file, $mimetype, !$dontdie);
2471 } else { // Try to put the file through filters
2472 if ($mimetype == 'text/html') {
2473 $options = new stdClass();
2474 $options->noclean = true;
2475 $options->nocache = true; // temporary workaround for MDL-5136
2476 $text = $stored_file->get_content();
2477 $text = file_modify_html_header($text);
2478 $output = format_text($text, FORMAT_HTML, $options, $COURSE->id);
2480 readstring_accel($output, $mimetype, false);
2482 } else if (($mimetype == 'text/plain') and ($filter == 1)) {
2483 // only filter text if filter all files is selected
2484 $options = new stdClass();
2485 $options->newlines = false;
2486 $options->noclean = true;
2487 $text = $stored_file->get_content();
2488 $output = '<pre>'. format_text($text, FORMAT_MOODLE, $options, $COURSE->id) .'</pre>';
2490 readstring_accel($output, $mimetype, false);
2492 } else { // Just send it out raw
2493 readfile_accel($stored_file, $mimetype, !$dontdie);
2496 if ($dontdie) {
2497 return;
2499 die; //no more chars to output!!!
2503 * Retrieves an array of records from a CSV file and places
2504 * them into a given table structure
2506 * @global stdClass $CFG
2507 * @global moodle_database $DB
2508 * @param string $file The path to a CSV file
2509 * @param string $table The table to retrieve columns from
2510 * @return bool|array Returns an array of CSV records or false
2512 function get_records_csv($file, $table) {
2513 global $CFG, $DB;
2515 if (!$metacolumns = $DB->get_columns($table)) {
2516 return false;
2519 if(!($handle = @fopen($file, 'r'))) {
2520 print_error('get_records_csv failed to open '.$file);
2523 $fieldnames = fgetcsv($handle, 4096);
2524 if(empty($fieldnames)) {
2525 fclose($handle);
2526 return false;
2529 $columns = array();
2531 foreach($metacolumns as $metacolumn) {
2532 $ord = array_search($metacolumn->name, $fieldnames);
2533 if(is_int($ord)) {
2534 $columns[$metacolumn->name] = $ord;
2538 $rows = array();
2540 while (($data = fgetcsv($handle, 4096)) !== false) {
2541 $item = new stdClass;
2542 foreach($columns as $name => $ord) {
2543 $item->$name = $data[$ord];
2545 $rows[] = $item;
2548 fclose($handle);
2549 return $rows;
2553 * Create a file with CSV contents
2555 * @global stdClass $CFG
2556 * @global moodle_database $DB
2557 * @param string $file The file to put the CSV content into
2558 * @param array $records An array of records to write to a CSV file
2559 * @param string $table The table to get columns from
2560 * @return bool success
2562 function put_records_csv($file, $records, $table = NULL) {
2563 global $CFG, $DB;
2565 if (empty($records)) {
2566 return true;
2569 $metacolumns = NULL;
2570 if ($table !== NULL && !$metacolumns = $DB->get_columns($table)) {
2571 return false;
2574 echo "x";
2576 if(!($fp = @fopen($CFG->tempdir.'/'.$file, 'w'))) {
2577 print_error('put_records_csv failed to open '.$file);
2580 $proto = reset($records);
2581 if(is_object($proto)) {
2582 $fields_records = array_keys(get_object_vars($proto));
2584 else if(is_array($proto)) {
2585 $fields_records = array_keys($proto);
2587 else {
2588 return false;
2590 echo "x";
2592 if(!empty($metacolumns)) {
2593 $fields_table = array_map(create_function('$a', 'return $a->name;'), $metacolumns);
2594 $fields = array_intersect($fields_records, $fields_table);
2596 else {
2597 $fields = $fields_records;
2600 fwrite($fp, implode(',', $fields));
2601 fwrite($fp, "\r\n");
2603 foreach($records as $record) {
2604 $array = (array)$record;
2605 $values = array();
2606 foreach($fields as $field) {
2607 if(strpos($array[$field], ',')) {
2608 $values[] = '"'.str_replace('"', '\"', $array[$field]).'"';
2610 else {
2611 $values[] = $array[$field];
2614 fwrite($fp, implode(',', $values)."\r\n");
2617 fclose($fp);
2618 return true;
2623 * Recursively delete the file or folder with path $location. That is,
2624 * if it is a file delete it. If it is a folder, delete all its content
2625 * then delete it. If $location does not exist to start, that is not
2626 * considered an error.
2628 * @param string $location the path to remove.
2629 * @return bool
2631 function fulldelete($location) {
2632 if (empty($location)) {
2633 // extra safety against wrong param
2634 return false;
2636 if (is_dir($location)) {
2637 if (!$currdir = opendir($location)) {
2638 return false;
2640 while (false !== ($file = readdir($currdir))) {
2641 if ($file <> ".." && $file <> ".") {
2642 $fullfile = $location."/".$file;
2643 if (is_dir($fullfile)) {
2644 if (!fulldelete($fullfile)) {
2645 return false;
2647 } else {
2648 if (!unlink($fullfile)) {
2649 return false;
2654 closedir($currdir);
2655 if (! rmdir($location)) {
2656 return false;
2659 } else if (file_exists($location)) {
2660 if (!unlink($location)) {
2661 return false;
2664 return true;
2668 * Send requested byterange of file.
2670 * @param resource $handle A file handle
2671 * @param string $mimetype The mimetype for the output
2672 * @param array $ranges An array of ranges to send
2673 * @param string $filesize The size of the content if only one range is used
2675 function byteserving_send_file($handle, $mimetype, $ranges, $filesize) {
2676 // better turn off any kind of compression and buffering
2677 @ini_set('zlib.output_compression', 'Off');
2679 // Remove Etag because is is not strictly defined for byteserving,
2680 // is it tag of this range or whole file?
2681 header_remove('Etag');
2683 $chunksize = 1*(1024*1024); // 1MB chunks - must be less than 2MB!
2684 if ($handle === false) {
2685 die;
2687 if (count($ranges) == 1) { //only one range requested
2688 $length = $ranges[0][2] - $ranges[0][1] + 1;
2689 header('HTTP/1.1 206 Partial content');
2690 header('Content-Length: '.$length);
2691 header('Content-Range: bytes '.$ranges[0][1].'-'.$ranges[0][2].'/'.$filesize);
2692 header('Content-Type: '.$mimetype);
2694 while(@ob_get_level()) {
2695 if (!@ob_end_flush()) {
2696 break;
2700 fseek($handle, $ranges[0][1]);
2701 while (!feof($handle) && $length > 0) {
2702 @set_time_limit(60*60); //reset time limit to 60 min - should be enough for 1 MB chunk
2703 $buffer = fread($handle, ($chunksize < $length ? $chunksize : $length));
2704 echo $buffer;
2705 flush();
2706 $length -= strlen($buffer);
2708 fclose($handle);
2709 die;
2710 } else { // multiple ranges requested - not tested much
2711 $totallength = 0;
2712 foreach($ranges as $range) {
2713 $totallength += strlen($range[0]) + $range[2] - $range[1] + 1;
2715 $totallength += strlen("\r\n--".BYTESERVING_BOUNDARY."--\r\n");
2716 header('HTTP/1.1 206 Partial content');
2717 header('Content-Length: '.$totallength);
2718 header('Content-Type: multipart/byteranges; boundary='.BYTESERVING_BOUNDARY);
2720 while(@ob_get_level()) {
2721 if (!@ob_end_flush()) {
2722 break;
2726 foreach($ranges as $range) {
2727 $length = $range[2] - $range[1] + 1;
2728 echo $range[0];
2729 fseek($handle, $range[1]);
2730 while (!feof($handle) && $length > 0) {
2731 @set_time_limit(60*60); //reset time limit to 60 min - should be enough for 1 MB chunk
2732 $buffer = fread($handle, ($chunksize < $length ? $chunksize : $length));
2733 echo $buffer;
2734 flush();
2735 $length -= strlen($buffer);
2738 echo "\r\n--".BYTESERVING_BOUNDARY."--\r\n";
2739 fclose($handle);
2740 die;
2745 * add includes (js and css) into uploaded files
2746 * before returning them, useful for themes and utf.js includes
2748 * @global stdClass $CFG
2749 * @param string $text text to search and replace
2750 * @return string text with added head includes
2751 * @todo MDL-21120
2753 function file_modify_html_header($text) {
2754 // first look for <head> tag
2755 global $CFG;
2757 $stylesheetshtml = '';
2758 /* foreach ($CFG->stylesheets as $stylesheet) {
2759 //TODO: MDL-21120
2760 $stylesheetshtml .= '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'" />'."\n";
2763 $ufo = '';
2764 if (filter_is_enabled('mediaplugin')) {
2765 // this script is needed by most media filter plugins.
2766 $attributes = array('type'=>'text/javascript', 'src'=>$CFG->httpswwwroot . '/lib/ufo.js');
2767 $ufo = html_writer::tag('script', '', $attributes) . "\n";
2770 preg_match('/\<head\>|\<HEAD\>/', $text, $matches);
2771 if ($matches) {
2772 $replacement = '<head>'.$ufo.$stylesheetshtml;
2773 $text = preg_replace('/\<head\>|\<HEAD\>/', $replacement, $text, 1);
2774 return $text;
2777 // if not, look for <html> tag, and stick <head> right after
2778 preg_match('/\<html\>|\<HTML\>/', $text, $matches);
2779 if ($matches) {
2780 // replace <html> tag with <html><head>includes</head>
2781 $replacement = '<html>'."\n".'<head>'.$ufo.$stylesheetshtml.'</head>';
2782 $text = preg_replace('/\<html\>|\<HTML\>/', $replacement, $text, 1);
2783 return $text;
2786 // if not, look for <body> tag, and stick <head> before body
2787 preg_match('/\<body\>|\<BODY\>/', $text, $matches);
2788 if ($matches) {
2789 $replacement = '<head>'.$ufo.$stylesheetshtml.'</head>'."\n".'<body>';
2790 $text = preg_replace('/\<body\>|\<BODY\>/', $replacement, $text, 1);
2791 return $text;
2794 // if not, just stick a <head> tag at the beginning
2795 $text = '<head>'.$ufo.$stylesheetshtml.'</head>'."\n".$text;
2796 return $text;
2800 * RESTful cURL class
2802 * This is a wrapper class for curl, it is quite easy to use:
2803 * <code>
2804 * $c = new curl;
2805 * // enable cache
2806 * $c = new curl(array('cache'=>true));
2807 * // enable cookie
2808 * $c = new curl(array('cookie'=>true));
2809 * // enable proxy
2810 * $c = new curl(array('proxy'=>true));
2812 * // HTTP GET Method
2813 * $html = $c->get('http://example.com');
2814 * // HTTP POST Method
2815 * $html = $c->post('http://example.com/', array('q'=>'words', 'name'=>'moodle'));
2816 * // HTTP PUT Method
2817 * $html = $c->put('http://example.com/', array('file'=>'/var/www/test.txt');
2818 * </code>
2820 * @package core_files
2821 * @category files
2822 * @copyright Dongsheng Cai <dongsheng@moodle.com>
2823 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
2825 class curl {
2826 /** @var bool Caches http request contents */
2827 public $cache = false;
2828 /** @var bool Uses proxy */
2829 public $proxy = false;
2830 /** @var string library version */
2831 public $version = '0.4 dev';
2832 /** @var array http's response */
2833 public $response = array();
2834 /** @var array http header */
2835 public $header = array();
2836 /** @var string cURL information */
2837 public $info;
2838 /** @var string error */
2839 public $error;
2840 /** @var int error code */
2841 public $errno;
2843 /** @var array cURL options */
2844 private $options;
2845 /** @var string Proxy host */
2846 private $proxy_host = '';
2847 /** @var string Proxy auth */
2848 private $proxy_auth = '';
2849 /** @var string Proxy type */
2850 private $proxy_type = '';
2851 /** @var bool Debug mode on */
2852 private $debug = false;
2853 /** @var bool|string Path to cookie file */
2854 private $cookie = false;
2857 * Constructor
2859 * @global stdClass $CFG
2860 * @param array $options
2862 public function __construct($options = array()){
2863 global $CFG;
2864 if (!function_exists('curl_init')) {
2865 $this->error = 'cURL module must be enabled!';
2866 trigger_error($this->error, E_USER_ERROR);
2867 return false;
2869 // the options of curl should be init here.
2870 $this->resetopt();
2871 if (!empty($options['debug'])) {
2872 $this->debug = true;
2874 if(!empty($options['cookie'])) {
2875 if($options['cookie'] === true) {
2876 $this->cookie = $CFG->dataroot.'/curl_cookie.txt';
2877 } else {
2878 $this->cookie = $options['cookie'];
2881 if (!empty($options['cache'])) {
2882 if (class_exists('curl_cache')) {
2883 if (!empty($options['module_cache'])) {
2884 $this->cache = new curl_cache($options['module_cache']);
2885 } else {
2886 $this->cache = new curl_cache('misc');
2890 if (!empty($CFG->proxyhost)) {
2891 if (empty($CFG->proxyport)) {
2892 $this->proxy_host = $CFG->proxyhost;
2893 } else {
2894 $this->proxy_host = $CFG->proxyhost.':'.$CFG->proxyport;
2896 if (!empty($CFG->proxyuser) and !empty($CFG->proxypassword)) {
2897 $this->proxy_auth = $CFG->proxyuser.':'.$CFG->proxypassword;
2898 $this->setopt(array(
2899 'proxyauth'=> CURLAUTH_BASIC | CURLAUTH_NTLM,
2900 'proxyuserpwd'=>$this->proxy_auth));
2902 if (!empty($CFG->proxytype)) {
2903 if ($CFG->proxytype == 'SOCKS5') {
2904 $this->proxy_type = CURLPROXY_SOCKS5;
2905 } else {
2906 $this->proxy_type = CURLPROXY_HTTP;
2907 $this->setopt(array('httpproxytunnel'=>false));
2909 $this->setopt(array('proxytype'=>$this->proxy_type));
2912 if (!empty($this->proxy_host)) {
2913 $this->proxy = array('proxy'=>$this->proxy_host);
2917 * Resets the CURL options that have already been set
2919 public function resetopt(){
2920 $this->options = array();
2921 $this->options['CURLOPT_USERAGENT'] = 'MoodleBot/1.0';
2922 // True to include the header in the output
2923 $this->options['CURLOPT_HEADER'] = 0;
2924 // True to Exclude the body from the output
2925 $this->options['CURLOPT_NOBODY'] = 0;
2926 // TRUE to follow any "Location: " header that the server
2927 // sends as part of the HTTP header (note this is recursive,
2928 // PHP will follow as many "Location: " headers that it is sent,
2929 // unless CURLOPT_MAXREDIRS is set).
2930 //$this->options['CURLOPT_FOLLOWLOCATION'] = 1;
2931 $this->options['CURLOPT_MAXREDIRS'] = 10;
2932 $this->options['CURLOPT_ENCODING'] = '';
2933 // TRUE to return the transfer as a string of the return
2934 // value of curl_exec() instead of outputting it out directly.
2935 $this->options['CURLOPT_RETURNTRANSFER'] = 1;
2936 $this->options['CURLOPT_BINARYTRANSFER'] = 0;
2937 $this->options['CURLOPT_SSL_VERIFYPEER'] = 0;
2938 $this->options['CURLOPT_SSL_VERIFYHOST'] = 2;
2939 $this->options['CURLOPT_CONNECTTIMEOUT'] = 30;
2941 if ($cacert = self::get_cacert()) {
2942 $this->options['CURLOPT_CAINFO'] = $cacert;
2947 * Get the location of ca certificates.
2948 * @return string absolute file path or empty if default used
2950 public static function get_cacert() {
2951 global $CFG;
2953 // Bundle in dataroot always wins.
2954 if (is_readable("$CFG->dataroot/moodleorgca.crt")) {
2955 return realpath("$CFG->dataroot/moodleorgca.crt");
2958 // Next comes the default from php.ini
2959 $cacert = ini_get('curl.cainfo');
2960 if (!empty($cacert) and is_readable($cacert)) {
2961 return realpath($cacert);
2964 // Windows PHP does not have any certs, we need to use something.
2965 if ($CFG->ostype === 'WINDOWS') {
2966 if (is_readable("$CFG->libdir/cacert.pem")) {
2967 return realpath("$CFG->libdir/cacert.pem");
2971 // Use default, this should work fine on all properly configured *nix systems.
2972 return null;
2976 * Reset Cookie
2978 public function resetcookie() {
2979 if (!empty($this->cookie)) {
2980 if (is_file($this->cookie)) {
2981 $fp = fopen($this->cookie, 'w');
2982 if (!empty($fp)) {
2983 fwrite($fp, '');
2984 fclose($fp);
2991 * Set curl options.
2993 * Do not use the curl constants to define the options, pass a string
2994 * corresponding to that constant. Ie. to set CURLOPT_MAXREDIRS, pass
2995 * array('CURLOPT_MAXREDIRS' => 10) or array('maxredirs' => 10) to this method.
2997 * @param array $options If array is null, this function will reset the options to default value.
2998 * @return void
2999 * @throws coding_exception If an option uses constant value instead of option name.
3001 public function setopt($options = array()) {
3002 if (is_array($options)) {
3003 foreach ($options as $name => $val){
3004 if (!is_string($name)) {
3005 throw new coding_exception('Curl options should be defined using strings, not constant values.');
3007 if (stripos($name, 'CURLOPT_') === false) {
3008 $name = strtoupper('CURLOPT_'.$name);
3010 $this->options[$name] = $val;
3016 * Reset http method
3018 public function cleanopt(){
3019 unset($this->options['CURLOPT_HTTPGET']);
3020 unset($this->options['CURLOPT_POST']);
3021 unset($this->options['CURLOPT_POSTFIELDS']);
3022 unset($this->options['CURLOPT_PUT']);
3023 unset($this->options['CURLOPT_INFILE']);
3024 unset($this->options['CURLOPT_INFILESIZE']);
3025 unset($this->options['CURLOPT_CUSTOMREQUEST']);
3026 unset($this->options['CURLOPT_FILE']);
3030 * Resets the HTTP Request headers (to prepare for the new request)
3032 public function resetHeader() {
3033 $this->header = array();
3037 * Set HTTP Request Header
3039 * @param array $header
3041 public function setHeader($header) {
3042 if (is_array($header)){
3043 foreach ($header as $v) {
3044 $this->setHeader($v);
3046 } else {
3047 $this->header[] = $header;
3052 * Set HTTP Response Header
3055 public function getResponse(){
3056 return $this->response;
3060 * private callback function
3061 * Formatting HTTP Response Header
3063 * @param resource $ch Apparently not used
3064 * @param string $header
3065 * @return int The strlen of the header
3067 private function formatHeader($ch, $header)
3069 if (strlen($header) > 2) {
3070 list($key, $value) = explode(" ", rtrim($header, "\r\n"), 2);
3071 $key = rtrim($key, ':');
3072 if (!empty($this->response[$key])) {
3073 if (is_array($this->response[$key])){
3074 $this->response[$key][] = $value;
3075 } else {
3076 $tmp = $this->response[$key];
3077 $this->response[$key] = array();
3078 $this->response[$key][] = $tmp;
3079 $this->response[$key][] = $value;
3082 } else {
3083 $this->response[$key] = $value;
3086 return strlen($header);
3090 * Set options for individual curl instance
3092 * @param resource $curl A curl handle
3093 * @param array $options
3094 * @return resource The curl handle
3096 private function apply_opt($curl, $options) {
3097 // Clean up
3098 $this->cleanopt();
3099 // set cookie
3100 if (!empty($this->cookie) || !empty($options['cookie'])) {
3101 $this->setopt(array('cookiejar'=>$this->cookie,
3102 'cookiefile'=>$this->cookie
3106 // set proxy
3107 if (!empty($this->proxy) || !empty($options['proxy'])) {
3108 $this->setopt($this->proxy);
3110 $this->setopt($options);
3111 // reset before set options
3112 curl_setopt($curl, CURLOPT_HEADERFUNCTION, array(&$this,'formatHeader'));
3113 // set headers
3114 if (empty($this->header)){
3115 $this->setHeader(array(
3116 'User-Agent: MoodleBot/1.0',
3117 'Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7',
3118 'Connection: keep-alive'
3121 curl_setopt($curl, CURLOPT_HTTPHEADER, $this->header);
3123 // Bypass proxy (for this request only) if required.
3124 if (!empty($this->options['CURLOPT_URL']) &&
3125 is_proxybypass($this->options['CURLOPT_URL'])) {
3126 unset($this->options['CURLOPT_PROXY']);
3129 if ($this->debug){
3130 echo '<h1>Options</h1>';
3131 var_dump($this->options);
3132 echo '<h1>Header</h1>';
3133 var_dump($this->header);
3136 // Set options.
3137 foreach($this->options as $name => $val) {
3138 $name = constant(strtoupper($name));
3139 curl_setopt($curl, $name, $val);
3141 return $curl;
3145 * Download multiple files in parallel
3147 * Calls {@link multi()} with specific download headers
3149 * <code>
3150 * $c = new curl();
3151 * $file1 = fopen('a', 'wb');
3152 * $file2 = fopen('b', 'wb');
3153 * $c->download(array(
3154 * array('url'=>'http://localhost/', 'file'=>$file1),
3155 * array('url'=>'http://localhost/20/', 'file'=>$file2)
3156 * ));
3157 * fclose($file1);
3158 * fclose($file2);
3159 * </code>
3161 * or
3163 * <code>
3164 * $c = new curl();
3165 * $c->download(array(
3166 * array('url'=>'http://localhost/', 'filepath'=>'/tmp/file1.tmp'),
3167 * array('url'=>'http://localhost/20/', 'filepath'=>'/tmp/file2.tmp')
3168 * ));
3169 * </code>
3171 * @param array $requests An array of files to request {
3172 * url => url to download the file [required]
3173 * file => file handler, or
3174 * filepath => file path
3176 * If 'file' and 'filepath' parameters are both specified in one request, the
3177 * open file handle in the 'file' parameter will take precedence and 'filepath'
3178 * will be ignored.
3180 * @param array $options An array of options to set
3181 * @return array An array of results
3183 public function download($requests, $options = array()) {
3184 $options['CURLOPT_BINARYTRANSFER'] = 1;
3185 $options['RETURNTRANSFER'] = false;
3186 return $this->multi($requests, $options);
3190 * Mulit HTTP Requests
3191 * This function could run multi-requests in parallel.
3193 * @param array $requests An array of files to request
3194 * @param array $options An array of options to set
3195 * @return array An array of results
3197 protected function multi($requests, $options = array()) {
3198 $count = count($requests);
3199 $handles = array();
3200 $results = array();
3201 $main = curl_multi_init();
3202 for ($i = 0; $i < $count; $i++) {
3203 if (!empty($requests[$i]['filepath']) and empty($requests[$i]['file'])) {
3204 // open file
3205 $requests[$i]['file'] = fopen($requests[$i]['filepath'], 'w');
3206 $requests[$i]['auto-handle'] = true;
3208 foreach($requests[$i] as $n=>$v){
3209 $options[$n] = $v;
3211 $handles[$i] = curl_init($requests[$i]['url']);
3212 $this->apply_opt($handles[$i], $options);
3213 curl_multi_add_handle($main, $handles[$i]);
3215 $running = 0;
3216 do {
3217 curl_multi_exec($main, $running);
3218 } while($running > 0);
3219 for ($i = 0; $i < $count; $i++) {
3220 if (!empty($options['CURLOPT_RETURNTRANSFER'])) {
3221 $results[] = true;
3222 } else {
3223 $results[] = curl_multi_getcontent($handles[$i]);
3225 curl_multi_remove_handle($main, $handles[$i]);
3227 curl_multi_close($main);
3229 for ($i = 0; $i < $count; $i++) {
3230 if (!empty($requests[$i]['filepath']) and !empty($requests[$i]['auto-handle'])) {
3231 // close file handler if file is opened in this function
3232 fclose($requests[$i]['file']);
3235 return $results;
3239 * Single HTTP Request
3241 * @param string $url The URL to request
3242 * @param array $options
3243 * @return bool
3245 protected function request($url, $options = array()){
3246 // create curl instance
3247 $curl = curl_init($url);
3248 $options['url'] = $url;
3249 $this->apply_opt($curl, $options);
3250 if ($this->cache && $ret = $this->cache->get($this->options)) {
3251 return $ret;
3252 } else {
3253 $ret = curl_exec($curl);
3254 if ($this->cache) {
3255 $this->cache->set($this->options, $ret);
3259 $this->info = curl_getinfo($curl);
3260 $this->error = curl_error($curl);
3261 $this->errno = curl_errno($curl);
3263 if ($this->debug){
3264 echo '<h1>Return Data</h1>';
3265 var_dump($ret);
3266 echo '<h1>Info</h1>';
3267 var_dump($this->info);
3268 echo '<h1>Error</h1>';
3269 var_dump($this->error);
3272 curl_close($curl);
3274 if (empty($this->error)){
3275 return $ret;
3276 } else {
3277 return $this->error;
3278 // exception is not ajax friendly
3279 //throw new moodle_exception($this->error, 'curl');
3284 * HTTP HEAD method
3286 * @see request()
3288 * @param string $url
3289 * @param array $options
3290 * @return bool
3292 public function head($url, $options = array()){
3293 $options['CURLOPT_HTTPGET'] = 0;
3294 $options['CURLOPT_HEADER'] = 1;
3295 $options['CURLOPT_NOBODY'] = 1;
3296 return $this->request($url, $options);
3300 * HTTP POST method
3302 * @param string $url
3303 * @param array|string $params
3304 * @param array $options
3305 * @return bool
3307 public function post($url, $params = '', $options = array()){
3308 $options['CURLOPT_POST'] = 1;
3309 if (is_array($params)) {
3310 $this->_tmp_file_post_params = array();
3311 foreach ($params as $key => $value) {
3312 if ($value instanceof stored_file) {
3313 $value->add_to_curl_request($this, $key);
3314 } else {
3315 $this->_tmp_file_post_params[$key] = $value;
3318 $options['CURLOPT_POSTFIELDS'] = $this->_tmp_file_post_params;
3319 unset($this->_tmp_file_post_params);
3320 } else {
3321 // $params is the raw post data
3322 $options['CURLOPT_POSTFIELDS'] = $params;
3324 return $this->request($url, $options);
3328 * HTTP GET method
3330 * @param string $url
3331 * @param array $params
3332 * @param array $options
3333 * @return bool
3335 public function get($url, $params = array(), $options = array()){
3336 $options['CURLOPT_HTTPGET'] = 1;
3338 if (!empty($params)){
3339 $url .= (stripos($url, '?') !== false) ? '&' : '?';
3340 $url .= http_build_query($params, '', '&');
3342 return $this->request($url, $options);
3346 * Downloads one file and writes it to the specified file handler
3348 * <code>
3349 * $c = new curl();
3350 * $file = fopen('savepath', 'w');
3351 * $result = $c->download_one('http://localhost/', null,
3352 * array('file' => $file, 'timeout' => 5, 'followlocation' => true, 'maxredirs' => 3));
3353 * fclose($file);
3354 * $download_info = $c->get_info();
3355 * if ($result === true) {
3356 * // file downloaded successfully
3357 * } else {
3358 * $error_text = $result;
3359 * $error_code = $c->get_errno();
3361 * </code>
3363 * <code>
3364 * $c = new curl();
3365 * $result = $c->download_one('http://localhost/', null,
3366 * array('filepath' => 'savepath', 'timeout' => 5, 'followlocation' => true, 'maxredirs' => 3));
3367 * // ... see above, no need to close handle and remove file if unsuccessful
3368 * </code>
3370 * @param string $url
3371 * @param array|null $params key-value pairs to be added to $url as query string
3372 * @param array $options request options. Must include either 'file' or 'filepath'
3373 * @return bool|string true on success or error string on failure
3375 public function download_one($url, $params, $options = array()) {
3376 $options['CURLOPT_HTTPGET'] = 1;
3377 $options['CURLOPT_BINARYTRANSFER'] = true;
3378 if (!empty($params)){
3379 $url .= (stripos($url, '?') !== false) ? '&' : '?';
3380 $url .= http_build_query($params, '', '&');
3382 if (!empty($options['filepath']) && empty($options['file'])) {
3383 // open file
3384 if (!($options['file'] = fopen($options['filepath'], 'w'))) {
3385 $this->errno = 100;
3386 return get_string('cannotwritefile', 'error', $options['filepath']);
3388 $filepath = $options['filepath'];
3390 unset($options['filepath']);
3391 $result = $this->request($url, $options);
3392 if (isset($filepath)) {
3393 fclose($options['file']);
3394 if ($result !== true) {
3395 unlink($filepath);
3398 return $result;
3402 * HTTP PUT method
3404 * @param string $url
3405 * @param array $params
3406 * @param array $options
3407 * @return bool
3409 public function put($url, $params = array(), $options = array()){
3410 $file = $params['file'];
3411 if (!is_file($file)){
3412 return null;
3414 $fp = fopen($file, 'r');
3415 $size = filesize($file);
3416 $options['CURLOPT_PUT'] = 1;
3417 $options['CURLOPT_INFILESIZE'] = $size;
3418 $options['CURLOPT_INFILE'] = $fp;
3419 if (!isset($this->options['CURLOPT_USERPWD'])){
3420 $this->setopt(array('CURLOPT_USERPWD'=>'anonymous: noreply@moodle.org'));
3422 $ret = $this->request($url, $options);
3423 fclose($fp);
3424 return $ret;
3428 * HTTP DELETE method
3430 * @param string $url
3431 * @param array $param
3432 * @param array $options
3433 * @return bool
3435 public function delete($url, $param = array(), $options = array()){
3436 $options['CURLOPT_CUSTOMREQUEST'] = 'DELETE';
3437 if (!isset($options['CURLOPT_USERPWD'])) {
3438 $options['CURLOPT_USERPWD'] = 'anonymous: noreply@moodle.org';
3440 $ret = $this->request($url, $options);
3441 return $ret;
3445 * HTTP TRACE method
3447 * @param string $url
3448 * @param array $options
3449 * @return bool
3451 public function trace($url, $options = array()){
3452 $options['CURLOPT_CUSTOMREQUEST'] = 'TRACE';
3453 $ret = $this->request($url, $options);
3454 return $ret;
3458 * HTTP OPTIONS method
3460 * @param string $url
3461 * @param array $options
3462 * @return bool
3464 public function options($url, $options = array()){
3465 $options['CURLOPT_CUSTOMREQUEST'] = 'OPTIONS';
3466 $ret = $this->request($url, $options);
3467 return $ret;
3471 * Get curl information
3473 * @return string
3475 public function get_info() {
3476 return $this->info;
3480 * Get curl error code
3482 * @return int
3484 public function get_errno() {
3485 return $this->errno;
3489 * When using a proxy, an additional HTTP response code may appear at
3490 * the start of the header. For example, when using https over a proxy
3491 * there may be 'HTTP/1.0 200 Connection Established'. Other codes are
3492 * also possible and some may come with their own headers.
3494 * If using the return value containing all headers, this function can be
3495 * called to remove unwanted doubles.
3497 * Note that it is not possible to distinguish this situation from valid
3498 * data unless you know the actual response part (below the headers)
3499 * will not be included in this string, or else will not 'look like' HTTP
3500 * headers. As a result it is not safe to call this function for general
3501 * data.
3503 * @param string $input Input HTTP response
3504 * @return string HTTP response with additional headers stripped if any
3506 public static function strip_double_headers($input) {
3507 // I have tried to make this regular expression as specific as possible
3508 // to avoid any case where it does weird stuff if you happen to put
3509 // HTTP/1.1 200 at the start of any line in your RSS file. This should
3510 // also make it faster because it can abandon regex processing as soon
3511 // as it hits something that doesn't look like an http header. The
3512 // header definition is taken from RFC 822, except I didn't support
3513 // folding which is never used in practice.
3514 $crlf = "\r\n";
3515 return preg_replace(
3516 // HTTP version and status code (ignore value of code).
3517 '~^HTTP/1\..*' . $crlf .
3518 // Header name: character between 33 and 126 decimal, except colon.
3519 // Colon. Header value: any character except \r and \n. CRLF.
3520 '(?:[\x21-\x39\x3b-\x7e]+:[^' . $crlf . ']+' . $crlf . ')*' .
3521 // Headers are terminated by another CRLF (blank line).
3522 $crlf .
3523 // Second HTTP status code, this time must be 200.
3524 '(HTTP/1.[01] 200 )~', '$1', $input);
3529 * This class is used by cURL class, use case:
3531 * <code>
3532 * $CFG->repositorycacheexpire = 120;
3533 * $CFG->curlcache = 120;
3535 * $c = new curl(array('cache'=>true), 'module_cache'=>'repository');
3536 * $ret = $c->get('http://www.google.com');
3537 * </code>
3539 * @package core_files
3540 * @copyright Dongsheng Cai <dongsheng@moodle.com>
3541 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3543 class curl_cache {
3544 /** @var string Path to cache directory */
3545 public $dir = '';
3548 * Constructor
3550 * @global stdClass $CFG
3551 * @param string $module which module is using curl_cache
3553 public function __construct($module = 'repository') {
3554 global $CFG;
3555 if (!empty($module)) {
3556 $this->dir = $CFG->cachedir.'/'.$module.'/';
3557 } else {
3558 $this->dir = $CFG->cachedir.'/misc/';
3560 if (!file_exists($this->dir)) {
3561 mkdir($this->dir, $CFG->directorypermissions, true);
3563 if ($module == 'repository') {
3564 if (empty($CFG->repositorycacheexpire)) {
3565 $CFG->repositorycacheexpire = 120;
3567 $this->ttl = $CFG->repositorycacheexpire;
3568 } else {
3569 if (empty($CFG->curlcache)) {
3570 $CFG->curlcache = 120;
3572 $this->ttl = $CFG->curlcache;
3577 * Get cached value
3579 * @global stdClass $CFG
3580 * @global stdClass $USER
3581 * @param mixed $param
3582 * @return bool|string
3584 public function get($param) {
3585 global $CFG, $USER;
3586 $this->cleanup($this->ttl);
3587 $filename = 'u'.$USER->id.'_'.md5(serialize($param));
3588 if(file_exists($this->dir.$filename)) {
3589 $lasttime = filemtime($this->dir.$filename);
3590 if (time()-$lasttime > $this->ttl) {
3591 return false;
3592 } else {
3593 $fp = fopen($this->dir.$filename, 'r');
3594 $size = filesize($this->dir.$filename);
3595 $content = fread($fp, $size);
3596 return unserialize($content);
3599 return false;
3603 * Set cache value
3605 * @global object $CFG
3606 * @global object $USER
3607 * @param mixed $param
3608 * @param mixed $val
3610 public function set($param, $val) {
3611 global $CFG, $USER;
3612 $filename = 'u'.$USER->id.'_'.md5(serialize($param));
3613 $fp = fopen($this->dir.$filename, 'w');
3614 fwrite($fp, serialize($val));
3615 fclose($fp);
3619 * Remove cache files
3621 * @param int $expire The number of seconds before expiry
3623 public function cleanup($expire) {
3624 if ($dir = opendir($this->dir)) {
3625 while (false !== ($file = readdir($dir))) {
3626 if(!is_dir($file) && $file != '.' && $file != '..') {
3627 $lasttime = @filemtime($this->dir.$file);
3628 if (time() - $lasttime > $expire) {
3629 @unlink($this->dir.$file);
3633 closedir($dir);
3637 * delete current user's cache file
3639 * @global object $CFG
3640 * @global object $USER
3642 public function refresh() {
3643 global $CFG, $USER;
3644 if ($dir = opendir($this->dir)) {
3645 while (false !== ($file = readdir($dir))) {
3646 if (!is_dir($file) && $file != '.' && $file != '..') {
3647 if (strpos($file, 'u'.$USER->id.'_') !== false) {
3648 @unlink($this->dir.$file);
3657 * This function delegates file serving to individual plugins
3659 * @param string $relativepath
3660 * @param bool $forcedownload
3661 * @param null|string $preview the preview mode, defaults to serving the original file
3662 * @todo MDL-31088 file serving improments
3664 function file_pluginfile($relativepath, $forcedownload, $preview = null) {
3665 global $DB, $CFG, $USER;
3666 // relative path must start with '/'
3667 if (!$relativepath) {
3668 print_error('invalidargorconf');
3669 } else if ($relativepath[0] != '/') {
3670 print_error('pathdoesnotstartslash');
3673 // extract relative path components
3674 $args = explode('/', ltrim($relativepath, '/'));
3676 if (count($args) < 3) { // always at least context, component and filearea
3677 print_error('invalidarguments');
3680 $contextid = (int)array_shift($args);
3681 $component = clean_param(array_shift($args), PARAM_COMPONENT);
3682 $filearea = clean_param(array_shift($args), PARAM_AREA);
3684 list($context, $course, $cm) = get_context_info_array($contextid);
3686 $fs = get_file_storage();
3688 // ========================================================================================================================
3689 if ($component === 'blog') {
3690 // Blog file serving
3691 if ($context->contextlevel != CONTEXT_SYSTEM) {
3692 send_file_not_found();
3694 if ($filearea !== 'attachment' and $filearea !== 'post') {
3695 send_file_not_found();
3698 if (empty($CFG->enableblogs)) {
3699 print_error('siteblogdisable', 'blog');
3702 $entryid = (int)array_shift($args);
3703 if (!$entry = $DB->get_record('post', array('module'=>'blog', 'id'=>$entryid))) {
3704 send_file_not_found();
3706 if ($CFG->bloglevel < BLOG_GLOBAL_LEVEL) {
3707 require_login();
3708 if (isguestuser()) {
3709 print_error('noguest');
3711 if ($CFG->bloglevel == BLOG_USER_LEVEL) {
3712 if ($USER->id != $entry->userid) {
3713 send_file_not_found();
3718 if ($entry->publishstate === 'public') {
3719 if ($CFG->forcelogin) {
3720 require_login();
3723 } else if ($entry->publishstate === 'site') {
3724 require_login();
3725 //ok
3726 } else if ($entry->publishstate === 'draft') {
3727 require_login();
3728 if ($USER->id != $entry->userid) {
3729 send_file_not_found();
3733 $filename = array_pop($args);
3734 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
3736 if (!$file = $fs->get_file($context->id, $component, $filearea, $entryid, $filepath, $filename) or $file->is_directory()) {
3737 send_file_not_found();
3740 send_stored_file($file, 10*60, 0, true, array('preview' => $preview)); // download MUST be forced - security!
3742 // ========================================================================================================================
3743 } else if ($component === 'grade') {
3744 if (($filearea === 'outcome' or $filearea === 'scale') and $context->contextlevel == CONTEXT_SYSTEM) {
3745 // Global gradebook files
3746 if ($CFG->forcelogin) {
3747 require_login();
3750 $fullpath = "/$context->id/$component/$filearea/".implode('/', $args);
3752 if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
3753 send_file_not_found();
3756 session_get_instance()->write_close(); // unlock session during fileserving
3757 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
3759 } else if ($filearea === 'feedback' and $context->contextlevel == CONTEXT_COURSE) {
3760 //TODO: nobody implemented this yet in grade edit form!!
3761 send_file_not_found();
3763 if ($CFG->forcelogin || $course->id != SITEID) {
3764 require_login($course);
3767 $fullpath = "/$context->id/$component/$filearea/".implode('/', $args);
3769 if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
3770 send_file_not_found();
3773 session_get_instance()->write_close(); // unlock session during fileserving
3774 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
3775 } else {
3776 send_file_not_found();
3779 // ========================================================================================================================
3780 } else if ($component === 'tag') {
3781 if ($filearea === 'description' and $context->contextlevel == CONTEXT_SYSTEM) {
3783 // All tag descriptions are going to be public but we still need to respect forcelogin
3784 if ($CFG->forcelogin) {
3785 require_login();
3788 $fullpath = "/$context->id/tag/description/".implode('/', $args);
3790 if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
3791 send_file_not_found();
3794 session_get_instance()->write_close(); // unlock session during fileserving
3795 send_stored_file($file, 60*60, 0, true, array('preview' => $preview));
3797 } else {
3798 send_file_not_found();
3800 // ========================================================================================================================
3801 } else if ($component === 'badges') {
3802 require_once($CFG->libdir . '/badgeslib.php');
3804 $badgeid = (int)array_shift($args);
3805 $badge = new badge($badgeid);
3806 $filename = array_pop($args);
3808 if ($filearea === 'badgeimage') {
3809 if ($filename !== 'f1' && $filename !== 'f2') {
3810 send_file_not_found();
3812 if (!$file = $fs->get_file($context->id, 'badges', 'badgeimage', $badge->id, '/', $filename.'.png')) {
3813 send_file_not_found();
3816 session_get_instance()->write_close();
3817 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
3818 } else if ($filearea === 'userbadge' and $context->contextlevel == CONTEXT_USER) {
3819 if (!$file = $fs->get_file($context->id, 'badges', 'userbadge', $badge->id, '/', $filename.'.png')) {
3820 send_file_not_found();
3823 session_get_instance()->write_close();
3824 send_stored_file($file, 60*60, 0, true, array('preview' => $preview));
3826 // ========================================================================================================================
3827 } else if ($component === 'calendar') {
3828 if ($filearea === 'event_description' and $context->contextlevel == CONTEXT_SYSTEM) {
3830 // All events here are public the one requirement is that we respect forcelogin
3831 if ($CFG->forcelogin) {
3832 require_login();
3835 // Get the event if from the args array
3836 $eventid = array_shift($args);
3838 // Load the event from the database
3839 if (!$event = $DB->get_record('event', array('id'=>(int)$eventid, 'eventtype'=>'site'))) {
3840 send_file_not_found();
3843 // Get the file and serve if successful
3844 $filename = array_pop($args);
3845 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
3846 if (!$file = $fs->get_file($context->id, $component, $filearea, $eventid, $filepath, $filename) or $file->is_directory()) {
3847 send_file_not_found();
3850 session_get_instance()->write_close(); // unlock session during fileserving
3851 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
3853 } else if ($filearea === 'event_description' and $context->contextlevel == CONTEXT_USER) {
3855 // Must be logged in, if they are not then they obviously can't be this user
3856 require_login();
3858 // Don't want guests here, potentially saves a DB call
3859 if (isguestuser()) {
3860 send_file_not_found();
3863 // Get the event if from the args array
3864 $eventid = array_shift($args);
3866 // Load the event from the database - user id must match
3867 if (!$event = $DB->get_record('event', array('id'=>(int)$eventid, 'userid'=>$USER->id, 'eventtype'=>'user'))) {
3868 send_file_not_found();
3871 // Get the file and serve if successful
3872 $filename = array_pop($args);
3873 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
3874 if (!$file = $fs->get_file($context->id, $component, $filearea, $eventid, $filepath, $filename) or $file->is_directory()) {
3875 send_file_not_found();
3878 session_get_instance()->write_close(); // unlock session during fileserving
3879 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
3881 } else if ($filearea === 'event_description' and $context->contextlevel == CONTEXT_COURSE) {
3883 // Respect forcelogin and require login unless this is the site.... it probably
3884 // should NEVER be the site
3885 if ($CFG->forcelogin || $course->id != SITEID) {
3886 require_login($course);
3889 // Must be able to at least view the course. This does not apply to the front page.
3890 if ($course->id != SITEID && (!is_enrolled($context)) && (!is_viewing($context))) {
3891 //TODO: hmm, do we really want to block guests here?
3892 send_file_not_found();
3895 // Get the event id
3896 $eventid = array_shift($args);
3898 // Load the event from the database we need to check whether it is
3899 // a) valid course event
3900 // b) a group event
3901 // Group events use the course context (there is no group context)
3902 if (!$event = $DB->get_record('event', array('id'=>(int)$eventid, 'courseid'=>$course->id))) {
3903 send_file_not_found();
3906 // If its a group event require either membership of view all groups capability
3907 if ($event->eventtype === 'group') {
3908 if (!has_capability('moodle/site:accessallgroups', $context) && !groups_is_member($event->groupid, $USER->id)) {
3909 send_file_not_found();
3911 } else if ($event->eventtype === 'course' || $event->eventtype === 'site') {
3912 // Ok. Please note that the event type 'site' still uses a course context.
3913 } else {
3914 // Some other type.
3915 send_file_not_found();
3918 // If we get this far we can serve the file
3919 $filename = array_pop($args);
3920 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
3921 if (!$file = $fs->get_file($context->id, $component, $filearea, $eventid, $filepath, $filename) or $file->is_directory()) {
3922 send_file_not_found();
3925 session_get_instance()->write_close(); // unlock session during fileserving
3926 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
3928 } else {
3929 send_file_not_found();
3932 // ========================================================================================================================
3933 } else if ($component === 'user') {
3934 if ($filearea === 'icon' and $context->contextlevel == CONTEXT_USER) {
3935 if (count($args) == 1) {
3936 $themename = theme_config::DEFAULT_THEME;
3937 $filename = array_shift($args);
3938 } else {
3939 $themename = array_shift($args);
3940 $filename = array_shift($args);
3943 // fix file name automatically
3944 if ($filename !== 'f1' and $filename !== 'f2' and $filename !== 'f3') {
3945 $filename = 'f1';
3948 if ((!empty($CFG->forcelogin) and !isloggedin()) ||
3949 (!empty($CFG->forceloginforprofileimage) && (!isloggedin() || isguestuser()))) {
3950 // protect images if login required and not logged in;
3951 // also if login is required for profile images and is not logged in or guest
3952 // do not use require_login() because it is expensive and not suitable here anyway
3953 $theme = theme_config::load($themename);
3954 redirect($theme->pix_url('u/'.$filename, 'moodle')); // intentionally not cached
3957 if (!$file = $fs->get_file($context->id, 'user', 'icon', 0, '/', $filename.'.png')) {
3958 if (!$file = $fs->get_file($context->id, 'user', 'icon', 0, '/', $filename.'.jpg')) {
3959 if ($filename === 'f3') {
3960 // f3 512x512px was introduced in 2.3, there might be only the smaller version.
3961 if (!$file = $fs->get_file($context->id, 'user', 'icon', 0, '/', 'f1.png')) {
3962 $file = $fs->get_file($context->id, 'user', 'icon', 0, '/', 'f1.jpg');
3967 if (!$file) {
3968 // bad reference - try to prevent future retries as hard as possible!
3969 if ($user = $DB->get_record('user', array('id'=>$context->instanceid), 'id, picture')) {
3970 if ($user->picture > 0) {
3971 $DB->set_field('user', 'picture', 0, array('id'=>$user->id));
3974 // no redirect here because it is not cached
3975 $theme = theme_config::load($themename);
3976 $imagefile = $theme->resolve_image_location('u/'.$filename, 'moodle', null);
3977 send_file($imagefile, basename($imagefile), 60*60*24*14);
3980 send_stored_file($file, 60*60*24*365, 0, false, array('preview' => $preview)); // enable long caching, there are many images on each page
3982 } else if ($filearea === 'private' and $context->contextlevel == CONTEXT_USER) {
3983 require_login();
3985 if (isguestuser()) {
3986 send_file_not_found();
3989 if ($USER->id !== $context->instanceid) {
3990 send_file_not_found();
3993 $filename = array_pop($args);
3994 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
3995 if (!$file = $fs->get_file($context->id, $component, $filearea, 0, $filepath, $filename) or $file->is_directory()) {
3996 send_file_not_found();
3999 session_get_instance()->write_close(); // unlock session during fileserving
4000 send_stored_file($file, 0, 0, true, array('preview' => $preview)); // must force download - security!
4002 } else if ($filearea === 'profile' and $context->contextlevel == CONTEXT_USER) {
4004 if ($CFG->forcelogin) {
4005 require_login();
4008 $userid = $context->instanceid;
4010 if ($USER->id == $userid) {
4011 // always can access own
4013 } else if (!empty($CFG->forceloginforprofiles)) {
4014 require_login();
4016 if (isguestuser()) {
4017 send_file_not_found();
4020 // we allow access to site profile of all course contacts (usually teachers)
4021 if (!has_coursecontact_role($userid) && !has_capability('moodle/user:viewdetails', $context)) {
4022 send_file_not_found();
4025 $canview = false;
4026 if (has_capability('moodle/user:viewdetails', $context)) {
4027 $canview = true;
4028 } else {
4029 $courses = enrol_get_my_courses();
4032 while (!$canview && count($courses) > 0) {
4033 $course = array_shift($courses);
4034 if (has_capability('moodle/user:viewdetails', context_course::instance($course->id))) {
4035 $canview = true;
4040 $filename = array_pop($args);
4041 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4042 if (!$file = $fs->get_file($context->id, $component, $filearea, 0, $filepath, $filename) or $file->is_directory()) {
4043 send_file_not_found();
4046 session_get_instance()->write_close(); // unlock session during fileserving
4047 send_stored_file($file, 0, 0, true, array('preview' => $preview)); // must force download - security!
4049 } else if ($filearea === 'profile' and $context->contextlevel == CONTEXT_COURSE) {
4050 $userid = (int)array_shift($args);
4051 $usercontext = context_user::instance($userid);
4053 if ($CFG->forcelogin) {
4054 require_login();
4057 if (!empty($CFG->forceloginforprofiles)) {
4058 require_login();
4059 if (isguestuser()) {
4060 print_error('noguest');
4063 //TODO: review this logic of user profile access prevention
4064 if (!has_coursecontact_role($userid) and !has_capability('moodle/user:viewdetails', $usercontext)) {
4065 print_error('usernotavailable');
4067 if (!has_capability('moodle/user:viewdetails', $context) && !has_capability('moodle/user:viewdetails', $usercontext)) {
4068 print_error('cannotviewprofile');
4070 if (!is_enrolled($context, $userid)) {
4071 print_error('notenrolledprofile');
4073 if (groups_get_course_groupmode($course) == SEPARATEGROUPS and !has_capability('moodle/site:accessallgroups', $context)) {
4074 print_error('groupnotamember');
4078 $filename = array_pop($args);
4079 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4080 if (!$file = $fs->get_file($usercontext->id, 'user', 'profile', 0, $filepath, $filename) or $file->is_directory()) {
4081 send_file_not_found();
4084 session_get_instance()->write_close(); // unlock session during fileserving
4085 send_stored_file($file, 0, 0, true, array('preview' => $preview)); // must force download - security!
4087 } else if ($filearea === 'backup' and $context->contextlevel == CONTEXT_USER) {
4088 require_login();
4090 if (isguestuser()) {
4091 send_file_not_found();
4093 $userid = $context->instanceid;
4095 if ($USER->id != $userid) {
4096 send_file_not_found();
4099 $filename = array_pop($args);
4100 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4101 if (!$file = $fs->get_file($context->id, 'user', 'backup', 0, $filepath, $filename) or $file->is_directory()) {
4102 send_file_not_found();
4105 session_get_instance()->write_close(); // unlock session during fileserving
4106 send_stored_file($file, 0, 0, true, array('preview' => $preview)); // must force download - security!
4108 } else {
4109 send_file_not_found();
4112 // ========================================================================================================================
4113 } else if ($component === 'coursecat') {
4114 if ($context->contextlevel != CONTEXT_COURSECAT) {
4115 send_file_not_found();
4118 if ($filearea === 'description') {
4119 if ($CFG->forcelogin) {
4120 // no login necessary - unless login forced everywhere
4121 require_login();
4124 $filename = array_pop($args);
4125 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4126 if (!$file = $fs->get_file($context->id, 'coursecat', 'description', 0, $filepath, $filename) or $file->is_directory()) {
4127 send_file_not_found();
4130 session_get_instance()->write_close(); // unlock session during fileserving
4131 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
4132 } else {
4133 send_file_not_found();
4136 // ========================================================================================================================
4137 } else if ($component === 'course') {
4138 if ($context->contextlevel != CONTEXT_COURSE) {
4139 send_file_not_found();
4142 if ($filearea === 'summary' || $filearea === 'overviewfiles') {
4143 if ($CFG->forcelogin) {
4144 require_login();
4147 $filename = array_pop($args);
4148 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4149 if (!$file = $fs->get_file($context->id, 'course', $filearea, 0, $filepath, $filename) or $file->is_directory()) {
4150 send_file_not_found();
4153 session_get_instance()->write_close(); // unlock session during fileserving
4154 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
4156 } else if ($filearea === 'section') {
4157 if ($CFG->forcelogin) {
4158 require_login($course);
4159 } else if ($course->id != SITEID) {
4160 require_login($course);
4163 $sectionid = (int)array_shift($args);
4165 if (!$section = $DB->get_record('course_sections', array('id'=>$sectionid, 'course'=>$course->id))) {
4166 send_file_not_found();
4169 $filename = array_pop($args);
4170 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4171 if (!$file = $fs->get_file($context->id, 'course', 'section', $sectionid, $filepath, $filename) or $file->is_directory()) {
4172 send_file_not_found();
4175 session_get_instance()->write_close(); // unlock session during fileserving
4176 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
4178 } else {
4179 send_file_not_found();
4182 } else if ($component === 'group') {
4183 if ($context->contextlevel != CONTEXT_COURSE) {
4184 send_file_not_found();
4187 require_course_login($course, true, null, false);
4189 $groupid = (int)array_shift($args);
4191 $group = $DB->get_record('groups', array('id'=>$groupid, 'courseid'=>$course->id), '*', MUST_EXIST);
4192 if (($course->groupmodeforce and $course->groupmode == SEPARATEGROUPS) and !has_capability('moodle/site:accessallgroups', $context) and !groups_is_member($group->id, $USER->id)) {
4193 // do not allow access to separate group info if not member or teacher
4194 send_file_not_found();
4197 if ($filearea === 'description') {
4199 require_login($course);
4201 $filename = array_pop($args);
4202 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4203 if (!$file = $fs->get_file($context->id, 'group', 'description', $group->id, $filepath, $filename) or $file->is_directory()) {
4204 send_file_not_found();
4207 session_get_instance()->write_close(); // unlock session during fileserving
4208 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
4210 } else if ($filearea === 'icon') {
4211 $filename = array_pop($args);
4213 if ($filename !== 'f1' and $filename !== 'f2') {
4214 send_file_not_found();
4216 if (!$file = $fs->get_file($context->id, 'group', 'icon', $group->id, '/', $filename.'.png')) {
4217 if (!$file = $fs->get_file($context->id, 'group', 'icon', $group->id, '/', $filename.'.jpg')) {
4218 send_file_not_found();
4222 session_get_instance()->write_close(); // unlock session during fileserving
4223 send_stored_file($file, 60*60, 0, false, array('preview' => $preview));
4225 } else {
4226 send_file_not_found();
4229 } else if ($component === 'grouping') {
4230 if ($context->contextlevel != CONTEXT_COURSE) {
4231 send_file_not_found();
4234 require_login($course);
4236 $groupingid = (int)array_shift($args);
4238 // note: everybody has access to grouping desc images for now
4239 if ($filearea === 'description') {
4241 $filename = array_pop($args);
4242 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4243 if (!$file = $fs->get_file($context->id, 'grouping', 'description', $groupingid, $filepath, $filename) or $file->is_directory()) {
4244 send_file_not_found();
4247 session_get_instance()->write_close(); // unlock session during fileserving
4248 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
4250 } else {
4251 send_file_not_found();
4254 // ========================================================================================================================
4255 } else if ($component === 'backup') {
4256 if ($filearea === 'course' and $context->contextlevel == CONTEXT_COURSE) {
4257 require_login($course);
4258 require_capability('moodle/backup:downloadfile', $context);
4260 $filename = array_pop($args);
4261 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4262 if (!$file = $fs->get_file($context->id, 'backup', 'course', 0, $filepath, $filename) or $file->is_directory()) {
4263 send_file_not_found();
4266 session_get_instance()->write_close(); // unlock session during fileserving
4267 send_stored_file($file, 0, 0, $forcedownload, array('preview' => $preview));
4269 } else if ($filearea === 'section' and $context->contextlevel == CONTEXT_COURSE) {
4270 require_login($course);
4271 require_capability('moodle/backup:downloadfile', $context);
4273 $sectionid = (int)array_shift($args);
4275 $filename = array_pop($args);
4276 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4277 if (!$file = $fs->get_file($context->id, 'backup', 'section', $sectionid, $filepath, $filename) or $file->is_directory()) {
4278 send_file_not_found();
4281 session_get_instance()->write_close();
4282 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
4284 } else if ($filearea === 'activity' and $context->contextlevel == CONTEXT_MODULE) {
4285 require_login($course, false, $cm);
4286 require_capability('moodle/backup:downloadfile', $context);
4288 $filename = array_pop($args);
4289 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4290 if (!$file = $fs->get_file($context->id, 'backup', 'activity', 0, $filepath, $filename) or $file->is_directory()) {
4291 send_file_not_found();
4294 session_get_instance()->write_close();
4295 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
4297 } else if ($filearea === 'automated' and $context->contextlevel == CONTEXT_COURSE) {
4298 // Backup files that were generated by the automated backup systems.
4300 require_login($course);
4301 require_capability('moodle/site:config', $context);
4303 $filename = array_pop($args);
4304 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4305 if (!$file = $fs->get_file($context->id, 'backup', 'automated', 0, $filepath, $filename) or $file->is_directory()) {
4306 send_file_not_found();
4309 session_get_instance()->write_close(); // unlock session during fileserving
4310 send_stored_file($file, 0, 0, $forcedownload, array('preview' => $preview));
4312 } else {
4313 send_file_not_found();
4316 // ========================================================================================================================
4317 } else if ($component === 'question') {
4318 require_once($CFG->libdir . '/questionlib.php');
4319 question_pluginfile($course, $context, 'question', $filearea, $args, $forcedownload);
4320 send_file_not_found();
4322 // ========================================================================================================================
4323 } else if ($component === 'grading') {
4324 if ($filearea === 'description') {
4325 // files embedded into the form definition description
4327 if ($context->contextlevel == CONTEXT_SYSTEM) {
4328 require_login();
4330 } else if ($context->contextlevel >= CONTEXT_COURSE) {
4331 require_login($course, false, $cm);
4333 } else {
4334 send_file_not_found();
4337 $formid = (int)array_shift($args);
4339 $sql = "SELECT ga.id
4340 FROM {grading_areas} ga
4341 JOIN {grading_definitions} gd ON (gd.areaid = ga.id)
4342 WHERE gd.id = ? AND ga.contextid = ?";
4343 $areaid = $DB->get_field_sql($sql, array($formid, $context->id), IGNORE_MISSING);
4345 if (!$areaid) {
4346 send_file_not_found();
4349 $fullpath = "/$context->id/$component/$filearea/$formid/".implode('/', $args);
4351 if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
4352 send_file_not_found();
4355 session_get_instance()->write_close(); // unlock session during fileserving
4356 send_stored_file($file, 60*60, 0, $forcedownload, array('preview' => $preview));
4359 // ========================================================================================================================
4360 } else if (strpos($component, 'mod_') === 0) {
4361 $modname = substr($component, 4);
4362 if (!file_exists("$CFG->dirroot/mod/$modname/lib.php")) {
4363 send_file_not_found();
4365 require_once("$CFG->dirroot/mod/$modname/lib.php");
4367 if ($context->contextlevel == CONTEXT_MODULE) {
4368 if ($cm->modname !== $modname) {
4369 // somebody tries to gain illegal access, cm type must match the component!
4370 send_file_not_found();
4374 if ($filearea === 'intro') {
4375 if (!plugin_supports('mod', $modname, FEATURE_MOD_INTRO, true)) {
4376 send_file_not_found();
4378 require_course_login($course, true, $cm);
4380 // all users may access it
4381 $filename = array_pop($args);
4382 $filepath = $args ? '/'.implode('/', $args).'/' : '/';
4383 if (!$file = $fs->get_file($context->id, 'mod_'.$modname, 'intro', 0, $filepath, $filename) or $file->is_directory()) {
4384 send_file_not_found();
4387 $lifetime = isset($CFG->filelifetime) ? $CFG->filelifetime : 86400;
4389 // finally send the file
4390 send_stored_file($file, $lifetime, 0, false, array('preview' => $preview));
4393 $filefunction = $component.'_pluginfile';
4394 $filefunctionold = $modname.'_pluginfile';
4395 if (function_exists($filefunction)) {
4396 // if the function exists, it must send the file and terminate. Whatever it returns leads to "not found"
4397 $filefunction($course, $cm, $context, $filearea, $args, $forcedownload, array('preview' => $preview));
4398 } else if (function_exists($filefunctionold)) {
4399 // if the function exists, it must send the file and terminate. Whatever it returns leads to "not found"
4400 $filefunctionold($course, $cm, $context, $filearea, $args, $forcedownload, array('preview' => $preview));
4403 send_file_not_found();
4405 // ========================================================================================================================
4406 } else if (strpos($component, 'block_') === 0) {
4407 $blockname = substr($component, 6);
4408 // note: no more class methods in blocks please, that is ....
4409 if (!file_exists("$CFG->dirroot/blocks/$blockname/lib.php")) {
4410 send_file_not_found();
4412 require_once("$CFG->dirroot/blocks/$blockname/lib.php");
4414 if ($context->contextlevel == CONTEXT_BLOCK) {
4415 $birecord = $DB->get_record('block_instances', array('id'=>$context->instanceid), '*',MUST_EXIST);
4416 if ($birecord->blockname !== $blockname) {
4417 // somebody tries to gain illegal access, cm type must match the component!
4418 send_file_not_found();
4421 $bprecord = $DB->get_record('block_positions', array('contextid' => $context->id, 'blockinstanceid' => $context->instanceid));
4422 // User can't access file, if block is hidden or doesn't have block:view capability
4423 if (($bprecord && !$bprecord->visible) || !has_capability('moodle/block:view', $context)) {
4424 send_file_not_found();
4426 } else {
4427 $birecord = null;
4430 $filefunction = $component.'_pluginfile';
4431 if (function_exists($filefunction)) {
4432 // if the function exists, it must send the file and terminate. Whatever it returns leads to "not found"
4433 $filefunction($course, $birecord, $context, $filearea, $args, $forcedownload, array('preview' => $preview));
4436 send_file_not_found();
4438 // ========================================================================================================================
4439 } else if (strpos($component, '_') === false) {
4440 // all core subsystems have to be specified above, no more guessing here!
4441 send_file_not_found();
4443 } else {
4444 // try to serve general plugin file in arbitrary context
4445 $dir = get_component_directory($component);
4446 if (!file_exists("$dir/lib.php")) {
4447 send_file_not_found();
4449 include_once("$dir/lib.php");
4451 $filefunction = $component.'_pluginfile';
4452 if (function_exists($filefunction)) {
4453 // if the function exists, it must send the file and terminate. Whatever it returns leads to "not found"
4454 $filefunction($course, $cm, $context, $filearea, $args, $forcedownload, array('preview' => $preview));
4457 send_file_not_found();