Merge branch 'MDL-46588-27' of git://github.com/jleyva/moodle into MOODLE_27_STABLE
[moodle.git] / repository / lib.php
blob97a1783dd6c337e49d6ac573dcdf0f33eaf19295
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 * This file contains classes used to manage the repository plugins in Moodle
20 * @since Moodle 2.0
21 * @package core_repository
22 * @copyright 2009 Dongsheng Cai {@link http://dongsheng.org}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') || die();
27 require_once($CFG->libdir . '/filelib.php');
28 require_once($CFG->libdir . '/formslib.php');
30 define('FILE_EXTERNAL', 1);
31 define('FILE_INTERNAL', 2);
32 define('FILE_REFERENCE', 4);
33 define('RENAME_SUFFIX', '_2');
35 /**
36 * This class is used to manage repository plugins
38 * A repository_type is a repository plug-in. It can be Box.net, Flick-r, ...
39 * A repository type can be edited, sorted and hidden. It is mandatory for an
40 * administrator to create a repository type in order to be able to create
41 * some instances of this type.
42 * Coding note:
43 * - a repository_type object is mapped to the "repository" database table
44 * - "typename" attibut maps the "type" database field. It is unique.
45 * - general "options" for a repository type are saved in the config_plugin table
46 * - when you delete a repository, all instances are deleted, and general
47 * options are also deleted from database
48 * - When you create a type for a plugin that can't have multiple instances, a
49 * instance is automatically created.
51 * @package core_repository
52 * @copyright 2009 Jerome Mouneyrac
53 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
55 class repository_type implements cacheable_object {
58 /**
59 * Type name (no whitespace) - A type name is unique
60 * Note: for a user-friendly type name see get_readablename()
61 * @var String
63 private $_typename;
66 /**
67 * Options of this type
68 * They are general options that any instance of this type would share
69 * e.g. API key
70 * These options are saved in config_plugin table
71 * @var array
73 private $_options;
76 /**
77 * Is the repository type visible or hidden
78 * If false (hidden): no instances can be created, edited, deleted, showned , used...
79 * @var boolean
81 private $_visible;
84 /**
85 * 0 => not ordered, 1 => first position, 2 => second position...
86 * A not order type would appear in first position (should never happened)
87 * @var integer
89 private $_sortorder;
91 /**
92 * Return if the instance is visible in a context
94 * @todo check if the context visibility has been overwritten by the plugin creator
95 * (need to create special functions to be overvwritten in repository class)
96 * @param stdClass $context context
97 * @return bool
99 public function get_contextvisibility($context) {
100 global $USER;
102 if ($context->contextlevel == CONTEXT_COURSE) {
103 return $this->_options['enablecourseinstances'];
106 if ($context->contextlevel == CONTEXT_USER) {
107 return $this->_options['enableuserinstances'];
110 //the context is SITE
111 return true;
117 * repository_type constructor
119 * @param int $typename
120 * @param array $typeoptions
121 * @param bool $visible
122 * @param int $sortorder (don't really need set, it will be during create() call)
124 public function __construct($typename = '', $typeoptions = array(), $visible = true, $sortorder = 0) {
125 global $CFG;
127 //set type attributs
128 $this->_typename = $typename;
129 $this->_visible = $visible;
130 $this->_sortorder = $sortorder;
132 //set options attribut
133 $this->_options = array();
134 $options = repository::static_function($typename, 'get_type_option_names');
135 //check that the type can be setup
136 if (!empty($options)) {
137 //set the type options
138 foreach ($options as $config) {
139 if (array_key_exists($config, $typeoptions)) {
140 $this->_options[$config] = $typeoptions[$config];
145 //retrieve visibility from option
146 if (array_key_exists('enablecourseinstances',$typeoptions)) {
147 $this->_options['enablecourseinstances'] = $typeoptions['enablecourseinstances'];
148 } else {
149 $this->_options['enablecourseinstances'] = 0;
152 if (array_key_exists('enableuserinstances',$typeoptions)) {
153 $this->_options['enableuserinstances'] = $typeoptions['enableuserinstances'];
154 } else {
155 $this->_options['enableuserinstances'] = 0;
161 * Get the type name (no whitespace)
162 * For a human readable name, use get_readablename()
164 * @return string the type name
166 public function get_typename() {
167 return $this->_typename;
171 * Return a human readable and user-friendly type name
173 * @return string user-friendly type name
175 public function get_readablename() {
176 return get_string('pluginname','repository_'.$this->_typename);
180 * Return general options
182 * @return array the general options
184 public function get_options() {
185 return $this->_options;
189 * Return visibility
191 * @return bool
193 public function get_visible() {
194 return $this->_visible;
198 * Return order / position of display in the file picker
200 * @return int
202 public function get_sortorder() {
203 return $this->_sortorder;
207 * Create a repository type (the type name must not already exist)
208 * @param bool $silent throw exception?
209 * @return mixed return int if create successfully, return false if
211 public function create($silent = false) {
212 global $DB;
214 //check that $type has been set
215 $timmedtype = trim($this->_typename);
216 if (empty($timmedtype)) {
217 throw new repository_exception('emptytype', 'repository');
220 //set sortorder as the last position in the list
221 if (!isset($this->_sortorder) || $this->_sortorder == 0 ) {
222 $sql = "SELECT MAX(sortorder) FROM {repository}";
223 $this->_sortorder = 1 + $DB->get_field_sql($sql);
226 //only create a new type if it doesn't already exist
227 $existingtype = $DB->get_record('repository', array('type'=>$this->_typename));
228 if (!$existingtype) {
229 //create the type
230 $newtype = new stdClass();
231 $newtype->type = $this->_typename;
232 $newtype->visible = $this->_visible;
233 $newtype->sortorder = $this->_sortorder;
234 $plugin_id = $DB->insert_record('repository', $newtype);
235 //save the options in DB
236 $this->update_options();
238 $instanceoptionnames = repository::static_function($this->_typename, 'get_instance_option_names');
240 //if the plugin type has no multiple instance (e.g. has no instance option name) so it wont
241 //be possible for the administrator to create a instance
242 //in this case we need to create an instance
243 if (empty($instanceoptionnames)) {
244 $instanceoptions = array();
245 if (empty($this->_options['pluginname'])) {
246 // when moodle trying to install some repo plugin automatically
247 // this option will be empty, get it from language string when display
248 $instanceoptions['name'] = '';
249 } else {
250 // when admin trying to add a plugin manually, he will type a name
251 // for it
252 $instanceoptions['name'] = $this->_options['pluginname'];
254 repository::static_function($this->_typename, 'create', $this->_typename, 0, context_system::instance(), $instanceoptions);
256 //run plugin_init function
257 if (!repository::static_function($this->_typename, 'plugin_init')) {
258 $this->update_visibility(false);
259 if (!$silent) {
260 throw new repository_exception('cannotinitplugin', 'repository');
264 cache::make('core', 'repositories')->purge();
265 if(!empty($plugin_id)) {
266 // return plugin_id if create successfully
267 return $plugin_id;
268 } else {
269 return false;
272 } else {
273 if (!$silent) {
274 throw new repository_exception('existingrepository', 'repository');
276 // If plugin existed, return false, tell caller no new plugins were created.
277 return false;
283 * Update plugin options into the config_plugin table
285 * @param array $options
286 * @return bool
288 public function update_options($options = null) {
289 global $DB;
290 $classname = 'repository_' . $this->_typename;
291 $instanceoptions = repository::static_function($this->_typename, 'get_instance_option_names');
292 if (empty($instanceoptions)) {
293 // update repository instance name if this plugin type doesn't have muliti instances
294 $params = array();
295 $params['type'] = $this->_typename;
296 $instances = repository::get_instances($params);
297 $instance = array_pop($instances);
298 if ($instance) {
299 $DB->set_field('repository_instances', 'name', $options['pluginname'], array('id'=>$instance->id));
301 unset($options['pluginname']);
304 if (!empty($options)) {
305 $this->_options = $options;
308 foreach ($this->_options as $name => $value) {
309 set_config($name, $value, $this->_typename);
312 cache::make('core', 'repositories')->purge();
313 return true;
317 * Update visible database field with the value given as parameter
318 * or with the visible value of this object
319 * This function is private.
320 * For public access, have a look to switch_and_update_visibility()
322 * @param bool $visible
323 * @return bool
325 private function update_visible($visible = null) {
326 global $DB;
328 if (!empty($visible)) {
329 $this->_visible = $visible;
331 else if (!isset($this->_visible)) {
332 throw new repository_exception('updateemptyvisible', 'repository');
335 cache::make('core', 'repositories')->purge();
336 return $DB->set_field('repository', 'visible', $this->_visible, array('type'=>$this->_typename));
340 * Update database sortorder field with the value given as parameter
341 * or with the sortorder value of this object
342 * This function is private.
343 * For public access, have a look to move_order()
345 * @param int $sortorder
346 * @return bool
348 private function update_sortorder($sortorder = null) {
349 global $DB;
351 if (!empty($sortorder) && $sortorder!=0) {
352 $this->_sortorder = $sortorder;
354 //if sortorder is not set, we set it as the ;ast position in the list
355 else if (!isset($this->_sortorder) || $this->_sortorder == 0 ) {
356 $sql = "SELECT MAX(sortorder) FROM {repository}";
357 $this->_sortorder = 1 + $DB->get_field_sql($sql);
360 cache::make('core', 'repositories')->purge();
361 return $DB->set_field('repository', 'sortorder', $this->_sortorder, array('type'=>$this->_typename));
365 * Change order of the type with its adjacent upper or downer type
366 * (database fields are updated)
367 * Algorithm details:
368 * 1. retrieve all types in an array. This array is sorted by sortorder,
369 * and the array keys start from 0 to X (incremented by 1)
370 * 2. switch sortorder values of this type and its adjacent type
372 * @param string $move "up" or "down"
374 public function move_order($move) {
375 global $DB;
377 $types = repository::get_types(); // retrieve all types
379 // retrieve this type into the returned array
380 $i = 0;
381 while (!isset($indice) && $i<count($types)) {
382 if ($types[$i]->get_typename() == $this->_typename) {
383 $indice = $i;
385 $i++;
388 // retrieve adjacent indice
389 switch ($move) {
390 case "up":
391 $adjacentindice = $indice - 1;
392 break;
393 case "down":
394 $adjacentindice = $indice + 1;
395 break;
396 default:
397 throw new repository_exception('movenotdefined', 'repository');
400 //switch sortorder of this type and the adjacent type
401 //TODO: we could reset sortorder for all types. This is not as good in performance term, but
402 //that prevent from wrong behaviour on a screwed database. As performance are not important in this particular case
403 //it worth to change the algo.
404 if ($adjacentindice>=0 && !empty($types[$adjacentindice])) {
405 $DB->set_field('repository', 'sortorder', $this->_sortorder, array('type'=>$types[$adjacentindice]->get_typename()));
406 $this->update_sortorder($types[$adjacentindice]->get_sortorder());
411 * 1. Change visibility to the value chosen
412 * 2. Update the type
414 * @param bool $visible
415 * @return bool
417 public function update_visibility($visible = null) {
418 if (is_bool($visible)) {
419 $this->_visible = $visible;
420 } else {
421 $this->_visible = !$this->_visible;
423 return $this->update_visible();
428 * Delete a repository_type (general options are removed from config_plugin
429 * table, and all instances are deleted)
431 * @param bool $downloadcontents download external contents if exist
432 * @return bool
434 public function delete($downloadcontents = false) {
435 global $DB;
437 //delete all instances of this type
438 $params = array();
439 $params['context'] = array();
440 $params['onlyvisible'] = false;
441 $params['type'] = $this->_typename;
442 $instances = repository::get_instances($params);
443 foreach ($instances as $instance) {
444 $instance->delete($downloadcontents);
447 //delete all general options
448 foreach ($this->_options as $name => $value) {
449 set_config($name, null, $this->_typename);
452 cache::make('core', 'repositories')->purge();
453 try {
454 $DB->delete_records('repository', array('type' => $this->_typename));
455 } catch (dml_exception $ex) {
456 return false;
458 return true;
462 * Prepares the repository type to be cached. Implements method from cacheable_object interface.
464 * @return array
466 public function prepare_to_cache() {
467 return array(
468 'typename' => $this->_typename,
469 'typeoptions' => $this->_options,
470 'visible' => $this->_visible,
471 'sortorder' => $this->_sortorder
476 * Restores repository type from cache. Implements method from cacheable_object interface.
478 * @return array
480 public static function wake_from_cache($data) {
481 return new repository_type($data['typename'], $data['typeoptions'], $data['visible'], $data['sortorder']);
486 * This is the base class of the repository class.
488 * To create repository plugin, see: {@link http://docs.moodle.org/dev/Repository_plugins}
489 * See an example: {@link repository_boxnet}
491 * @package core_repository
492 * @copyright 2009 Dongsheng Cai {@link http://dongsheng.org}
493 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
495 abstract class repository implements cacheable_object {
497 * Timeout in seconds for downloading the external file into moodle
498 * @deprecated since Moodle 2.7, please use $CFG->repositorygetfiletimeout instead
500 const GETFILE_TIMEOUT = 30;
503 * Timeout in seconds for syncronising the external file size
504 * @deprecated since Moodle 2.7, please use $CFG->repositorysyncfiletimeout instead
506 const SYNCFILE_TIMEOUT = 1;
509 * Timeout in seconds for downloading an image file from external repository during syncronisation
510 * @deprecated since Moodle 2.7, please use $CFG->repositorysyncimagetimeout instead
512 const SYNCIMAGE_TIMEOUT = 3;
514 // $disabled can be set to true to disable a plugin by force
515 // example: self::$disabled = true
516 /** @var bool force disable repository instance */
517 public $disabled = false;
518 /** @var int repository instance id */
519 public $id;
520 /** @var stdClass current context */
521 public $context;
522 /** @var array repository options */
523 public $options;
524 /** @var bool Whether or not the repository instance is editable */
525 public $readonly;
526 /** @var int return types */
527 public $returntypes;
528 /** @var stdClass repository instance database record */
529 public $instance;
530 /** @var string Type of repository (webdav, google_docs, dropbox, ...). Read from $this->get_typename(). */
531 protected $typename;
534 * Constructor
536 * @param int $repositoryid repository instance id
537 * @param int|stdClass $context a context id or context object
538 * @param array $options repository options
539 * @param int $readonly indicate this repo is readonly or not
541 public function __construct($repositoryid, $context = SYSCONTEXTID, $options = array(), $readonly = 0) {
542 global $DB;
543 $this->id = $repositoryid;
544 if (is_object($context)) {
545 $this->context = $context;
546 } else {
547 $this->context = context::instance_by_id($context);
549 $cache = cache::make('core', 'repositories');
550 if (($this->instance = $cache->get('i:'. $this->id)) === false) {
551 $this->instance = $DB->get_record_sql("SELECT i.*, r.type AS repositorytype, r.sortorder, r.visible
552 FROM {repository} r, {repository_instances} i
553 WHERE i.typeid = r.id and i.id = ?", array('id' => $this->id));
554 $cache->set('i:'. $this->id, $this->instance);
556 $this->readonly = $readonly;
557 $this->options = array();
559 if (is_array($options)) {
560 // The get_option() method will get stored options in database.
561 $options = array_merge($this->get_option(), $options);
562 } else {
563 $options = $this->get_option();
565 foreach ($options as $n => $v) {
566 $this->options[$n] = $v;
568 $this->name = $this->get_name();
569 $this->returntypes = $this->supported_returntypes();
570 $this->super_called = true;
574 * Magic method for non-existing (usually deprecated) class methods.
576 * @param string $name
577 * @param array $arguments
578 * @return mixed
579 * @throws coding_exception
581 public function __call($name, $arguments) {
582 if ($name === 'sync_individual_file') {
583 // Method repository::sync_individual_file() was deprecated in Moodle 2.6.
584 // See repository::sync_reference().
585 debugging('Function repository::sync_individual_file() is deprecated.', DEBUG_DEVELOPER);
586 return true;
587 } else if ($name === 'get_file_by_reference') {
588 // Method repository::get_file_by_reference() was deprecated in Moodle 2.6.
589 // See repository::sync_reference().
590 debugging('Function repository::get_file_by_reference() is deprecated.', DEBUG_DEVELOPER);
591 return null;
592 } else if ($name === 'get_reference_file_lifetime') {
593 // Method repository::get_file_by_reference() was deprecated in Moodle 2.6.
594 // See repository::sync_reference().
595 debugging('Function repository::get_reference_file_lifetime() is deprecated.', DEBUG_DEVELOPER);
596 return 24 * 60 * 60;
597 } else {
598 throw new coding_exception('Tried to call unknown method '.get_class($this).'::'.$name);
603 * Get repository instance using repository id
605 * Note that this function does not check permission to access repository contents
607 * @throws repository_exception
609 * @param int $repositoryid repository instance ID
610 * @param context|int $context context instance or context ID where this repository will be used
611 * @param array $options additional repository options
612 * @return repository
614 public static function get_repository_by_id($repositoryid, $context, $options = array()) {
615 global $CFG, $DB;
616 $cache = cache::make('core', 'repositories');
617 if (!is_object($context)) {
618 $context = context::instance_by_id($context);
620 $cachekey = 'rep:'. $repositoryid. ':'. $context->id. ':'. serialize($options);
621 if ($repository = $cache->get($cachekey)) {
622 return $repository;
625 if (!$record = $cache->get('i:'. $repositoryid)) {
626 $sql = "SELECT i.*, r.type AS repositorytype, r.visible, r.sortorder
627 FROM {repository_instances} i
628 JOIN {repository} r ON r.id = i.typeid
629 WHERE i.id = ?";
630 if (!$record = $DB->get_record_sql($sql, array($repositoryid))) {
631 throw new repository_exception('invalidrepositoryid', 'repository');
633 $cache->set('i:'. $record->id, $record);
636 $type = $record->repositorytype;
637 if (file_exists($CFG->dirroot . "/repository/$type/lib.php")) {
638 require_once($CFG->dirroot . "/repository/$type/lib.php");
639 $classname = 'repository_' . $type;
640 $options['type'] = $type;
641 $options['typeid'] = $record->typeid;
642 $options['visible'] = $record->visible;
643 if (empty($options['name'])) {
644 $options['name'] = $record->name;
646 $repository = new $classname($repositoryid, $context, $options, $record->readonly);
647 if (empty($repository->super_called)) {
648 // to make sure the super construct is called
649 debugging('parent::__construct must be called by '.$type.' plugin.');
651 $cache->set($cachekey, $repository);
652 return $repository;
653 } else {
654 throw new repository_exception('invalidplugin', 'repository');
659 * Returns the type name of the repository.
661 * @return string type name of the repository.
662 * @since Moodle 2.5
664 public function get_typename() {
665 if (empty($this->typename)) {
666 $matches = array();
667 if (!preg_match("/^repository_(.*)$/", get_class($this), $matches)) {
668 throw new coding_exception('The class name of a repository should be repository_<typeofrepository>, '.
669 'e.g. repository_dropbox');
671 $this->typename = $matches[1];
673 return $this->typename;
677 * Get a repository type object by a given type name.
679 * @static
680 * @param string $typename the repository type name
681 * @return repository_type|bool
683 public static function get_type_by_typename($typename) {
684 global $DB;
685 $cache = cache::make('core', 'repositories');
686 if (($repositorytype = $cache->get('typename:'. $typename)) === false) {
687 $repositorytype = null;
688 if ($record = $DB->get_record('repository', array('type' => $typename))) {
689 $repositorytype = new repository_type($record->type, (array)get_config($record->type), $record->visible, $record->sortorder);
690 $cache->set('typeid:'. $record->id, $repositorytype);
692 $cache->set('typename:'. $typename, $repositorytype);
694 return $repositorytype;
698 * Get the repository type by a given repository type id.
700 * @static
701 * @param int $id the type id
702 * @return object
704 public static function get_type_by_id($id) {
705 global $DB;
706 $cache = cache::make('core', 'repositories');
707 if (($repositorytype = $cache->get('typeid:'. $id)) === false) {
708 $repositorytype = null;
709 if ($record = $DB->get_record('repository', array('id' => $id))) {
710 $repositorytype = new repository_type($record->type, (array)get_config($record->type), $record->visible, $record->sortorder);
711 $cache->set('typename:'. $record->type, $repositorytype);
713 $cache->set('typeid:'. $id, $repositorytype);
715 return $repositorytype;
719 * Return all repository types ordered by sortorder field
720 * first repository type in returnedarray[0], second repository type in returnedarray[1], ...
722 * @static
723 * @param bool $visible can return types by visiblity, return all types if null
724 * @return array Repository types
726 public static function get_types($visible=null) {
727 global $DB, $CFG;
728 $cache = cache::make('core', 'repositories');
729 if (!$visible) {
730 $typesnames = $cache->get('types');
731 } else {
732 $typesnames = $cache->get('typesvis');
734 $types = array();
735 if ($typesnames === false) {
736 $typesnames = array();
737 $vistypesnames = array();
738 if ($records = $DB->get_records('repository', null ,'sortorder')) {
739 foreach($records as $type) {
740 if (($repositorytype = $cache->get('typename:'. $type->type)) === false) {
741 // Create new instance of repository_type.
742 if (file_exists($CFG->dirroot . '/repository/'. $type->type .'/lib.php')) {
743 $repositorytype = new repository_type($type->type, (array)get_config($type->type), $type->visible, $type->sortorder);
744 $cache->set('typeid:'. $type->id, $repositorytype);
745 $cache->set('typename:'. $type->type, $repositorytype);
748 if ($repositorytype) {
749 if (empty($visible) || $repositorytype->get_visible()) {
750 $types[] = $repositorytype;
751 $vistypesnames[] = $repositorytype->get_typename();
753 $typesnames[] = $repositorytype->get_typename();
757 $cache->set('types', $typesnames);
758 $cache->set('typesvis', $vistypesnames);
759 } else {
760 foreach ($typesnames as $typename) {
761 $types[] = self::get_type_by_typename($typename);
764 return $types;
768 * Checks if user has a capability to view the current repository.
770 * @return bool true when the user can, otherwise throws an exception.
771 * @throws repository_exception when the user does not meet the requirements.
773 public final function check_capability() {
774 global $USER;
776 // The context we are on.
777 $currentcontext = $this->context;
779 // Ensure that the user can view the repository in the current context.
780 $can = has_capability('repository/'.$this->get_typename().':view', $currentcontext);
782 // Context in which the repository has been created.
783 $repocontext = context::instance_by_id($this->instance->contextid);
785 // Prevent access to private repositories when logged in as.
786 if ($can && \core\session\manager::is_loggedinas()) {
787 if ($this->contains_private_data() || $repocontext->contextlevel == CONTEXT_USER) {
788 $can = false;
792 // We are going to ensure that the current context was legit, and reliable to check
793 // the capability against. (No need to do that if we already cannot).
794 if ($can) {
795 if ($repocontext->contextlevel == CONTEXT_USER) {
796 // The repository is a user instance, ensure we're the right user to access it!
797 if ($repocontext->instanceid != $USER->id) {
798 $can = false;
800 } else if ($repocontext->contextlevel == CONTEXT_COURSE) {
801 // The repository is a course one. Let's check that we are on the right course.
802 if (in_array($currentcontext->contextlevel, array(CONTEXT_COURSE, CONTEXT_MODULE, CONTEXT_BLOCK))) {
803 $coursecontext = $currentcontext->get_course_context();
804 if ($coursecontext->instanceid != $repocontext->instanceid) {
805 $can = false;
807 } else {
808 // We are on a parent context, therefore it's legit to check the permissions
809 // in the current context.
811 } else {
812 // Nothing to check here, system instances can have different permissions on different
813 // levels. We do not want to prevent URL hack here, because it does not make sense to
814 // prevent a user to access a repository in a context if it's accessible in another one.
818 if ($can) {
819 return true;
822 throw new repository_exception('nopermissiontoaccess', 'repository');
826 * Check if file already exists in draft area.
828 * @static
829 * @param int $itemid of the draft area.
830 * @param string $filepath path to the file.
831 * @param string $filename file name.
832 * @return bool
834 public static function draftfile_exists($itemid, $filepath, $filename) {
835 global $USER;
836 $fs = get_file_storage();
837 $usercontext = context_user::instance($USER->id);
838 return $fs->file_exists($usercontext->id, 'user', 'draft', $itemid, $filepath, $filename);
842 * Parses the moodle file reference and returns an instance of stored_file
844 * @param string $reference reference to the moodle internal file as retruned by
845 * {@link repository::get_file_reference()} or {@link file_storage::pack_reference()}
846 * @return stored_file|null
848 public static function get_moodle_file($reference) {
849 $params = file_storage::unpack_reference($reference, true);
850 $fs = get_file_storage();
851 return $fs->get_file($params['contextid'], $params['component'], $params['filearea'],
852 $params['itemid'], $params['filepath'], $params['filename']);
856 * Repository method to make sure that user can access particular file.
858 * This is checked when user tries to pick the file from repository to deal with
859 * potential parameter substitutions is request
861 * @param string $source source of the file, returned by repository as 'source' and received back from user (not cleaned)
862 * @return bool whether the file is accessible by current user
864 public function file_is_accessible($source) {
865 if ($this->has_moodle_files()) {
866 $reference = $this->get_file_reference($source);
867 try {
868 $params = file_storage::unpack_reference($reference, true);
869 } catch (file_reference_exception $e) {
870 return false;
872 $browser = get_file_browser();
873 $context = context::instance_by_id($params['contextid']);
874 $file_info = $browser->get_file_info($context, $params['component'], $params['filearea'],
875 $params['itemid'], $params['filepath'], $params['filename']);
876 return !empty($file_info);
878 return true;
882 * This function is used to copy a moodle file to draft area.
884 * It DOES NOT check if the user is allowed to access this file because the actual file
885 * can be located in the area where user does not have access to but there is an alias
886 * to this file in the area where user CAN access it.
887 * {@link file_is_accessible} should be called for alias location before calling this function.
889 * @param string $source The metainfo of file, it is base64 encoded php serialized data
890 * @param stdClass|array $filerecord contains itemid, filepath, filename and optionally other
891 * attributes of the new file
892 * @param int $maxbytes maximum allowed size of file, -1 if unlimited. If size of file exceeds
893 * the limit, the file_exception is thrown.
894 * @param int $areamaxbytes the maximum size of the area. A file_exception is thrown if the
895 * new file will reach the limit.
896 * @return array The information about the created file
898 public function copy_to_area($source, $filerecord, $maxbytes = -1, $areamaxbytes = FILE_AREA_MAX_BYTES_UNLIMITED) {
899 global $USER;
900 $fs = get_file_storage();
902 if ($this->has_moodle_files() == false) {
903 throw new coding_exception('Only repository used to browse moodle files can use repository::copy_to_area()');
906 $user_context = context_user::instance($USER->id);
908 $filerecord = (array)$filerecord;
909 // make sure the new file will be created in user draft area
910 $filerecord['component'] = 'user';
911 $filerecord['filearea'] = 'draft';
912 $filerecord['contextid'] = $user_context->id;
913 $draftitemid = $filerecord['itemid'];
914 $new_filepath = $filerecord['filepath'];
915 $new_filename = $filerecord['filename'];
917 // the file needs to copied to draft area
918 $stored_file = self::get_moodle_file($source);
919 if ($maxbytes != -1 && $stored_file->get_filesize() > $maxbytes) {
920 throw new file_exception('maxbytes');
922 // Validate the size of the draft area.
923 if (file_is_draft_area_limit_reached($draftitemid, $areamaxbytes, $stored_file->get_filesize())) {
924 throw new file_exception('maxareabytes');
927 if (repository::draftfile_exists($draftitemid, $new_filepath, $new_filename)) {
928 // create new file
929 $unused_filename = repository::get_unused_filename($draftitemid, $new_filepath, $new_filename);
930 $filerecord['filename'] = $unused_filename;
931 $fs->create_file_from_storedfile($filerecord, $stored_file);
932 $event = array();
933 $event['event'] = 'fileexists';
934 $event['newfile'] = new stdClass;
935 $event['newfile']->filepath = $new_filepath;
936 $event['newfile']->filename = $unused_filename;
937 $event['newfile']->url = moodle_url::make_draftfile_url($draftitemid, $new_filepath, $unused_filename)->out();
938 $event['existingfile'] = new stdClass;
939 $event['existingfile']->filepath = $new_filepath;
940 $event['existingfile']->filename = $new_filename;
941 $event['existingfile']->url = moodle_url::make_draftfile_url($draftitemid, $new_filepath, $new_filename)->out();
942 return $event;
943 } else {
944 $fs->create_file_from_storedfile($filerecord, $stored_file);
945 $info = array();
946 $info['itemid'] = $draftitemid;
947 $info['file'] = $new_filename;
948 $info['title'] = $new_filename;
949 $info['contextid'] = $user_context->id;
950 $info['url'] = moodle_url::make_draftfile_url($draftitemid, $new_filepath, $new_filename)->out();
951 $info['filesize'] = $stored_file->get_filesize();
952 return $info;
957 * Get an unused filename from the current draft area.
959 * Will check if the file ends with ([0-9]) and increase the number.
961 * @static
962 * @param int $itemid draft item ID.
963 * @param string $filepath path to the file.
964 * @param string $filename name of the file.
965 * @return string an unused file name.
967 public static function get_unused_filename($itemid, $filepath, $filename) {
968 global $USER;
969 $contextid = context_user::instance($USER->id)->id;
970 $fs = get_file_storage();
971 return $fs->get_unused_filename($contextid, 'user', 'draft', $itemid, $filepath, $filename);
975 * Append a suffix to filename.
977 * @static
978 * @param string $filename
979 * @return string
980 * @deprecated since 2.5
982 public static function append_suffix($filename) {
983 debugging('The function repository::append_suffix() has been deprecated. Use repository::get_unused_filename() instead.',
984 DEBUG_DEVELOPER);
985 $pathinfo = pathinfo($filename);
986 if (empty($pathinfo['extension'])) {
987 return $filename . RENAME_SUFFIX;
988 } else {
989 return $pathinfo['filename'] . RENAME_SUFFIX . '.' . $pathinfo['extension'];
994 * Return all types that you a user can create/edit and which are also visible
995 * Note: Mostly used in order to know if at least one editable type can be set
997 * @static
998 * @param stdClass $context the context for which we want the editable types
999 * @return array types
1001 public static function get_editable_types($context = null) {
1003 if (empty($context)) {
1004 $context = context_system::instance();
1007 $types= repository::get_types(true);
1008 $editabletypes = array();
1009 foreach ($types as $type) {
1010 $instanceoptionnames = repository::static_function($type->get_typename(), 'get_instance_option_names');
1011 if (!empty($instanceoptionnames)) {
1012 if ($type->get_contextvisibility($context)) {
1013 $editabletypes[]=$type;
1017 return $editabletypes;
1021 * Return repository instances
1023 * @static
1024 * @param array $args Array containing the following keys:
1025 * currentcontext : instance of context (default system context)
1026 * context : array of instances of context (default empty array)
1027 * onlyvisible : bool (default true)
1028 * type : string return instances of this type only
1029 * accepted_types : string|array return instances that contain files of those types (*, web_image, .pdf, ...)
1030 * return_types : int combination of FILE_INTERNAL & FILE_EXTERNAL & FILE_REFERENCE.
1031 * 0 means every type. The default is FILE_INTERNAL | FILE_EXTERNAL.
1032 * userid : int if specified, instances belonging to other users will not be returned
1034 * @return array repository instances
1036 public static function get_instances($args = array()) {
1037 global $DB, $CFG, $USER;
1039 // Fill $args attributes with default values unless specified
1040 if (!isset($args['currentcontext']) || !($args['currentcontext'] instanceof context)) {
1041 $current_context = context_system::instance();
1042 } else {
1043 $current_context = $args['currentcontext'];
1045 $args['currentcontext'] = $current_context->id;
1046 $contextids = array();
1047 if (!empty($args['context'])) {
1048 foreach ($args['context'] as $context) {
1049 $contextids[] = $context->id;
1052 $args['context'] = $contextids;
1053 if (!isset($args['onlyvisible'])) {
1054 $args['onlyvisible'] = true;
1056 if (!isset($args['return_types'])) {
1057 $args['return_types'] = FILE_INTERNAL | FILE_EXTERNAL;
1059 if (!isset($args['type'])) {
1060 $args['type'] = null;
1062 if (empty($args['disable_types']) || !is_array($args['disable_types'])) {
1063 $args['disable_types'] = null;
1065 if (empty($args['userid']) || !is_numeric($args['userid'])) {
1066 $args['userid'] = null;
1068 if (!isset($args['accepted_types']) || (is_array($args['accepted_types']) && in_array('*', $args['accepted_types']))) {
1069 $args['accepted_types'] = '*';
1071 ksort($args);
1072 $cachekey = 'all:'. serialize($args);
1074 // Check if we have cached list of repositories with the same query
1075 $cache = cache::make('core', 'repositories');
1076 if (($cachedrepositories = $cache->get($cachekey)) !== false) {
1077 // convert from cacheable_object_array to array
1078 $repositories = array();
1079 foreach ($cachedrepositories as $repository) {
1080 $repositories[$repository->id] = $repository;
1082 return $repositories;
1085 // Prepare DB SQL query to retrieve repositories
1086 $params = array();
1087 $sql = "SELECT i.*, r.type AS repositorytype, r.sortorder, r.visible
1088 FROM {repository} r, {repository_instances} i
1089 WHERE i.typeid = r.id ";
1091 if ($args['disable_types']) {
1092 list($types, $p) = $DB->get_in_or_equal($args['disable_types'], SQL_PARAMS_NAMED, 'distype', false);
1093 $sql .= " AND r.type $types";
1094 $params = array_merge($params, $p);
1097 if ($args['userid']) {
1098 $sql .= " AND (i.userid = 0 or i.userid = :userid)";
1099 $params['userid'] = $args['userid'];
1102 if ($args['context']) {
1103 list($ctxsql, $p2) = $DB->get_in_or_equal($args['context'], SQL_PARAMS_NAMED, 'ctx');
1104 $sql .= " AND i.contextid $ctxsql";
1105 $params = array_merge($params, $p2);
1108 if ($args['onlyvisible'] == true) {
1109 $sql .= " AND r.visible = 1";
1112 if ($args['type'] !== null) {
1113 $sql .= " AND r.type = :type";
1114 $params['type'] = $args['type'];
1116 $sql .= " ORDER BY r.sortorder, i.name";
1118 if (!$records = $DB->get_records_sql($sql, $params)) {
1119 $records = array();
1122 $repositories = array();
1123 // Sortorder should be unique, which is not true if we use $record->sortorder
1124 // and there are multiple instances of any repository type
1125 $sortorder = 1;
1126 foreach ($records as $record) {
1127 $cache->set('i:'. $record->id, $record);
1128 if (!file_exists($CFG->dirroot . '/repository/'. $record->repositorytype.'/lib.php')) {
1129 continue;
1131 $repository = self::get_repository_by_id($record->id, $current_context);
1132 $repository->options['sortorder'] = $sortorder++;
1134 $is_supported = true;
1136 // check mimetypes
1137 if ($args['accepted_types'] !== '*' and $repository->supported_filetypes() !== '*') {
1138 $accepted_ext = file_get_typegroup('extension', $args['accepted_types']);
1139 $supported_ext = file_get_typegroup('extension', $repository->supported_filetypes());
1140 $valid_ext = array_intersect($accepted_ext, $supported_ext);
1141 $is_supported = !empty($valid_ext);
1143 // Check return values.
1144 if (!empty($args['return_types']) && !($repository->supported_returntypes() & $args['return_types'])) {
1145 $is_supported = false;
1148 if (!$args['onlyvisible'] || ($repository->is_visible() && !$repository->disabled)) {
1149 // check capability in current context
1150 $capability = has_capability('repository/'.$record->repositorytype.':view', $current_context);
1151 if ($record->repositorytype == 'coursefiles') {
1152 // coursefiles plugin needs managefiles permission
1153 $capability = $capability && has_capability('moodle/course:managefiles', $current_context);
1155 if ($is_supported && $capability) {
1156 $repositories[$repository->id] = $repository;
1160 $cache->set($cachekey, new cacheable_object_array($repositories));
1161 return $repositories;
1165 * Get single repository instance for administrative actions
1167 * Do not use this function to access repository contents, because it
1168 * does not set the current context
1170 * @see repository::get_repository_by_id()
1172 * @static
1173 * @param integer $id repository instance id
1174 * @return repository
1176 public static function get_instance($id) {
1177 return self::get_repository_by_id($id, context_system::instance());
1181 * Call a static function. Any additional arguments than plugin and function will be passed through.
1183 * @static
1184 * @param string $plugin repository plugin name
1185 * @param string $function function name
1186 * @return mixed
1188 public static function static_function($plugin, $function) {
1189 global $CFG;
1191 //check that the plugin exists
1192 $typedirectory = $CFG->dirroot . '/repository/'. $plugin . '/lib.php';
1193 if (!file_exists($typedirectory)) {
1194 //throw new repository_exception('invalidplugin', 'repository');
1195 return false;
1198 $args = func_get_args();
1199 if (count($args) <= 2) {
1200 $args = array();
1201 } else {
1202 array_shift($args);
1203 array_shift($args);
1206 require_once($typedirectory);
1207 return call_user_func_array(array('repository_' . $plugin, $function), $args);
1211 * Scan file, throws exception in case of infected file.
1213 * Please note that the scanning engine must be able to access the file,
1214 * permissions of the file are not modified here!
1216 * @static
1217 * @param string $thefile
1218 * @param string $filename name of the file
1219 * @param bool $deleteinfected
1221 public static function antivir_scan_file($thefile, $filename, $deleteinfected) {
1222 global $CFG;
1224 if (!is_readable($thefile)) {
1225 // this should not happen
1226 return;
1229 if (empty($CFG->runclamonupload) or empty($CFG->pathtoclam)) {
1230 // clam not enabled
1231 return;
1234 $CFG->pathtoclam = trim($CFG->pathtoclam);
1236 if (!file_exists($CFG->pathtoclam) or !is_executable($CFG->pathtoclam)) {
1237 // misconfigured clam - use the old notification for now
1238 require("$CFG->libdir/uploadlib.php");
1239 $notice = get_string('clamlost', 'moodle', $CFG->pathtoclam);
1240 clam_message_admins($notice);
1241 return;
1244 $clamparam = ' --stdout ';
1245 // If we are dealing with clamdscan, clamd is likely run as a different user
1246 // that might not have permissions to access your file.
1247 // To make clamdscan work, we use --fdpass parameter that passes the file
1248 // descriptor permissions to clamd, which allows it to scan given file
1249 // irrespective of directory and file permissions.
1250 if (basename($CFG->pathtoclam) == 'clamdscan') {
1251 $clamparam .= '--fdpass ';
1253 // execute test
1254 $cmd = escapeshellcmd($CFG->pathtoclam).$clamparam.escapeshellarg($thefile);
1255 exec($cmd, $output, $return);
1257 if ($return == 0) {
1258 // perfect, no problem found
1259 return;
1261 } else if ($return == 1) {
1262 // infection found
1263 if ($deleteinfected) {
1264 unlink($thefile);
1266 throw new moodle_exception('virusfounduser', 'moodle', '', array('filename'=>$filename));
1268 } else {
1269 //unknown problem
1270 require("$CFG->libdir/uploadlib.php");
1271 $notice = get_string('clamfailed', 'moodle', get_clam_error_code($return));
1272 $notice .= "\n\n". implode("\n", $output);
1273 clam_message_admins($notice);
1274 if ($CFG->clamfailureonupload === 'actlikevirus') {
1275 if ($deleteinfected) {
1276 unlink($thefile);
1278 throw new moodle_exception('virusfounduser', 'moodle', '', array('filename'=>$filename));
1279 } else {
1280 return;
1286 * Repository method to serve the referenced file
1288 * @see send_stored_file
1290 * @param stored_file $storedfile the file that contains the reference
1291 * @param int $lifetime Number of seconds before the file should expire from caches (null means $CFG->filelifetime)
1292 * @param int $filter 0 (default)=no filtering, 1=all files, 2=html files only
1293 * @param bool $forcedownload If true (default false), forces download of file rather than view in browser/plugin
1294 * @param array $options additional options affecting the file serving
1296 public function send_file($storedfile, $lifetime=null , $filter=0, $forcedownload=false, array $options = null) {
1297 if ($this->has_moodle_files()) {
1298 $fs = get_file_storage();
1299 $params = file_storage::unpack_reference($storedfile->get_reference(), true);
1300 $srcfile = null;
1301 if (is_array($params)) {
1302 $srcfile = $fs->get_file($params['contextid'], $params['component'], $params['filearea'],
1303 $params['itemid'], $params['filepath'], $params['filename']);
1305 if (empty($options)) {
1306 $options = array();
1308 if (!isset($options['filename'])) {
1309 $options['filename'] = $storedfile->get_filename();
1311 if (!$srcfile) {
1312 send_file_not_found();
1313 } else {
1314 send_stored_file($srcfile, $lifetime, $filter, $forcedownload, $options);
1316 } else {
1317 throw new coding_exception("Repository plugin must implement send_file() method.");
1322 * Return human readable reference information
1324 * @param string $reference value of DB field files_reference.reference
1325 * @param int $filestatus status of the file, 0 - ok, 666 - source missing
1326 * @return string
1328 public function get_reference_details($reference, $filestatus = 0) {
1329 if ($this->has_moodle_files()) {
1330 $fileinfo = null;
1331 $params = file_storage::unpack_reference($reference, true);
1332 if (is_array($params)) {
1333 $context = context::instance_by_id($params['contextid'], IGNORE_MISSING);
1334 if ($context) {
1335 $browser = get_file_browser();
1336 $fileinfo = $browser->get_file_info($context, $params['component'], $params['filearea'], $params['itemid'], $params['filepath'], $params['filename']);
1339 if (empty($fileinfo)) {
1340 if ($filestatus == 666) {
1341 if (is_siteadmin() || ($context && has_capability('moodle/course:managefiles', $context))) {
1342 return get_string('lostsource', 'repository',
1343 $params['contextid']. '/'. $params['component']. '/'. $params['filearea']. '/'. $params['itemid']. $params['filepath']. $params['filename']);
1344 } else {
1345 return get_string('lostsource', 'repository', '');
1348 return get_string('undisclosedsource', 'repository');
1349 } else {
1350 return $fileinfo->get_readable_fullname();
1353 return '';
1357 * Cache file from external repository by reference
1358 * {@link repository::get_file_reference()}
1359 * {@link repository::get_file()}
1360 * Invoked at MOODLE/repository/repository_ajax.php
1362 * @param string $reference this reference is generated by
1363 * repository::get_file_reference()
1364 * @param stored_file $storedfile created file reference
1366 public function cache_file_by_reference($reference, $storedfile) {
1370 * Return the source information
1372 * The result of the function is stored in files.source field. It may be analysed
1373 * when the source file is lost or repository may use it to display human-readable
1374 * location of reference original.
1376 * This method is called when file is picked for the first time only. When file
1377 * (either copy or a reference) is already in moodle and it is being picked
1378 * again to another file area (also as a copy or as a reference), the value of
1379 * files.source is copied.
1381 * @param string $source source of the file, returned by repository as 'source' and received back from user (not cleaned)
1382 * @return string|null
1384 public function get_file_source_info($source) {
1385 if ($this->has_moodle_files()) {
1386 $reference = $this->get_file_reference($source);
1387 return $this->get_reference_details($reference, 0);
1389 return $source;
1393 * Move file from download folder to file pool using FILE API
1395 * @todo MDL-28637
1396 * @static
1397 * @param string $thefile file path in download folder
1398 * @param stdClass $record
1399 * @return array containing the following keys:
1400 * icon
1401 * file
1402 * id
1403 * url
1405 public static function move_to_filepool($thefile, $record) {
1406 global $DB, $CFG, $USER, $OUTPUT;
1408 // scan for viruses if possible, throws exception if problem found
1409 self::antivir_scan_file($thefile, $record->filename, empty($CFG->repository_no_delete)); //TODO: MDL-28637 this repository_no_delete is a bloody hack!
1411 $fs = get_file_storage();
1412 // If file name being used.
1413 if (repository::draftfile_exists($record->itemid, $record->filepath, $record->filename)) {
1414 $draftitemid = $record->itemid;
1415 $new_filename = repository::get_unused_filename($draftitemid, $record->filepath, $record->filename);
1416 $old_filename = $record->filename;
1417 // Create a tmp file.
1418 $record->filename = $new_filename;
1419 $newfile = $fs->create_file_from_pathname($record, $thefile);
1420 $event = array();
1421 $event['event'] = 'fileexists';
1422 $event['newfile'] = new stdClass;
1423 $event['newfile']->filepath = $record->filepath;
1424 $event['newfile']->filename = $new_filename;
1425 $event['newfile']->url = moodle_url::make_draftfile_url($draftitemid, $record->filepath, $new_filename)->out();
1427 $event['existingfile'] = new stdClass;
1428 $event['existingfile']->filepath = $record->filepath;
1429 $event['existingfile']->filename = $old_filename;
1430 $event['existingfile']->url = moodle_url::make_draftfile_url($draftitemid, $record->filepath, $old_filename)->out();
1431 return $event;
1433 if ($file = $fs->create_file_from_pathname($record, $thefile)) {
1434 if (empty($CFG->repository_no_delete)) {
1435 $delete = unlink($thefile);
1436 unset($CFG->repository_no_delete);
1438 return array(
1439 'url'=>moodle_url::make_draftfile_url($file->get_itemid(), $file->get_filepath(), $file->get_filename())->out(),
1440 'id'=>$file->get_itemid(),
1441 'file'=>$file->get_filename(),
1442 'icon' => $OUTPUT->pix_url(file_extension_icon($thefile, 32))->out(),
1444 } else {
1445 return null;
1450 * Builds a tree of files This function is then called recursively.
1452 * @static
1453 * @todo take $search into account, and respect a threshold for dynamic loading
1454 * @param file_info $fileinfo an object returned by file_browser::get_file_info()
1455 * @param string $search searched string
1456 * @param bool $dynamicmode no recursive call is done when in dynamic mode
1457 * @param array $list the array containing the files under the passed $fileinfo
1458 * @return int the number of files found
1460 public static function build_tree($fileinfo, $search, $dynamicmode, &$list) {
1461 global $CFG, $OUTPUT;
1463 $filecount = 0;
1464 $children = $fileinfo->get_children();
1466 foreach ($children as $child) {
1467 $filename = $child->get_visible_name();
1468 $filesize = $child->get_filesize();
1469 $filesize = $filesize ? display_size($filesize) : '';
1470 $filedate = $child->get_timemodified();
1471 $filedate = $filedate ? userdate($filedate) : '';
1472 $filetype = $child->get_mimetype();
1474 if ($child->is_directory()) {
1475 $path = array();
1476 $level = $child->get_parent();
1477 while ($level) {
1478 $params = $level->get_params();
1479 $path[] = array($params['filepath'], $level->get_visible_name());
1480 $level = $level->get_parent();
1483 $tmp = array(
1484 'title' => $child->get_visible_name(),
1485 'size' => 0,
1486 'date' => $filedate,
1487 'path' => array_reverse($path),
1488 'thumbnail' => $OUTPUT->pix_url(file_folder_icon(90))->out(false)
1491 //if ($dynamicmode && $child->is_writable()) {
1492 // $tmp['children'] = array();
1493 //} else {
1494 // if folder name matches search, we send back all files contained.
1495 $_search = $search;
1496 if ($search && stristr($tmp['title'], $search) !== false) {
1497 $_search = false;
1499 $tmp['children'] = array();
1500 $_filecount = repository::build_tree($child, $_search, $dynamicmode, $tmp['children']);
1501 if ($search && $_filecount) {
1502 $tmp['expanded'] = 1;
1507 if (!$search || $_filecount || (stristr($tmp['title'], $search) !== false)) {
1508 $filecount += $_filecount;
1509 $list[] = $tmp;
1512 } else { // not a directory
1513 // skip the file, if we're in search mode and it's not a match
1514 if ($search && (stristr($filename, $search) === false)) {
1515 continue;
1517 $params = $child->get_params();
1518 $source = serialize(array($params['contextid'], $params['component'], $params['filearea'], $params['itemid'], $params['filepath'], $params['filename']));
1519 $list[] = array(
1520 'title' => $filename,
1521 'size' => $filesize,
1522 'date' => $filedate,
1523 //'source' => $child->get_url(),
1524 'source' => base64_encode($source),
1525 'icon'=>$OUTPUT->pix_url(file_file_icon($child, 24))->out(false),
1526 'thumbnail'=>$OUTPUT->pix_url(file_file_icon($child, 90))->out(false),
1528 $filecount++;
1532 return $filecount;
1536 * Display a repository instance list (with edit/delete/create links)
1538 * @static
1539 * @param stdClass $context the context for which we display the instance
1540 * @param string $typename if set, we display only one type of instance
1542 public static function display_instances_list($context, $typename = null) {
1543 global $CFG, $USER, $OUTPUT;
1545 $output = $OUTPUT->box_start('generalbox');
1546 //if the context is SYSTEM, so we call it from administration page
1547 $admin = ($context->id == SYSCONTEXTID) ? true : false;
1548 if ($admin) {
1549 $baseurl = new moodle_url('/'.$CFG->admin.'/repositoryinstance.php', array('sesskey'=>sesskey()));
1550 $output .= $OUTPUT->heading(get_string('siteinstances', 'repository'));
1551 } else {
1552 $baseurl = new moodle_url('/repository/manage_instances.php', array('contextid'=>$context->id, 'sesskey'=>sesskey()));
1555 $namestr = get_string('name');
1556 $pluginstr = get_string('plugin', 'repository');
1557 $settingsstr = get_string('settings');
1558 $deletestr = get_string('delete');
1559 // Retrieve list of instances. In administration context we want to display all
1560 // instances of a type, even if this type is not visible. In course/user context we
1561 // want to display only visible instances, but for every type types. The repository::get_instances()
1562 // third parameter displays only visible type.
1563 $params = array();
1564 $params['context'] = array($context);
1565 $params['currentcontext'] = $context;
1566 $params['return_types'] = 0;
1567 $params['onlyvisible'] = !$admin;
1568 $params['type'] = $typename;
1569 $instances = repository::get_instances($params);
1570 $instancesnumber = count($instances);
1571 $alreadyplugins = array();
1573 $table = new html_table();
1574 $table->head = array($namestr, $pluginstr, $settingsstr, $deletestr);
1575 $table->align = array('left', 'left', 'center','center');
1576 $table->data = array();
1578 $updowncount = 1;
1580 foreach ($instances as $i) {
1581 $settings = '';
1582 $delete = '';
1584 $type = repository::get_type_by_id($i->options['typeid']);
1586 if ($type->get_contextvisibility($context)) {
1587 if (!$i->readonly) {
1589 $settingurl = new moodle_url($baseurl);
1590 $settingurl->param('type', $i->options['type']);
1591 $settingurl->param('edit', $i->id);
1592 $settings .= html_writer::link($settingurl, $settingsstr);
1594 $deleteurl = new moodle_url($baseurl);
1595 $deleteurl->param('delete', $i->id);
1596 $deleteurl->param('type', $i->options['type']);
1597 $delete .= html_writer::link($deleteurl, $deletestr);
1601 $type = repository::get_type_by_id($i->options['typeid']);
1602 $table->data[] = array(format_string($i->name), $type->get_readablename(), $settings, $delete);
1604 //display a grey row if the type is defined as not visible
1605 if (isset($type) && !$type->get_visible()) {
1606 $table->rowclasses[] = 'dimmed_text';
1607 } else {
1608 $table->rowclasses[] = '';
1611 if (!in_array($i->name, $alreadyplugins)) {
1612 $alreadyplugins[] = $i->name;
1615 $output .= html_writer::table($table);
1616 $instancehtml = '<div>';
1617 $addable = 0;
1619 //if no type is set, we can create all type of instance
1620 if (!$typename) {
1621 $instancehtml .= '<h3>';
1622 $instancehtml .= get_string('createrepository', 'repository');
1623 $instancehtml .= '</h3><ul>';
1624 $types = repository::get_editable_types($context);
1625 foreach ($types as $type) {
1626 if (!empty($type) && $type->get_visible()) {
1627 // If the user does not have the permission to view the repository, it won't be displayed in
1628 // the list of instances. Hiding the link to create new instances will prevent the
1629 // user from creating them without being able to find them afterwards, which looks like a bug.
1630 if (!has_capability('repository/'.$type->get_typename().':view', $context)) {
1631 continue;
1633 $instanceoptionnames = repository::static_function($type->get_typename(), 'get_instance_option_names');
1634 if (!empty($instanceoptionnames)) {
1635 $baseurl->param('new', $type->get_typename());
1636 $instancehtml .= '<li><a href="'.$baseurl->out().'">'.get_string('createxxinstance', 'repository', get_string('pluginname', 'repository_'.$type->get_typename())). '</a></li>';
1637 $baseurl->remove_params('new');
1638 $addable++;
1642 $instancehtml .= '</ul>';
1644 } else {
1645 $instanceoptionnames = repository::static_function($typename, 'get_instance_option_names');
1646 if (!empty($instanceoptionnames)) { //create a unique type of instance
1647 $addable = 1;
1648 $baseurl->param('new', $typename);
1649 $output .= $OUTPUT->single_button($baseurl, get_string('createinstance', 'repository'), 'get');
1650 $baseurl->remove_params('new');
1654 if ($addable) {
1655 $instancehtml .= '</div>';
1656 $output .= $instancehtml;
1659 $output .= $OUTPUT->box_end();
1661 //print the list + creation links
1662 print($output);
1666 * Prepare file reference information
1668 * @param string $source source of the file, returned by repository as 'source' and received back from user (not cleaned)
1669 * @return string file reference, ready to be stored
1671 public function get_file_reference($source) {
1672 if ($source && $this->has_moodle_files()) {
1673 $params = @json_decode(base64_decode($source), true);
1674 if (!$params && !in_array($this->get_typename(), array('recent', 'user', 'local', 'coursefiles'))) {
1675 // IMPORTANT! Since default format for moodle files was changed in the minor release as a security fix
1676 // we maintain an old code here in order not to break 3rd party repositories that deal
1677 // with moodle files. Repositories are strongly encouraged to be upgraded, see MDL-45616.
1678 // In Moodle 2.8 this fallback will be removed.
1679 $params = file_storage::unpack_reference($source, true);
1680 return file_storage::pack_reference($params);
1682 if (!is_array($params) || empty($params['contextid'])) {
1683 throw new repository_exception('invalidparams', 'repository');
1685 $params = array(
1686 'component' => empty($params['component']) ? '' : clean_param($params['component'], PARAM_COMPONENT),
1687 'filearea' => empty($params['filearea']) ? '' : clean_param($params['filearea'], PARAM_AREA),
1688 'itemid' => empty($params['itemid']) ? 0 : clean_param($params['itemid'], PARAM_INT),
1689 'filename' => empty($params['filename']) ? null : clean_param($params['filename'], PARAM_FILE),
1690 'filepath' => empty($params['filepath']) ? null : clean_param($params['filepath'], PARAM_PATH),
1691 'contextid' => clean_param($params['contextid'], PARAM_INT)
1693 // Check if context exists.
1694 if (!context::instance_by_id($params['contextid'], IGNORE_MISSING)) {
1695 throw new repository_exception('invalidparams', 'repository');
1697 return file_storage::pack_reference($params);
1699 return $source;
1703 * Decide where to save the file, can be overwriten by subclass
1705 * @param string $filename file name
1706 * @return file path
1708 public function prepare_file($filename) {
1709 global $CFG;
1710 $dir = make_temp_directory('download/'.get_class($this).'/');
1711 while (empty($filename) || file_exists($dir.$filename)) {
1712 $filename = uniqid('', true).'_'.time().'.tmp';
1714 return $dir.$filename;
1718 * Does this repository used to browse moodle files?
1720 * @return bool
1722 public function has_moodle_files() {
1723 return false;
1727 * Return file URL, for most plugins, the parameter is the original
1728 * url, but some plugins use a file id, so we need this function to
1729 * convert file id to original url.
1731 * @param string $url the url of file
1732 * @return string
1734 public function get_link($url) {
1735 return $url;
1739 * Downloads a file from external repository and saves it in temp dir
1741 * Function get_file() must be implemented by repositories that support returntypes
1742 * FILE_INTERNAL or FILE_REFERENCE. It is invoked to pick up the file and copy it
1743 * to moodle. This function is not called for moodle repositories, the function
1744 * {@link repository::copy_to_area()} is used instead.
1746 * This function can be overridden by subclass if the files.reference field contains
1747 * not just URL or if request should be done differently.
1749 * @see curl
1750 * @throws file_exception when error occured
1752 * @param string $url the content of files.reference field, in this implementaion
1753 * it is asssumed that it contains the string with URL of the file
1754 * @param string $filename filename (without path) to save the downloaded file in the
1755 * temporary directory, if omitted or file already exists the new filename will be generated
1756 * @return array with elements:
1757 * path: internal location of the file
1758 * url: URL to the source (from parameters)
1760 public function get_file($url, $filename = '') {
1761 global $CFG;
1763 $path = $this->prepare_file($filename);
1764 $c = new curl;
1766 $result = $c->download_one($url, null, array('filepath' => $path, 'timeout' => $CFG->repositorygetfiletimeout));
1767 if ($result !== true) {
1768 throw new moodle_exception('errorwhiledownload', 'repository', '', $result);
1770 return array('path'=>$path, 'url'=>$url);
1774 * Downloads the file from external repository and saves it in moodle filepool.
1775 * This function is different from {@link repository::sync_reference()} because it has
1776 * bigger request timeout and always downloads the content.
1778 * This function is invoked when we try to unlink the file from the source and convert
1779 * a reference into a true copy.
1781 * @throws exception when file could not be imported
1783 * @param stored_file $file
1784 * @param int $maxbytes throw an exception if file size is bigger than $maxbytes (0 means no limit)
1786 public function import_external_file_contents(stored_file $file, $maxbytes = 0) {
1787 if (!$file->is_external_file()) {
1788 // nothing to import if the file is not a reference
1789 return;
1790 } else if ($file->get_repository_id() != $this->id) {
1791 // error
1792 debugging('Repository instance id does not match');
1793 return;
1794 } else if ($this->has_moodle_files()) {
1795 // files that are references to local files are already in moodle filepool
1796 // just validate the size
1797 if ($maxbytes > 0 && $file->get_filesize() > $maxbytes) {
1798 throw new file_exception('maxbytes');
1800 return;
1801 } else {
1802 if ($maxbytes > 0 && $file->get_filesize() > $maxbytes) {
1803 // note that stored_file::get_filesize() also calls synchronisation
1804 throw new file_exception('maxbytes');
1806 $fs = get_file_storage();
1807 $contentexists = $fs->content_exists($file->get_contenthash());
1808 if ($contentexists && $file->get_filesize() && $file->get_contenthash() === sha1('')) {
1809 // even when 'file_storage::content_exists()' returns true this may be an empty
1810 // content for the file that was not actually downloaded
1811 $contentexists = false;
1813 if (!$file->get_status() && $contentexists) {
1814 // we already have the content in moodle filepool and it was synchronised recently.
1815 // Repositories may overwrite it if they want to force synchronisation anyway!
1816 return;
1817 } else {
1818 // attempt to get a file
1819 try {
1820 $fileinfo = $this->get_file($file->get_reference());
1821 if (isset($fileinfo['path'])) {
1822 list($contenthash, $filesize, $newfile) = $fs->add_file_to_pool($fileinfo['path']);
1823 // set this file and other similar aliases synchronised
1824 $file->set_synchronized($contenthash, $filesize);
1825 } else {
1826 throw new moodle_exception('errorwhiledownload', 'repository', '', '');
1828 } catch (Exception $e) {
1829 if ($contentexists) {
1830 // better something than nothing. We have a copy of file. It's sync time
1831 // has expired but it is still very likely that it is the last version
1832 } else {
1833 throw($e);
1841 * Return size of a file in bytes.
1843 * @param string $source encoded and serialized data of file
1844 * @return int file size in bytes
1846 public function get_file_size($source) {
1847 // TODO MDL-33297 remove this function completely?
1848 $browser = get_file_browser();
1849 $params = unserialize(base64_decode($source));
1850 $contextid = clean_param($params['contextid'], PARAM_INT);
1851 $fileitemid = clean_param($params['itemid'], PARAM_INT);
1852 $filename = clean_param($params['filename'], PARAM_FILE);
1853 $filepath = clean_param($params['filepath'], PARAM_PATH);
1854 $filearea = clean_param($params['filearea'], PARAM_AREA);
1855 $component = clean_param($params['component'], PARAM_COMPONENT);
1856 $context = context::instance_by_id($contextid);
1857 $file_info = $browser->get_file_info($context, $component, $filearea, $fileitemid, $filepath, $filename);
1858 if (!empty($file_info)) {
1859 $filesize = $file_info->get_filesize();
1860 } else {
1861 $filesize = null;
1863 return $filesize;
1867 * Return is the instance is visible
1868 * (is the type visible ? is the context enable ?)
1870 * @return bool
1872 public function is_visible() {
1873 $type = repository::get_type_by_id($this->options['typeid']);
1874 $instanceoptions = repository::static_function($type->get_typename(), 'get_instance_option_names');
1876 if ($type->get_visible()) {
1877 //if the instance is unique so it's visible, otherwise check if the instance has a enabled context
1878 if (empty($instanceoptions) || $type->get_contextvisibility(context::instance_by_id($this->instance->contextid))) {
1879 return true;
1883 return false;
1887 * Can the instance be edited by the current user?
1889 * The property $readonly must not be used within this method because
1890 * it only controls if the options from self::get_instance_option_names()
1891 * can be edited.
1893 * @return bool true if the user can edit the instance.
1894 * @since Moodle 2.5
1896 public final function can_be_edited_by_user() {
1897 global $USER;
1899 // We need to be able to explore the repository.
1900 try {
1901 $this->check_capability();
1902 } catch (repository_exception $e) {
1903 return false;
1906 $repocontext = context::instance_by_id($this->instance->contextid);
1907 if ($repocontext->contextlevel == CONTEXT_USER && $repocontext->instanceid != $USER->id) {
1908 // If the context of this instance is a user context, we need to be this user.
1909 return false;
1910 } else if ($repocontext->contextlevel == CONTEXT_MODULE && !has_capability('moodle/course:update', $repocontext)) {
1911 // We need to have permissions on the course to edit the instance.
1912 return false;
1913 } else if ($repocontext->contextlevel == CONTEXT_SYSTEM && !has_capability('moodle/site:config', $repocontext)) {
1914 // Do not meet the requirements for the context system.
1915 return false;
1918 return true;
1922 * Return the name of this instance, can be overridden.
1924 * @return string
1926 public function get_name() {
1927 if ($name = $this->instance->name) {
1928 return $name;
1929 } else {
1930 return get_string('pluginname', 'repository_' . $this->get_typename());
1935 * Is this repository accessing private data?
1937 * This function should return true for the repositories which access external private
1938 * data from a user. This is the case for repositories such as Dropbox, Google Docs or Box.net
1939 * which authenticate the user and then store the auth token.
1941 * Of course, many repositories store 'private data', but we only want to set
1942 * contains_private_data() to repositories which are external to Moodle and shouldn't be accessed
1943 * to by the users having the capability to 'login as' someone else. For instance, the repository
1944 * 'Private files' is not considered as private because it's part of Moodle.
1946 * You should not set contains_private_data() to true on repositories which allow different types
1947 * of instances as the levels other than 'user' are, by definition, not private. Also
1948 * the user instances will be protected when they need to.
1950 * @return boolean True when the repository accesses private external data.
1951 * @since Moodle 2.5
1953 public function contains_private_data() {
1954 return true;
1958 * What kind of files will be in this repository?
1960 * @return array return '*' means this repository support any files, otherwise
1961 * return mimetypes of files, it can be an array
1963 public function supported_filetypes() {
1964 // return array('text/plain', 'image/gif');
1965 return '*';
1969 * Tells how the file can be picked from this repository
1971 * Maximum value is FILE_INTERNAL | FILE_EXTERNAL | FILE_REFERENCE
1973 * @return int
1975 public function supported_returntypes() {
1976 return (FILE_INTERNAL | FILE_EXTERNAL);
1980 * Provide repository instance information for Ajax
1982 * @return stdClass
1984 final public function get_meta() {
1985 global $CFG, $OUTPUT;
1986 $meta = new stdClass();
1987 $meta->id = $this->id;
1988 $meta->name = format_string($this->get_name());
1989 $meta->type = $this->get_typename();
1990 $meta->icon = $OUTPUT->pix_url('icon', 'repository_'.$meta->type)->out(false);
1991 $meta->supported_types = file_get_typegroup('extension', $this->supported_filetypes());
1992 $meta->return_types = $this->supported_returntypes();
1993 $meta->sortorder = $this->options['sortorder'];
1994 return $meta;
1998 * Create an instance for this plug-in
2000 * @static
2001 * @param string $type the type of the repository
2002 * @param int $userid the user id
2003 * @param stdClass $context the context
2004 * @param array $params the options for this instance
2005 * @param int $readonly whether to create it readonly or not (defaults to not)
2006 * @return mixed
2008 public static function create($type, $userid, $context, $params, $readonly=0) {
2009 global $CFG, $DB;
2010 $params = (array)$params;
2011 require_once($CFG->dirroot . '/repository/'. $type . '/lib.php');
2012 $classname = 'repository_' . $type;
2013 if ($repo = $DB->get_record('repository', array('type'=>$type))) {
2014 $record = new stdClass();
2015 $record->name = $params['name'];
2016 $record->typeid = $repo->id;
2017 $record->timecreated = time();
2018 $record->timemodified = time();
2019 $record->contextid = $context->id;
2020 $record->readonly = $readonly;
2021 $record->userid = $userid;
2022 $id = $DB->insert_record('repository_instances', $record);
2023 cache::make('core', 'repositories')->purge();
2024 $options = array();
2025 $configs = call_user_func($classname . '::get_instance_option_names');
2026 if (!empty($configs)) {
2027 foreach ($configs as $config) {
2028 if (isset($params[$config])) {
2029 $options[$config] = $params[$config];
2030 } else {
2031 $options[$config] = null;
2036 if (!empty($id)) {
2037 unset($options['name']);
2038 $instance = repository::get_instance($id);
2039 $instance->set_option($options);
2040 return $id;
2041 } else {
2042 return null;
2044 } else {
2045 return null;
2050 * delete a repository instance
2052 * @param bool $downloadcontents
2053 * @return bool
2055 final public function delete($downloadcontents = false) {
2056 global $DB;
2057 if ($downloadcontents) {
2058 $this->convert_references_to_local();
2060 cache::make('core', 'repositories')->purge();
2061 try {
2062 $DB->delete_records('repository_instances', array('id'=>$this->id));
2063 $DB->delete_records('repository_instance_config', array('instanceid'=>$this->id));
2064 } catch (dml_exception $ex) {
2065 return false;
2067 return true;
2071 * Delete all the instances associated to a context.
2073 * This method is intended to be a callback when deleting
2074 * a course or a user to delete all the instances associated
2075 * to their context. The usual way to delete a single instance
2076 * is to use {@link self::delete()}.
2078 * @param int $contextid context ID.
2079 * @param boolean $downloadcontents true to convert references to hard copies.
2080 * @return void
2082 final public static function delete_all_for_context($contextid, $downloadcontents = true) {
2083 global $DB;
2084 $repoids = $DB->get_fieldset_select('repository_instances', 'id', 'contextid = :contextid', array('contextid' => $contextid));
2085 if ($downloadcontents) {
2086 foreach ($repoids as $repoid) {
2087 $repo = repository::get_repository_by_id($repoid, $contextid);
2088 $repo->convert_references_to_local();
2091 cache::make('core', 'repositories')->purge();
2092 $DB->delete_records_list('repository_instances', 'id', $repoids);
2093 $DB->delete_records_list('repository_instance_config', 'instanceid', $repoids);
2097 * Hide/Show a repository
2099 * @param string $hide
2100 * @return bool
2102 final public function hide($hide = 'toggle') {
2103 global $DB;
2104 if ($entry = $DB->get_record('repository', array('id'=>$this->id))) {
2105 if ($hide === 'toggle' ) {
2106 if (!empty($entry->visible)) {
2107 $entry->visible = 0;
2108 } else {
2109 $entry->visible = 1;
2111 } else {
2112 if (!empty($hide)) {
2113 $entry->visible = 0;
2114 } else {
2115 $entry->visible = 1;
2118 return $DB->update_record('repository', $entry);
2120 return false;
2124 * Save settings for repository instance
2125 * $repo->set_option(array('api_key'=>'f2188bde132', 'name'=>'dongsheng'));
2127 * @param array $options settings
2128 * @return bool
2130 public function set_option($options = array()) {
2131 global $DB;
2133 if (!empty($options['name'])) {
2134 $r = new stdClass();
2135 $r->id = $this->id;
2136 $r->name = $options['name'];
2137 $DB->update_record('repository_instances', $r);
2138 unset($options['name']);
2140 foreach ($options as $name=>$value) {
2141 if ($id = $DB->get_field('repository_instance_config', 'id', array('name'=>$name, 'instanceid'=>$this->id))) {
2142 $DB->set_field('repository_instance_config', 'value', $value, array('id'=>$id));
2143 } else {
2144 $config = new stdClass();
2145 $config->instanceid = $this->id;
2146 $config->name = $name;
2147 $config->value = $value;
2148 $DB->insert_record('repository_instance_config', $config);
2151 cache::make('core', 'repositories')->purge();
2152 return true;
2156 * Get settings for repository instance.
2158 * @param string $config a specific option to get.
2159 * @return mixed returns an array of options. If $config is not empty, then it returns that option,
2160 * or null if the option does not exist.
2162 public function get_option($config = '') {
2163 global $DB;
2164 $cache = cache::make('core', 'repositories');
2165 if (($entries = $cache->get('ops:'. $this->id)) === false) {
2166 $entries = $DB->get_records('repository_instance_config', array('instanceid' => $this->id));
2167 $cache->set('ops:'. $this->id, $entries);
2170 $ret = array();
2171 foreach($entries as $entry) {
2172 $ret[$entry->name] = $entry->value;
2175 if (!empty($config)) {
2176 if (isset($ret[$config])) {
2177 return $ret[$config];
2178 } else {
2179 return null;
2181 } else {
2182 return $ret;
2187 * Filter file listing to display specific types
2189 * @param array $value
2190 * @return bool
2192 public function filter(&$value) {
2193 $accepted_types = optional_param_array('accepted_types', '', PARAM_RAW);
2194 if (isset($value['children'])) {
2195 if (!empty($value['children'])) {
2196 $value['children'] = array_filter($value['children'], array($this, 'filter'));
2198 return true; // always return directories
2199 } else {
2200 if ($accepted_types == '*' or empty($accepted_types)
2201 or (is_array($accepted_types) and in_array('*', $accepted_types))) {
2202 return true;
2203 } else {
2204 foreach ($accepted_types as $ext) {
2205 if (preg_match('#'.$ext.'$#i', $value['title'])) {
2206 return true;
2211 return false;
2215 * Given a path, and perhaps a search, get a list of files.
2217 * See details on {@link http://docs.moodle.org/dev/Repository_plugins}
2219 * @param string $path this parameter can a folder name, or a identification of folder
2220 * @param string $page the page number of file list
2221 * @return array the list of files, including meta infomation, containing the following keys
2222 * manage, url to manage url
2223 * client_id
2224 * login, login form
2225 * repo_id, active repository id
2226 * login_btn_action, the login button action
2227 * login_btn_label, the login button label
2228 * total, number of results
2229 * perpage, items per page
2230 * page
2231 * pages, total pages
2232 * issearchresult, is it a search result?
2233 * list, file list
2234 * path, current path and parent path
2236 public function get_listing($path = '', $page = '') {
2241 * Prepare the breadcrumb.
2243 * @param array $breadcrumb contains each element of the breadcrumb.
2244 * @return array of breadcrumb elements.
2245 * @since Moodle 2.3.3
2247 protected static function prepare_breadcrumb($breadcrumb) {
2248 global $OUTPUT;
2249 $foldericon = $OUTPUT->pix_url(file_folder_icon(24))->out(false);
2250 $len = count($breadcrumb);
2251 for ($i = 0; $i < $len; $i++) {
2252 if (is_array($breadcrumb[$i]) && !isset($breadcrumb[$i]['icon'])) {
2253 $breadcrumb[$i]['icon'] = $foldericon;
2254 } else if (is_object($breadcrumb[$i]) && !isset($breadcrumb[$i]->icon)) {
2255 $breadcrumb[$i]->icon = $foldericon;
2258 return $breadcrumb;
2262 * Prepare the file/folder listing.
2264 * @param array $list of files and folders.
2265 * @return array of files and folders.
2266 * @since Moodle 2.3.3
2268 protected static function prepare_list($list) {
2269 global $OUTPUT;
2270 $foldericon = $OUTPUT->pix_url(file_folder_icon(24))->out(false);
2272 // Reset the array keys because non-numeric keys will create an object when converted to JSON.
2273 $list = array_values($list);
2275 $len = count($list);
2276 for ($i = 0; $i < $len; $i++) {
2277 if (is_object($list[$i])) {
2278 $file = (array)$list[$i];
2279 $converttoobject = true;
2280 } else {
2281 $file =& $list[$i];
2282 $converttoobject = false;
2284 if (isset($file['size'])) {
2285 $file['size'] = (int)$file['size'];
2286 $file['size_f'] = display_size($file['size']);
2288 if (isset($file['license']) && get_string_manager()->string_exists($file['license'], 'license')) {
2289 $file['license_f'] = get_string($file['license'], 'license');
2291 if (isset($file['image_width']) && isset($file['image_height'])) {
2292 $a = array('width' => $file['image_width'], 'height' => $file['image_height']);
2293 $file['dimensions'] = get_string('imagesize', 'repository', (object)$a);
2295 foreach (array('date', 'datemodified', 'datecreated') as $key) {
2296 if (!isset($file[$key]) && isset($file['date'])) {
2297 $file[$key] = $file['date'];
2299 if (isset($file[$key])) {
2300 // must be UNIX timestamp
2301 $file[$key] = (int)$file[$key];
2302 if (!$file[$key]) {
2303 unset($file[$key]);
2304 } else {
2305 $file[$key.'_f'] = userdate($file[$key], get_string('strftimedatetime', 'langconfig'));
2306 $file[$key.'_f_s'] = userdate($file[$key], get_string('strftimedatetimeshort', 'langconfig'));
2310 $isfolder = (array_key_exists('children', $file) || (isset($file['type']) && $file['type'] == 'folder'));
2311 $filename = null;
2312 if (isset($file['title'])) {
2313 $filename = $file['title'];
2315 else if (isset($file['fullname'])) {
2316 $filename = $file['fullname'];
2318 if (!isset($file['mimetype']) && !$isfolder && $filename) {
2319 $file['mimetype'] = get_mimetype_description(array('filename' => $filename));
2321 if (!isset($file['icon'])) {
2322 if ($isfolder) {
2323 $file['icon'] = $foldericon;
2324 } else if ($filename) {
2325 $file['icon'] = $OUTPUT->pix_url(file_extension_icon($filename, 24))->out(false);
2329 // Recursively loop over children.
2330 if (isset($file['children'])) {
2331 $file['children'] = self::prepare_list($file['children']);
2334 // Convert the array back to an object.
2335 if ($converttoobject) {
2336 $list[$i] = (object)$file;
2339 return $list;
2343 * Prepares list of files before passing it to AJAX, makes sure data is in the correct
2344 * format and stores formatted values.
2346 * @param array|stdClass $listing result of get_listing() or search() or file_get_drafarea_files()
2347 * @return array
2349 public static function prepare_listing($listing) {
2350 $wasobject = false;
2351 if (is_object($listing)) {
2352 $listing = (array) $listing;
2353 $wasobject = true;
2356 // Prepare the breadcrumb, passed as 'path'.
2357 if (isset($listing['path']) && is_array($listing['path'])) {
2358 $listing['path'] = self::prepare_breadcrumb($listing['path']);
2361 // Prepare the listing of objects.
2362 if (isset($listing['list']) && is_array($listing['list'])) {
2363 $listing['list'] = self::prepare_list($listing['list']);
2366 // Convert back to an object.
2367 if ($wasobject) {
2368 $listing = (object) $listing;
2370 return $listing;
2374 * Search files in repository
2375 * When doing global search, $search_text will be used as
2376 * keyword.
2378 * @param string $search_text search key word
2379 * @param int $page page
2380 * @return mixed see {@link repository::get_listing()}
2382 public function search($search_text, $page = 0) {
2383 $list = array();
2384 $list['list'] = array();
2385 return false;
2389 * Logout from repository instance
2390 * By default, this function will return a login form
2392 * @return string
2394 public function logout(){
2395 return $this->print_login();
2399 * To check whether the user is logged in.
2401 * @return bool
2403 public function check_login(){
2404 return true;
2409 * Show the login screen, if required
2411 * @return string
2413 public function print_login(){
2414 return $this->get_listing();
2418 * Show the search screen, if required
2420 * @return string
2422 public function print_search() {
2423 global $PAGE;
2424 $renderer = $PAGE->get_renderer('core', 'files');
2425 return $renderer->repository_default_searchform();
2429 * For oauth like external authentication, when external repository direct user back to moodle,
2430 * this function will be called to set up token and token_secret
2432 public function callback() {
2436 * is it possible to do glboal search?
2438 * @return bool
2440 public function global_search() {
2441 return false;
2445 * Defines operations that happen occasionally on cron
2447 * @return bool
2449 public function cron() {
2450 return true;
2454 * function which is run when the type is created (moodle administrator add the plugin)
2456 * @return bool success or fail?
2458 public static function plugin_init() {
2459 return true;
2463 * Edit/Create Admin Settings Moodle form
2465 * @param moodleform $mform Moodle form (passed by reference)
2466 * @param string $classname repository class name
2468 public static function type_config_form($mform, $classname = 'repository') {
2469 $instnaceoptions = call_user_func(array($classname, 'get_instance_option_names'), $mform, $classname);
2470 if (empty($instnaceoptions)) {
2471 // this plugin has only one instance
2472 // so we need to give it a name
2473 // it can be empty, then moodle will look for instance name from language string
2474 $mform->addElement('text', 'pluginname', get_string('pluginname', 'repository'), array('size' => '40'));
2475 $mform->addElement('static', 'pluginnamehelp', '', get_string('pluginnamehelp', 'repository'));
2476 $mform->setType('pluginname', PARAM_TEXT);
2481 * Validate Admin Settings Moodle form
2483 * @static
2484 * @param moodleform $mform Moodle form (passed by reference)
2485 * @param array $data array of ("fieldname"=>value) of submitted data
2486 * @param array $errors array of ("fieldname"=>errormessage) of errors
2487 * @return array array of errors
2489 public static function type_form_validation($mform, $data, $errors) {
2490 return $errors;
2495 * Edit/Create Instance Settings Moodle form
2497 * @param moodleform $mform Moodle form (passed by reference)
2499 public static function instance_config_form($mform) {
2503 * Return names of the general options.
2504 * By default: no general option name
2506 * @return array
2508 public static function get_type_option_names() {
2509 return array('pluginname');
2513 * Return names of the instance options.
2514 * By default: no instance option name
2516 * @return array
2518 public static function get_instance_option_names() {
2519 return array();
2523 * Validate repository plugin instance form
2525 * @param moodleform $mform moodle form
2526 * @param array $data form data
2527 * @param array $errors errors
2528 * @return array errors
2530 public static function instance_form_validation($mform, $data, $errors) {
2531 return $errors;
2535 * Create a shorten filename
2537 * @param string $str filename
2538 * @param int $maxlength max file name length
2539 * @return string short filename
2541 public function get_short_filename($str, $maxlength) {
2542 if (core_text::strlen($str) >= $maxlength) {
2543 return trim(core_text::substr($str, 0, $maxlength)).'...';
2544 } else {
2545 return $str;
2550 * Overwrite an existing file
2552 * @param int $itemid
2553 * @param string $filepath
2554 * @param string $filename
2555 * @param string $newfilepath
2556 * @param string $newfilename
2557 * @return bool
2559 public static function overwrite_existing_draftfile($itemid, $filepath, $filename, $newfilepath, $newfilename) {
2560 global $USER;
2561 $fs = get_file_storage();
2562 $user_context = context_user::instance($USER->id);
2563 if ($file = $fs->get_file($user_context->id, 'user', 'draft', $itemid, $filepath, $filename)) {
2564 if ($tempfile = $fs->get_file($user_context->id, 'user', 'draft', $itemid, $newfilepath, $newfilename)) {
2565 // Remember original file source field.
2566 $source = @unserialize($file->get_source());
2567 // Remember the original sortorder.
2568 $sortorder = $file->get_sortorder();
2569 if ($tempfile->is_external_file()) {
2570 // New file is a reference. Check that existing file does not have any other files referencing to it
2571 if (isset($source->original) && $fs->search_references_count($source->original)) {
2572 return (object)array('error' => get_string('errordoublereference', 'repository'));
2575 // delete existing file to release filename
2576 $file->delete();
2577 // create new file
2578 $newfile = $fs->create_file_from_storedfile(array('filepath'=>$filepath, 'filename'=>$filename), $tempfile);
2579 // Preserve original file location (stored in source field) for handling references
2580 if (isset($source->original)) {
2581 if (!($newfilesource = @unserialize($newfile->get_source()))) {
2582 $newfilesource = new stdClass();
2584 $newfilesource->original = $source->original;
2585 $newfile->set_source(serialize($newfilesource));
2587 $newfile->set_sortorder($sortorder);
2588 // remove temp file
2589 $tempfile->delete();
2590 return true;
2593 return false;
2597 * Updates a file in draft filearea.
2599 * This function can only update fields filepath, filename, author, license.
2600 * If anything (except filepath) is updated, timemodified is set to current time.
2601 * If filename or filepath is updated the file unconnects from it's origin
2602 * and therefore all references to it will be converted to copies when
2603 * filearea is saved.
2605 * @param int $draftid
2606 * @param string $filepath path to the directory containing the file, or full path in case of directory
2607 * @param string $filename name of the file, or '.' in case of directory
2608 * @param array $updatedata array of fields to change (only filename, filepath, license and/or author can be updated)
2609 * @throws moodle_exception if for any reason file can not be updated (file does not exist, target already exists, etc.)
2611 public static function update_draftfile($draftid, $filepath, $filename, $updatedata) {
2612 global $USER;
2613 $fs = get_file_storage();
2614 $usercontext = context_user::instance($USER->id);
2615 // make sure filename and filepath are present in $updatedata
2616 $updatedata = $updatedata + array('filepath' => $filepath, 'filename' => $filename);
2617 $filemodified = false;
2618 if (!$file = $fs->get_file($usercontext->id, 'user', 'draft', $draftid, $filepath, $filename)) {
2619 if ($filename === '.') {
2620 throw new moodle_exception('foldernotfound', 'repository');
2621 } else {
2622 throw new moodle_exception('filenotfound', 'error');
2625 if (!$file->is_directory()) {
2626 // This is a file
2627 if ($updatedata['filepath'] !== $filepath || $updatedata['filename'] !== $filename) {
2628 // Rename/move file: check that target file name does not exist.
2629 if ($fs->file_exists($usercontext->id, 'user', 'draft', $draftid, $updatedata['filepath'], $updatedata['filename'])) {
2630 throw new moodle_exception('fileexists', 'repository');
2632 if (($filesource = @unserialize($file->get_source())) && isset($filesource->original)) {
2633 unset($filesource->original);
2634 $file->set_source(serialize($filesource));
2636 $file->rename($updatedata['filepath'], $updatedata['filename']);
2637 // timemodified is updated only when file is renamed and not updated when file is moved.
2638 $filemodified = $filemodified || ($updatedata['filename'] !== $filename);
2640 if (array_key_exists('license', $updatedata) && $updatedata['license'] !== $file->get_license()) {
2641 // Update license and timemodified.
2642 $file->set_license($updatedata['license']);
2643 $filemodified = true;
2645 if (array_key_exists('author', $updatedata) && $updatedata['author'] !== $file->get_author()) {
2646 // Update author and timemodified.
2647 $file->set_author($updatedata['author']);
2648 $filemodified = true;
2650 // Update timemodified:
2651 if ($filemodified) {
2652 $file->set_timemodified(time());
2654 } else {
2655 // This is a directory - only filepath can be updated for a directory (it was moved).
2656 if ($updatedata['filepath'] === $filepath) {
2657 // nothing to update
2658 return;
2660 if ($fs->file_exists($usercontext->id, 'user', 'draft', $draftid, $updatedata['filepath'], '.')) {
2661 // bad luck, we can not rename if something already exists there
2662 throw new moodle_exception('folderexists', 'repository');
2664 $xfilepath = preg_quote($filepath, '|');
2665 if (preg_match("|^$xfilepath|", $updatedata['filepath'])) {
2666 // we can not move folder to it's own subfolder
2667 throw new moodle_exception('folderrecurse', 'repository');
2670 // If directory changed the name, update timemodified.
2671 $filemodified = (basename(rtrim($file->get_filepath(), '/')) !== basename(rtrim($updatedata['filepath'], '/')));
2673 // Now update directory and all children.
2674 $files = $fs->get_area_files($usercontext->id, 'user', 'draft', $draftid);
2675 foreach ($files as $f) {
2676 if (preg_match("|^$xfilepath|", $f->get_filepath())) {
2677 $path = preg_replace("|^$xfilepath|", $updatedata['filepath'], $f->get_filepath());
2678 if (($filesource = @unserialize($f->get_source())) && isset($filesource->original)) {
2679 // unset original so the references are not shown any more
2680 unset($filesource->original);
2681 $f->set_source(serialize($filesource));
2683 $f->rename($path, $f->get_filename());
2684 if ($filemodified && $f->get_filepath() === $updatedata['filepath'] && $f->get_filename() === $filename) {
2685 $f->set_timemodified(time());
2693 * Delete a temp file from draft area
2695 * @param int $draftitemid
2696 * @param string $filepath
2697 * @param string $filename
2698 * @return bool
2700 public static function delete_tempfile_from_draft($draftitemid, $filepath, $filename) {
2701 global $USER;
2702 $fs = get_file_storage();
2703 $user_context = context_user::instance($USER->id);
2704 if ($file = $fs->get_file($user_context->id, 'user', 'draft', $draftitemid, $filepath, $filename)) {
2705 $file->delete();
2706 return true;
2707 } else {
2708 return false;
2713 * Find all external files in this repo and import them
2715 public function convert_references_to_local() {
2716 $fs = get_file_storage();
2717 $files = $fs->get_external_files($this->id);
2718 foreach ($files as $storedfile) {
2719 $fs->import_external_file($storedfile);
2724 * Method deprecated, cache is handled by MUC now.
2725 * @deprecated since 2.6
2727 public static function reset_caches() {
2728 debugging('Function repository::reset_caches() is deprecated.', DEBUG_DEVELOPER);
2732 * Method deprecated
2733 * @deprecated since 2.6
2734 * @see repository::sync_reference()
2736 public static function sync_external_file($file, $resetsynchistory = false) {
2737 debugging('Function repository::sync_external_file() is deprecated.',
2738 DEBUG_DEVELOPER);
2739 if ($resetsynchistory || !$file || !$file->get_repository_id() ||
2740 !($repository = self::get_repository_by_id($file->get_repository_id(), SYSCONTEXTID))) {
2741 return false;
2743 return $repository->sync_reference($file);
2747 * Performs synchronisation of an external file if the previous one has expired.
2749 * This function must be implemented for external repositories supporting
2750 * FILE_REFERENCE, it is called for existing aliases when their filesize,
2751 * contenthash or timemodified are requested. It is not called for internal
2752 * repositories (see {@link repository::has_moodle_files()}), references to
2753 * internal files are updated immediately when source is modified.
2755 * Referenced files may optionally keep their content in Moodle filepool (for
2756 * thumbnail generation or to be able to serve cached copy). In this
2757 * case both contenthash and filesize need to be synchronized. Otherwise repositories
2758 * should use contenthash of empty file and correct filesize in bytes.
2760 * Note that this function may be run for EACH file that needs to be synchronised at the
2761 * moment. If anything is being downloaded or requested from external sources there
2762 * should be a small timeout. The synchronisation is performed to update the size of
2763 * the file and/or to update image and re-generated image preview. There is nothing
2764 * fatal if syncronisation fails but it is fatal if syncronisation takes too long
2765 * and hangs the script generating a page.
2767 * Note: If you wish to call $file->get_filesize(), $file->get_contenthash() or
2768 * $file->get_timemodified() make sure that recursion does not happen.
2770 * Called from {@link stored_file::sync_external_file()}
2772 * @uses stored_file::set_missingsource()
2773 * @uses stored_file::set_synchronized()
2774 * @param stored_file $file
2775 * @return bool false when file does not need synchronisation, true if it was synchronised
2777 public function sync_reference(stored_file $file) {
2778 if ($file->get_repository_id() != $this->id) {
2779 // This should not really happen because the function can be called from stored_file only.
2780 return false;
2783 if ($this->has_moodle_files()) {
2784 // References to local files need to be synchronised only once.
2785 // Later they will be synchronised automatically when the source is changed.
2786 if ($file->get_referencelastsync()) {
2787 return false;
2789 $fs = get_file_storage();
2790 $params = file_storage::unpack_reference($file->get_reference(), true);
2791 if (!is_array($params) || !($storedfile = $fs->get_file($params['contextid'],
2792 $params['component'], $params['filearea'], $params['itemid'], $params['filepath'],
2793 $params['filename']))) {
2794 $file->set_missingsource();
2795 } else {
2796 $file->set_synchronized($storedfile->get_contenthash(), $storedfile->get_filesize());
2798 return true;
2801 // Backward compatibility (Moodle 2.3-2.5) implementation that calls
2802 // methods repository::get_reference_file_lifetime(), repository::sync_individual_file()
2803 // and repository::get_file_by_reference(). These methods are removed from the
2804 // base repository class but may still be implemented by the child classes.
2806 // THIS IS NOT A GOOD EXAMPLE of implementation. For good examples see the overwriting methods.
2808 if (!method_exists($this, 'get_file_by_reference')) {
2809 // Function get_file_by_reference() is not implemented. No synchronisation.
2810 return false;
2813 // Check if the previous sync result is still valid.
2814 if (method_exists($this, 'get_reference_file_lifetime')) {
2815 $lifetime = $this->get_reference_file_lifetime($file->get_reference());
2816 } else {
2817 // Default value that was hardcoded in Moodle 2.3 - 2.5.
2818 $lifetime = 60 * 60 * 24;
2820 if (($lastsynced = $file->get_referencelastsync()) && $lastsynced + $lifetime >= time()) {
2821 return false;
2824 $cache = cache::make('core', 'repositories');
2825 if (($lastsyncresult = $cache->get('sync:'.$file->get_referencefileid())) !== false) {
2826 if ($lastsyncresult === true) {
2827 // We are in the process of synchronizing this reference.
2828 // Avoid recursion when calling $file->get_filesize() and $file->get_contenthash().
2829 return false;
2830 } else {
2831 // We have synchronised the same reference inside this request already.
2832 // It looks like the object $file was created before the synchronisation and contains old data.
2833 if (!empty($lastsyncresult['missing'])) {
2834 $file->set_missingsource();
2835 } else {
2836 $cache->set('sync:'.$file->get_referencefileid(), true);
2837 if ($file->get_contenthash() != $lastsyncresult['contenthash'] ||
2838 $file->get_filesize() != $lastsyncresult['filesize']) {
2839 $file->set_synchronized($lastsyncresult['contenthash'], $lastsyncresult['filesize']);
2841 $cache->set('sync:'.$file->get_referencefileid(), $lastsyncresult);
2843 return true;
2847 // Weird function sync_individual_file() that was present in API in 2.3 - 2.5, default value was true.
2848 if (method_exists($this, 'sync_individual_file') && !$this->sync_individual_file($file)) {
2849 return false;
2852 // Set 'true' into the cache to indicate that file is in the process of synchronisation.
2853 $cache->set('sync:'.$file->get_referencefileid(), true);
2855 // Create object with the structure that repository::get_file_by_reference() expects.
2856 $reference = new stdClass();
2857 $reference->id = $file->get_referencefileid();
2858 $reference->reference = $file->get_reference();
2859 $reference->referencehash = sha1($file->get_reference());
2860 $reference->lastsync = $file->get_referencelastsync();
2861 $reference->lifetime = $lifetime;
2863 $fileinfo = $this->get_file_by_reference($reference);
2865 $contenthash = null;
2866 $filesize = null;
2867 $fs = get_file_storage();
2868 if (!empty($fileinfo->filesize)) {
2869 // filesize returned
2870 if (!empty($fileinfo->contenthash) && $fs->content_exists($fileinfo->contenthash)) {
2871 // contenthash is specified and valid
2872 $contenthash = $fileinfo->contenthash;
2873 } else if ($fileinfo->filesize == $file->get_filesize()) {
2874 // we don't know the new contenthash but the filesize did not change,
2875 // assume the contenthash did not change either
2876 $contenthash = $file->get_contenthash();
2877 } else {
2878 // we can't save empty contenthash so generate contenthash from empty string
2879 list($contenthash, $unused1, $unused2) = $fs->add_string_to_pool('');
2881 $filesize = $fileinfo->filesize;
2882 } else if (!empty($fileinfo->filepath)) {
2883 // File path returned
2884 list($contenthash, $filesize, $newfile) = $fs->add_file_to_pool($fileinfo->filepath);
2885 } else if (!empty($fileinfo->handle) && is_resource($fileinfo->handle)) {
2886 // File handle returned
2887 $contents = '';
2888 while (!feof($fileinfo->handle)) {
2889 $contents .= fread($fileinfo->handle, 8192);
2891 fclose($fileinfo->handle);
2892 list($contenthash, $filesize, $newfile) = $fs->add_string_to_pool($contents);
2893 } else if (isset($fileinfo->content)) {
2894 // File content returned
2895 list($contenthash, $filesize, $newfile) = $fs->add_string_to_pool($fileinfo->content);
2898 if (!isset($contenthash) or !isset($filesize)) {
2899 $file->set_missingsource(null);
2900 $cache->set('sync:'.$file->get_referencefileid(), array('missing' => true));
2901 } else {
2902 // update files table
2903 $file->set_synchronized($contenthash, $filesize);
2904 $cache->set('sync:'.$file->get_referencefileid(),
2905 array('contenthash' => $contenthash, 'filesize' => $filesize));
2908 return true;
2912 * Build draft file's source field
2914 * {@link file_restore_source_field_from_draft_file()}
2915 * XXX: This is a hack for file manager (MDL-28666)
2916 * For newly created draft files we have to construct
2917 * source filed in php serialized data format.
2918 * File manager needs to know the original file information before copying
2919 * to draft area, so we append these information in mdl_files.source field
2921 * @param string $source
2922 * @return string serialised source field
2924 public static function build_source_field($source) {
2925 $sourcefield = new stdClass;
2926 $sourcefield->source = $source;
2927 return serialize($sourcefield);
2931 * Prepares the repository to be cached. Implements method from cacheable_object interface.
2933 * @return array
2935 public function prepare_to_cache() {
2936 return array(
2937 'class' => get_class($this),
2938 'id' => $this->id,
2939 'ctxid' => $this->context->id,
2940 'options' => $this->options,
2941 'readonly' => $this->readonly
2946 * Restores the repository from cache. Implements method from cacheable_object interface.
2948 * @return array
2950 public static function wake_from_cache($data) {
2951 $classname = $data['class'];
2952 return new $classname($data['id'], $data['ctxid'], $data['options'], $data['readonly']);
2956 * Gets a file relative to this file in the repository and sends it to the browser.
2957 * Used to allow relative file linking within a repository without creating file records
2958 * for linked files
2960 * Repositories that overwrite this must be very careful - see filesystem repository for example.
2962 * @param stored_file $mainfile The main file we are trying to access relative files for.
2963 * @param string $relativepath the relative path to the file we are trying to access.
2966 public function send_relative_file(stored_file $mainfile, $relativepath) {
2967 // This repository hasn't implemented this so send_file_not_found.
2968 send_file_not_found();
2972 * helper function to check if the repository supports send_relative_file.
2974 * @return true|false
2976 public function supports_relative_file() {
2977 return false;
2982 * Exception class for repository api
2984 * @since Moodle 2.0
2985 * @package core_repository
2986 * @copyright 2009 Dongsheng Cai {@link http://dongsheng.org}
2987 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2989 class repository_exception extends moodle_exception {
2993 * This is a class used to define a repository instance form
2995 * @since Moodle 2.0
2996 * @package core_repository
2997 * @copyright 2009 Dongsheng Cai {@link http://dongsheng.org}
2998 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3000 final class repository_instance_form extends moodleform {
3001 /** @var stdClass repository instance */
3002 protected $instance;
3003 /** @var string repository plugin type */
3004 protected $plugin;
3007 * Added defaults to moodle form
3009 protected function add_defaults() {
3010 $mform =& $this->_form;
3011 $strrequired = get_string('required');
3013 $mform->addElement('hidden', 'edit', ($this->instance) ? $this->instance->id : 0);
3014 $mform->setType('edit', PARAM_INT);
3015 $mform->addElement('hidden', 'new', $this->plugin);
3016 $mform->setType('new', PARAM_ALPHANUMEXT);
3017 $mform->addElement('hidden', 'plugin', $this->plugin);
3018 $mform->setType('plugin', PARAM_PLUGIN);
3019 $mform->addElement('hidden', 'typeid', $this->typeid);
3020 $mform->setType('typeid', PARAM_INT);
3021 $mform->addElement('hidden', 'contextid', $this->contextid);
3022 $mform->setType('contextid', PARAM_INT);
3024 $mform->addElement('text', 'name', get_string('name'), 'maxlength="100" size="30"');
3025 $mform->addRule('name', $strrequired, 'required', null, 'client');
3026 $mform->setType('name', PARAM_TEXT);
3030 * Define moodle form elements
3032 public function definition() {
3033 global $CFG;
3034 // type of plugin, string
3035 $this->plugin = $this->_customdata['plugin'];
3036 $this->typeid = $this->_customdata['typeid'];
3037 $this->contextid = $this->_customdata['contextid'];
3038 $this->instance = (isset($this->_customdata['instance'])
3039 && is_subclass_of($this->_customdata['instance'], 'repository'))
3040 ? $this->_customdata['instance'] : null;
3042 $mform =& $this->_form;
3044 $this->add_defaults();
3046 // Add instance config options.
3047 $result = repository::static_function($this->plugin, 'instance_config_form', $mform);
3048 if ($result === false) {
3049 // Remove the name element if no other config options.
3050 $mform->removeElement('name');
3052 if ($this->instance) {
3053 $data = array();
3054 $data['name'] = $this->instance->name;
3055 if (!$this->instance->readonly) {
3056 // and set the data if we have some.
3057 foreach ($this->instance->get_instance_option_names() as $config) {
3058 if (!empty($this->instance->options[$config])) {
3059 $data[$config] = $this->instance->options[$config];
3060 } else {
3061 $data[$config] = '';
3065 $this->set_data($data);
3068 if ($result === false) {
3069 $mform->addElement('cancel');
3070 } else {
3071 $this->add_action_buttons(true, get_string('save','repository'));
3076 * Validate moodle form data
3078 * @param array $data form data
3079 * @param array $files files in form
3080 * @return array errors
3082 public function validation($data, $files) {
3083 global $DB;
3084 $errors = array();
3085 $plugin = $this->_customdata['plugin'];
3086 $instance = (isset($this->_customdata['instance'])
3087 && is_subclass_of($this->_customdata['instance'], 'repository'))
3088 ? $this->_customdata['instance'] : null;
3090 if (!$instance) {
3091 $errors = repository::static_function($plugin, 'instance_form_validation', $this, $data, $errors);
3092 } else {
3093 $errors = $instance->instance_form_validation($this, $data, $errors);
3096 $sql = "SELECT count('x')
3097 FROM {repository_instances} i, {repository} r
3098 WHERE r.type=:plugin AND r.id=i.typeid AND i.name=:name AND i.contextid=:contextid";
3099 $params = array('name' => $data['name'], 'plugin' => $this->plugin, 'contextid' => $this->contextid);
3100 if ($instance) {
3101 $sql .= ' AND i.id != :instanceid';
3102 $params['instanceid'] = $instance->id;
3104 if ($DB->count_records_sql($sql, $params) > 0) {
3105 $errors['name'] = get_string('erroruniquename', 'repository');
3108 return $errors;
3113 * This is a class used to define a repository type setting form
3115 * @since Moodle 2.0
3116 * @package core_repository
3117 * @copyright 2009 Dongsheng Cai {@link http://dongsheng.org}
3118 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3120 final class repository_type_form extends moodleform {
3121 /** @var stdClass repository instance */
3122 protected $instance;
3123 /** @var string repository plugin name */
3124 protected $plugin;
3125 /** @var string action */
3126 protected $action;
3129 * Definition of the moodleform
3131 public function definition() {
3132 global $CFG;
3133 // type of plugin, string
3134 $this->plugin = $this->_customdata['plugin'];
3135 $this->instance = (isset($this->_customdata['instance'])
3136 && is_a($this->_customdata['instance'], 'repository_type'))
3137 ? $this->_customdata['instance'] : null;
3139 $this->action = $this->_customdata['action'];
3140 $this->pluginname = $this->_customdata['pluginname'];
3141 $mform =& $this->_form;
3142 $strrequired = get_string('required');
3144 $mform->addElement('hidden', 'action', $this->action);
3145 $mform->setType('action', PARAM_TEXT);
3146 $mform->addElement('hidden', 'repos', $this->plugin);
3147 $mform->setType('repos', PARAM_PLUGIN);
3149 // let the plugin add its specific fields
3150 $classname = 'repository_' . $this->plugin;
3151 require_once($CFG->dirroot . '/repository/' . $this->plugin . '/lib.php');
3152 //add "enable course/user instances" checkboxes if multiple instances are allowed
3153 $instanceoptionnames = repository::static_function($this->plugin, 'get_instance_option_names');
3155 $result = call_user_func(array($classname, 'type_config_form'), $mform, $classname);
3157 if (!empty($instanceoptionnames)) {
3158 $sm = get_string_manager();
3159 $component = 'repository';
3160 if ($sm->string_exists('enablecourseinstances', 'repository_' . $this->plugin)) {
3161 $component .= ('_' . $this->plugin);
3163 $mform->addElement('checkbox', 'enablecourseinstances', get_string('enablecourseinstances', $component));
3164 $mform->setType('enablecourseinstances', PARAM_BOOL);
3166 $component = 'repository';
3167 if ($sm->string_exists('enableuserinstances', 'repository_' . $this->plugin)) {
3168 $component .= ('_' . $this->plugin);
3170 $mform->addElement('checkbox', 'enableuserinstances', get_string('enableuserinstances', $component));
3171 $mform->setType('enableuserinstances', PARAM_BOOL);
3174 // set the data if we have some.
3175 if ($this->instance) {
3176 $data = array();
3177 $option_names = call_user_func(array($classname,'get_type_option_names'));
3178 if (!empty($instanceoptionnames)){
3179 $option_names[] = 'enablecourseinstances';
3180 $option_names[] = 'enableuserinstances';
3183 $instanceoptions = $this->instance->get_options();
3184 foreach ($option_names as $config) {
3185 if (!empty($instanceoptions[$config])) {
3186 $data[$config] = $instanceoptions[$config];
3187 } else {
3188 $data[$config] = '';
3191 // XXX: set plugin name for plugins which doesn't have muliti instances
3192 if (empty($instanceoptionnames)){
3193 $data['pluginname'] = $this->pluginname;
3195 $this->set_data($data);
3198 $this->add_action_buttons(true, get_string('save','repository'));
3202 * Validate moodle form data
3204 * @param array $data moodle form data
3205 * @param array $files
3206 * @return array errors
3208 public function validation($data, $files) {
3209 $errors = array();
3210 $plugin = $this->_customdata['plugin'];
3211 $instance = (isset($this->_customdata['instance'])
3212 && is_subclass_of($this->_customdata['instance'], 'repository'))
3213 ? $this->_customdata['instance'] : null;
3214 if (!$instance) {
3215 $errors = repository::static_function($plugin, 'type_form_validation', $this, $data, $errors);
3216 } else {
3217 $errors = $instance->type_form_validation($this, $data, $errors);
3220 return $errors;
3225 * Generate all options needed by filepicker
3227 * @param array $args including following keys
3228 * context
3229 * accepted_types
3230 * return_types
3232 * @return array the list of repository instances, including meta infomation, containing the following keys
3233 * externallink
3234 * repositories
3235 * accepted_types
3237 function initialise_filepicker($args) {
3238 global $CFG, $USER, $PAGE, $OUTPUT;
3239 static $templatesinitialized = array();
3240 require_once($CFG->libdir . '/licenselib.php');
3242 $return = new stdClass();
3243 $licenses = array();
3244 if (!empty($CFG->licenses)) {
3245 $array = explode(',', $CFG->licenses);
3246 foreach ($array as $license) {
3247 $l = new stdClass();
3248 $l->shortname = $license;
3249 $l->fullname = get_string($license, 'license');
3250 $licenses[] = $l;
3253 if (!empty($CFG->sitedefaultlicense)) {
3254 $return->defaultlicense = $CFG->sitedefaultlicense;
3257 $return->licenses = $licenses;
3259 $return->author = fullname($USER);
3261 if (empty($args->context)) {
3262 $context = $PAGE->context;
3263 } else {
3264 $context = $args->context;
3266 $disable_types = array();
3267 if (!empty($args->disable_types)) {
3268 $disable_types = $args->disable_types;
3271 $user_context = context_user::instance($USER->id);
3273 list($context, $course, $cm) = get_context_info_array($context->id);
3274 $contexts = array($user_context, context_system::instance());
3275 if (!empty($course)) {
3276 // adding course context
3277 $contexts[] = context_course::instance($course->id);
3279 $externallink = (int)get_config(null, 'repositoryallowexternallinks');
3280 $repositories = repository::get_instances(array(
3281 'context'=>$contexts,
3282 'currentcontext'=> $context,
3283 'accepted_types'=>$args->accepted_types,
3284 'return_types'=>$args->return_types,
3285 'disable_types'=>$disable_types
3288 $return->repositories = array();
3290 if (empty($externallink)) {
3291 $return->externallink = false;
3292 } else {
3293 $return->externallink = true;
3296 $return->userprefs = array();
3297 $return->userprefs['recentrepository'] = get_user_preferences('filepicker_recentrepository', '');
3298 $return->userprefs['recentlicense'] = get_user_preferences('filepicker_recentlicense', '');
3299 $return->userprefs['recentviewmode'] = get_user_preferences('filepicker_recentviewmode', '');
3301 user_preference_allow_ajax_update('filepicker_recentrepository', PARAM_INT);
3302 user_preference_allow_ajax_update('filepicker_recentlicense', PARAM_SAFEDIR);
3303 user_preference_allow_ajax_update('filepicker_recentviewmode', PARAM_INT);
3306 // provided by form element
3307 $return->accepted_types = file_get_typegroup('extension', $args->accepted_types);
3308 $return->return_types = $args->return_types;
3309 $templates = array();
3310 foreach ($repositories as $repository) {
3311 $meta = $repository->get_meta();
3312 // Please note that the array keys for repositories are used within
3313 // JavaScript a lot, the key NEEDS to be the repository id.
3314 $return->repositories[$repository->id] = $meta;
3315 // Register custom repository template if it has one
3316 if(method_exists($repository, 'get_upload_template') && !array_key_exists('uploadform_' . $meta->type, $templatesinitialized)) {
3317 $templates['uploadform_' . $meta->type] = $repository->get_upload_template();
3318 $templatesinitialized['uploadform_' . $meta->type] = true;
3321 if (!array_key_exists('core', $templatesinitialized)) {
3322 // we need to send each filepicker template to the browser just once
3323 $fprenderer = $PAGE->get_renderer('core', 'files');
3324 $templates = array_merge($templates, $fprenderer->filepicker_js_templates());
3325 $templatesinitialized['core'] = true;
3327 if (sizeof($templates)) {
3328 $PAGE->requires->js_init_call('M.core_filepicker.set_templates', array($templates), true);
3330 return $return;