3 use MediaWiki\MediaWikiServices
;
6 * ExtensionRegistry class
8 * The Registry loads JSON files, and uses a Processor
9 * to extract information from them. It also registers
10 * classes with the autoloader.
14 class ExtensionRegistry
{
17 * "requires" key that applies to MediaWiki core/$wgVersion
19 const MEDIAWIKI_CORE
= 'MediaWiki';
22 * Version of the highest supported manifest version
24 const MANIFEST_VERSION
= 2;
27 * Version of the oldest supported manifest version
29 const OLDEST_MANIFEST_VERSION
= 1;
32 * Bump whenever the registration cache needs resetting
34 const CACHE_VERSION
= 5;
37 * Special key that defines the merge strategy
41 const MERGE_STRATEGY
= '_merge_strategy';
44 * Array of loaded things, keyed by name, values are credits information
51 * List of paths that should be loaded
55 protected $queued = [];
58 * Whether we are done loading things
62 private $finished = false;
65 * Items in the JSON file that aren't being
70 protected $attributes = [];
73 * @var ExtensionRegistry
75 private static $instance;
78 * @return ExtensionRegistry
80 public static function getInstance() {
81 if ( self
::$instance === null ) {
82 self
::$instance = new self();
85 return self
::$instance;
89 * @param string $path Absolute path to the JSON file
91 public function queue( $path ) {
92 global $wgExtensionInfoMTime;
94 $mtime = $wgExtensionInfoMTime;
95 if ( $mtime === false ) {
96 if ( file_exists( $path ) ) {
97 $mtime = filemtime( $path );
99 throw new Exception( "$path does not exist!" );
102 $err = error_get_last();
103 throw new Exception( "Couldn't stat $path: {$err['message']}" );
106 $this->queued
[$path] = $mtime;
110 * @throws MWException If the queue is already marked as finished (no further things should
113 public function loadFromQueue() {
115 if ( !$this->queued
) {
119 if ( $this->finished
) {
120 throw new MWException(
121 "The following paths tried to load late: "
122 . implode( ', ', array_keys( $this->queued
) )
126 // A few more things to vary the cache on
128 'registration' => self
::CACHE_VERSION
,
129 'mediawiki' => $wgVersion
132 // We use a try/catch because we don't want to fail here
133 // if $wgObjectCaches is not configured properly for APC setup
135 $cache = MediaWikiServices
::getInstance()->getLocalServerObjectCache();
136 } catch ( MWException
$e ) {
137 $cache = new EmptyBagOStuff();
139 // See if this queue is in APC
142 md5( json_encode( $this->queued +
$versions ) )
144 $data = $cache->get( $key );
146 $this->exportExtractedData( $data );
148 $data = $this->readFromQueue( $this->queued
);
149 $this->exportExtractedData( $data );
150 // Do this late since we don't want to extract it since we already
151 // did that, but it should be cached
152 $data['globals']['wgAutoloadClasses'] +
= $data['autoload'];
153 unset( $data['autoload'] );
154 $cache->set( $key, $data, 60 * 60 * 24 );
160 * Get the current load queue. Not intended to be used
161 * outside of the installer.
165 public function getQueue() {
166 return $this->queued
;
170 * Clear the current load queue. Not intended to be used
171 * outside of the installer.
173 public function clearQueue() {
178 * After this is called, no more extensions can be loaded
182 public function finish() {
183 $this->finished
= true;
187 * Process a queue of extensions and return their extracted data
189 * @param array $queue keys are filenames, values are ignored
190 * @return array extracted info
193 public function readFromQueue( array $queue ) {
195 $autoloadClasses = [];
196 $autoloaderPaths = [];
197 $processor = new ExtensionProcessor();
198 $versionChecker = new VersionChecker( $wgVersion );
199 $extDependencies = [];
201 foreach ( $queue as $path => $mtime ) {
202 $json = file_get_contents( $path );
203 if ( $json === false ) {
204 throw new Exception( "Unable to read $path, does it exist?" );
206 $info = json_decode( $json, /* $assoc = */ true );
207 if ( !is_array( $info ) ) {
208 throw new Exception( "$path is not a valid JSON file." );
211 if ( !isset( $info['manifest_version'] ) ) {
212 // For backwards-compatability, assume a version of 1
213 $info['manifest_version'] = 1;
215 $version = $info['manifest_version'];
216 if ( $version < self
::OLDEST_MANIFEST_VERSION ||
$version > self
::MANIFEST_VERSION
) {
217 $incompatible[] = "$path: unsupported manifest_version: {$version}";
220 $autoload = $this->processAutoLoader( dirname( $path ), $info );
221 // Set up the autoloader now so custom processors will work
222 $GLOBALS['wgAutoloadClasses'] +
= $autoload;
223 $autoloadClasses +
= $autoload;
225 // get all requirements/dependencies for this extension
226 $requires = $processor->getRequirements( $info );
228 // validate the information needed and add the requirements
229 if ( is_array( $requires ) && $requires && isset( $info['name'] ) ) {
230 $extDependencies[$info['name']] = $requires;
233 // Get extra paths for later inclusion
234 $autoloaderPaths = array_merge( $autoloaderPaths,
235 $processor->getExtraAutoloaderPaths( dirname( $path ), $info ) );
236 // Compatible, read and extract info
237 $processor->extractInfo( $path, $info, $version );
239 $data = $processor->getExtractedInfo();
241 // check for incompatible extensions
242 $incompatible = array_merge(
245 ->setLoadedExtensionsAndSkins( $data['credits'] )
246 ->checkArray( $extDependencies )
249 if ( $incompatible ) {
250 if ( count( $incompatible ) === 1 ) {
251 throw new Exception( $incompatible[0] );
253 throw new Exception( implode( "\n", $incompatible ) );
257 // Need to set this so we can += to it later
258 $data['globals']['wgAutoloadClasses'] = [];
259 $data['autoload'] = $autoloadClasses;
260 $data['autoloaderPaths'] = $autoloaderPaths;
264 protected function exportExtractedData( array $info ) {
265 foreach ( $info['globals'] as $key => $val ) {
266 // If a merge strategy is set, read it and remove it from the value
267 // so it doesn't accidentally end up getting set.
268 if ( is_array( $val ) && isset( $val[self
::MERGE_STRATEGY
] ) ) {
269 $mergeStrategy = $val[self
::MERGE_STRATEGY
];
270 unset( $val[self
::MERGE_STRATEGY
] );
272 $mergeStrategy = 'array_merge';
275 // Optimistic: If the global is not set, or is an empty array, replace it entirely.
276 // Will be O(1) performance.
277 if ( !isset( $GLOBALS[$key] ) ||
( is_array( $GLOBALS[$key] ) && !$GLOBALS[$key] ) ) {
278 $GLOBALS[$key] = $val;
282 if ( !is_array( $GLOBALS[$key] ) ||
!is_array( $val ) ) {
283 // config setting that has already been overridden, don't set it
287 switch ( $mergeStrategy ) {
288 case 'array_merge_recursive':
289 $GLOBALS[$key] = array_merge_recursive( $GLOBALS[$key], $val );
291 case 'array_replace_recursive':
292 $GLOBALS[$key] = array_replace_recursive( $GLOBALS[$key], $val );
294 case 'array_plus_2d':
295 $GLOBALS[$key] = wfArrayPlus2d( $GLOBALS[$key], $val );
298 $GLOBALS[$key] +
= $val;
301 $GLOBALS[$key] = array_merge( $val, $GLOBALS[$key] );
304 throw new UnexpectedValueException( "Unknown merge strategy '$mergeStrategy'" );
308 foreach ( $info['defines'] as $name => $val ) {
309 define( $name, $val );
311 foreach ( $info['autoloaderPaths'] as $path ) {
315 $this->loaded +
= $info['credits'];
316 if ( $info['attributes'] ) {
317 if ( !$this->attributes
) {
318 $this->attributes
= $info['attributes'];
320 $this->attributes
= array_merge_recursive( $this->attributes
, $info['attributes'] );
324 foreach ( $info['callbacks'] as $name => $cb ) {
325 call_user_func( $cb, $info['credits'][$name] );
330 * Loads and processes the given JSON file without delay
332 * If some extensions are already queued, this will load
335 * @param string $path Absolute path to the JSON file
337 public function load( $path ) {
338 $this->loadFromQueue(); // First clear the queue
339 $this->queue( $path );
340 $this->loadFromQueue();
344 * Whether a thing has been loaded
345 * @param string $name
348 public function isLoaded( $name ) {
349 return isset( $this->loaded
[$name] );
353 * @param string $name
356 public function getAttribute( $name ) {
357 if ( isset( $this->attributes
[$name] ) ) {
358 return $this->attributes
[$name];
365 * Get information about all things
369 public function getAllThings() {
370 return $this->loaded
;
374 * Mark a thing as loaded
376 * @param string $name
377 * @param array $credits
379 protected function markLoaded( $name, array $credits ) {
380 $this->loaded
[$name] = $credits;
384 * Register classes with the autoloader
390 protected function processAutoLoader( $dir, array $info ) {
391 if ( isset( $info['AutoloadClasses'] ) ) {
392 // Make paths absolute, relative to the JSON file
393 return array_map( function( $file ) use ( $dir ) {
395 }, $info['AutoloadClasses'] );