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
= 3;
37 * Special key that defines the merge strategy
41 const MERGE_STRATEGY
= '_merge_strategy';
49 * Array of loaded things, keyed by name, values are credits information
56 * List of paths that should be loaded
60 protected $queued = [];
63 * Items in the JSON file that aren't being
68 protected $attributes = [];
71 * @var ExtensionRegistry
73 private static $instance;
76 * @return ExtensionRegistry
78 public static function getInstance() {
79 if ( self
::$instance === null ) {
80 self
::$instance = new self();
83 return self
::$instance;
86 public function __construct() {
87 // We use a try/catch because we don't want to fail here
88 // if $wgObjectCaches is not configured properly for APC setup
90 $this->cache
= MediaWikiServices
::getInstance()->getLocalServerObjectCache();
91 } catch ( MWException
$e ) {
92 $this->cache
= new EmptyBagOStuff();
97 * @param string $path Absolute path to the JSON file
99 public function queue( $path ) {
100 global $wgExtensionInfoMTime;
102 $mtime = $wgExtensionInfoMTime;
103 if ( $mtime === false ) {
104 if ( file_exists( $path ) ) {
105 $mtime = filemtime( $path );
107 throw new Exception( "$path does not exist!" );
110 $err = error_get_last();
111 throw new Exception( "Couldn't stat $path: {$err['message']}" );
114 $this->queued
[$path] = $mtime;
117 public function loadFromQueue() {
119 if ( !$this->queued
) {
123 // A few more things to vary the cache on
125 'registration' => self
::CACHE_VERSION
,
126 'mediawiki' => $wgVersion
129 // See if this queue is in APC
132 md5( json_encode( $this->queued +
$versions ) )
134 $data = $this->cache
->get( $key );
136 $this->exportExtractedData( $data );
138 $data = $this->readFromQueue( $this->queued
);
139 $this->exportExtractedData( $data );
140 // Do this late since we don't want to extract it since we already
141 // did that, but it should be cached
142 $data['globals']['wgAutoloadClasses'] +
= $data['autoload'];
143 unset( $data['autoload'] );
144 $this->cache
->set( $key, $data, 60 * 60 * 24 );
150 * Get the current load queue. Not intended to be used
151 * outside of the installer.
155 public function getQueue() {
156 return $this->queued
;
160 * Clear the current load queue. Not intended to be used
161 * outside of the installer.
163 public function clearQueue() {
168 * Process a queue of extensions and return their extracted data
170 * @param array $queue keys are filenames, values are ignored
171 * @return array extracted info
174 public function readFromQueue( array $queue ) {
176 $autoloadClasses = [];
177 $autoloaderPaths = [];
178 $processor = new ExtensionProcessor();
180 $coreVersionParser = new CoreVersionChecker( $wgVersion );
181 foreach ( $queue as $path => $mtime ) {
182 $json = file_get_contents( $path );
183 if ( $json === false ) {
184 throw new Exception( "Unable to read $path, does it exist?" );
186 $info = json_decode( $json, /* $assoc = */ true );
187 if ( !is_array( $info ) ) {
188 throw new Exception( "$path is not a valid JSON file." );
191 // Check any constraints against MediaWiki core
192 $requires = $processor->getRequirements( $info );
193 if ( isset( $requires[self
::MEDIAWIKI_CORE
] )
194 && !$coreVersionParser->check( $requires[self
::MEDIAWIKI_CORE
] )
196 // Doesn't match, mark it as incompatible.
197 $incompatible[] = "{$info['name']} is not compatible with the current "
198 . "MediaWiki core (version {$wgVersion}), it requires: " . $requires[self
::MEDIAWIKI_CORE
]
203 if ( !isset( $info['manifest_version'] ) ) {
204 // For backwards-compatability, assume a version of 1
205 $info['manifest_version'] = 1;
207 $version = $info['manifest_version'];
208 if ( $version < self
::OLDEST_MANIFEST_VERSION ||
$version > self
::MANIFEST_VERSION
) {
209 throw new Exception( "$path: unsupported manifest_version: {$version}" );
212 $autoload = $this->processAutoLoader( dirname( $path ), $info );
213 // Set up the autoloader now so custom processors will work
214 $GLOBALS['wgAutoloadClasses'] +
= $autoload;
215 $autoloadClasses +
= $autoload;
217 // Get extra paths for later inclusion
218 $autoloaderPaths = array_merge( $autoloaderPaths,
219 $processor->getExtraAutoloaderPaths( dirname( $path ), $info ) );
220 // Compatible, read and extract info
221 $processor->extractInfo( $path, $info, $version );
223 if ( $incompatible ) {
224 if ( count( $incompatible ) === 1 ) {
225 throw new Exception( $incompatible[0] );
227 throw new Exception( implode( "\n", $incompatible ) );
230 $data = $processor->getExtractedInfo();
231 // Need to set this so we can += to it later
232 $data['globals']['wgAutoloadClasses'] = [];
233 $data['autoload'] = $autoloadClasses;
234 $data['autoloaderPaths'] = $autoloaderPaths;
238 protected function exportExtractedData( array $info ) {
239 foreach ( $info['globals'] as $key => $val ) {
240 // If a merge strategy is set, read it and remove it from the value
241 // so it doesn't accidentally end up getting set.
242 if ( is_array( $val ) && isset( $val[self
::MERGE_STRATEGY
] ) ) {
243 $mergeStrategy = $val[self
::MERGE_STRATEGY
];
244 unset( $val[self
::MERGE_STRATEGY
] );
246 $mergeStrategy = 'array_merge';
249 // Optimistic: If the global is not set, or is an empty array, replace it entirely.
250 // Will be O(1) performance.
251 if ( !isset( $GLOBALS[$key] ) ||
( is_array( $GLOBALS[$key] ) && !$GLOBALS[$key] ) ) {
252 $GLOBALS[$key] = $val;
256 if ( !is_array( $GLOBALS[$key] ) ||
!is_array( $val ) ) {
257 // config setting that has already been overridden, don't set it
261 switch ( $mergeStrategy ) {
262 case 'array_merge_recursive':
263 $GLOBALS[$key] = array_merge_recursive( $GLOBALS[$key], $val );
265 case 'array_replace_recursive':
266 $GLOBALS[$key] = array_replace_recursive( $GLOBALS[$key], $val );
268 case 'array_plus_2d':
269 $GLOBALS[$key] = wfArrayPlus2d( $GLOBALS[$key], $val );
272 $GLOBALS[$key] +
= $val;
275 $GLOBALS[$key] = array_merge( $val, $GLOBALS[$key] );
278 throw new UnexpectedValueException( "Unknown merge strategy '$mergeStrategy'" );
282 foreach ( $info['defines'] as $name => $val ) {
283 define( $name, $val );
285 foreach ( $info['autoloaderPaths'] as $path ) {
288 foreach ( $info['callbacks'] as $cb ) {
289 call_user_func( $cb );
292 $this->loaded +
= $info['credits'];
293 if ( $info['attributes'] ) {
294 if ( !$this->attributes
) {
295 $this->attributes
= $info['attributes'];
297 $this->attributes
= array_merge_recursive( $this->attributes
, $info['attributes'] );
303 * Loads and processes the given JSON file without delay
305 * If some extensions are already queued, this will load
308 * @param string $path Absolute path to the JSON file
310 public function load( $path ) {
311 $this->loadFromQueue(); // First clear the queue
312 $this->queue( $path );
313 $this->loadFromQueue();
317 * Whether a thing has been loaded
318 * @param string $name
321 public function isLoaded( $name ) {
322 return isset( $this->loaded
[$name] );
326 * @param string $name
329 public function getAttribute( $name ) {
330 if ( isset( $this->attributes
[$name] ) ) {
331 return $this->attributes
[$name];
338 * Get information about all things
342 public function getAllThings() {
343 return $this->loaded
;
347 * Mark a thing as loaded
349 * @param string $name
350 * @param array $credits
352 protected function markLoaded( $name, array $credits ) {
353 $this->loaded
[$name] = $credits;
357 * Register classes with the autoloader
363 protected function processAutoLoader( $dir, array $info ) {
364 if ( isset( $info['AutoloadClasses'] ) ) {
365 // Make paths absolute, relative to the JSON file
366 return array_map( function( $file ) use ( $dir ) {
368 }, $info['AutoloadClasses'] );