Merge "Special:Upload should not crash on failing previews"
[mediawiki.git] / includes / registration / ExtensionRegistry.php
blob344dd8f5c0f3b67e80fe2070222e61cce9ba9e8d
1 <?php
3 use MediaWiki\MediaWikiServices;
5 /**
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.
12 * @since 1.25
14 class ExtensionRegistry {
16 /**
17 * "requires" key that applies to MediaWiki core/$wgVersion
19 const MEDIAWIKI_CORE = 'MediaWiki';
21 /**
22 * Version of the highest supported manifest version
24 const MANIFEST_VERSION = 2;
26 /**
27 * Version of the oldest supported manifest version
29 const OLDEST_MANIFEST_VERSION = 1;
31 /**
32 * Bump whenever the registration cache needs resetting
34 const CACHE_VERSION = 5;
36 /**
37 * Special key that defines the merge strategy
39 * @since 1.26
41 const MERGE_STRATEGY = '_merge_strategy';
43 /**
44 * Array of loaded things, keyed by name, values are credits information
46 * @var array
48 private $loaded = [];
50 /**
51 * List of paths that should be loaded
53 * @var array
55 protected $queued = [];
57 /**
58 * Whether we are done loading things
60 * @var bool
62 private $finished = false;
64 /**
65 * Items in the JSON file that aren't being
66 * set as globals
68 * @var array
70 protected $attributes = [];
72 /**
73 * @var ExtensionRegistry
75 private static $instance;
77 /**
78 * @return ExtensionRegistry
80 public static function getInstance() {
81 if ( self::$instance === null ) {
82 self::$instance = new self();
85 return self::$instance;
88 /**
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 );
98 } else {
99 throw new Exception( "$path does not exist!" );
101 if ( !$mtime ) {
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
111 * be loaded then).
113 public function loadFromQueue() {
114 global $wgVersion;
115 if ( !$this->queued ) {
116 return;
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
127 $versions = [
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
134 try {
135 $cache = MediaWikiServices::getInstance()->getLocalServerObjectCache();
136 } catch ( MWException $e ) {
137 $cache = new EmptyBagOStuff();
139 // See if this queue is in APC
140 $key = wfMemcKey(
141 'registration',
142 md5( json_encode( $this->queued + $versions ) )
144 $data = $cache->get( $key );
145 if ( $data ) {
146 $this->exportExtractedData( $data );
147 } else {
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 );
156 $this->queued = [];
160 * Get the current load queue. Not intended to be used
161 * outside of the installer.
163 * @return array
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() {
174 $this->queued = [];
178 * After this is called, no more extensions can be loaded
180 * @since 1.29
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
191 * @throws Exception
193 public function readFromQueue( array $queue ) {
194 global $wgVersion;
195 $autoloadClasses = [];
196 $autoloaderPaths = [];
197 $processor = new ExtensionProcessor();
198 $versionChecker = new VersionChecker( $wgVersion );
199 $extDependencies = [];
200 $incompatible = [];
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(
243 $incompatible,
244 $versionChecker
245 ->setLoadedExtensionsAndSkins( $data['credits'] )
246 ->checkArray( $extDependencies )
249 if ( $incompatible ) {
250 if ( count( $incompatible ) === 1 ) {
251 throw new Exception( $incompatible[0] );
252 } else {
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;
261 return $data;
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] );
271 } else {
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;
279 continue;
282 if ( !is_array( $GLOBALS[$key] ) || !is_array( $val ) ) {
283 // config setting that has already been overridden, don't set it
284 continue;
287 switch ( $mergeStrategy ) {
288 case 'array_merge_recursive':
289 $GLOBALS[$key] = array_merge_recursive( $GLOBALS[$key], $val );
290 break;
291 case 'array_replace_recursive':
292 $GLOBALS[$key] = array_replace_recursive( $GLOBALS[$key], $val );
293 break;
294 case 'array_plus_2d':
295 $GLOBALS[$key] = wfArrayPlus2d( $GLOBALS[$key], $val );
296 break;
297 case 'array_plus':
298 $GLOBALS[$key] += $val;
299 break;
300 case 'array_merge':
301 $GLOBALS[$key] = array_merge( $val, $GLOBALS[$key] );
302 break;
303 default:
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 ) {
312 require_once $path;
315 $this->loaded += $info['credits'];
316 if ( $info['attributes'] ) {
317 if ( !$this->attributes ) {
318 $this->attributes = $info['attributes'];
319 } else {
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
333 * those as well.
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
346 * @return bool
348 public function isLoaded( $name ) {
349 return isset( $this->loaded[$name] );
353 * @param string $name
354 * @return array
356 public function getAttribute( $name ) {
357 if ( isset( $this->attributes[$name] ) ) {
358 return $this->attributes[$name];
359 } else {
360 return [];
365 * Get information about all things
367 * @return array
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
386 * @param string $dir
387 * @param array $info
388 * @return array
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 ) {
394 return "$dir/$file";
395 }, $info['AutoloadClasses'] );
396 } else {
397 return [];