MDL-35238 Make the auto-deploy feature lockable via config.php
[moodle.git] / lib / pluginlib.php
CommitLineData
b9934a17 1<?php
b6ad8594 2
b9934a17
DM
3// This file is part of Moodle - http://moodle.org/
4//
5// Moodle is free software: you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// Moodle is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17
18/**
19 * Defines classes used for plugins management
20 *
21 * This library provides a unified interface to various plugin types in
22 * Moodle. It is mainly used by the plugins management admin page and the
23 * plugins check page during the upgrade.
24 *
25 * @package core
26 * @subpackage admin
27 * @copyright 2011 David Mudrak <david@moodle.com>
28 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 */
30
31defined('MOODLE_INTERNAL') || die();
32
33/**
34 * Singleton class providing general plugins management functionality
35 */
36class plugin_manager {
37
38 /** the plugin is shipped with standard Moodle distribution */
39 const PLUGIN_SOURCE_STANDARD = 'std';
40 /** the plugin is added extension */
41 const PLUGIN_SOURCE_EXTENSION = 'ext';
42
43 /** the plugin uses neither database nor capabilities, no versions */
44 const PLUGIN_STATUS_NODB = 'nodb';
45 /** the plugin is up-to-date */
46 const PLUGIN_STATUS_UPTODATE = 'uptodate';
47 /** the plugin is about to be installed */
48 const PLUGIN_STATUS_NEW = 'new';
49 /** the plugin is about to be upgraded */
50 const PLUGIN_STATUS_UPGRADE = 'upgrade';
ec8935f5
PS
51 /** the standard plugin is about to be deleted */
52 const PLUGIN_STATUS_DELETE = 'delete';
b9934a17
DM
53 /** the version at the disk is lower than the one already installed */
54 const PLUGIN_STATUS_DOWNGRADE = 'downgrade';
55 /** the plugin is installed but missing from disk */
56 const PLUGIN_STATUS_MISSING = 'missing';
57
58 /** @var plugin_manager holds the singleton instance */
59 protected static $singletoninstance;
60 /** @var array of raw plugins information */
61 protected $pluginsinfo = null;
62 /** @var array of raw subplugins information */
63 protected $subpluginsinfo = null;
64
65 /**
66 * Direct initiation not allowed, use the factory method {@link self::instance()}
b9934a17
DM
67 */
68 protected function __construct() {
b9934a17
DM
69 }
70
71 /**
72 * Sorry, this is singleton
73 */
74 protected function __clone() {
75 }
76
77 /**
78 * Factory method for this class
79 *
80 * @return plugin_manager the singleton instance
81 */
82 public static function instance() {
b9934a17
DM
83 if (is_null(self::$singletoninstance)) {
84 self::$singletoninstance = new self();
85 }
86 return self::$singletoninstance;
87 }
88
98547432
89 /**
90 * Reset any caches
91 * @param bool $phpunitreset
92 */
93 public static function reset_caches($phpunitreset = false) {
94 if ($phpunitreset) {
95 self::$singletoninstance = null;
96 }
97 }
98
b9934a17
DM
99 /**
100 * Returns a tree of known plugins and information about them
101 *
102 * @param bool $disablecache force reload, cache can be used otherwise
e61aaece
TH
103 * @return array 2D array. The first keys are plugin type names (e.g. qtype);
104 * the second keys are the plugin local name (e.g. multichoice); and
b6ad8594 105 * the values are the corresponding objects extending {@link plugininfo_base}
b9934a17
DM
106 */
107 public function get_plugins($disablecache=false) {
7716057f 108 global $CFG;
b9934a17
DM
109
110 if ($disablecache or is_null($this->pluginsinfo)) {
7d59d8da
PS
111 // Hack: include mod and editor subplugin management classes first,
112 // the adminlib.php is supposed to contain extra admin settings too.
113 require_once($CFG->libdir.'/adminlib.php');
114 foreach(array('mod', 'editor') as $type) {
115 foreach (get_plugin_list($type) as $dir) {
116 if (file_exists("$dir/adminlib.php")) {
117 include_once("$dir/adminlib.php");
118 }
119 }
120 }
b9934a17
DM
121 $this->pluginsinfo = array();
122 $plugintypes = get_plugin_types();
4ed26680 123 $plugintypes = $this->reorder_plugin_types($plugintypes);
b9934a17
DM
124 foreach ($plugintypes as $plugintype => $plugintyperootdir) {
125 if (in_array($plugintype, array('base', 'general'))) {
126 throw new coding_exception('Illegal usage of reserved word for plugin type');
127 }
b6ad8594
DM
128 if (class_exists('plugininfo_' . $plugintype)) {
129 $plugintypeclass = 'plugininfo_' . $plugintype;
b9934a17 130 } else {
b6ad8594 131 $plugintypeclass = 'plugininfo_general';
b9934a17 132 }
b6ad8594
DM
133 if (!in_array('plugininfo_base', class_parents($plugintypeclass))) {
134 throw new coding_exception('Class ' . $plugintypeclass . ' must extend plugininfo_base');
b9934a17
DM
135 }
136 $plugins = call_user_func(array($plugintypeclass, 'get_plugins'), $plugintype, $plugintyperootdir, $plugintypeclass);
137 $this->pluginsinfo[$plugintype] = $plugins;
138 }
dd119e21 139
7716057f 140 if (empty($CFG->disableupdatenotifications) and !during_initial_install()) {
8411c24e
DP
141 // append the information about available updates provided by {@link available_update_checker()}
142 $provider = available_update_checker::instance();
143 foreach ($this->pluginsinfo as $plugintype => $plugins) {
144 foreach ($plugins as $plugininfoholder) {
145 $plugininfoholder->check_available_updates($provider);
146 }
dd119e21
DM
147 }
148 }
b9934a17
DM
149 }
150
151 return $this->pluginsinfo;
152 }
153
154 /**
0242bdc7
TH
155 * Returns list of plugins that define their subplugins and the information
156 * about them from the db/subplugins.php file.
b9934a17 157 *
c57fc98b 158 * At the moment, only activity modules and editors can define subplugins.
b9934a17 159 *
0242bdc7
TH
160 * @param bool $disablecache force reload, cache can be used otherwise
161 * @return array with keys like 'mod_quiz', and values the data from the
162 * corresponding db/subplugins.php file.
b9934a17
DM
163 */
164 public function get_subplugins($disablecache=false) {
165
166 if ($disablecache or is_null($this->subpluginsinfo)) {
167 $this->subpluginsinfo = array();
c57fc98b 168 foreach (array('mod', 'editor') as $type) {
e197d9a4 169 $owners = get_plugin_list($type);
c57fc98b 170 foreach ($owners as $component => $ownerdir) {
171 $componentsubplugins = array();
172 if (file_exists($ownerdir . '/db/subplugins.php')) {
975311d3 173 $subplugins = array();
c57fc98b 174 include($ownerdir . '/db/subplugins.php');
175 foreach ($subplugins as $subplugintype => $subplugintyperootdir) {
176 $subplugin = new stdClass();
177 $subplugin->type = $subplugintype;
178 $subplugin->typerootdir = $subplugintyperootdir;
179 $componentsubplugins[$subplugintype] = $subplugin;
180 }
181 $this->subpluginsinfo[$type . '_' . $component] = $componentsubplugins;
b9934a17 182 }
b9934a17
DM
183 }
184 }
185 }
186
187 return $this->subpluginsinfo;
188 }
189
190 /**
191 * Returns the name of the plugin that defines the given subplugin type
192 *
193 * If the given subplugin type is not actually a subplugin, returns false.
194 *
195 * @param string $subplugintype the name of subplugin type, eg. workshopform or quiz
196 * @return false|string the name of the parent plugin, eg. mod_workshop
197 */
198 public function get_parent_of_subplugin($subplugintype) {
199
200 $parent = false;
201 foreach ($this->get_subplugins() as $pluginname => $subplugintypes) {
202 if (isset($subplugintypes[$subplugintype])) {
203 $parent = $pluginname;
204 break;
205 }
206 }
207
208 return $parent;
209 }
210
211 /**
212 * Returns a localized name of a given plugin
213 *
214 * @param string $plugin name of the plugin, eg mod_workshop or auth_ldap
215 * @return string
216 */
217 public function plugin_name($plugin) {
218 list($type, $name) = normalize_component($plugin);
219 return $this->pluginsinfo[$type][$name]->displayname;
220 }
221
222 /**
223 * Returns a localized name of a plugin type in plural form
224 *
225 * Most plugin types define their names in core_plugin lang file. In case of subplugins,
226 * we try to ask the parent plugin for the name. In the worst case, we will return
227 * the value of the passed $type parameter.
228 *
229 * @param string $type the type of the plugin, e.g. mod or workshopform
230 * @return string
231 */
232 public function plugintype_name_plural($type) {
233
234 if (get_string_manager()->string_exists('type_' . $type . '_plural', 'core_plugin')) {
235 // for most plugin types, their names are defined in core_plugin lang file
236 return get_string('type_' . $type . '_plural', 'core_plugin');
237
238 } else if ($parent = $this->get_parent_of_subplugin($type)) {
239 // if this is a subplugin, try to ask the parent plugin for the name
240 if (get_string_manager()->string_exists('subplugintype_' . $type . '_plural', $parent)) {
241 return $this->plugin_name($parent) . ' / ' . get_string('subplugintype_' . $type . '_plural', $parent);
242 } else {
243 return $this->plugin_name($parent) . ' / ' . $type;
244 }
245
246 } else {
247 return $type;
248 }
249 }
250
e61aaece
TH
251 /**
252 * @param string $component frankenstyle component name.
b6ad8594 253 * @return plugininfo_base|null the corresponding plugin information.
e61aaece
TH
254 */
255 public function get_plugin_info($component) {
256 list($type, $name) = normalize_component($component);
257 $plugins = $this->get_plugins();
258 if (isset($plugins[$type][$name])) {
259 return $plugins[$type][$name];
260 } else {
261 return null;
262 }
263 }
264
828788f0 265 /**
b6ad8594 266 * Get a list of any other plugins that require this one.
828788f0
TH
267 * @param string $component frankenstyle component name.
268 * @return array of frankensyle component names that require this one.
269 */
270 public function other_plugins_that_require($component) {
271 $others = array();
272 foreach ($this->get_plugins() as $type => $plugins) {
273 foreach ($plugins as $plugin) {
274 $required = $plugin->get_other_required_plugins();
275 if (isset($required[$component])) {
276 $others[] = $plugin->component;
277 }
278 }
279 }
280 return $others;
281 }
282
e61aaece 283 /**
777781d1
TH
284 * Check a dependencies list against the list of installed plugins.
285 * @param array $dependencies compenent name to required version or ANY_VERSION.
286 * @return bool true if all the dependencies are satisfied.
e61aaece 287 */
777781d1
TH
288 public function are_dependencies_satisfied($dependencies) {
289 foreach ($dependencies as $component => $requiredversion) {
e61aaece
TH
290 $otherplugin = $this->get_plugin_info($component);
291 if (is_null($otherplugin)) {
0242bdc7
TH
292 return false;
293 }
294
3f123d92 295 if ($requiredversion != ANY_VERSION and $otherplugin->versiondisk < $requiredversion) {
0242bdc7
TH
296 return false;
297 }
298 }
299
300 return true;
301 }
302
faadd326 303 /**
927cb511
DM
304 * Checks all dependencies for all installed plugins
305 *
306 * This is used by install and upgrade. The array passed by reference as the second
307 * argument is populated with the list of plugins that have failed dependencies (note that
308 * a single plugin can appear multiple times in the $failedplugins).
309 *
faadd326 310 * @param int $moodleversion the version from version.php.
927cb511 311 * @param array $failedplugins to return the list of plugins with non-satisfied dependencies
777781d1 312 * @return bool true if all the dependencies are satisfied for all plugins.
faadd326 313 */
927cb511
DM
314 public function all_plugins_ok($moodleversion, &$failedplugins = array()) {
315
316 $return = true;
faadd326
TH
317 foreach ($this->get_plugins() as $type => $plugins) {
318 foreach ($plugins as $plugin) {
319
3a2300f5 320 if (!$plugin->is_core_dependency_satisfied($moodleversion)) {
927cb511
DM
321 $return = false;
322 $failedplugins[] = $plugin->component;
faadd326
TH
323 }
324
777781d1 325 if (!$this->are_dependencies_satisfied($plugin->get_other_required_plugins())) {
927cb511
DM
326 $return = false;
327 $failedplugins[] = $plugin->component;
faadd326
TH
328 }
329 }
330 }
331
927cb511 332 return $return;
faadd326
TH
333 }
334
5344ddd1
DM
335 /**
336 * Checks if there are some plugins with a known available update
337 *
338 * @return bool true if there is at least one available update
339 */
340 public function some_plugins_updatable() {
341 foreach ($this->get_plugins() as $type => $plugins) {
342 foreach ($plugins as $plugin) {
343 if ($plugin->available_updates()) {
344 return true;
345 }
346 }
347 }
348
349 return false;
350 }
351
ec8935f5
PS
352 /**
353 * Defines a list of all plugins that were originally shipped in the standard Moodle distribution,
354 * but are not anymore and are deleted during upgrades.
355 *
356 * The main purpose of this list is to hide missing plugins during upgrade.
357 *
358 * @param string $type plugin type
359 * @param string $name plugin name
360 * @return bool
361 */
362 public static function is_deleted_standard_plugin($type, $name) {
363 static $plugins = array(
34c72803 364 // do not add 1.9-2.2 plugin removals here
ec8935f5
PS
365 );
366
367 if (!isset($plugins[$type])) {
368 return false;
369 }
370 return in_array($name, $plugins[$type]);
371 }
372
b9934a17
DM
373 /**
374 * Defines a white list of all plugins shipped in the standard Moodle distribution
375 *
ec8935f5 376 * @param string $type
b9934a17
DM
377 * @return false|array array of standard plugins or false if the type is unknown
378 */
379 public static function standard_plugins_list($type) {
380 static $standard_plugins = array(
381
382 'assignment' => array(
383 'offline', 'online', 'upload', 'uploadsingle'
384 ),
385
1619a38b
DP
386 'assignsubmission' => array(
387 'comments', 'file', 'onlinetext'
388 ),
389
390 'assignfeedback' => array(
fcae4a0c 391 'comments', 'file', 'offline'
1619a38b
DP
392 ),
393
b9934a17
DM
394 'auth' => array(
395 'cas', 'db', 'email', 'fc', 'imap', 'ldap', 'manual', 'mnet',
396 'nntp', 'nologin', 'none', 'pam', 'pop3', 'radius',
397 'shibboleth', 'webservice'
398 ),
399
400 'block' => array(
401 'activity_modules', 'admin_bookmarks', 'blog_menu',
402 'blog_recent', 'blog_tags', 'calendar_month',
403 'calendar_upcoming', 'comments', 'community',
404 'completionstatus', 'course_list', 'course_overview',
405 'course_summary', 'feedback', 'glossary_random', 'html',
406 'login', 'mentees', 'messages', 'mnet_hosts', 'myprofile',
407 'navigation', 'news_items', 'online_users', 'participants',
408 'private_files', 'quiz_results', 'recent_activity',
f68cef22 409 'rss_client', 'search_forums', 'section_links',
b9934a17
DM
410 'selfcompletion', 'settings', 'site_main_menu',
411 'social_activities', 'tag_flickr', 'tag_youtube', 'tags'
412 ),
413
f7e6dd4d
EL
414 'booktool' => array(
415 'exportimscp', 'importhtml', 'print'
416 ),
417
fd59389c
SH
418 'cachelock' => array(
419 'file'
420 ),
421
422 'cachestore' => array(
423 'file', 'memcache', 'memcached', 'mongodb', 'session', 'static'
424 ),
425
b9934a17 426 'coursereport' => array(
a2a444ab 427 //deprecated!
b9934a17
DM
428 ),
429
430 'datafield' => array(
431 'checkbox', 'date', 'file', 'latlong', 'menu', 'multimenu',
432 'number', 'picture', 'radiobutton', 'text', 'textarea', 'url'
433 ),
434
435 'datapreset' => array(
436 'imagegallery'
437 ),
438
439 'editor' => array(
440 'textarea', 'tinymce'
441 ),
442
443 'enrol' => array(
444 'authorize', 'category', 'cohort', 'database', 'flatfile',
445 'guest', 'imsenterprise', 'ldap', 'manual', 'meta', 'mnet',
446 'paypal', 'self'
447 ),
448
449 'filter' => array(
450 'activitynames', 'algebra', 'censor', 'emailprotect',
451 'emoticon', 'mediaplugin', 'multilang', 'tex', 'tidy',
87783982 452 'urltolink', 'data', 'glossary'
b9934a17
DM
453 ),
454
455 'format' => array(
456 'scorm', 'social', 'topics', 'weeks'
457 ),
458
459 'gradeexport' => array(
460 'ods', 'txt', 'xls', 'xml'
461 ),
462
463 'gradeimport' => array(
464 'csv', 'xml'
465 ),
466
467 'gradereport' => array(
468 'grader', 'outcomes', 'overview', 'user'
469 ),
470
f59f488a 471 'gradingform' => array(
77143217 472 'rubric', 'guide'
f59f488a
DM
473 ),
474
b9934a17
DM
475 'local' => array(
476 ),
477
478 'message' => array(
479 'email', 'jabber', 'popup'
480 ),
481
482 'mnetservice' => array(
483 'enrol'
484 ),
485
486 'mod' => array(
f7e6dd4d 487 'assign', 'assignment', 'book', 'chat', 'choice', 'data', 'feedback', 'folder',
7fdee5b6 488 'forum', 'glossary', 'imscp', 'label', 'lesson', 'lti', 'page',
b9934a17
DM
489 'quiz', 'resource', 'scorm', 'survey', 'url', 'wiki', 'workshop'
490 ),
491
492 'plagiarism' => array(
493 ),
494
495 'portfolio' => array(
496 'boxnet', 'download', 'flickr', 'googledocs', 'mahara', 'picasa'
497 ),
498
499 'profilefield' => array(
500 'checkbox', 'datetime', 'menu', 'text', 'textarea'
501 ),
502
d1c77ac3
DM
503 'qbehaviour' => array(
504 'adaptive', 'adaptivenopenalty', 'deferredcbm',
505 'deferredfeedback', 'immediatecbm', 'immediatefeedback',
506 'informationitem', 'interactive', 'interactivecountback',
507 'manualgraded', 'missing'
508 ),
509
b9934a17
DM
510 'qformat' => array(
511 'aiken', 'blackboard', 'blackboard_six', 'examview', 'gift',
2dc54611 512 'learnwise', 'missingword', 'multianswer', 'webct',
b9934a17
DM
513 'xhtml', 'xml'
514 ),
515
516 'qtype' => array(
517 'calculated', 'calculatedmulti', 'calculatedsimple',
518 'description', 'essay', 'match', 'missingtype', 'multianswer',
519 'multichoice', 'numerical', 'random', 'randomsamatch',
520 'shortanswer', 'truefalse'
521 ),
522
523 'quiz' => array(
524 'grading', 'overview', 'responses', 'statistics'
525 ),
526
c999d841
TH
527 'quizaccess' => array(
528 'delaybetweenattempts', 'ipaddress', 'numattempts', 'openclosedate',
529 'password', 'safebrowser', 'securewindow', 'timelimit'
530 ),
531
b9934a17 532 'report' => array(
13fdaaac 533 'backups', 'completion', 'configlog', 'courseoverview',
8a8f29c2 534 'log', 'loglive', 'outline', 'participation', 'progress', 'questioninstances', 'security', 'stats'
b9934a17
DM
535 ),
536
537 'repository' => array(
daf28d86 538 'alfresco', 'boxnet', 'coursefiles', 'dropbox', 'equella', 'filesystem',
b9934a17
DM
539 'flickr', 'flickr_public', 'googledocs', 'local', 'merlot',
540 'picasa', 'recent', 's3', 'upload', 'url', 'user', 'webdav',
541 'wikimedia', 'youtube'
542 ),
543
99e86561 544 'scormreport' => array(
8f1a0d21 545 'basic',
e61a7137
AKA
546 'interactions',
547 'graphs'
99e86561
PS
548 ),
549
29e03690
PS
550 'tinymce' => array(
551 'dragmath', 'moodleemoticon', 'moodleimage', 'moodlemedia', 'moodlenolink', 'spellchecker',
552 ),
553
b9934a17 554 'theme' => array(
bef9ad95
DM
555 'afterburner', 'anomaly', 'arialist', 'base', 'binarius',
556 'boxxie', 'brick', 'canvas', 'formal_white', 'formfactor',
98ca9e84
EL
557 'fusion', 'leatherbound', 'magazine', 'mymobile', 'nimble',
558 'nonzero', 'overlay', 'serenity', 'sky_high', 'splash',
559 'standard', 'standardold'
b9934a17
DM
560 ),
561
11b24ce7 562 'tool' => array(
db9d7be6 563 'assignmentupgrade', 'capability', 'customlang', 'dbtransfer', 'generator',
a3d5830a 564 'health', 'innodb', 'langimport', 'multilangupgrade', 'phpunit', 'profiling',
fab6f7b7 565 'qeupgradehelper', 'replace', 'spamcleaner', 'timezoneimport', 'unittest',
9597e00b 566 'uploaduser', 'unsuproles', 'xmldb'
11b24ce7
PS
567 ),
568
b9934a17
DM
569 'webservice' => array(
570 'amf', 'rest', 'soap', 'xmlrpc'
571 ),
572
573 'workshopallocation' => array(
98621280 574 'manual', 'random', 'scheduled'
b9934a17
DM
575 ),
576
577 'workshopeval' => array(
578 'best'
579 ),
580
581 'workshopform' => array(
582 'accumulative', 'comments', 'numerrors', 'rubric'
583 )
584 );
585
586 if (isset($standard_plugins[$type])) {
587 return $standard_plugins[$type];
b9934a17
DM
588 } else {
589 return false;
590 }
591 }
4ed26680
DM
592
593 /**
660c4d46 594 * Reorders plugin types into a sequence to be displayed
4ed26680
DM
595 *
596 * For technical reasons, plugin types returned by {@link get_plugin_types()} are
597 * in a certain order that does not need to fit the expected order for the display.
598 * Particularly, activity modules should be displayed first as they represent the
599 * real heart of Moodle. They should be followed by other plugin types that are
600 * used to build the courses (as that is what one expects from LMS). After that,
601 * other supportive plugin types follow.
602 *
603 * @param array $types associative array
604 * @return array same array with altered order of items
605 */
606 protected function reorder_plugin_types(array $types) {
607 $fix = array(
608 'mod' => $types['mod'],
609 'block' => $types['block'],
610 'qtype' => $types['qtype'],
611 'qbehaviour' => $types['qbehaviour'],
612 'qformat' => $types['qformat'],
613 'filter' => $types['filter'],
614 'enrol' => $types['enrol'],
615 );
616 foreach ($types as $type => $path) {
617 if (!isset($fix[$type])) {
618 $fix[$type] = $path;
619 }
620 }
621 return $fix;
622 }
b9934a17
DM
623}
624
b9934a17 625
b9934a17 626/**
cd0bb55f 627 * General exception thrown by the {@link available_update_checker} class
b9934a17 628 */
cd0bb55f 629class available_update_checker_exception extends moodle_exception {
b9934a17
DM
630
631 /**
cd0bb55f
DM
632 * @param string $errorcode exception description identifier
633 * @param mixed $debuginfo debugging data to display
634 */
635 public function __construct($errorcode, $debuginfo=null) {
636 parent::__construct($errorcode, 'core_plugin', '', null, print_r($debuginfo, true));
637 }
638}
639
640
641/**
642 * Singleton class that handles checking for available updates
643 */
644class available_update_checker {
645
646 /** @var available_update_checker holds the singleton instance */
647 protected static $singletoninstance;
7d8de6d8
DM
648 /** @var null|int the timestamp of when the most recent response was fetched */
649 protected $recentfetch = null;
650 /** @var null|array the recent response from the update notification provider */
651 protected $recentresponse = null;
55585f3a
DM
652 /** @var null|string the numerical version of the local Moodle code */
653 protected $currentversion = null;
4442cc80
DM
654 /** @var null|string the release info of the local Moodle code */
655 protected $currentrelease = null;
55585f3a
DM
656 /** @var null|string branch of the local Moodle code */
657 protected $currentbranch = null;
658 /** @var array of (string)frankestyle => (string)version list of additional plugins deployed at this site */
659 protected $currentplugins = array();
cd0bb55f
DM
660
661 /**
662 * Direct initiation not allowed, use the factory method {@link self::instance()}
663 */
664 protected function __construct() {
cd0bb55f
DM
665 }
666
667 /**
668 * Sorry, this is singleton
669 */
670 protected function __clone() {
671 }
672
673 /**
674 * Factory method for this class
b9934a17 675 *
cd0bb55f
DM
676 * @return available_update_checker the singleton instance
677 */
678 public static function instance() {
679 if (is_null(self::$singletoninstance)) {
680 self::$singletoninstance = new self();
681 }
682 return self::$singletoninstance;
683 }
684
98547432
685 /**
686 * Reset any caches
687 * @param bool $phpunitreset
688 */
689 public static function reset_caches($phpunitreset = false) {
690 if ($phpunitreset) {
691 self::$singletoninstance = null;
692 }
693 }
694
cd0bb55f
DM
695 /**
696 * Returns the timestamp of the last execution of {@link fetch()}
b9934a17 697 *
cd0bb55f 698 * @return int|null null if it has never been executed or we don't known
b9934a17 699 */
cd0bb55f 700 public function get_last_timefetched() {
7d8de6d8
DM
701
702 $this->restore_response();
703
704 if (!empty($this->recentfetch)) {
705 return $this->recentfetch;
706
cd0bb55f 707 } else {
7d8de6d8 708 return null;
cd0bb55f
DM
709 }
710 }
b9934a17
DM
711
712 /**
cd0bb55f 713 * Fetches the available update status from the remote site
b9934a17 714 *
cd0bb55f 715 * @throws available_update_checker_exception
b9934a17 716 */
cd0bb55f 717 public function fetch() {
7d8de6d8 718 $response = $this->get_response();
cd0bb55f 719 $this->validate_response($response);
7d8de6d8 720 $this->store_response($response);
cd0bb55f 721 }
b9934a17
DM
722
723 /**
cd0bb55f 724 * Returns the available update information for the given component
b9934a17 725 *
cd0bb55f 726 * This method returns null if the most recent response does not contain any information
7d8de6d8
DM
727 * about it. The returned structure is an array of available updates for the given
728 * component. Each update info is an object with at least one property called
729 * 'version'. Other possible properties are 'release', 'maturity', 'url' and 'downloadurl'.
cd0bb55f 730 *
c6f008e7
DM
731 * For the 'core' component, the method returns real updates only (those with higher version).
732 * For all other components, the list of all known remote updates is returned and the caller
733 * (usually the {@link plugin_manager}) is supposed to make the actual comparison of versions.
b9934a17 734 *
cd0bb55f 735 * @param string $component frankenstyle
c6f008e7
DM
736 * @param array $options with supported keys 'minmaturity' and/or 'notifybuilds'
737 * @return null|array null or array of available_update_info objects
b9934a17 738 */
c6f008e7
DM
739 public function get_update_info($component, array $options = array()) {
740
741 if (!isset($options['minmaturity'])) {
742 $options['minmaturity'] = 0;
743 }
744
745 if (!isset($options['notifybuilds'])) {
746 $options['notifybuilds'] = false;
747 }
748
749 if ($component == 'core') {
750 $this->load_current_environment();
751 }
cd0bb55f 752
7d8de6d8 753 $this->restore_response();
cd0bb55f 754
c6f008e7
DM
755 if (empty($this->recentresponse['updates'][$component])) {
756 return null;
757 }
758
759 $updates = array();
760 foreach ($this->recentresponse['updates'][$component] as $info) {
761 $update = new available_update_info($component, $info);
762 if (isset($update->maturity) and ($update->maturity < $options['minmaturity'])) {
763 continue;
7d8de6d8 764 }
c6f008e7
DM
765 if ($component == 'core') {
766 if ($update->version <= $this->currentversion) {
767 continue;
768 }
4442cc80
DM
769 if (empty($options['notifybuilds']) and $this->is_same_release($update->release)) {
770 continue;
771 }
c6f008e7
DM
772 }
773 $updates[] = $update;
774 }
775
776 if (empty($updates)) {
cd0bb55f
DM
777 return null;
778 }
c6f008e7
DM
779
780 return $updates;
cd0bb55f 781 }
b9934a17
DM
782
783 /**
be378880
DM
784 * The method being run via cron.php
785 */
786 public function cron() {
787 global $CFG;
788
789 if (!$this->cron_autocheck_enabled()) {
790 $this->cron_mtrace('Automatic check for available updates not enabled, skipping.');
791 return;
792 }
793
794 $now = $this->cron_current_timestamp();
795
796 if ($this->cron_has_fresh_fetch($now)) {
797 $this->cron_mtrace('Recently fetched info about available updates is still fresh enough, skipping.');
798 return;
799 }
800
801 if ($this->cron_has_outdated_fetch($now)) {
802 $this->cron_mtrace('Outdated or missing info about available updates, forced fetching ... ', '');
803 $this->cron_execute();
804 return;
805 }
806
807 $offset = $this->cron_execution_offset();
808 $start = mktime(1, 0, 0, date('n', $now), date('j', $now), date('Y', $now)); // 01:00 AM today local time
809 if ($now > $start + $offset) {
810 $this->cron_mtrace('Regular daily check for available updates ... ', '');
811 $this->cron_execute();
812 return;
813 }
814 }
815
816 /// end of public API //////////////////////////////////////////////////////
817
cd0bb55f 818 /**
7d8de6d8 819 * Makes cURL request to get data from the remote site
b9934a17 820 *
7d8de6d8 821 * @return string raw request result
cd0bb55f
DM
822 * @throws available_update_checker_exception
823 */
7d8de6d8 824 protected function get_response() {
b4bfdf5a
PS
825 global $CFG;
826 require_once($CFG->libdir.'/filelib.php');
827
cd0bb55f
DM
828 $curl = new curl(array('proxy' => true));
829 $response = $curl->post($this->prepare_request_url(), $this->prepare_request_params());
830 $curlinfo = $curl->get_info();
831 if ($curlinfo['http_code'] != 200) {
832 throw new available_update_checker_exception('err_response_http_code', $curlinfo['http_code']);
833 }
cd0bb55f
DM
834 return $response;
835 }
836
837 /**
838 * Makes sure the response is valid, has correct API format etc.
839 *
7d8de6d8 840 * @param string $response raw response as returned by the {@link self::get_response()}
cd0bb55f
DM
841 * @throws available_update_checker_exception
842 */
7d8de6d8
DM
843 protected function validate_response($response) {
844
845 $response = $this->decode_response($response);
cd0bb55f
DM
846
847 if (empty($response)) {
848 throw new available_update_checker_exception('err_response_empty');
849 }
850
7d8de6d8
DM
851 if (empty($response['status']) or $response['status'] !== 'OK') {
852 throw new available_update_checker_exception('err_response_status', $response['status']);
853 }
854
855 if (empty($response['apiver']) or $response['apiver'] !== '1.0') {
856 throw new available_update_checker_exception('err_response_format_version', $response['apiver']);
cd0bb55f
DM
857 }
858
7d8de6d8 859 if (empty($response['forbranch']) or $response['forbranch'] !== moodle_major_version(true)) {
d5d2e353 860 throw new available_update_checker_exception('err_response_target_version', $response['forbranch']);
cd0bb55f
DM
861 }
862 }
863
864 /**
7d8de6d8 865 * Decodes the raw string response from the update notifications provider
b9934a17 866 *
7d8de6d8
DM
867 * @param string $response as returned by {@link self::get_response()}
868 * @return array decoded response structure
b9934a17 869 */
7d8de6d8
DM
870 protected function decode_response($response) {
871 return json_decode($response, true);
cd0bb55f 872 }
b9934a17
DM
873
874 /**
7d8de6d8
DM
875 * Stores the valid fetched response for later usage
876 *
877 * This implementation uses the config_plugins table as the permanent storage.
b9934a17 878 *
7d8de6d8 879 * @param string $response raw valid data returned by {@link self::get_response()}
b9934a17 880 */
7d8de6d8
DM
881 protected function store_response($response) {
882
883 set_config('recentfetch', time(), 'core_plugin');
884 set_config('recentresponse', $response, 'core_plugin');
885
886 $this->restore_response(true);
cd0bb55f 887 }
b9934a17
DM
888
889 /**
7d8de6d8 890 * Loads the most recent raw response record we have fetched
b9934a17 891 *
c62580b9
DM
892 * After this method is called, $this->recentresponse is set to an array. If the
893 * array is empty, then either no data have been fetched yet or the fetched data
894 * do not have expected format (and thence they are ignored and a debugging
895 * message is displayed).
896 *
7d8de6d8 897 * This implementation uses the config_plugins table as the permanent storage.
b9934a17 898 *
7d8de6d8 899 * @param bool $forcereload reload even if it was already loaded
b9934a17 900 */
7d8de6d8
DM
901 protected function restore_response($forcereload = false) {
902
903 if (!$forcereload and !is_null($this->recentresponse)) {
904 // we already have it, nothing to do
905 return;
cd0bb55f
DM
906 }
907
7d8de6d8
DM
908 $config = get_config('core_plugin');
909
910 if (!empty($config->recentresponse) and !empty($config->recentfetch)) {
911 try {
912 $this->validate_response($config->recentresponse);
913 $this->recentfetch = $config->recentfetch;
914 $this->recentresponse = $this->decode_response($config->recentresponse);
660c4d46 915 } catch (available_update_checker_exception $e) {
c62580b9
DM
916 debugging('Invalid info about available updates detected and will be ignored: '.$e->getMessage(), DEBUG_ALL);
917 $this->recentresponse = array();
7d8de6d8
DM
918 }
919
cd0bb55f 920 } else {
7d8de6d8 921 $this->recentresponse = array();
cd0bb55f
DM
922 }
923 }
924
7b35553b
DM
925 /**
926 * Compares two raw {@link $recentresponse} records and returns the list of changed updates
927 *
928 * This method is used to populate potential update info to be sent to site admins.
929 *
19d11b3b
DM
930 * @param array $old
931 * @param array $new
7b35553b
DM
932 * @throws available_update_checker_exception
933 * @return array parts of $new['updates'] that have changed
934 */
19d11b3b 935 protected function compare_responses(array $old, array $new) {
7b35553b 936
19d11b3b 937 if (empty($new)) {
7b35553b
DM
938 return array();
939 }
940
941 if (!array_key_exists('updates', $new)) {
942 throw new available_update_checker_exception('err_response_format');
943 }
944
19d11b3b 945 if (empty($old)) {
7b35553b
DM
946 return $new['updates'];
947 }
948
949 if (!array_key_exists('updates', $old)) {
950 throw new available_update_checker_exception('err_response_format');
951 }
952
953 $changes = array();
954
955 foreach ($new['updates'] as $newcomponent => $newcomponentupdates) {
956 if (empty($old['updates'][$newcomponent])) {
957 $changes[$newcomponent] = $newcomponentupdates;
958 continue;
959 }
960 foreach ($newcomponentupdates as $newcomponentupdate) {
961 $inold = false;
962 foreach ($old['updates'][$newcomponent] as $oldcomponentupdate) {
963 if ($newcomponentupdate['version'] == $oldcomponentupdate['version']) {
964 $inold = true;
965 }
966 }
967 if (!$inold) {
968 if (!isset($changes[$newcomponent])) {
969 $changes[$newcomponent] = array();
970 }
971 $changes[$newcomponent][] = $newcomponentupdate;
972 }
973 }
974 }
975
976 return $changes;
977 }
978
cd0bb55f
DM
979 /**
980 * Returns the URL to send update requests to
981 *
982 * During the development or testing, you can set $CFG->alternativeupdateproviderurl
983 * to a custom URL that will be used. Otherwise the standard URL will be returned.
984 *
985 * @return string URL
986 */
987 protected function prepare_request_url() {
988 global $CFG;
989
990 if (!empty($CFG->alternativeupdateproviderurl)) {
991 return $CFG->alternativeupdateproviderurl;
992 } else {
993 return 'http://download.moodle.org/api/1.0/updates.php';
994 }
995 }
996
55585f3a 997 /**
4442cc80 998 * Sets the properties currentversion, currentrelease, currentbranch and currentplugins
55585f3a
DM
999 *
1000 * @param bool $forcereload
1001 */
1002 protected function load_current_environment($forcereload=false) {
1003 global $CFG;
1004
1005 if (!is_null($this->currentversion) and !$forcereload) {
1006 // nothing to do
1007 return;
1008 }
1009
975311d3
PS
1010 $version = null;
1011 $release = null;
1012
55585f3a
DM
1013 require($CFG->dirroot.'/version.php');
1014 $this->currentversion = $version;
4442cc80 1015 $this->currentrelease = $release;
55585f3a
DM
1016 $this->currentbranch = moodle_major_version(true);
1017
1018 $pluginman = plugin_manager::instance();
1019 foreach ($pluginman->get_plugins() as $type => $plugins) {
1020 foreach ($plugins as $plugin) {
1021 if (!$plugin->is_standard()) {
1022 $this->currentplugins[$plugin->component] = $plugin->versiondisk;
1023 }
1024 }
1025 }
1026 }
1027
cd0bb55f
DM
1028 /**
1029 * Returns the list of HTTP params to be sent to the updates provider URL
1030 *
1031 * @return array of (string)param => (string)value
1032 */
1033 protected function prepare_request_params() {
1034 global $CFG;
1035
55585f3a 1036 $this->load_current_environment();
7d8de6d8
DM
1037 $this->restore_response();
1038
cd0bb55f
DM
1039 $params = array();
1040 $params['format'] = 'json';
1041
7d8de6d8
DM
1042 if (isset($this->recentresponse['ticket'])) {
1043 $params['ticket'] = $this->recentresponse['ticket'];
cd0bb55f
DM
1044 }
1045
55585f3a
DM
1046 if (isset($this->currentversion)) {
1047 $params['version'] = $this->currentversion;
1048 } else {
1049 throw new coding_exception('Main Moodle version must be already known here');
cd0bb55f
DM
1050 }
1051
55585f3a
DM
1052 if (isset($this->currentbranch)) {
1053 $params['branch'] = $this->currentbranch;
1054 } else {
1055 throw new coding_exception('Moodle release must be already known here');
1056 }
1057
1058 $plugins = array();
1059 foreach ($this->currentplugins as $plugin => $version) {
1060 $plugins[] = $plugin.'@'.$version;
1061 }
1062 if (!empty($plugins)) {
1063 $params['plugins'] = implode(',', $plugins);
cd0bb55f
DM
1064 }
1065
cd0bb55f
DM
1066 return $params;
1067 }
be378880
DM
1068
1069 /**
1070 * Returns the current timestamp
1071 *
1072 * @return int the timestamp
1073 */
1074 protected function cron_current_timestamp() {
1075 return time();
1076 }
1077
1078 /**
1079 * Output cron debugging info
1080 *
1081 * @see mtrace()
1082 * @param string $msg output message
1083 * @param string $eol end of line
1084 */
1085 protected function cron_mtrace($msg, $eol = PHP_EOL) {
1086 mtrace($msg, $eol);
1087 }
1088
1089 /**
1090 * Decide if the autocheck feature is disabled in the server setting
1091 *
1092 * @return bool true if autocheck enabled, false if disabled
1093 */
1094 protected function cron_autocheck_enabled() {
718eb2a5
DM
1095 global $CFG;
1096
be378880
DM
1097 if (empty($CFG->updateautocheck)) {
1098 return false;
1099 } else {
1100 return true;
1101 }
1102 }
1103
1104 /**
1105 * Decide if the recently fetched data are still fresh enough
1106 *
1107 * @param int $now current timestamp
1108 * @return bool true if no need to re-fetch, false otherwise
1109 */
1110 protected function cron_has_fresh_fetch($now) {
1111 $recent = $this->get_last_timefetched();
1112
1113 if (empty($recent)) {
1114 return false;
1115 }
1116
1117 if ($now < $recent) {
1118 $this->cron_mtrace('The most recent fetch is reported to be in the future, this is weird!');
1119 return true;
1120 }
1121
7092ea5d 1122 if ($now - $recent > 24 * HOURSECS) {
be378880
DM
1123 return false;
1124 }
1125
1126 return true;
1127 }
1128
1129 /**
1130 * Decide if the fetch is outadated or even missing
1131 *
1132 * @param int $now current timestamp
1133 * @return bool false if no need to re-fetch, true otherwise
1134 */
1135 protected function cron_has_outdated_fetch($now) {
1136 $recent = $this->get_last_timefetched();
1137
1138 if (empty($recent)) {
1139 return true;
1140 }
1141
1142 if ($now < $recent) {
1143 $this->cron_mtrace('The most recent fetch is reported to be in the future, this is weird!');
1144 return false;
1145 }
1146
1147 if ($now - $recent > 48 * HOURSECS) {
1148 return true;
1149 }
1150
1151 return false;
1152 }
1153
1154 /**
1155 * Returns the cron execution offset for this site
1156 *
1157 * The main {@link self::cron()} is supposed to run every night in some random time
1158 * between 01:00 and 06:00 AM (local time). The exact moment is defined by so called
1159 * execution offset, that is the amount of time after 01:00 AM. The offset value is
1160 * initially generated randomly and then used consistently at the site. This way, the
1161 * regular checks against the download.moodle.org server are spread in time.
1162 *
1163 * @return int the offset number of seconds from range 1 sec to 5 hours
1164 */
1165 protected function cron_execution_offset() {
1166 global $CFG;
1167
1168 if (empty($CFG->updatecronoffset)) {
1169 set_config('updatecronoffset', rand(1, 5 * HOURSECS));
1170 }
1171
1172 return $CFG->updatecronoffset;
1173 }
1174
1175 /**
1176 * Fetch available updates info and eventually send notification to site admins
1177 */
1178 protected function cron_execute() {
7b35553b 1179
19d11b3b 1180 try {
fd87d0bf
AB
1181 $this->restore_response();
1182 $previous = $this->recentresponse;
1183 $this->fetch();
1184 $this->restore_response(true);
1185 $current = $this->recentresponse;
19d11b3b
DM
1186 $changes = $this->compare_responses($previous, $current);
1187 $notifications = $this->cron_notifications($changes);
1188 $this->cron_notify($notifications);
a77141a7 1189 $this->cron_mtrace('done');
19d11b3b
DM
1190 } catch (available_update_checker_exception $e) {
1191 $this->cron_mtrace('FAILED!');
1192 }
1193 }
1194
1195 /**
1196 * Given the list of changes in available updates, pick those to send to site admins
1197 *
1198 * @param array $changes as returned by {@link self::compare_responses()}
1199 * @return array of available_update_info objects to send to site admins
1200 */
1201 protected function cron_notifications(array $changes) {
1202 global $CFG;
1203
1204 $notifications = array();
1205 $pluginman = plugin_manager::instance();
1206 $plugins = $pluginman->get_plugins(true);
1207
1208 foreach ($changes as $component => $componentchanges) {
718eb2a5
DM
1209 if (empty($componentchanges)) {
1210 continue;
1211 }
19d11b3b
DM
1212 $componentupdates = $this->get_update_info($component,
1213 array('minmaturity' => $CFG->updateminmaturity, 'notifybuilds' => $CFG->updatenotifybuilds));
718eb2a5
DM
1214 if (empty($componentupdates)) {
1215 continue;
1216 }
19d11b3b
DM
1217 // notify only about those $componentchanges that are present in $componentupdates
1218 // to respect the preferences
1219 foreach ($componentchanges as $componentchange) {
1220 foreach ($componentupdates as $componentupdate) {
1221 if ($componentupdate->version == $componentchange['version']) {
1222 if ($component == 'core') {
1223 // in case of 'core' this is enough, we already know that the
1224 // $componentupdate is a real update with higher version
1225 $notifications[] = $componentupdate;
1226 } else {
1227 // use the plugin_manager to check if the reported $componentchange
1228 // is a real update with higher version. such a real update must be
1229 // present in the 'availableupdates' property of one of the component's
1230 // available_update_info object
1231 list($plugintype, $pluginname) = normalize_component($component);
1232 if (!empty($plugins[$plugintype][$pluginname]->availableupdates)) {
1233 foreach ($plugins[$plugintype][$pluginname]->availableupdates as $availableupdate) {
1234 if ($availableupdate->version == $componentchange['version']) {
1235 $notifications[] = $componentupdate;
1236 }
1237 }
1238 }
1239 }
1240 }
1241 }
1242 }
1243 }
1244
1245 return $notifications;
be378880 1246 }
a77141a7
DM
1247
1248 /**
1249 * Sends the given notifications to site admins via messaging API
1250 *
1251 * @param array $notifications array of available_update_info objects to send
1252 */
1253 protected function cron_notify(array $notifications) {
1254 global $CFG;
1255
1256 if (empty($notifications)) {
1257 return;
1258 }
1259
1260 $admins = get_admins();
1261
1262 if (empty($admins)) {
1263 return;
1264 }
1265
1266 $this->cron_mtrace('sending notifications ... ', '');
1267
1268 $text = get_string('updatenotifications', 'core_admin') . PHP_EOL;
1269 $html = html_writer::tag('h1', get_string('updatenotifications', 'core_admin')) . PHP_EOL;
1270
1271 $coreupdates = array();
1272 $pluginupdates = array();
1273
660c4d46 1274 foreach ($notifications as $notification) {
a77141a7
DM
1275 if ($notification->component == 'core') {
1276 $coreupdates[] = $notification;
1277 } else {
1278 $pluginupdates[] = $notification;
1279 }
1280 }
1281
1282 if (!empty($coreupdates)) {
1283 $text .= PHP_EOL . get_string('updateavailable', 'core_admin') . PHP_EOL;
1284 $html .= html_writer::tag('h2', get_string('updateavailable', 'core_admin')) . PHP_EOL;
1285 $html .= html_writer::start_tag('ul') . PHP_EOL;
1286 foreach ($coreupdates as $coreupdate) {
1287 $html .= html_writer::start_tag('li');
1288 if (isset($coreupdate->release)) {
1289 $text .= get_string('updateavailable_release', 'core_admin', $coreupdate->release);
1290 $html .= html_writer::tag('strong', get_string('updateavailable_release', 'core_admin', $coreupdate->release));
1291 }
1292 if (isset($coreupdate->version)) {
1293 $text .= ' '.get_string('updateavailable_version', 'core_admin', $coreupdate->version);
1294 $html .= ' '.get_string('updateavailable_version', 'core_admin', $coreupdate->version);
1295 }
1296 if (isset($coreupdate->maturity)) {
1297 $text .= ' ('.get_string('maturity'.$coreupdate->maturity, 'core_admin').')';
1298 $html .= ' ('.get_string('maturity'.$coreupdate->maturity, 'core_admin').')';
1299 }
1300 $text .= PHP_EOL;
1301 $html .= html_writer::end_tag('li') . PHP_EOL;
1302 }
1303 $text .= PHP_EOL;
1304 $html .= html_writer::end_tag('ul') . PHP_EOL;
1305
1306 $a = array('url' => $CFG->wwwroot.'/'.$CFG->admin.'/index.php');
1307 $text .= get_string('updateavailabledetailslink', 'core_admin', $a) . PHP_EOL;
1308 $a = array('url' => html_writer::link($CFG->wwwroot.'/'.$CFG->admin.'/index.php', $CFG->wwwroot.'/'.$CFG->admin.'/index.php'));
1309 $html .= html_writer::tag('p', get_string('updateavailabledetailslink', 'core_admin', $a)) . PHP_EOL;
1310 }
1311
1312 if (!empty($pluginupdates)) {
1313 $text .= PHP_EOL . get_string('updateavailableforplugin', 'core_admin') . PHP_EOL;
1314 $html .= html_writer::tag('h2', get_string('updateavailableforplugin', 'core_admin')) . PHP_EOL;
1315
1316 $html .= html_writer::start_tag('ul') . PHP_EOL;
1317 foreach ($pluginupdates as $pluginupdate) {
1318 $html .= html_writer::start_tag('li');
1319 $text .= get_string('pluginname', $pluginupdate->component);
1320 $html .= html_writer::tag('strong', get_string('pluginname', $pluginupdate->component));
1321
1322 $text .= ' ('.$pluginupdate->component.')';
1323 $html .= ' ('.$pluginupdate->component.')';
1324
1325 $text .= ' '.get_string('updateavailable', 'core_plugin', $pluginupdate->version);
1326 $html .= ' '.get_string('updateavailable', 'core_plugin', $pluginupdate->version);
1327
1328 $text .= PHP_EOL;
1329 $html .= html_writer::end_tag('li') . PHP_EOL;
1330 }
1331 $text .= PHP_EOL;
1332 $html .= html_writer::end_tag('ul') . PHP_EOL;
b9934a17 1333
a77141a7
DM
1334 $a = array('url' => $CFG->wwwroot.'/'.$CFG->admin.'/plugins.php');
1335 $text .= get_string('updateavailabledetailslink', 'core_admin', $a) . PHP_EOL;
1336 $a = array('url' => html_writer::link($CFG->wwwroot.'/'.$CFG->admin.'/plugins.php', $CFG->wwwroot.'/'.$CFG->admin.'/plugins.php'));
1337 $html .= html_writer::tag('p', get_string('updateavailabledetailslink', 'core_admin', $a)) . PHP_EOL;
1338 }
1339
1340 $a = array('siteurl' => $CFG->wwwroot);
1341 $text .= get_string('updatenotificationfooter', 'core_admin', $a) . PHP_EOL;
1342 $a = array('siteurl' => html_writer::link($CFG->wwwroot, $CFG->wwwroot));
1343 $html .= html_writer::tag('footer', html_writer::tag('p', get_string('updatenotificationfooter', 'core_admin', $a),
1344 array('style' => 'font-size:smaller; color:#333;')));
1345
a77141a7
DM
1346 foreach ($admins as $admin) {
1347 $message = new stdClass();
1348 $message->component = 'moodle';
1349 $message->name = 'availableupdate';
55079015 1350 $message->userfrom = get_admin();
a77141a7 1351 $message->userto = $admin;
2399585f 1352 $message->subject = get_string('updatenotificationsubject', 'core_admin', array('siteurl' => $CFG->wwwroot));
a77141a7
DM
1353 $message->fullmessage = $text;
1354 $message->fullmessageformat = FORMAT_PLAIN;
1355 $message->fullmessagehtml = $html;
cd89994d
DM
1356 $message->smallmessage = get_string('updatenotifications', 'core_admin');
1357 $message->notification = 1;
a77141a7
DM
1358 message_send($message);
1359 }
1360 }
b9934a17
DM
1361
1362 /**
4442cc80 1363 * Compare two release labels and decide if they are the same
b9934a17 1364 *
4442cc80
DM
1365 * @param string $remote release info of the available update
1366 * @param null|string $local release info of the local code, defaults to $release defined in version.php
1367 * @return boolean true if the releases declare the same minor+major version
b9934a17 1368 */
4442cc80 1369 protected function is_same_release($remote, $local=null) {
b9934a17 1370
4442cc80
DM
1371 if (is_null($local)) {
1372 $this->load_current_environment();
1373 $local = $this->currentrelease;
1374 }
0242bdc7 1375
4442cc80 1376 $pattern = '/^([0-9\.\+]+)([^(]*)/';
b9934a17 1377
4442cc80
DM
1378 preg_match($pattern, $remote, $remotematches);
1379 preg_match($pattern, $local, $localmatches);
b9934a17 1380
4442cc80
DM
1381 $remotematches[1] = str_replace('+', '', $remotematches[1]);
1382 $localmatches[1] = str_replace('+', '', $localmatches[1]);
1383
1384 if ($remotematches[1] === $localmatches[1] and rtrim($remotematches[2]) === rtrim($localmatches[2])) {
1385 return true;
1386 } else {
1387 return false;
1388 }
1389 }
cd0bb55f
DM
1390}
1391
1392
7d8de6d8
DM
1393/**
1394 * Defines the structure of objects returned by {@link available_update_checker::get_update_info()}
1395 */
1396class available_update_info {
1397
1398 /** @var string frankenstyle component name */
1399 public $component;
1400 /** @var int the available version of the component */
1401 public $version;
1402 /** @var string|null optional release name */
1403 public $release = null;
1404 /** @var int|null optional maturity info, eg {@link MATURITY_STABLE} */
1405 public $maturity = null;
1406 /** @var string|null optional URL of a page with more info about the update */
1407 public $url = null;
1408 /** @var string|null optional URL of a ZIP package that can be downloaded and installed */
1409 public $download = null;
1410
1411 /**
1412 * Creates new instance of the class
b9934a17 1413 *
7d8de6d8
DM
1414 * The $info array must provide at least the 'version' value and optionally all other
1415 * values to populate the object's properties.
b9934a17 1416 *
7d8de6d8
DM
1417 * @param string $name the frankenstyle component name
1418 * @param array $info associative array with other properties
1419 */
1420 public function __construct($name, array $info) {
1421 $this->component = $name;
1422 foreach ($info as $k => $v) {
1423 if (property_exists('available_update_info', $k) and $k != 'component') {
1424 $this->$k = $v;
1425 }
1426 }
1427 }
1428}
1429
1430
00ef3c3e
DM
1431/**
1432 * Factory class producing required subclasses of {@link plugininfo_base}
1433 */
1434class plugininfo_default_factory {
b9934a17
DM
1435
1436 /**
00ef3c3e 1437 * Makes a new instance of the plugininfo class
b9934a17 1438 *
00ef3c3e
DM
1439 * @param string $type the plugin type, eg. 'mod'
1440 * @param string $typerootdir full path to the location of all the plugins of this type
1441 * @param string $name the plugin name, eg. 'workshop'
1442 * @param string $namerootdir full path to the location of the plugin
1443 * @param string $typeclass the name of class that holds the info about the plugin
1444 * @return plugininfo_base the instance of $typeclass
1445 */
1446 public static function make($type, $typerootdir, $name, $namerootdir, $typeclass) {
1447 $plugin = new $typeclass();
1448 $plugin->type = $type;
1449 $plugin->typerootdir = $typerootdir;
1450 $plugin->name = $name;
1451 $plugin->rootdir = $namerootdir;
1452
1453 $plugin->init_display_name();
1454 $plugin->load_disk_version();
1455 $plugin->load_db_version();
1456 $plugin->load_required_main_version();
1457 $plugin->init_is_standard();
473289a0 1458
00ef3c3e
DM
1459 return $plugin;
1460 }
b9934a17
DM
1461}
1462
00ef3c3e 1463
b9934a17 1464/**
b6ad8594 1465 * Base class providing access to the information about a plugin
828788f0
TH
1466 *
1467 * @property-read string component the component name, type_name
b9934a17 1468 */
b6ad8594 1469abstract class plugininfo_base {
b9934a17
DM
1470
1471 /** @var string the plugintype name, eg. mod, auth or workshopform */
1472 public $type;
1473 /** @var string full path to the location of all the plugins of this type */
1474 public $typerootdir;
1475 /** @var string the plugin name, eg. assignment, ldap */
1476 public $name;
1477 /** @var string the localized plugin name */
1478 public $displayname;
1479 /** @var string the plugin source, one of plugin_manager::PLUGIN_SOURCE_xxx constants */
1480 public $source;
1481 /** @var fullpath to the location of this plugin */
1482 public $rootdir;
1483 /** @var int|string the version of the plugin's source code */
1484 public $versiondisk;
1485 /** @var int|string the version of the installed plugin */
1486 public $versiondb;
1487 /** @var int|float|string required version of Moodle core */
1488 public $versionrequires;
b6ad8594
DM
1489 /** @var array other plugins that this one depends on, lazy-loaded by {@link get_other_required_plugins()} */
1490 public $dependencies;
b9934a17
DM
1491 /** @var int number of instances of the plugin - not supported yet */
1492 public $instances;
1493 /** @var int order of the plugin among other plugins of the same type - not supported yet */
1494 public $sortorder;
7d8de6d8
DM
1495 /** @var array|null array of {@link available_update_info} for this plugin */
1496 public $availableupdates;
b9934a17
DM
1497
1498 /**
b6ad8594
DM
1499 * Gathers and returns the information about all plugins of the given type
1500 *
b6ad8594
DM
1501 * @param string $type the name of the plugintype, eg. mod, auth or workshopform
1502 * @param string $typerootdir full path to the location of the plugin dir
1503 * @param string $typeclass the name of the actually called class
1504 * @return array of plugintype classes, indexed by the plugin name
b9934a17
DM
1505 */
1506 public static function get_plugins($type, $typerootdir, $typeclass) {
1507
1508 // get the information about plugins at the disk
1509 $plugins = get_plugin_list($type);
1510 $ondisk = array();
1511 foreach ($plugins as $pluginname => $pluginrootdir) {
00ef3c3e
DM
1512 $ondisk[$pluginname] = plugininfo_default_factory::make($type, $typerootdir,
1513 $pluginname, $pluginrootdir, $typeclass);
b9934a17
DM
1514 }
1515 return $ondisk;
1516 }
1517
1518 /**
b6ad8594 1519 * Sets {@link $displayname} property to a localized name of the plugin
b9934a17 1520 */
b8343e68 1521 public function init_display_name() {
828788f0
TH
1522 if (!get_string_manager()->string_exists('pluginname', $this->component)) {
1523 $this->displayname = '[pluginname,' . $this->component . ']';
b9934a17 1524 } else {
828788f0
TH
1525 $this->displayname = get_string('pluginname', $this->component);
1526 }
1527 }
1528
1529 /**
1530 * Magic method getter, redirects to read only values.
b6ad8594 1531 *
828788f0
TH
1532 * @param string $name
1533 * @return mixed
1534 */
1535 public function __get($name) {
1536 switch ($name) {
1537 case 'component': return $this->type . '_' . $this->name;
1538
1539 default:
1540 debugging('Invalid plugin property accessed! '.$name);
1541 return null;
b9934a17
DM
1542 }
1543 }
1544
1545 /**
b6ad8594
DM
1546 * Return the full path name of a file within the plugin.
1547 *
1548 * No check is made to see if the file exists.
1549 *
1550 * @param string $relativepath e.g. 'version.php'.
1551 * @return string e.g. $CFG->dirroot . '/mod/quiz/version.php'.
b9934a17 1552 */
473289a0 1553 public function full_path($relativepath) {
b9934a17 1554 if (empty($this->rootdir)) {
473289a0 1555 return '';
b9934a17 1556 }
473289a0
TH
1557 return $this->rootdir . '/' . $relativepath;
1558 }
b9934a17 1559
473289a0
TH
1560 /**
1561 * Load the data from version.php.
b6ad8594
DM
1562 *
1563 * @return stdClass the object called $plugin defined in version.php
473289a0
TH
1564 */
1565 protected function load_version_php() {
1566 $versionfile = $this->full_path('version.php');
b9934a17 1567
473289a0 1568 $plugin = new stdClass();
b9934a17
DM
1569 if (is_readable($versionfile)) {
1570 include($versionfile);
b9934a17 1571 }
473289a0 1572 return $plugin;
b9934a17
DM
1573 }
1574
1575 /**
b6ad8594
DM
1576 * Sets {@link $versiondisk} property to a numerical value representing the
1577 * version of the plugin's source code.
1578 *
1579 * If the value is null after calling this method, either the plugin
1580 * does not use versioning (typically does not have any database
1581 * data) or is missing from disk.
b9934a17 1582 */
473289a0
TH
1583 public function load_disk_version() {
1584 $plugin = $this->load_version_php();
1585 if (isset($plugin->version)) {
1586 $this->versiondisk = $plugin->version;
b9934a17
DM
1587 }
1588 }
1589
1590 /**
b6ad8594
DM
1591 * Sets {@link $versionrequires} property to a numerical value representing
1592 * the version of Moodle core that this plugin requires.
b9934a17 1593 */
b8343e68 1594 public function load_required_main_version() {
473289a0
TH
1595 $plugin = $this->load_version_php();
1596 if (isset($plugin->requires)) {
1597 $this->versionrequires = $plugin->requires;
b9934a17 1598 }
473289a0 1599 }
b9934a17 1600
0242bdc7 1601 /**
777781d1 1602 * Initialise {@link $dependencies} to the list of other plugins (in any)
0242bdc7
TH
1603 * that this one requires to be installed.
1604 */
1605 protected function load_other_required_plugins() {
1606 $plugin = $this->load_version_php();
777781d1
TH
1607 if (!empty($plugin->dependencies)) {
1608 $this->dependencies = $plugin->dependencies;
0242bdc7 1609 } else {
777781d1 1610 $this->dependencies = array(); // By default, no dependencies.
0242bdc7
TH
1611 }
1612 }
1613
1614 /**
b6ad8594
DM
1615 * Get the list of other plugins that this plugin requires to be installed.
1616 *
1617 * @return array with keys the frankenstyle plugin name, and values either
1618 * a version string (like '2011101700') or the constant ANY_VERSION.
0242bdc7
TH
1619 */
1620 public function get_other_required_plugins() {
777781d1 1621 if (is_null($this->dependencies)) {
0242bdc7
TH
1622 $this->load_other_required_plugins();
1623 }
777781d1 1624 return $this->dependencies;
0242bdc7
TH
1625 }
1626
473289a0 1627 /**
b6ad8594
DM
1628 * Sets {@link $versiondb} property to a numerical value representing the
1629 * currently installed version of the plugin.
1630 *
1631 * If the value is null after calling this method, either the plugin
1632 * does not use versioning (typically does not have any database
1633 * data) or has not been installed yet.
473289a0
TH
1634 */
1635 public function load_db_version() {
828788f0 1636 if ($ver = self::get_version_from_config_plugins($this->component)) {
473289a0 1637 $this->versiondb = $ver;
b9934a17
DM
1638 }
1639 }
1640
1641 /**
b6ad8594
DM
1642 * Sets {@link $source} property to one of plugin_manager::PLUGIN_SOURCE_xxx
1643 * constants.
1644 *
1645 * If the property's value is null after calling this method, then
1646 * the type of the plugin has not been recognized and you should throw
1647 * an exception.
b9934a17 1648 */
b8343e68 1649 public function init_is_standard() {
b9934a17
DM
1650
1651 $standard = plugin_manager::standard_plugins_list($this->type);
1652
1653 if ($standard !== false) {
1654 $standard = array_flip($standard);
1655 if (isset($standard[$this->name])) {
1656 $this->source = plugin_manager::PLUGIN_SOURCE_STANDARD;
ec8935f5
PS
1657 } else if (!is_null($this->versiondb) and is_null($this->versiondisk)
1658 and plugin_manager::is_deleted_standard_plugin($this->type, $this->name)) {
1659 $this->source = plugin_manager::PLUGIN_SOURCE_STANDARD; // to be deleted
b9934a17
DM
1660 } else {
1661 $this->source = plugin_manager::PLUGIN_SOURCE_EXTENSION;
1662 }
1663 }
1664 }
1665
1666 /**
b6ad8594
DM
1667 * Returns true if the plugin is shipped with the official distribution
1668 * of the current Moodle version, false otherwise.
1669 *
1670 * @return bool
b9934a17
DM
1671 */
1672 public function is_standard() {
1673 return $this->source === plugin_manager::PLUGIN_SOURCE_STANDARD;
1674 }
1675
3a2300f5
DM
1676 /**
1677 * Returns true if the the given Moodle version is enough to run this plugin
1678 *
1679 * @param string|int|double $moodleversion
1680 * @return bool
1681 */
1682 public function is_core_dependency_satisfied($moodleversion) {
1683
1684 if (empty($this->versionrequires)) {
1685 return true;
1686
1687 } else {
1688 return (double)$this->versionrequires <= (double)$moodleversion;
1689 }
1690 }
1691
b9934a17 1692 /**
b6ad8594
DM
1693 * Returns the status of the plugin
1694 *
1695 * @return string one of plugin_manager::PLUGIN_STATUS_xxx constants
b9934a17
DM
1696 */
1697 public function get_status() {
1698
1699 if (is_null($this->versiondb) and is_null($this->versiondisk)) {
1700 return plugin_manager::PLUGIN_STATUS_NODB;
1701
1702 } else if (is_null($this->versiondb) and !is_null($this->versiondisk)) {
1703 return plugin_manager::PLUGIN_STATUS_NEW;
1704
1705 } else if (!is_null($this->versiondb) and is_null($this->versiondisk)) {
ec8935f5
PS
1706 if (plugin_manager::is_deleted_standard_plugin($this->type, $this->name)) {
1707 return plugin_manager::PLUGIN_STATUS_DELETE;
1708 } else {
1709 return plugin_manager::PLUGIN_STATUS_MISSING;
1710 }
b9934a17
DM
1711
1712 } else if ((string)$this->versiondb === (string)$this->versiondisk) {
1713 return plugin_manager::PLUGIN_STATUS_UPTODATE;
1714
1715 } else if ($this->versiondb < $this->versiondisk) {
1716 return plugin_manager::PLUGIN_STATUS_UPGRADE;
1717
1718 } else if ($this->versiondb > $this->versiondisk) {
1719 return plugin_manager::PLUGIN_STATUS_DOWNGRADE;
1720
1721 } else {
1722 // $version = pi(); and similar funny jokes - hopefully Donald E. Knuth will never contribute to Moodle ;-)
1723 throw new coding_exception('Unable to determine plugin state, check the plugin versions');
1724 }
1725 }
1726
1727 /**
b6ad8594
DM
1728 * Returns the information about plugin availability
1729 *
1730 * True means that the plugin is enabled. False means that the plugin is
1731 * disabled. Null means that the information is not available, or the
1732 * plugin does not support configurable availability or the availability
1733 * can not be changed.
1734 *
1735 * @return null|bool
b9934a17
DM
1736 */
1737 public function is_enabled() {
1738 return null;
1739 }
1740
1741 /**
7d8de6d8 1742 * Populates the property {@link $availableupdates} with the information provided by
dd119e21
DM
1743 * available update checker
1744 *
1745 * @param available_update_checker $provider the class providing the available update info
1746 */
7d8de6d8 1747 public function check_available_updates(available_update_checker $provider) {
c6f008e7
DM
1748 global $CFG;
1749
1750 if (isset($CFG->updateminmaturity)) {
1751 $minmaturity = $CFG->updateminmaturity;
1752 } else {
1753 // this can happen during the very first upgrade to 2.3
1754 $minmaturity = MATURITY_STABLE;
1755 }
1756
1757 $this->availableupdates = $provider->get_update_info($this->component,
1758 array('minmaturity' => $minmaturity));
dd119e21
DM
1759 }
1760
d26f3ddd 1761 /**
7d8de6d8 1762 * If there are updates for this plugin available, returns them.
d26f3ddd 1763 *
7d8de6d8
DM
1764 * Returns array of {@link available_update_info} objects, if some update
1765 * is available. Returns null if there is no update available or if the update
1766 * availability is unknown.
d26f3ddd 1767 *
7d8de6d8 1768 * @return array|null
d26f3ddd 1769 */
7d8de6d8 1770 public function available_updates() {
dd119e21 1771
7d8de6d8 1772 if (empty($this->availableupdates) or !is_array($this->availableupdates)) {
dd119e21
DM
1773 return null;
1774 }
1775
7d8de6d8
DM
1776 $updates = array();
1777
1778 foreach ($this->availableupdates as $availableupdate) {
1779 if ($availableupdate->version > $this->versiondisk) {
1780 $updates[] = $availableupdate;
1781 }
1782 }
1783
1784 if (empty($updates)) {
1785 return null;
dd119e21
DM
1786 }
1787
7d8de6d8 1788 return $updates;
d26f3ddd
DM
1789 }
1790
5cdb1893
MG
1791 /**
1792 * Returns the node name used in admin settings menu for this plugin settings (if applicable)
1793 *
1794 * @return null|string node name or null if plugin does not create settings node (default)
1795 */
1796 public function get_settings_section_name() {
1797 return null;
1798 }
1799
b9934a17 1800 /**
b6ad8594
DM
1801 * Returns the URL of the plugin settings screen
1802 *
1803 * Null value means that the plugin either does not have the settings screen
1804 * or its location is not available via this library.
1805 *
1806 * @return null|moodle_url
b9934a17
DM
1807 */
1808 public function get_settings_url() {
5cdb1893
MG
1809 $section = $this->get_settings_section_name();
1810 if ($section === null) {
1811 return null;
1812 }
1813 $settings = admin_get_root()->locate($section);
1814 if ($settings && $settings instanceof admin_settingpage) {
1815 return new moodle_url('/admin/settings.php', array('section' => $section));
1816 } else if ($settings && $settings instanceof admin_externalpage) {
1817 return new moodle_url($settings->url);
1818 } else {
1819 return null;
1820 }
1821 }
1822
1823 /**
1824 * Loads plugin settings to the settings tree
1825 *
1826 * This function usually includes settings.php file in plugins folder.
1827 * Alternatively it can create a link to some settings page (instance of admin_externalpage)
1828 *
1829 * @param part_of_admin_tree $adminroot
1830 * @param string $parentnodename
1831 * @param bool $hassiteconfig whether the current user has moodle/site:config capability
1832 */
1833 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
b9934a17
DM
1834 }
1835
1836 /**
b6ad8594
DM
1837 * Returns the URL of the screen where this plugin can be uninstalled
1838 *
1839 * Visiting that URL must be safe, that is a manual confirmation is needed
1840 * for actual uninstallation of the plugin. Null value means that the
1841 * plugin either does not support uninstallation, or does not require any
1842 * database cleanup or the location of the screen is not available via this
1843 * library.
1844 *
1845 * @return null|moodle_url
b9934a17
DM
1846 */
1847 public function get_uninstall_url() {
1848 return null;
1849 }
1850
1851 /**
b6ad8594
DM
1852 * Returns relative directory of the plugin with heading '/'
1853 *
1854 * @return string
b9934a17
DM
1855 */
1856 public function get_dir() {
1857 global $CFG;
1858
1859 return substr($this->rootdir, strlen($CFG->dirroot));
1860 }
1861
1862 /**
1863 * Provides access to plugin versions from {config_plugins}
1864 *
1865 * @param string $plugin plugin name
1866 * @param double $disablecache optional, defaults to false
1867 * @return int|false the stored value or false if not found
1868 */
1869 protected function get_version_from_config_plugins($plugin, $disablecache=false) {
1870 global $DB;
1871 static $pluginversions = null;
1872
1873 if (is_null($pluginversions) or $disablecache) {
f433088d
PS
1874 try {
1875 $pluginversions = $DB->get_records_menu('config_plugins', array('name' => 'version'), 'plugin', 'plugin,value');
1876 } catch (dml_exception $e) {
1877 // before install
1878 $pluginversions = array();
1879 }
b9934a17
DM
1880 }
1881
1882 if (!array_key_exists($plugin, $pluginversions)) {
1883 return false;
1884 }
1885
1886 return $pluginversions[$plugin];
1887 }
1888}
1889
b6ad8594 1890
b9934a17
DM
1891/**
1892 * General class for all plugin types that do not have their own class
1893 */
b6ad8594 1894class plugininfo_general extends plugininfo_base {
b9934a17
DM
1895}
1896
b6ad8594 1897
b9934a17
DM
1898/**
1899 * Class for page side blocks
1900 */
b6ad8594 1901class plugininfo_block extends plugininfo_base {
b9934a17 1902
b9934a17
DM
1903 public static function get_plugins($type, $typerootdir, $typeclass) {
1904
1905 // get the information about blocks at the disk
1906 $blocks = parent::get_plugins($type, $typerootdir, $typeclass);
1907
1908 // add blocks missing from disk
1909 $blocksinfo = self::get_blocks_info();
1910 foreach ($blocksinfo as $blockname => $blockinfo) {
1911 if (isset($blocks[$blockname])) {
1912 continue;
1913 }
1914 $plugin = new $typeclass();
1915 $plugin->type = $type;
1916 $plugin->typerootdir = $typerootdir;
1917 $plugin->name = $blockname;
1918 $plugin->rootdir = null;
1919 $plugin->displayname = $blockname;
1920 $plugin->versiondb = $blockinfo->version;
b8343e68 1921 $plugin->init_is_standard();
b9934a17
DM
1922
1923 $blocks[$blockname] = $plugin;
1924 }
1925
1926 return $blocks;
1927 }
1928
870d4280
MG
1929 /**
1930 * Magic method getter, redirects to read only values.
1931 *
1932 * For block plugins pretends the object has 'visible' property for compatibility
1933 * with plugins developed for Moodle version below 2.4
1934 *
1935 * @param string $name
1936 * @return mixed
1937 */
1938 public function __get($name) {
1939 if ($name === 'visible') {
1940 debugging('This is now an instance of plugininfo_block, please use $block->is_enabled() instead of $block->visible', DEBUG_DEVELOPER);
1941 return ($this->is_enabled() !== false);
1942 }
1943 return parent::__get($name);
1944 }
1945
b8343e68 1946 public function init_display_name() {
b9934a17
DM
1947
1948 if (get_string_manager()->string_exists('pluginname', 'block_' . $this->name)) {
1949 $this->displayname = get_string('pluginname', 'block_' . $this->name);
1950
1951 } else if (($block = block_instance($this->name)) !== false) {
1952 $this->displayname = $block->get_title();
1953
1954 } else {
b8343e68 1955 parent::init_display_name();
b9934a17
DM
1956 }
1957 }
1958
b8343e68 1959 public function load_db_version() {
b9934a17
DM
1960 global $DB;
1961
1962 $blocksinfo = self::get_blocks_info();
1963 if (isset($blocksinfo[$this->name]->version)) {
1964 $this->versiondb = $blocksinfo[$this->name]->version;
1965 }
1966 }
1967
b9934a17
DM
1968 public function is_enabled() {
1969
1970 $blocksinfo = self::get_blocks_info();
1971 if (isset($blocksinfo[$this->name]->visible)) {
1972 if ($blocksinfo[$this->name]->visible) {
1973 return true;
1974 } else {
1975 return false;
1976 }
1977 } else {
1978 return parent::is_enabled();
1979 }
1980 }
1981
870d4280
MG
1982 public function get_settings_section_name() {
1983 return 'blocksetting' . $this->name;
1984 }
b9934a17 1985
870d4280
MG
1986 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
1987 global $CFG, $USER, $DB, $OUTPUT, $PAGE; // in case settings.php wants to refer to them
1988 $ADMIN = $adminroot; // may be used in settings.php
1989 $block = $this; // also can be used inside settings.php
1990 $section = $this->get_settings_section_name();
b9934a17 1991
870d4280
MG
1992 if (!$hassiteconfig || (($blockinstance = block_instance($this->name)) === false)) {
1993 return;
1994 }
b9934a17 1995
870d4280
MG
1996 $settings = null;
1997 if ($blockinstance->has_config()) {
6740c605 1998 if (file_exists($this->full_path('settings.php'))) {
870d4280
MG
1999 $settings = new admin_settingpage($section, $this->displayname,
2000 'moodle/site:config', $this->is_enabled() === false);
2001 include($this->full_path('settings.php')); // this may also set $settings to null
b9934a17
DM
2002 } else {
2003 $blocksinfo = self::get_blocks_info();
870d4280
MG
2004 $settingsurl = new moodle_url('/admin/block.php', array('block' => $blocksinfo[$this->name]->id));
2005 $settings = new admin_externalpage($section, $this->displayname,
2006 $settingsurl, 'moodle/site:config', $this->is_enabled() === false);
b9934a17 2007 }
870d4280
MG
2008 }
2009 if ($settings) {
2010 $ADMIN->add($parentnodename, $settings);
b9934a17
DM
2011 }
2012 }
2013
b9934a17
DM
2014 public function get_uninstall_url() {
2015
2016 $blocksinfo = self::get_blocks_info();
2017 return new moodle_url('/admin/blocks.php', array('delete' => $blocksinfo[$this->name]->id, 'sesskey' => sesskey()));
2018 }
2019
2020 /**
2021 * Provides access to the records in {block} table
2022 *
2023 * @param bool $disablecache do not use internal static cache
2024 * @return array array of stdClasses
2025 */
2026 protected static function get_blocks_info($disablecache=false) {
2027 global $DB;
2028 static $blocksinfocache = null;
2029
2030 if (is_null($blocksinfocache) or $disablecache) {
f433088d
PS
2031 try {
2032 $blocksinfocache = $DB->get_records('block', null, 'name', 'name,id,version,visible');
2033 } catch (dml_exception $e) {
2034 // before install
2035 $blocksinfocache = array();
2036 }
b9934a17
DM
2037 }
2038
2039 return $blocksinfocache;
2040 }
2041}
2042
b6ad8594 2043
b9934a17
DM
2044/**
2045 * Class for text filters
2046 */
b6ad8594 2047class plugininfo_filter extends plugininfo_base {
b9934a17 2048
b9934a17 2049 public static function get_plugins($type, $typerootdir, $typeclass) {
7c9b837e 2050 global $CFG, $DB;
b9934a17
DM
2051
2052 $filters = array();
2053
2054 // get the list of filters from both /filter and /mod location
2055 $installed = filter_get_all_installed();
2056
2057 foreach ($installed as $filterlegacyname => $displayname) {
2058 $plugin = new $typeclass();
2059 $plugin->type = $type;
2060 $plugin->typerootdir = $typerootdir;
2061 $plugin->name = self::normalize_legacy_name($filterlegacyname);
2062 $plugin->rootdir = $CFG->dirroot . '/' . $filterlegacyname;
2063 $plugin->displayname = $displayname;
2064
b8343e68
TH
2065 $plugin->load_disk_version();
2066 $plugin->load_db_version();
2067 $plugin->load_required_main_version();
2068 $plugin->init_is_standard();
b9934a17
DM
2069
2070 $filters[$plugin->name] = $plugin;
2071 }
2072
b9934a17 2073 $globalstates = self::get_global_states();
7c9b837e
DM
2074
2075 if ($DB->get_manager()->table_exists('filter_active')) {
2076 // if we're upgrading from 1.9, the table does not exist yet
2077 // if it does, make sure that all installed filters are registered
2078 $needsreload = false;
2079 foreach (array_keys($installed) as $filterlegacyname) {
2080 if (!isset($globalstates[self::normalize_legacy_name($filterlegacyname)])) {
2081 filter_set_global_state($filterlegacyname, TEXTFILTER_DISABLED);
2082 $needsreload = true;
2083 }
2084 }
2085 if ($needsreload) {
2086 $globalstates = self::get_global_states(true);
b9934a17 2087 }
b9934a17
DM
2088 }
2089
2090 // make sure that all registered filters are installed, just in case
2091 foreach ($globalstates as $name => $info) {
2092 if (!isset($filters[$name])) {
2093 // oops, there is a record in filter_active but the filter is not installed
2094 $plugin = new $typeclass();
2095 $plugin->type = $type;
2096 $plugin->typerootdir = $typerootdir;
2097 $plugin->name = $name;
2098 $plugin->rootdir = $CFG->dirroot . '/' . $info->legacyname;
2099 $plugin->displayname = $info->legacyname;
2100
b8343e68 2101 $plugin->load_db_version();
b9934a17
DM
2102
2103 if (is_null($plugin->versiondb)) {
2104 // this is a hack to stimulate 'Missing from disk' error
2105 // because $plugin->versiondisk will be null !== false
2106 $plugin->versiondb = false;
2107 }
2108
2109 $filters[$plugin->name] = $plugin;
2110 }
2111 }
2112
2113 return $filters;
2114 }
2115
b8343e68 2116 public function init_display_name() {
b9934a17
DM
2117 // do nothing, the name is set in self::get_plugins()
2118 }
2119
2120 /**
b6ad8594 2121 * @see load_version_php()
b9934a17 2122 */
473289a0 2123 protected function load_version_php() {
b9934a17 2124 if (strpos($this->name, 'mod_') === 0) {
473289a0
TH
2125 // filters bundled with modules do not have a version.php and so
2126 // do not provide their own versioning information.
2127 return new stdClass();
b9934a17 2128 }
473289a0 2129 return parent::load_version_php();
b9934a17
DM
2130 }
2131
b9934a17
DM
2132 public function is_enabled() {
2133
2134 $globalstates = self::get_global_states();
2135
2136 foreach ($globalstates as $filterlegacyname => $info) {
2137 $name = self::normalize_legacy_name($filterlegacyname);
2138 if ($name === $this->name) {
2139 if ($info->active == TEXTFILTER_DISABLED) {
2140 return false;
2141 } else {
2142 // it may be 'On' or 'Off, but available'
2143 return null;
2144 }
2145 }
2146 }
2147
2148 return null;
2149 }
2150
1de1a666 2151 public function get_settings_section_name() {
b9934a17 2152 $globalstates = self::get_global_states();
dddbbac3
MG
2153 if (!isset($globalstates[$this->name])) {
2154 return parent::get_settings_section_name();
2155 }
b9934a17 2156 $legacyname = $globalstates[$this->name]->legacyname;
1de1a666
MG
2157 return 'filtersetting' . str_replace('/', '', $legacyname);
2158 }
2159
2160 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2161 global $CFG, $USER, $DB, $OUTPUT, $PAGE; // in case settings.php wants to refer to them
2162 $ADMIN = $adminroot; // may be used in settings.php
2163 $filter = $this; // also can be used inside settings.php
2164
dddbbac3 2165 $globalstates = self::get_global_states();
1de1a666 2166 $settings = null;
dddbbac3 2167 if ($hassiteconfig && isset($globalstates[$this->name]) && file_exists($this->full_path('filtersettings.php'))) {
1de1a666
MG
2168 $section = $this->get_settings_section_name();
2169 $settings = new admin_settingpage($section, $this->displayname,
2170 'moodle/site:config', $this->is_enabled() === false);
2171 include($this->full_path('filtersettings.php')); // this may also set $settings to null
2172 }
2173 if ($settings) {
2174 $ADMIN->add($parentnodename, $settings);
b9934a17
DM
2175 }
2176 }
2177
b9934a17
DM
2178 public function get_uninstall_url() {
2179
2180 if (strpos($this->name, 'mod_') === 0) {
2181 return null;
2182 } else {
2183 $globalstates = self::get_global_states();
2184 $legacyname = $globalstates[$this->name]->legacyname;
2185 return new moodle_url('/admin/filters.php', array('sesskey' => sesskey(), 'filterpath' => $legacyname, 'action' => 'delete'));
2186 }
2187 }
2188
2189 /**
2190 * Convert legacy filter names like 'filter/foo' or 'mod/bar' into frankenstyle
2191 *
2192 * @param string $legacyfiltername legacy filter name
2193 * @return string frankenstyle-like name
2194 */
2195 protected static function normalize_legacy_name($legacyfiltername) {
2196
2197 $name = str_replace('/', '_', $legacyfiltername);
2198 if (strpos($name, 'filter_') === 0) {
2199 $name = substr($name, 7);
2200 if (empty($name)) {
2201 throw new coding_exception('Unable to determine filter name: ' . $legacyfiltername);
2202 }
2203 }
2204
2205 return $name;
2206 }
2207
2208 /**
2209 * Provides access to the results of {@link filter_get_global_states()}
2210 * but indexed by the normalized filter name
2211 *
2212 * The legacy filter name is available as ->legacyname property.
2213 *
2214 * @param bool $disablecache
2215 * @return array
2216 */
2217 protected static function get_global_states($disablecache=false) {
2218 global $DB;
2219 static $globalstatescache = null;
2220
2221 if ($disablecache or is_null($globalstatescache)) {
2222
2223 if (!$DB->get_manager()->table_exists('filter_active')) {
2224 // we're upgrading from 1.9 and the table used by {@link filter_get_global_states()}
2225 // does not exist yet
2226 $globalstatescache = array();
2227
2228 } else {
2229 foreach (filter_get_global_states() as $legacyname => $info) {
2230 $name = self::normalize_legacy_name($legacyname);
2231 $filterinfo = new stdClass();
2232 $filterinfo->legacyname = $legacyname;
2233 $filterinfo->active = $info->active;
2234 $filterinfo->sortorder = $info->sortorder;
2235 $globalstatescache[$name] = $filterinfo;
2236 }
2237 }
2238 }
2239
2240 return $globalstatescache;
2241 }
2242}
2243
b6ad8594 2244
b9934a17
DM
2245/**
2246 * Class for activity modules
2247 */
b6ad8594 2248class plugininfo_mod extends plugininfo_base {
b9934a17 2249
b9934a17
DM
2250 public static function get_plugins($type, $typerootdir, $typeclass) {
2251
2252 // get the information about plugins at the disk
2253 $modules = parent::get_plugins($type, $typerootdir, $typeclass);
2254
2255 // add modules missing from disk
2256 $modulesinfo = self::get_modules_info();
2257 foreach ($modulesinfo as $modulename => $moduleinfo) {
2258 if (isset($modules[$modulename])) {
2259 continue;
2260 }
2261 $plugin = new $typeclass();
2262 $plugin->type = $type;
2263 $plugin->typerootdir = $typerootdir;
2264 $plugin->name = $modulename;
2265 $plugin->rootdir = null;
2266 $plugin->displayname = $modulename;
2267 $plugin->versiondb = $moduleinfo->version;
b8343e68 2268 $plugin->init_is_standard();
b9934a17
DM
2269
2270 $modules[$modulename] = $plugin;
2271 }
2272
2273 return $modules;
2274 }
2275
fde6f79f
MG
2276 /**
2277 * Magic method getter, redirects to read only values.
2278 *
2279 * For module plugins we pretend the object has 'visible' property for compatibility
2280 * with plugins developed for Moodle version below 2.4
2281 *
2282 * @param string $name
2283 * @return mixed
2284 */
2285 public function __get($name) {
2286 if ($name === 'visible') {
2287 debugging('This is now an instance of plugininfo_mod, please use $module->is_enabled() instead of $module->visible', DEBUG_DEVELOPER);
2288 return ($this->is_enabled() !== false);
2289 }
2290 return parent::__get($name);
2291 }
2292
b8343e68 2293 public function init_display_name() {
828788f0
TH
2294 if (get_string_manager()->string_exists('pluginname', $this->component)) {
2295 $this->displayname = get_string('pluginname', $this->component);
b9934a17 2296 } else {
828788f0 2297 $this->displayname = get_string('modulename', $this->component);
b9934a17
DM
2298 }
2299 }
2300
2301 /**
473289a0
TH
2302 * Load the data from version.php.
2303 * @return object the data object defined in version.php.
b9934a17 2304 */
473289a0
TH
2305 protected function load_version_php() {
2306 $versionfile = $this->full_path('version.php');
b9934a17 2307
473289a0 2308 $module = new stdClass();
b9934a17
DM
2309 if (is_readable($versionfile)) {
2310 include($versionfile);
b9934a17 2311 }
473289a0 2312 return $module;
b9934a17
DM
2313 }
2314
b8343e68 2315 public function load_db_version() {
b9934a17
DM
2316 global $DB;
2317
2318 $modulesinfo = self::get_modules_info();
2319 if (isset($modulesinfo[$this->name]->version)) {
2320 $this->versiondb = $modulesinfo[$this->name]->version;
2321 }
2322 }
2323
b9934a17
DM
2324 public function is_enabled() {
2325
2326 $modulesinfo = self::get_modules_info();
2327 if (isset($modulesinfo[$this->name]->visible)) {
2328 if ($modulesinfo[$this->name]->visible) {
2329 return true;
2330 } else {
2331 return false;
2332 }
2333 } else {
2334 return parent::is_enabled();
2335 }
2336 }
2337
fde6f79f
MG
2338 public function get_settings_section_name() {
2339 return 'modsetting' . $this->name;
2340 }
b9934a17 2341
fde6f79f
MG
2342 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2343 global $CFG, $USER, $DB, $OUTPUT, $PAGE; // in case settings.php wants to refer to them
2344 $ADMIN = $adminroot; // may be used in settings.php
2345 $module = $this; // also can be used inside settings.php
2346 $section = $this->get_settings_section_name();
2347
dddbbac3 2348 $modulesinfo = self::get_modules_info();
fde6f79f 2349 $settings = null;
dddbbac3 2350 if ($hassiteconfig && isset($modulesinfo[$this->name]) && file_exists($this->full_path('settings.php'))) {
fde6f79f
MG
2351 $settings = new admin_settingpage($section, $this->displayname,
2352 'moodle/site:config', $this->is_enabled() === false);
2353 include($this->full_path('settings.php')); // this may also set $settings to null
2354 }
2355 if ($settings) {
2356 $ADMIN->add($parentnodename, $settings);
b9934a17
DM
2357 }
2358 }
2359
b9934a17
DM
2360 public function get_uninstall_url() {
2361
2362 if ($this->name !== 'forum') {
2363 return new moodle_url('/admin/modules.php', array('delete' => $this->name, 'sesskey' => sesskey()));
2364 } else {
2365 return null;
2366 }
2367 }
2368
2369 /**
2370 * Provides access to the records in {modules} table
2371 *
2372 * @param bool $disablecache do not use internal static cache
2373 * @return array array of stdClasses
2374 */
2375 protected static function get_modules_info($disablecache=false) {
2376 global $DB;
2377 static $modulesinfocache = null;
2378
2379 if (is_null($modulesinfocache) or $disablecache) {
f433088d
PS
2380 try {
2381 $modulesinfocache = $DB->get_records('modules', null, 'name', 'name,id,version,visible');
2382 } catch (dml_exception $e) {
2383 // before install
2384 $modulesinfocache = array();
2385 }
b9934a17
DM
2386 }
2387
2388 return $modulesinfocache;
2389 }
2390}
2391
0242bdc7
TH
2392
2393/**
2394 * Class for question behaviours.
2395 */
b6ad8594
DM
2396class plugininfo_qbehaviour extends plugininfo_base {
2397
828788f0
TH
2398 public function get_uninstall_url() {
2399 return new moodle_url('/admin/qbehaviours.php',
2400 array('delete' => $this->name, 'sesskey' => sesskey()));
2401 }
0242bdc7
TH
2402}
2403
2404
b9934a17
DM
2405/**
2406 * Class for question types
2407 */
b6ad8594
DM
2408class plugininfo_qtype extends plugininfo_base {
2409
828788f0
TH
2410 public function get_uninstall_url() {
2411 return new moodle_url('/admin/qtypes.php',
2412 array('delete' => $this->name, 'sesskey' => sesskey()));
2413 }
66f3684a
MG
2414
2415 public function get_settings_section_name() {
2416 return 'qtypesetting' . $this->name;
2417 }
2418
2419 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2420 global $CFG, $USER, $DB, $OUTPUT, $PAGE; // in case settings.php wants to refer to them
2421 $ADMIN = $adminroot; // may be used in settings.php
2422 $qtype = $this; // also can be used inside settings.php
2423 $section = $this->get_settings_section_name();
2424
2425 $settings = null;
2426 if ($hassiteconfig && file_exists($this->full_path('settings.php'))) {
2427 $settings = new admin_settingpage($section, $this->displayname,
2428 'moodle/site:config', $this->is_enabled() === false);
2429 include($this->full_path('settings.php')); // this may also set $settings to null
2430 }
2431 if ($settings) {
2432 $ADMIN->add($parentnodename, $settings);
2433 }
2434 }
b9934a17
DM
2435}
2436
b9934a17
DM
2437
2438/**
2439 * Class for authentication plugins
2440 */
b6ad8594 2441class plugininfo_auth extends plugininfo_base {
b9934a17 2442
b9934a17
DM
2443 public function is_enabled() {
2444 global $CFG;
2445 /** @var null|array list of enabled authentication plugins */
2446 static $enabled = null;
2447
2448 if (in_array($this->name, array('nologin', 'manual'))) {
2449 // these two are always enabled and can't be disabled
2450 return null;
2451 }
2452
2453 if (is_null($enabled)) {
d5d181f5 2454 $enabled = array_flip(explode(',', $CFG->auth));
b9934a17
DM
2455 }
2456
2457 return isset($enabled[$this->name]);
2458 }
2459
cbe9f609
MG
2460 public function get_settings_section_name() {
2461 return 'authsetting' . $this->name;
2462 }
2463
2464 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2465 global $CFG, $USER, $DB, $OUTPUT, $PAGE; // in case settings.php wants to refer to them
2466 $ADMIN = $adminroot; // may be used in settings.php
2467 $auth = $this; // also to be used inside settings.php
2468 $section = $this->get_settings_section_name();
2469
2470 $settings = null;
2471 if ($hassiteconfig) {
2472 if (file_exists($this->full_path('settings.php'))) {
2473 // TODO: finish implementation of common settings - locking, etc.
2474 $settings = new admin_settingpage($section, $this->displayname,
2475 'moodle/site:config', $this->is_enabled() === false);
2476 include($this->full_path('settings.php')); // this may also set $settings to null
2477 } else {
2478 $settingsurl = new moodle_url('/admin/auth_config.php', array('auth' => $this->name));
2479 $settings = new admin_externalpage($section, $this->displayname,
2480 $settingsurl, 'moodle/site:config', $this->is_enabled() === false);
2481 }
2482 }
2483 if ($settings) {
2484 $ADMIN->add($parentnodename, $settings);
b9934a17
DM
2485 }
2486 }
2487}
2488
b6ad8594 2489
b9934a17
DM
2490/**
2491 * Class for enrolment plugins
2492 */
b6ad8594 2493class plugininfo_enrol extends plugininfo_base {
b9934a17 2494
b9934a17
DM
2495 public function is_enabled() {
2496 global $CFG;
2497 /** @var null|array list of enabled enrolment plugins */
2498 static $enabled = null;
2499
b6ad8594
DM
2500 // We do not actually need whole enrolment classes here so we do not call
2501 // {@link enrol_get_plugins()}. Note that this may produce slightly different
2502 // results, for example if the enrolment plugin does not contain lib.php
2503 // but it is listed in $CFG->enrol_plugins_enabled
2504
b9934a17 2505 if (is_null($enabled)) {
d5d181f5 2506 $enabled = array_flip(explode(',', $CFG->enrol_plugins_enabled));
b9934a17
DM
2507 }
2508
2509 return isset($enabled[$this->name]);
2510 }
2511
79c5c3fa
MG
2512 public function get_settings_section_name() {
2513 return 'enrolsettings' . $this->name;
2514 }
b9934a17 2515
79c5c3fa
MG
2516 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2517 global $CFG, $USER, $DB, $OUTPUT, $PAGE; // in case settings.php wants to refer to them
2518 $ADMIN = $adminroot; // may be used in settings.php
2519 $enrol = $this; // also can be used inside settings.php
2520 $section = $this->get_settings_section_name();
2521
2522 $settings = null;
2523 if ($hassiteconfig && file_exists($this->full_path('settings.php'))) {
2524 $settings = new admin_settingpage($section, $this->displayname,
2525 'moodle/site:config', $this->is_enabled() === false);
2526 include($this->full_path('settings.php')); // this may also set $settings to null
2527 }
2528 if ($settings) {
2529 $ADMIN->add($parentnodename, $settings);
b9934a17
DM
2530 }
2531 }
2532
b9934a17
DM
2533 public function get_uninstall_url() {
2534 return new moodle_url('/admin/enrol.php', array('action' => 'uninstall', 'enrol' => $this->name, 'sesskey' => sesskey()));
2535 }
2536}
2537
b6ad8594 2538
b9934a17
DM
2539/**
2540 * Class for messaging processors
2541 */
b6ad8594 2542class plugininfo_message extends plugininfo_base {
b9934a17 2543
e8d16932
MG
2544 public function get_settings_section_name() {
2545 return 'messagesetting' . $this->name;
2546 }
2547
2548 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2549 global $CFG, $USER, $DB, $OUTPUT, $PAGE; // in case settings.php wants to refer to them
2550 $ADMIN = $adminroot; // may be used in settings.php
2551 if (!$hassiteconfig) {
2552 return;
2553 }
2554 $section = $this->get_settings_section_name();
2555
2556 $settings = null;
bc795b98
RK
2557 $processors = get_message_processors();
2558 if (isset($processors[$this->name])) {
2559 $processor = $processors[$this->name];
2560 if ($processor->available && $processor->hassettings) {
e8d16932
MG
2561 $settings = new admin_settingpage($section, $this->displayname,
2562 'moodle/site:config', $this->is_enabled() === false);
2563 include($this->full_path('settings.php')); // this may also set $settings to null
bc795b98 2564 }
0210ce10 2565 }
e8d16932
MG
2566 if ($settings) {
2567 $ADMIN->add($parentnodename, $settings);
2568 }
b9934a17 2569 }
b9934a17 2570
bede23f7
RK
2571 /**
2572 * @see plugintype_interface::is_enabled()
2573 */
2574 public function is_enabled() {
2575 $processors = get_message_processors();
2576 if (isset($processors[$this->name])) {
2577 return $processors[$this->name]->configured && $processors[$this->name]->enabled;
0210ce10 2578 } else {
bede23f7
RK
2579 return parent::is_enabled();
2580 }
2581 }
3f9d9e28
RK
2582
2583 /**
2584 * @see plugintype_interface::get_uninstall_url()
2585 */
2586 public function get_uninstall_url() {
2587 $processors = get_message_processors();
2588 if (isset($processors[$this->name])) {
e8d16932 2589 return new moodle_url('/admin/message.php', array('uninstall' => $processors[$this->name]->id, 'sesskey' => sesskey()));
3f9d9e28
RK
2590 } else {
2591 return parent::get_uninstall_url();
0210ce10 2592 }
b9934a17
DM
2593 }
2594}
2595
b6ad8594 2596
b9934a17
DM
2597/**
2598 * Class for repositories
2599 */
b6ad8594 2600class plugininfo_repository extends plugininfo_base {
b9934a17 2601
b9934a17
DM
2602 public function is_enabled() {
2603
2604 $enabled = self::get_enabled_repositories();
2605
2606 return isset($enabled[$this->name]);
2607 }
2608
c517dd68
MG
2609 public function get_settings_section_name() {
2610 return 'repositorysettings'.$this->name;
2611 }
b9934a17 2612
c517dd68
MG
2613 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2614 if ($hassiteconfig && $this->is_enabled()) {
2615 // completely no access to repository setting when it is not enabled
2616 $sectionname = $this->get_settings_section_name();
2617 $settingsurl = new moodle_url('/admin/repository.php',
2618 array('sesskey' => sesskey(), 'action' => 'edit', 'repos' => $this->name));
2619 $settings = new admin_externalpage($sectionname, $this->displayname,
2620 $settingsurl, 'moodle/site:config', false);
2621 $adminroot->add($parentnodename, $settings);
b9934a17
DM
2622 }
2623 }
2624
2625 /**
2626 * Provides access to the records in {repository} table
2627 *
2628 * @param bool $disablecache do not use internal static cache
2629 * @return array array of stdClasses
2630 */
2631 protected static function get_enabled_repositories($disablecache=false) {
2632 global $DB;
2633 static $repositories = null;
2634
2635 if (is_null($repositories) or $disablecache) {
2636 $repositories = $DB->get_records('repository', null, 'type', 'type,visible,sortorder');
2637 }
2638
2639 return $repositories;
2640 }
2641}
2642
b6ad8594 2643
b9934a17
DM
2644/**
2645 * Class for portfolios
2646 */
b6ad8594 2647class plugininfo_portfolio extends plugininfo_base {
b9934a17 2648
b9934a17
DM
2649 public function is_enabled() {
2650
2651 $enabled = self::get_enabled_portfolios();
2652
2653 return isset($enabled[$this->name]);
2654 }
2655
2656 /**
2657 * Provides access to the records in {portfolio_instance} table
2658 *
2659 * @param bool $disablecache do not use internal static cache
2660 * @return array array of stdClasses
2661 */
2662 protected static function get_enabled_portfolios($disablecache=false) {
2663 global $DB;
2664 static $portfolios = null;
2665
2666 if (is_null($portfolios) or $disablecache) {
2667 $portfolios = array();
2668 $instances = $DB->get_recordset('portfolio_instance', null, 'plugin');
2669 foreach ($instances as $instance) {
2670 if (isset($portfolios[$instance->plugin])) {
2671 if ($instance->visible) {
2672 $portfolios[$instance->plugin]->visible = $instance->visible;
2673 }
2674 } else {
2675 $portfolios[$instance->plugin] = $instance;
2676 }
2677 }
2678 }
2679
2680 return $portfolios;
2681 }
2682}
2683
b6ad8594 2684
b9934a17
DM
2685/**
2686 * Class for themes
2687 */
b6ad8594 2688class plugininfo_theme extends plugininfo_base {
b9934a17 2689
b9934a17
DM
2690 public function is_enabled() {
2691 global $CFG;
2692
2693 if ((!empty($CFG->theme) and $CFG->theme === $this->name) or
2694 (!empty($CFG->themelegacy) and $CFG->themelegacy === $this->name)) {
2695 return true;
2696 } else {
2697 return parent::is_enabled();
2698 }
2699 }
2700}
2701
b6ad8594 2702
b9934a17
DM
2703/**
2704 * Class representing an MNet service
2705 */
b6ad8594 2706class plugininfo_mnetservice extends plugininfo_base {
b9934a17 2707
b9934a17
DM
2708 public function is_enabled() {
2709 global $CFG;
2710
2711 if (empty($CFG->mnet_dispatcher_mode) || $CFG->mnet_dispatcher_mode !== 'strict') {
2712 return false;
2713 } else {
2714 return parent::is_enabled();
2715 }
2716 }
2717}
3cdfaeef 2718
b6ad8594 2719
3cdfaeef
PS
2720/**
2721 * Class for admin tool plugins
2722 */
b6ad8594 2723class plugininfo_tool extends plugininfo_base {
3cdfaeef
PS
2724
2725 public function get_uninstall_url() {
2726 return new moodle_url('/admin/tools.php', array('delete' => $this->name, 'sesskey' => sesskey()));
2727 }
2728}
4f6bba20 2729
b6ad8594 2730
4f6bba20
PS
2731/**
2732 * Class for admin tool plugins
2733 */
b6ad8594 2734class plugininfo_report extends plugininfo_base {
4f6bba20
PS
2735
2736 public function get_uninstall_url() {
2737 return new moodle_url('/admin/reports.php', array('delete' => $this->name, 'sesskey' => sesskey()));
2738 }
2739}
888ce02a
RK
2740
2741
2742/**
2743 * Class for local plugins
2744 */
2745class plugininfo_local extends plugininfo_base {
2746
2747 public function get_uninstall_url() {
2748 return new moodle_url('/admin/localplugins.php', array('delete' => $this->name, 'sesskey' => sesskey()));
2749 }
888ce02a 2750}
888ce02a 2751
087001ee
MG
2752/**
2753 * Class for HTML editors
2754 */
2755class plugininfo_editor extends plugininfo_base {
2756
2757 public function get_settings_section_name() {
2758 return 'editorsettings' . $this->name;
2759 }
2760
2761 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2762 global $CFG, $USER, $DB, $OUTPUT, $PAGE; // in case settings.php wants to refer to them
2763 $ADMIN = $adminroot; // may be used in settings.php
2764 $editor = $this; // also can be used inside settings.php
2765 $section = $this->get_settings_section_name();
2766
2767 $settings = null;
2768 if ($hassiteconfig && file_exists($this->full_path('settings.php'))) {
2769 $settings = new admin_settingpage($section, $this->displayname,
2770 'moodle/site:config', $this->is_enabled() === false);
2771 include($this->full_path('settings.php')); // this may also set $settings to null
2772 }
2773 if ($settings) {
2774 $ADMIN->add($parentnodename, $settings);
2775 }
2776 }
2777
2778 /**
2779 * Returns the information about plugin availability
2780 *
2781 * True means that the plugin is enabled. False means that the plugin is
2782 * disabled. Null means that the information is not available, or the
2783 * plugin does not support configurable availability or the availability
2784 * can not be changed.
2785 *
2786 * @return null|bool
2787 */
2788 public function is_enabled() {
2789 global $CFG;
2790 if (empty($CFG->texteditors)) {
2791 $CFG->texteditors = 'tinymce,textarea';
2792 }
2793 if (in_array($this->name, explode(',', $CFG->texteditors))) {
2794 return true;
2795 }
2796 return false;
2797 }
2798}
d98305bd
MG
2799
2800/**
2801 * Class for plagiarism plugins
2802 */
2803class plugininfo_plagiarism extends plugininfo_base {
2804
2805 public function get_settings_section_name() {
2806 return 'plagiarism'. $this->name;
2807 }
2808
2809 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2810 // plagiarism plugin just redirect to settings.php in the plugins directory
2811 if ($hassiteconfig && file_exists($this->full_path('settings.php'))) {
2812 $section = $this->get_settings_section_name();
2813 $settingsurl = new moodle_url($this->get_dir().'/settings.php');
2814 $settings = new admin_externalpage($section, $this->displayname,
2815 $settingsurl, 'moodle/site:config', $this->is_enabled() === false);
2816 $adminroot->add($parentnodename, $settings);
2817 }
2818 }
2819}
2567584d
MG
2820
2821/**
2822 * Class for webservice protocols
2823 */
2824class plugininfo_webservice extends plugininfo_base {
2825
2826 public function get_settings_section_name() {
2827 return 'webservicesetting' . $this->name;
2828 }
2829
2830 public function load_settings(part_of_admin_tree $adminroot, $parentnodename, $hassiteconfig) {
2831 global $CFG, $USER, $DB, $OUTPUT, $PAGE; // in case settings.php wants to refer to them
2832 $ADMIN = $adminroot; // may be used in settings.php
2833 $webservice = $this; // also can be used inside settings.php
2834 $section = $this->get_settings_section_name();
2835
2836 $settings = null;
2837 if ($hassiteconfig && file_exists($this->full_path('settings.php'))) {
2838 $settings = new admin_settingpage($section, $this->displayname,
2839 'moodle/site:config', $this->is_enabled() === false);
2840 include($this->full_path('settings.php')); // this may also set $settings to null
2841 }
2842 if ($settings) {
2843 $ADMIN->add($parentnodename, $settings);
888ce02a
RK
2844 }
2845 }
2567584d
MG
2846
2847 public function is_enabled() {
2848 global $CFG;
2849 if (empty($CFG->enablewebservices)) {
2850 return false;
2851 }
2852 $active_webservices = empty($CFG->webserviceprotocols) ? array() : explode(',', $CFG->webserviceprotocols);
2853 if (in_array($this->name, $active_webservices)) {
2854 return true;
2855 }
2856 return false;
2857 }
2858
2859 public function get_uninstall_url() {
2860 return new moodle_url('/admin/webservice/protocols.php',
2861 array('sesskey' => sesskey(), 'action' => 'uninstall', 'webservice' => $this->name));
2862 }
888ce02a 2863}