2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Components (core subsystems + plugins) related code.
21 * @copyright 2013 Petr Skoda {@link http://skodak.org}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') || die();
27 // Constants used in version.php files, these must exist when core_component executes.
29 /** Software maturity level - internals can be tested using white box techniques. */
30 define('MATURITY_ALPHA', 50);
31 /** Software maturity level - feature complete, ready for preview and testing. */
32 define('MATURITY_BETA', 100);
33 /** Software maturity level - tested, will be released unless there are fatal bugs. */
34 define('MATURITY_RC', 150);
35 /** Software maturity level - ready for production deployment. */
36 define('MATURITY_STABLE', 200);
37 /** Any version - special value that can be used in $plugin->dependencies in version.php files. */
38 define('ANY_VERSION', 'any');
42 * Collection of components related methods.
44 class core_component {
45 /** @var array list of ignored directories - watch out for auth/db exception */
46 protected static $ignoreddirs = array('CVS'=>true, '_vti_cnf'=>true, 'simpletest'=>true, 'db'=>true, 'yui'=>true, 'tests'=>true, 'classes'=>true, 'fonts'=>true);
47 /** @var array list plugin types that support subplugins, do not add more here unless absolutely necessary */
48 protected static $supportsubplugins = array('mod', 'editor', 'tool', 'local');
50 /** @var array cache of plugin types */
51 protected static $plugintypes = null;
52 /** @var array cache of plugin locations */
53 protected static $plugins = null;
54 /** @var array cache of core subsystems */
55 protected static $subsystems = null;
56 /** @var array subplugin type parents */
57 protected static $parents = null;
58 /** @var array subplugins */
59 protected static $subplugins = null;
60 /** @var array list of all known classes that can be autoloaded */
61 protected static $classmap = null;
62 /** @var array list of all classes that have been renamed to be autoloaded */
63 protected static $classmaprenames = null;
64 /** @var array list of some known files that can be included. */
65 protected static $filemap = null;
66 /** @var int|float core version. */
67 protected static $version = null;
68 /** @var array list of the files to map. */
69 protected static $filestomap = array('lib.php', 'settings.php');
70 /** @var array associative array of PSR-0 namespaces and corresponding paths. */
71 protected static $psr0namespaces = array(
72 'Horde' => 'lib/horde/framework/Horde',
73 'Mustache' => 'lib/mustache/src/Mustache',
75 /** @var array associative array of PRS-4 namespaces and corresponding paths. */
76 protected static $psr4namespaces = array(
77 'MaxMind' => 'lib/maxmind/MaxMind',
78 'GeoIp2' => 'lib/maxmind/GeoIp2',
79 'Sabberworm\\CSS' => 'lib/php-css-parser',
80 'MoodleHQ\\RTLCSS' => 'lib/rtlcss',
81 'Leafo\\ScssPhp' => 'lib/scssphp',
82 'Box\\Spout' => 'lib/spout/src/Spout',
83 'MatthiasMullie\\Minify' => 'lib/minify/matthiasmullie-minify/src/',
84 'MatthiasMullie\\PathConverter' => 'lib/minify/matthiasmullie-pathconverter/src/',
85 'IMSGlobal\LTI' => 'lib/ltiprovider/src',
86 'Phpml' => 'lib/mlbackend/php/phpml/src/Phpml',
87 'PHPMailer\\PHPMailer' => 'lib/phpmailer/src',
91 * Class loader for Frankenstyle named classes in standard locations.
92 * Frankenstyle namespaces are supported.
94 * The expected location for core classes is:
95 * 1/ core_xx_yy_zz ---> lib/classes/xx_yy_zz.php
96 * 2/ \core\xx_yy_zz ---> lib/classes/xx_yy_zz.php
97 * 3/ \core\xx\yy_zz ---> lib/classes/xx/yy_zz.php
99 * The expected location for plugin classes is:
100 * 1/ mod_name_xx_yy_zz ---> mod/name/classes/xx_yy_zz.php
101 * 2/ \mod_name\xx_yy_zz ---> mod/name/classes/xx_yy_zz.php
102 * 3/ \mod_name\xx\yy_zz ---> mod/name/classes/xx/yy_zz.php
104 * @param string $classname
106 public static function classloader($classname) {
109 if (isset(self::$classmap[$classname])) {
110 // Global $CFG is expected in included scripts.
112 // Function include would be faster, but for BC it is better to include only once.
113 include_once(self::$classmap[$classname]);
116 if (isset(self::$classmaprenames[$classname]) && isset(self::$classmap[self::$classmaprenames[$classname]])) {
117 $newclassname = self::$classmaprenames[$classname];
118 $debugging = "Class '%s' has been renamed for the autoloader and is now deprecated. Please use '%s' instead.";
119 debugging(sprintf($debugging, $classname, $newclassname), DEBUG_DEVELOPER);
120 if (PHP_VERSION_ID >= 70000 && preg_match('#\\\null(\\\|$)#', $classname)) {
121 throw new \coding_exception("Cannot alias $classname to $newclassname");
123 class_alias($newclassname, $classname);
127 $file = self::psr_classloader($classname);
128 // If the file is found, require it.
136 * Return the path to a class from our defined PSR-0 or PSR-4 standard namespaces on
137 * demand. Only returns paths to files that exist.
139 * Adapated from http://www.php-fig.org/psr/psr-4/examples/ and made PSR-0
142 * @param string $class the name of the class.
143 * @return string|bool The full path to the file defining the class. Or false if it could not be resolved or does not exist.
145 protected static function psr_classloader($class) {
146 // Iterate through each PSR-4 namespace prefix.
147 foreach (self::$psr4namespaces as $prefix => $path) {
148 $file = self::get_class_file($class, $prefix, $path, array('\\'));
149 if (!empty($file) && file_exists($file)) {
154 // Iterate through each PSR-0 namespace prefix.
155 foreach (self::$psr0namespaces as $prefix => $path) {
156 $file = self::get_class_file($class, $prefix, $path, array('\\', '_'));
157 if (!empty($file) && file_exists($file)) {
166 * Return the path to the class based on the given namespace prefix and path it corresponds to.
168 * Will return the path even if the file does not exist. Check the file esists before requiring.
170 * @param string $class the name of the class.
171 * @param string $prefix The namespace prefix used to identify the base directory of the source files.
172 * @param string $path The relative path to the base directory of the source files.
173 * @param string[] $separators The characters that should be used for separating.
174 * @return string|bool The full path to the file defining the class. Or false if it could not be resolved.
176 protected static function get_class_file($class, $prefix, $path, $separators) {
179 // Does the class use the namespace prefix?
180 $len = strlen($prefix);
181 if (strncmp($prefix, $class, $len) !== 0) {
182 // No, move to the next prefix.
185 $path = $CFG->dirroot . '/' . $path;
187 // Get the relative class name.
188 $relativeclass = substr($class, $len);
190 // Replace the namespace prefix with the base directory, replace namespace
191 // separators with directory separators in the relative class name, append
193 $file = $path . str_replace($separators, '/', $relativeclass) . '.php';
200 * Initialise caches, always call before accessing self:: caches.
202 protected static function init() {
205 // Init only once per request/CLI execution, we ignore changes done afterwards.
206 if (isset(self::$plugintypes)) {
210 if (defined('IGNORE_COMPONENT_CACHE') and IGNORE_COMPONENT_CACHE) {
211 self::fill_all_caches();
215 if (!empty($CFG->alternative_component_cache)) {
216 // Hack for heavily clustered sites that want to manage component cache invalidation manually.
217 $cachefile = $CFG->alternative_component_cache;
219 if (file_exists($cachefile)) {
220 if (CACHE_DISABLE_ALL) {
221 // Verify the cache state only on upgrade pages.
222 $content = self::get_cache_content();
223 if (sha1_file($cachefile) !== sha1($content)) {
224 die('Outdated component cache file defined in $CFG->alternative_component_cache, can not continue');
230 self::$plugintypes = $cache['plugintypes'];
231 self::$plugins = $cache['plugins'];
232 self::$subsystems = $cache['subsystems'];
233 self::$parents = $cache['parents'];
234 self::$subplugins = $cache['subplugins'];
235 self::$classmap = $cache['classmap'];
236 self::$classmaprenames = $cache['classmaprenames'];
237 self::$filemap = $cache['filemap'];
241 if (!is_writable(dirname($cachefile))) {
242 die('Can not create alternative component cache file defined in $CFG->alternative_component_cache, can not continue');
245 // Lets try to create the file, it might be in some writable directory or a local cache dir.
248 // Note: $CFG->cachedir MUST be shared by all servers in a cluster,
249 // use $CFG->alternative_component_cache if you do not like it.
250 $cachefile = "$CFG->cachedir/core_component.php";
253 if (!CACHE_DISABLE_ALL and !self::is_developer()) {
254 // 1/ Use the cache only outside of install and upgrade.
255 // 2/ Let developers add/remove classes in developer mode.
256 if (is_readable($cachefile)) {
259 if (!is_array($cache)) {
260 // Something is very wrong.
261 } else if (!isset($cache['version'])) {
262 // Something is very wrong.
263 } else if ((float) $cache['version'] !== (float) self::fetch_core_version()) {
264 // Outdated cache. We trigger an error log to track an eventual repetitive failure of float comparison.
265 error_log('Resetting core_component cache after core upgrade to version ' . self::fetch_core_version());
266 } else if ($cache['plugintypes']['mod'] !== "$CFG->dirroot/mod") {
267 // $CFG->dirroot was changed.
269 // The cache looks ok, let's use it.
270 self::$plugintypes = $cache['plugintypes'];
271 self::$plugins = $cache['plugins'];
272 self::$subsystems = $cache['subsystems'];
273 self::$parents = $cache['parents'];
274 self::$subplugins = $cache['subplugins'];
275 self::$classmap = $cache['classmap'];
276 self::$classmaprenames = $cache['classmaprenames'];
277 self::$filemap = $cache['filemap'];
280 // Note: we do not verify $CFG->admin here intentionally,
281 // they must visit admin/index.php after any change.
285 if (!isset(self::$plugintypes)) {
286 // This needs to be atomic and self-fixing as much as possible.
288 $content = self::get_cache_content();
289 if (file_exists($cachefile)) {
290 if (sha1_file($cachefile) === sha1($content)) {
293 // Stale cache detected!
297 // Permissions might not be setup properly in installers.
298 $dirpermissions = !isset($CFG->directorypermissions) ? 02777 : $CFG->directorypermissions;
299 $filepermissions = !isset($CFG->filepermissions) ? ($dirpermissions & 0666) : $CFG->filepermissions;
302 $cachedir = dirname($cachefile);
303 if (!is_dir($cachedir)) {
304 mkdir($cachedir, $dirpermissions, true);
307 if ($fp = @fopen($cachefile.'.tmp', 'xb')) {
308 fwrite($fp, $content);
310 @rename($cachefile.'.tmp', $cachefile);
311 @chmod($cachefile, $filepermissions);
313 @unlink($cachefile.'.tmp'); // Just in case anything fails (race condition).
314 self::invalidate_opcode_php_cache($cachefile);
319 * Are we in developer debug mode?
321 * Note: You need to set "$CFG->debug = (E_ALL | E_STRICT);" in config.php,
322 * the reason is we need to use this before we setup DB connection or caches for CFG.
326 protected static function is_developer() {
329 // Note we can not rely on $CFG->debug here because DB is not initialised yet.
330 if (isset($CFG->config_php_settings['debug'])) {
331 $debug = (int)$CFG->config_php_settings['debug'];
336 if ($debug & E_ALL and $debug & E_STRICT) {
344 * Create cache file content.
346 * @private this is intended for $CFG->alternative_component_cache only.
350 public static function get_cache_content() {
351 if (!isset(self::$plugintypes)) {
352 self::fill_all_caches();
356 'subsystems' => self::$subsystems,
357 'plugintypes' => self::$plugintypes,
358 'plugins' => self::$plugins,
359 'parents' => self::$parents,
360 'subplugins' => self::$subplugins,
361 'classmap' => self::$classmap,
362 'classmaprenames' => self::$classmaprenames,
363 'filemap' => self::$filemap,
364 'version' => self::$version,
368 $cache = '.var_export($cache, true).';
375 protected static function fill_all_caches() {
376 self::$subsystems = self::fetch_subsystems();
378 list(self::$plugintypes, self::$parents, self::$subplugins) = self::fetch_plugintypes();
380 self::$plugins = array();
381 foreach (self::$plugintypes as $type => $fulldir) {
382 self::$plugins[$type] = self::fetch_plugins($type, $fulldir);
385 self::fill_classmap_cache();
386 self::fill_classmap_renames_cache();
387 self::fill_filemap_cache();
388 self::fetch_core_version();
392 * Get the core version.
394 * In order for this to work properly, opcache should be reset beforehand.
396 * @return float core version.
398 protected static function fetch_core_version() {
400 if (self::$version === null) {
401 $version = null; // Prevent IDE complaints.
402 require($CFG->dirroot . '/version.php');
403 self::$version = $version;
405 return self::$version;
409 * Returns list of core subsystems.
412 protected static function fetch_subsystems() {
415 // NOTE: Any additions here must be verified to not collide with existing add-on modules and subplugins!!!
419 'admin' => $CFG->dirroot.'/'.$CFG->admin,
420 'analytics' => $CFG->dirroot . '/analytics',
421 'antivirus' => $CFG->dirroot . '/lib/antivirus',
422 'auth' => $CFG->dirroot.'/auth',
423 'availability' => $CFG->dirroot . '/availability',
424 'backup' => $CFG->dirroot.'/backup/util/ui',
425 'badges' => $CFG->dirroot.'/badges',
426 'block' => $CFG->dirroot.'/blocks',
427 'blog' => $CFG->dirroot.'/blog',
429 'cache' => $CFG->dirroot.'/cache',
430 'calendar' => $CFG->dirroot.'/calendar',
431 'cohort' => $CFG->dirroot.'/cohort',
432 'comment' => $CFG->dirroot.'/comment',
433 'competency' => $CFG->dirroot.'/competency',
434 'completion' => $CFG->dirroot.'/completion',
436 'course' => $CFG->dirroot.'/course',
437 'currencies' => null,
438 'dbtransfer' => null,
440 'editor' => $CFG->dirroot.'/lib/editor',
442 'enrol' => $CFG->dirroot.'/enrol',
444 'filepicker' => null,
445 'fileconverter' => $CFG->dirroot.'/files/converter',
446 'files' => $CFG->dirroot.'/files',
447 'filters' => $CFG->dirroot.'/filter',
448 //'fonts' => null, // Bogus.
449 'form' => $CFG->dirroot.'/lib/form',
450 'grades' => $CFG->dirroot.'/grade',
451 'grading' => $CFG->dirroot.'/grade/grading',
452 'group' => $CFG->dirroot.'/group',
458 'langconfig' => null,
461 'media' => $CFG->dirroot.'/media',
462 'message' => $CFG->dirroot.'/message',
464 'mnet' => $CFG->dirroot.'/mnet',
465 //'moodle.org' => null, // Not used any more.
466 'my' => $CFG->dirroot.'/my',
467 'notes' => $CFG->dirroot.'/notes',
470 'plagiarism' => $CFG->dirroot.'/plagiarism',
472 'portfolio' => $CFG->dirroot.'/portfolio',
473 'privacy' => $CFG->dirroot . '/privacy',
474 'publish' => $CFG->dirroot.'/course/publish',
475 'question' => $CFG->dirroot.'/question',
476 'rating' => $CFG->dirroot.'/rating',
477 'register' => $CFG->dirroot.'/'.$CFG->admin.'/registration', // Broken badly if $CFG->admin changed.
478 'repository' => $CFG->dirroot.'/repository',
479 'rss' => $CFG->dirroot.'/rss',
480 'role' => $CFG->dirroot.'/'.$CFG->admin.'/roles',
481 'search' => $CFG->dirroot.'/search',
483 'tag' => $CFG->dirroot.'/tag',
485 'user' => $CFG->dirroot.'/user',
487 'webservice' => $CFG->dirroot.'/webservice',
494 * Returns list of known plugin types.
497 protected static function fetch_plugintypes() {
501 'antivirus' => $CFG->dirroot . '/lib/antivirus',
502 'availability' => $CFG->dirroot . '/availability/condition',
503 'qtype' => $CFG->dirroot.'/question/type',
504 'mod' => $CFG->dirroot.'/mod',
505 'auth' => $CFG->dirroot.'/auth',
506 'calendartype' => $CFG->dirroot.'/calendar/type',
507 'enrol' => $CFG->dirroot.'/enrol',
508 'message' => $CFG->dirroot.'/message/output',
509 'block' => $CFG->dirroot.'/blocks',
510 'media' => $CFG->dirroot.'/media/player',
511 'filter' => $CFG->dirroot.'/filter',
512 'editor' => $CFG->dirroot.'/lib/editor',
513 'format' => $CFG->dirroot.'/course/format',
514 'dataformat' => $CFG->dirroot.'/dataformat',
515 'profilefield' => $CFG->dirroot.'/user/profile/field',
516 'report' => $CFG->dirroot.'/report',
517 'coursereport' => $CFG->dirroot.'/course/report', // Must be after system reports.
518 'gradeexport' => $CFG->dirroot.'/grade/export',
519 'gradeimport' => $CFG->dirroot.'/grade/import',
520 'gradereport' => $CFG->dirroot.'/grade/report',
521 'gradingform' => $CFG->dirroot.'/grade/grading/form',
522 'mlbackend' => $CFG->dirroot.'/lib/mlbackend',
523 'mnetservice' => $CFG->dirroot.'/mnet/service',
524 'webservice' => $CFG->dirroot.'/webservice',
525 'repository' => $CFG->dirroot.'/repository',
526 'portfolio' => $CFG->dirroot.'/portfolio',
527 'search' => $CFG->dirroot.'/search/engine',
528 'qbehaviour' => $CFG->dirroot.'/question/behaviour',
529 'qformat' => $CFG->dirroot.'/question/format',
530 'plagiarism' => $CFG->dirroot.'/plagiarism',
531 'tool' => $CFG->dirroot.'/'.$CFG->admin.'/tool',
532 'cachestore' => $CFG->dirroot.'/cache/stores',
533 'cachelock' => $CFG->dirroot.'/cache/locks',
534 'fileconverter' => $CFG->dirroot.'/files/converter',
537 $subplugins = array();
539 if (!empty($CFG->themedir) and is_dir($CFG->themedir) ) {
540 $types['theme'] = $CFG->themedir;
542 $types['theme'] = $CFG->dirroot.'/theme';
545 foreach (self::$supportsubplugins as $type) {
546 if ($type === 'local') {
547 // Local subplugins must be after local plugins.
550 $plugins = self::fetch_plugins($type, $types[$type]);
551 foreach ($plugins as $plugin => $fulldir) {
552 $subtypes = self::fetch_subtypes($fulldir);
556 $subplugins[$type.'_'.$plugin] = array();
557 foreach($subtypes as $subtype => $subdir) {
558 if (isset($types[$subtype])) {
559 error_log("Invalid subtype '$subtype', duplicate detected.");
562 $types[$subtype] = $subdir;
563 $parents[$subtype] = $type.'_'.$plugin;
564 $subplugins[$type.'_'.$plugin][$subtype] = array_keys(self::fetch_plugins($subtype, $subdir));
568 // Local is always last!
569 $types['local'] = $CFG->dirroot.'/local';
571 if (in_array('local', self::$supportsubplugins)) {
573 $plugins = self::fetch_plugins($type, $types[$type]);
574 foreach ($plugins as $plugin => $fulldir) {
575 $subtypes = self::fetch_subtypes($fulldir);
579 $subplugins[$type.'_'.$plugin] = array();
580 foreach($subtypes as $subtype => $subdir) {
581 if (isset($types[$subtype])) {
582 error_log("Invalid subtype '$subtype', duplicate detected.");
585 $types[$subtype] = $subdir;
586 $parents[$subtype] = $type.'_'.$plugin;
587 $subplugins[$type.'_'.$plugin][$subtype] = array_keys(self::fetch_plugins($subtype, $subdir));
592 return array($types, $parents, $subplugins);
596 * Returns list of subtypes.
597 * @param string $ownerdir
600 protected static function fetch_subtypes($ownerdir) {
604 if (file_exists("$ownerdir/db/subplugins.php")) {
605 $subplugins = array();
606 include("$ownerdir/db/subplugins.php");
607 foreach ($subplugins as $subtype => $dir) {
608 if (!preg_match('/^[a-z][a-z0-9]*$/', $subtype)) {
609 error_log("Invalid subtype '$subtype'' detected in '$ownerdir', invalid characters present.");
612 if (isset(self::$subsystems[$subtype])) {
613 error_log("Invalid subtype '$subtype'' detected in '$ownerdir', duplicates core subsystem.");
616 if ($CFG->admin !== 'admin' and strpos($dir, 'admin/') === 0) {
617 $dir = preg_replace('|^admin/|', "$CFG->admin/", $dir);
619 if (!is_dir("$CFG->dirroot/$dir")) {
620 error_log("Invalid subtype directory '$dir' detected in '$ownerdir'.");
623 $types[$subtype] = "$CFG->dirroot/$dir";
630 * Returns list of plugins of given type in given directory.
631 * @param string $plugintype
632 * @param string $fulldir
635 protected static function fetch_plugins($plugintype, $fulldir) {
638 $fulldirs = (array)$fulldir;
639 if ($plugintype === 'theme') {
640 if (realpath($fulldir) !== realpath($CFG->dirroot.'/theme')) {
641 // Include themes in standard location too.
642 array_unshift($fulldirs, $CFG->dirroot.'/theme');
648 foreach ($fulldirs as $fulldir) {
649 if (!is_dir($fulldir)) {
652 $items = new \DirectoryIterator($fulldir);
653 foreach ($items as $item) {
654 if ($item->isDot() or !$item->isDir()) {
657 $pluginname = $item->getFilename();
658 if ($plugintype === 'auth' and $pluginname === 'db') {
659 // Special exception for this wrong plugin name.
660 } else if (isset(self::$ignoreddirs[$pluginname])) {
663 if (!self::is_valid_plugin_name($plugintype, $pluginname)) {
664 // Always ignore plugins with problematic names here.
667 $result[$pluginname] = $fulldir.'/'.$pluginname;
678 * Find all classes that can be autoloaded including frankenstyle namespaces.
680 protected static function fill_classmap_cache() {
683 self::$classmap = array();
685 self::load_classes('core', "$CFG->dirroot/lib/classes");
687 foreach (self::$subsystems as $subsystem => $fulldir) {
691 self::load_classes('core_'.$subsystem, "$fulldir/classes");
694 foreach (self::$plugins as $plugintype => $plugins) {
695 foreach ($plugins as $pluginname => $fulldir) {
696 self::load_classes($plugintype.'_'.$pluginname, "$fulldir/classes");
699 ksort(self::$classmap);
703 * Fills up the cache defining what plugins have certain files.
705 * @see self::get_plugin_list_with_file
708 protected static function fill_filemap_cache() {
711 self::$filemap = array();
713 foreach (self::$filestomap as $file) {
714 if (!isset(self::$filemap[$file])) {
715 self::$filemap[$file] = array();
717 foreach (self::$plugins as $plugintype => $plugins) {
718 if (!isset(self::$filemap[$file][$plugintype])) {
719 self::$filemap[$file][$plugintype] = array();
721 foreach ($plugins as $pluginname => $fulldir) {
722 if (file_exists("$fulldir/$file")) {
723 self::$filemap[$file][$plugintype][$pluginname] = "$fulldir/$file";
731 * Find classes in directory and recurse to subdirs.
732 * @param string $component
733 * @param string $fulldir
734 * @param string $namespace
736 protected static function load_classes($component, $fulldir, $namespace = '') {
737 if (!is_dir($fulldir)) {
741 if (!is_readable($fulldir)) {
742 // TODO: MDL-51711 We should generate some diagnostic debugging information in this case
743 // because its pretty likely to lead to a missing class error further down the line.
744 // But our early setup code can't handle errors this early at the moment.
748 $items = new \DirectoryIterator($fulldir);
749 foreach ($items as $item) {
750 if ($item->isDot()) {
753 if ($item->isDir()) {
754 $dirname = $item->getFilename();
755 self::load_classes($component, "$fulldir/$dirname", $namespace.'\\'.$dirname);
759 $filename = $item->getFilename();
760 $classname = preg_replace('/\.php$/', '', $filename);
762 if ($filename === $classname) {
766 if ($namespace === '') {
767 // Legacy long frankenstyle class name.
768 self::$classmap[$component.'_'.$classname] = "$fulldir/$filename";
770 // New namespaced classes.
771 self::$classmap[$component.$namespace.'\\'.$classname] = "$fulldir/$filename";
779 * List all core subsystems and their location
781 * This is a whitelist of components that are part of the core and their
782 * language strings are defined in /lang/en/<<subsystem>>.php. If a given
783 * plugin is not listed here and it does not have proper plugintype prefix,
784 * then it is considered as course activity module.
786 * The location is absolute file path to dir. NULL means there is no special
787 * directory for this subsystem. If the location is set, the subsystem's
788 * renderer.php is expected to be there.
790 * @return array of (string)name => (string|null)full dir location
792 public static function get_core_subsystems() {
794 return self::$subsystems;
798 * Get list of available plugin types together with their location.
800 * @return array as (string)plugintype => (string)fulldir
802 public static function get_plugin_types() {
804 return self::$plugintypes;
808 * Get list of plugins of given type.
810 * @param string $plugintype
811 * @return array as (string)pluginname => (string)fulldir
813 public static function get_plugin_list($plugintype) {
816 if (!isset(self::$plugins[$plugintype])) {
819 return self::$plugins[$plugintype];
823 * Get a list of all the plugins of a given type that define a certain class
824 * in a certain file. The plugin component names and class names are returned.
826 * @param string $plugintype the type of plugin, e.g. 'mod' or 'report'.
827 * @param string $class the part of the name of the class after the
828 * frankenstyle prefix. e.g 'thing' if you are looking for classes with
829 * names like report_courselist_thing. If you are looking for classes with
830 * the same name as the plugin name (e.g. qtype_multichoice) then pass ''.
831 * Frankenstyle namespaces are also supported.
832 * @param string $file the name of file within the plugin that defines the class.
833 * @return array with frankenstyle plugin names as keys (e.g. 'report_courselist', 'mod_forum')
834 * and the class names as values (e.g. 'report_courselist_thing', 'qtype_multichoice').
836 public static function get_plugin_list_with_class($plugintype, $class, $file = null) {
837 global $CFG; // Necessary in case it is referenced by included PHP scripts.
840 $suffix = '_' . $class;
845 $pluginclasses = array();
846 $plugins = self::get_plugin_list($plugintype);
847 foreach ($plugins as $plugin => $fulldir) {
848 // Try class in frankenstyle namespace.
850 $classname = '\\' . $plugintype . '_' . $plugin . '\\' . $class;
851 if (class_exists($classname, true)) {
852 $pluginclasses[$plugintype . '_' . $plugin] = $classname;
857 // Try autoloading of class with frankenstyle prefix.
858 $classname = $plugintype . '_' . $plugin . $suffix;
859 if (class_exists($classname, true)) {
860 $pluginclasses[$plugintype . '_' . $plugin] = $classname;
864 // Fall back to old file location and class name.
865 if ($file and file_exists("$fulldir/$file")) {
866 include_once("$fulldir/$file");
867 if (class_exists($classname, false)) {
868 $pluginclasses[$plugintype . '_' . $plugin] = $classname;
874 return $pluginclasses;
878 * Get a list of all the plugins of a given type that contain a particular file.
880 * @param string $plugintype the type of plugin, e.g. 'mod' or 'report'.
881 * @param string $file the name of file that must be present in the plugin.
882 * (e.g. 'view.php', 'db/install.xml').
883 * @param bool $include if true (default false), the file will be include_once-ed if found.
884 * @return array with plugin name as keys (e.g. 'forum', 'courselist') and the path
885 * to the file relative to dirroot as value (e.g. "$CFG->dirroot/mod/forum/view.php").
887 public static function get_plugin_list_with_file($plugintype, $file, $include = false) {
888 global $CFG; // Necessary in case it is referenced by included PHP scripts.
889 $pluginfiles = array();
891 if (isset(self::$filemap[$file])) {
892 // If the file was supposed to be mapped, then it should have been set in the array.
893 if (isset(self::$filemap[$file][$plugintype])) {
894 $pluginfiles = self::$filemap[$file][$plugintype];
897 // Old-style search for non-cached files.
898 $plugins = self::get_plugin_list($plugintype);
899 foreach ($plugins as $plugin => $fulldir) {
900 $path = $fulldir . '/' . $file;
901 if (file_exists($path)) {
902 $pluginfiles[$plugin] = $path;
908 foreach ($pluginfiles as $path) {
917 * Returns all classes in a component matching the provided namespace.
919 * It checks that the class exists.
921 * e.g. get_component_classes_in_namespace('mod_forum', 'event')
923 * @param string $component A valid moodle component (frankenstyle)
924 * @param string $namespace Namespace from the component name or empty if all $component namespace classes.
925 * @return array The full class name as key and the class path as value.
927 public static function get_component_classes_in_namespace($component, $namespace = '') {
929 $component = self::normalize_componentname($component);
933 // We will add them later.
934 $namespace = trim($namespace, '\\');
936 // We need add double backslashes as it is how classes are stored into self::$classmap.
937 $namespace = implode('\\\\', explode('\\', $namespace));
938 $namespace = $namespace . '\\\\';
941 $regex = '|^' . $component . '\\\\' . $namespace . '|';
942 $it = new RegexIterator(new ArrayIterator(self::$classmap), $regex, RegexIterator::GET_MATCH, RegexIterator::USE_KEY);
944 // We want to be sure that they exist.
946 foreach ($it as $classname => $classpath) {
947 if (class_exists($classname)) {
948 $classes[$classname] = $classpath;
956 * Returns the exact absolute path to plugin directory.
958 * @param string $plugintype type of plugin
959 * @param string $pluginname name of the plugin
960 * @return string full path to plugin directory; null if not found
962 public static function get_plugin_directory($plugintype, $pluginname) {
963 if (empty($pluginname)) {
964 // Invalid plugin name, sorry.
970 if (!isset(self::$plugins[$plugintype][$pluginname])) {
973 return self::$plugins[$plugintype][$pluginname];
977 * Returns the exact absolute path to plugin directory.
979 * @param string $subsystem type of core subsystem
980 * @return string full path to subsystem directory; null if not found
982 public static function get_subsystem_directory($subsystem) {
985 if (!isset(self::$subsystems[$subsystem])) {
988 return self::$subsystems[$subsystem];
992 * This method validates a plug name. It is much faster than calling clean_param.
994 * @param string $plugintype type of plugin
995 * @param string $pluginname a string that might be a plugin name.
996 * @return bool if this string is a valid plugin name.
998 public static function is_valid_plugin_name($plugintype, $pluginname) {
999 if ($plugintype === 'mod') {
1000 // Modules must not have the same name as core subsystems.
1001 if (!isset(self::$subsystems)) {
1002 // Watch out, this is called from init!
1005 if (isset(self::$subsystems[$pluginname])) {
1008 // Modules MUST NOT have any underscores,
1009 // component normalisation would break very badly otherwise!
1010 return (bool)preg_match('/^[a-z][a-z0-9]*$/', $pluginname);
1013 return (bool)preg_match('/^[a-z](?:[a-z0-9_](?!__))*[a-z0-9]+$/', $pluginname);
1018 * Normalize the component name.
1020 * Note: this does not verify the validity of the plugin or component.
1022 * @param string $component
1025 public static function normalize_componentname($componentname) {
1026 list($plugintype, $pluginname) = self::normalize_component($componentname);
1027 if ($plugintype === 'core' && is_null($pluginname)) {
1030 return $plugintype . '_' . $pluginname;
1034 * Normalize the component name using the "frankenstyle" rules.
1036 * Note: this does not verify the validity of plugin or type names.
1038 * @param string $component
1039 * @return array two-items list of [(string)type, (string|null)name]
1041 public static function normalize_component($component) {
1042 if ($component === 'moodle' or $component === 'core' or $component === '') {
1043 return array('core', null);
1046 if (strpos($component, '_') === false) {
1048 if (array_key_exists($component, self::$subsystems)) {
1050 $plugin = $component;
1052 // Everything else without underscore is a module.
1054 $plugin = $component;
1058 list($type, $plugin) = explode('_', $component, 2);
1059 if ($type === 'moodle') {
1062 // Any unknown type must be a subplugin.
1065 return array($type, $plugin);
1069 * Return exact absolute path to a plugin directory.
1071 * @param string $component name such as 'moodle', 'mod_forum'
1072 * @return string full path to component directory; NULL if not found
1074 public static function get_component_directory($component) {
1077 list($type, $plugin) = self::normalize_component($component);
1079 if ($type === 'core') {
1080 if ($plugin === null) {
1081 return $path = $CFG->libdir;
1083 return self::get_subsystem_directory($plugin);
1086 return self::get_plugin_directory($type, $plugin);
1090 * Returns list of plugin types that allow subplugins.
1091 * @return array as (string)plugintype => (string)fulldir
1093 public static function get_plugin_types_with_subplugins() {
1097 foreach (self::$supportsubplugins as $type) {
1098 $return[$type] = self::$plugintypes[$type];
1104 * Returns parent of this subplugin type.
1106 * @param string $type
1107 * @return string parent component or null
1109 public static function get_subtype_parent($type) {
1112 if (isset(self::$parents[$type])) {
1113 return self::$parents[$type];
1120 * Return all subplugins of this component.
1121 * @param string $component.
1122 * @return array $subtype=>array($component, ..), null if no subtypes defined
1124 public static function get_subplugins($component) {
1127 if (isset(self::$subplugins[$component])) {
1128 return self::$subplugins[$component];
1135 * Returns hash of all versions including core and all plugins.
1137 * This is relatively slow and not fully cached, use with care!
1139 * @return string sha1 hash
1141 public static function get_all_versions_hash() {
1146 $versions = array();
1148 // Main version first.
1149 $versions['core'] = self::fetch_core_version();
1151 // The problem here is tha the component cache might be stable,
1152 // we want this to work also on frontpage without resetting the component cache.
1154 if (CACHE_DISABLE_ALL or (defined('IGNORE_COMPONENT_CACHE') and IGNORE_COMPONENT_CACHE)) {
1159 $plugintypes = core_component::get_plugin_types();
1160 foreach ($plugintypes as $type => $typedir) {
1162 $plugs = core_component::get_plugin_list($type);
1164 $plugs = self::fetch_plugins($type, $typedir);
1166 foreach ($plugs as $plug => $fullplug) {
1167 $plugin = new stdClass();
1168 $plugin->version = null;
1170 include($fullplug.'/version.php');
1171 $versions[$type.'_'.$plug] = $plugin->version;
1175 return sha1(serialize($versions));
1179 * Invalidate opcode cache for given file, this is intended for
1180 * php files that are stored in dataroot.
1182 * Note: we need it here because this class must be self-contained.
1184 * @param string $file
1186 public static function invalidate_opcode_php_cache($file) {
1187 if (function_exists('opcache_invalidate')) {
1188 if (!file_exists($file)) {
1191 opcache_invalidate($file, true);
1196 * Return true if subsystemname is core subsystem.
1198 * @param string $subsystemname name of the subsystem.
1199 * @return bool true if core subsystem.
1201 public static function is_core_subsystem($subsystemname) {
1202 return isset(self::$subsystems[$subsystemname]);
1206 * Records all class renames that have been made to facilitate autoloading.
1208 protected static function fill_classmap_renames_cache() {
1211 self::$classmaprenames = array();
1213 self::load_renamed_classes("$CFG->dirroot/lib/");
1215 foreach (self::$subsystems as $subsystem => $fulldir) {
1216 self::load_renamed_classes($fulldir);
1219 foreach (self::$plugins as $plugintype => $plugins) {
1220 foreach ($plugins as $pluginname => $fulldir) {
1221 self::load_renamed_classes($fulldir);
1227 * Loads the db/renamedclasses.php file from the given directory.
1229 * The renamedclasses.php should contain a key => value array ($renamedclasses) where the key is old class name,
1230 * and the value is the new class name.
1231 * It is only included when we are populating the component cache. After that is not needed.
1233 * @param string $fulldir
1235 protected static function load_renamed_classes($fulldir) {
1236 $file = $fulldir . '/db/renamedclasses.php';
1237 if (is_readable($file)) {
1238 $renamedclasses = null;
1240 if (is_array($renamedclasses)) {
1241 foreach ($renamedclasses as $oldclass => $newclass) {
1242 self::$classmaprenames[(string)$oldclass] = (string)$newclass;