MediaWiki  1.30.1
ExtensionRegistry.php
Go to the documentation of this file.
1 <?php
2 
4 
15 
19  const MEDIAWIKI_CORE = 'MediaWiki';
20 
24  const MANIFEST_VERSION = 2;
25 
30 
34  const CACHE_VERSION = 6;
35 
41  const MERGE_STRATEGY = '_merge_strategy';
42 
48  private $loaded = [];
49 
55  protected $queued = [];
56 
62  private $finished = false;
63 
70  protected $attributes = [];
71 
75  private static $instance;
76 
80  public static function getInstance() {
81  if ( self::$instance === null ) {
82  self::$instance = new self();
83  }
84 
85  return self::$instance;
86  }
87 
91  public function queue( $path ) {
93 
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!" );
100  }
101 
102  if ( $mtime === false ) {
103  $err = error_get_last();
104  throw new Exception( "Couldn't stat $path: {$err['message']}" );
105  }
106  }
107  $this->queued[$path] = $mtime;
108  }
109 
114  public function loadFromQueue() {
116  if ( !$this->queued ) {
117  return;
118  }
119 
120  if ( $this->finished ) {
121  throw new MWException(
122  "The following paths tried to load late: "
123  . implode( ', ', array_keys( $this->queued ) )
124  );
125  }
126 
127  // A few more things to vary the cache on
128  $versions = [
129  'registration' => self::CACHE_VERSION,
130  'mediawiki' => $wgVersion
131  ];
132 
133  // We use a try/catch because we don't want to fail here
134  // if $wgObjectCaches is not configured properly for APC setup
135  try {
136  $cache = MediaWikiServices::getInstance()->getLocalServerObjectCache();
137  } catch ( MWException $e ) {
138  $cache = new EmptyBagOStuff();
139  }
140  // See if this queue is in APC
141  $key = $cache->makeKey(
142  'registration',
143  md5( json_encode( $this->queued + $versions ) )
144  );
145  $data = $cache->get( $key );
146  if ( $data ) {
147  $this->exportExtractedData( $data );
148  } else {
149  $data = $this->readFromQueue( $this->queued );
150  $this->exportExtractedData( $data );
151  // Do this late since we don't want to extract it since we already
152  // did that, but it should be cached
153  $data['globals']['wgAutoloadClasses'] += $data['autoload'];
154  unset( $data['autoload'] );
155  if ( !( $data['warnings'] && $wgDevelopmentWarnings ) ) {
156  // If there were no warnings that were shown, cache it
157  $cache->set( $key, $data, 60 * 60 * 24 );
158  }
159  }
160  $this->queued = [];
161  }
162 
169  public function getQueue() {
170  return $this->queued;
171  }
172 
177  public function clearQueue() {
178  $this->queued = [];
179  }
180 
186  public function finish() {
187  $this->finished = true;
188  }
189 
197  public function readFromQueue( array $queue ) {
199  $autoloadClasses = [];
200  $autoloaderPaths = [];
201  $processor = new ExtensionProcessor();
202  $versionChecker = new VersionChecker( $wgVersion );
203  $extDependencies = [];
204  $incompatible = [];
205  $warnings = false;
206  foreach ( $queue as $path => $mtime ) {
207  $json = file_get_contents( $path );
208  if ( $json === false ) {
209  throw new Exception( "Unable to read $path, does it exist?" );
210  }
211  $info = json_decode( $json, /* $assoc = */ true );
212  if ( !is_array( $info ) ) {
213  throw new Exception( "$path is not a valid JSON file." );
214  }
215 
216  if ( !isset( $info['manifest_version'] ) ) {
217  wfDeprecated(
218  "{$info['name']}'s extension.json or skin.json does not have manifest_version",
219  '1.29'
220  );
221  $warnings = true;
222  // For backwards-compatability, assume a version of 1
223  $info['manifest_version'] = 1;
224  }
225  $version = $info['manifest_version'];
226  if ( $version < self::OLDEST_MANIFEST_VERSION || $version > self::MANIFEST_VERSION ) {
227  $incompatible[] = "$path: unsupported manifest_version: {$version}";
228  }
229 
230  $autoload = $this->processAutoLoader( dirname( $path ), $info );
231  // Set up the autoloader now so custom processors will work
232  $GLOBALS['wgAutoloadClasses'] += $autoload;
233  $autoloadClasses += $autoload;
234 
235  // get all requirements/dependencies for this extension
236  $requires = $processor->getRequirements( $info );
237 
238  // validate the information needed and add the requirements
239  if ( is_array( $requires ) && $requires && isset( $info['name'] ) ) {
240  $extDependencies[$info['name']] = $requires;
241  }
242 
243  // Get extra paths for later inclusion
244  $autoloaderPaths = array_merge( $autoloaderPaths,
245  $processor->getExtraAutoloaderPaths( dirname( $path ), $info ) );
246  // Compatible, read and extract info
247  $processor->extractInfo( $path, $info, $version );
248  }
249  $data = $processor->getExtractedInfo();
250  $data['warnings'] = $warnings;
251 
252  // check for incompatible extensions
253  $incompatible = array_merge(
254  $incompatible,
255  $versionChecker
256  ->setLoadedExtensionsAndSkins( $data['credits'] )
257  ->checkArray( $extDependencies )
258  );
259 
260  if ( $incompatible ) {
261  if ( count( $incompatible ) === 1 ) {
262  throw new Exception( $incompatible[0] );
263  } else {
264  throw new Exception( implode( "\n", $incompatible ) );
265  }
266  }
267 
268  // Need to set this so we can += to it later
269  $data['globals']['wgAutoloadClasses'] = [];
270  $data['autoload'] = $autoloadClasses;
271  $data['autoloaderPaths'] = $autoloaderPaths;
272  return $data;
273  }
274 
275  protected function exportExtractedData( array $info ) {
276  foreach ( $info['globals'] as $key => $val ) {
277  // If a merge strategy is set, read it and remove it from the value
278  // so it doesn't accidentally end up getting set.
279  if ( is_array( $val ) && isset( $val[self::MERGE_STRATEGY] ) ) {
280  $mergeStrategy = $val[self::MERGE_STRATEGY];
281  unset( $val[self::MERGE_STRATEGY] );
282  } else {
283  $mergeStrategy = 'array_merge';
284  }
285 
286  // Optimistic: If the global is not set, or is an empty array, replace it entirely.
287  // Will be O(1) performance.
288  if ( !isset( $GLOBALS[$key] ) || ( is_array( $GLOBALS[$key] ) && !$GLOBALS[$key] ) ) {
289  $GLOBALS[$key] = $val;
290  continue;
291  }
292 
293  if ( !is_array( $GLOBALS[$key] ) || !is_array( $val ) ) {
294  // config setting that has already been overridden, don't set it
295  continue;
296  }
297 
298  switch ( $mergeStrategy ) {
299  case 'array_merge_recursive':
300  $GLOBALS[$key] = array_merge_recursive( $GLOBALS[$key], $val );
301  break;
302  case 'array_replace_recursive':
303  $GLOBALS[$key] = array_replace_recursive( $GLOBALS[$key], $val );
304  break;
305  case 'array_plus_2d':
306  $GLOBALS[$key] = wfArrayPlus2d( $GLOBALS[$key], $val );
307  break;
308  case 'array_plus':
309  $GLOBALS[$key] += $val;
310  break;
311  case 'array_merge':
312  $GLOBALS[$key] = array_merge( $val, $GLOBALS[$key] );
313  break;
314  default:
315  throw new UnexpectedValueException( "Unknown merge strategy '$mergeStrategy'" );
316  }
317  }
318 
319  foreach ( $info['defines'] as $name => $val ) {
320  define( $name, $val );
321  }
322  foreach ( $info['autoloaderPaths'] as $path ) {
323  require_once $path;
324  }
325 
326  $this->loaded += $info['credits'];
327  if ( $info['attributes'] ) {
328  if ( !$this->attributes ) {
329  $this->attributes = $info['attributes'];
330  } else {
331  $this->attributes = array_merge_recursive( $this->attributes, $info['attributes'] );
332  }
333  }
334 
335  foreach ( $info['callbacks'] as $name => $cb ) {
336  if ( !is_callable( $cb ) ) {
337  if ( is_array( $cb ) ) {
338  $cb = '[ ' . implode( ', ', $cb ) . ' ]';
339  }
340  throw new UnexpectedValueException( "callback '$cb' is not callable" );
341  }
342  call_user_func( $cb, $info['credits'][$name] );
343  }
344  }
345 
354  public function load( $path ) {
355  $this->loadFromQueue(); // First clear the queue
356  $this->queue( $path );
357  $this->loadFromQueue();
358  }
359 
365  public function isLoaded( $name ) {
366  return isset( $this->loaded[$name] );
367  }
368 
373  public function getAttribute( $name ) {
374  if ( isset( $this->attributes[$name] ) ) {
375  return $this->attributes[$name];
376  } else {
377  return [];
378  }
379  }
380 
386  public function getAllThings() {
387  return $this->loaded;
388  }
389 
396  protected function markLoaded( $name, array $credits ) {
397  $this->loaded[$name] = $credits;
398  }
399 
407  protected function processAutoLoader( $dir, array $info ) {
408  if ( isset( $info['AutoloadClasses'] ) ) {
409  // Make paths absolute, relative to the JSON file
410  return array_map( function ( $file ) use ( $dir ) {
411  return "$dir/$file";
412  }, $info['AutoloadClasses'] );
413  } else {
414  return [];
415  }
416  }
417 }
ExtensionRegistry\getQueue
getQueue()
Get the current load queue.
Definition: ExtensionRegistry.php:169
ExtensionRegistry\$finished
bool $finished
Whether we are done loading things.
Definition: ExtensionRegistry.php:62
ExtensionRegistry\MANIFEST_VERSION
const MANIFEST_VERSION
Version of the highest supported manifest version.
Definition: ExtensionRegistry.php:24
ExtensionRegistry\queue
queue( $path)
Definition: ExtensionRegistry.php:91
EmptyBagOStuff
A BagOStuff object with no objects in it.
Definition: EmptyBagOStuff.php:29
wfArrayPlus2d
wfArrayPlus2d(array $baseArray, array $newValues)
Merges two (possibly) 2 dimensional arrays into the target array ($baseArray).
Definition: GlobalFunctions.php:3483
captcha-old.count
count
Definition: captcha-old.py:249
ExtensionRegistry\exportExtractedData
exportExtractedData(array $info)
Definition: ExtensionRegistry.php:275
ExtensionRegistry\processAutoLoader
processAutoLoader( $dir, array $info)
Register classes with the autoloader.
Definition: ExtensionRegistry.php:407
ExtensionRegistry
ExtensionRegistry class.
Definition: ExtensionRegistry.php:14
$wgVersion
$wgVersion
MediaWiki version number.
Definition: DefaultSettings.php:78
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
ExtensionRegistry\getAllThings
getAllThings()
Get information about all things.
Definition: ExtensionRegistry.php:386
ExtensionRegistry\$loaded
array $loaded
Array of loaded things, keyed by name, values are credits information.
Definition: ExtensionRegistry.php:48
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
ExtensionRegistry\clearQueue
clearQueue()
Clear the current load queue.
Definition: ExtensionRegistry.php:177
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ExtensionRegistry\MERGE_STRATEGY
const MERGE_STRATEGY
Special key that defines the merge strategy.
Definition: ExtensionRegistry.php:41
ExtensionRegistry\getInstance
static getInstance()
Definition: ExtensionRegistry.php:80
ExtensionProcessor
Definition: ExtensionProcessor.php:3
ExtensionRegistry\isLoaded
isLoaded( $name)
Whether a thing has been loaded.
Definition: ExtensionRegistry.php:365
ExtensionRegistry\CACHE_VERSION
const CACHE_VERSION
Bump whenever the registration cache needs resetting.
Definition: ExtensionRegistry.php:34
MWException
MediaWiki exception.
Definition: MWException.php:26
ExtensionRegistry\$attributes
array $attributes
Items in the JSON file that aren't being set as globals.
Definition: ExtensionRegistry.php:70
wfDeprecated
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Definition: GlobalFunctions.php:1176
ExtensionRegistry\load
load( $path)
Loads and processes the given JSON file without delay.
Definition: ExtensionRegistry.php:354
$queue
$queue
Definition: mergeMessageFileList.php:161
ExtensionRegistry\finish
finish()
After this is called, no more extensions can be loaded.
Definition: ExtensionRegistry.php:186
ExtensionRegistry\loadFromQueue
loadFromQueue()
Definition: ExtensionRegistry.php:114
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
$GLOBALS
$GLOBALS['wgAutoloadClasses']['LocalisationUpdate']
Definition: Autoload.php:10
$dir
$dir
Definition: Autoload.php:8
ExtensionRegistry\OLDEST_MANIFEST_VERSION
const OLDEST_MANIFEST_VERSION
Version of the oldest supported manifest version.
Definition: ExtensionRegistry.php:29
ExtensionRegistry\MEDIAWIKI_CORE
const MEDIAWIKI_CORE
"requires" key that applies to MediaWiki core/$wgVersion
Definition: ExtensionRegistry.php:19
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2141
ExtensionRegistry\readFromQueue
readFromQueue(array $queue)
Process a queue of extensions and return their extracted data.
Definition: ExtensionRegistry.php:197
ExtensionRegistry\$queued
array $queued
List of paths that should be loaded.
Definition: ExtensionRegistry.php:55
$wgDevelopmentWarnings
$wgDevelopmentWarnings
If set to true MediaWiki will throw notices for some possible error conditions and for deprecated fun...
Definition: DefaultSettings.php:6298
VersionChecker
Provides functions to check a set of extensions with dependencies against a set of loaded extensions ...
Definition: VersionChecker.php:32
$cache
$cache
Definition: mcc.php:33
$path
$path
Definition: NoLocalSettings.php:26
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
$wgExtensionInfoMTime
int bool $wgExtensionInfoMTime
When loading extensions through the extension registration system, this can be used to invalidate the...
Definition: DefaultSettings.php:2634
ExtensionRegistry\getAttribute
getAttribute( $name)
Definition: ExtensionRegistry.php:373
ExtensionRegistry\markLoaded
markLoaded( $name, array $credits)
Mark a thing as loaded.
Definition: ExtensionRegistry.php:396
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
ExtensionRegistry\$instance
static ExtensionRegistry $instance
Definition: ExtensionRegistry.php:75
array
the array() calling protocol came about after MediaWiki 1.4rc1.