MediaWiki  1.29.1
ExtensionProcessor.php
Go to the documentation of this file.
1 <?php
2 
3 class ExtensionProcessor implements Processor {
4 
10  protected static $globalSettings = [
11  'ActionFilteredLogs',
12  'Actions',
13  'AddGroups',
14  'APIFormatModules',
15  'APIListModules',
16  'APIMetaModules',
17  'APIModules',
18  'APIPropModules',
19  'AuthManagerAutoConfig',
20  'AvailableRights',
21  'CentralIdLookupProviders',
22  'ChangeCredentialsBlacklist',
23  'ConfigRegistry',
24  'ContentHandlers',
25  'DefaultUserOptions',
26  'ExtensionEntryPointListFiles',
27  'ExtensionFunctions',
28  'FeedClasses',
29  'FileExtensions',
30  'FilterLogTypes',
31  'GrantPermissionGroups',
32  'GrantPermissions',
33  'GroupPermissions',
34  'GroupsAddToSelf',
35  'GroupsRemoveFromSelf',
36  'HiddenPrefs',
37  'ImplicitGroups',
38  'JobClasses',
39  'LogActions',
40  'LogActionsHandlers',
41  'LogHeaders',
42  'LogNames',
43  'LogRestrictions',
44  'LogTypes',
45  'MediaHandlers',
46  'PasswordPolicy',
47  'RateLimits',
48  'RecentChangesFlags',
49  'RemoveCredentialsBlacklist',
50  'RemoveGroups',
51  'ResourceLoaderLESSVars',
52  'ResourceLoaderSources',
53  'RevokePermissions',
54  'SessionProviders',
55  'SpecialPages',
56  'ValidSkinNames',
57  ];
58 
64  protected static $coreAttributes = [
65  'SkinOOUIThemes',
66  'TrackingCategories',
67  ];
68 
76  protected static $mergeStrategies = [
77  'wgAuthManagerAutoConfig' => 'array_plus_2d',
78  'wgCapitalLinkOverrides' => 'array_plus',
79  'wgExtensionCredits' => 'array_merge_recursive',
80  'wgExtraGenderNamespaces' => 'array_plus',
81  'wgGrantPermissions' => 'array_plus_2d',
82  'wgGroupPermissions' => 'array_plus_2d',
83  'wgHooks' => 'array_merge_recursive',
84  'wgNamespaceContentModels' => 'array_plus',
85  'wgNamespaceProtection' => 'array_plus',
86  'wgNamespacesWithSubpages' => 'array_plus',
87  'wgPasswordPolicy' => 'array_merge_recursive',
88  'wgRateLimits' => 'array_plus_2d',
89  'wgRevokePermissions' => 'array_plus_2d',
90  ];
91 
97  protected static $creditsAttributes = [
98  'name',
99  'namemsg',
100  'author',
101  'version',
102  'url',
103  'description',
104  'descriptionmsg',
105  'license-name',
106  ];
107 
114  protected static $notAttributes = [
115  'callback',
116  'Hooks',
117  'namespaces',
118  'ResourceFileModulePaths',
119  'ResourceModules',
120  'ResourceModuleSkinStyles',
121  'ExtensionMessagesFiles',
122  'MessagesDirs',
123  'type',
124  'config',
125  'config_prefix',
126  'ServiceWiringFiles',
127  'ParserTestFiles',
128  'AutoloadClasses',
129  'manifest_version',
130  'load_composer_autoloader',
131  ];
132 
140  protected $globals = [
141  'wgExtensionMessagesFiles' => [],
142  'wgMessagesDirs' => [],
143  ];
144 
150  protected $defines = [];
151 
158  protected $callbacks = [];
159 
163  protected $credits = [];
164 
171  protected $attributes = [];
172 
179  protected $extAttributes = [];
180 
187  public function extractInfo( $path, array $info, $version ) {
188  $dir = dirname( $path );
189  if ( $version === 2 ) {
190  $this->extractConfig2( $info, $dir );
191  } else {
192  // $version === 1
193  $this->extractConfig1( $info );
194  }
195  $this->extractHooks( $info );
196  $this->extractExtensionMessagesFiles( $dir, $info );
197  $this->extractMessagesDirs( $dir, $info );
198  $this->extractNamespaces( $info );
199  $this->extractResourceLoaderModules( $dir, $info );
200  $this->extractServiceWiringFiles( $dir, $info );
201  $this->extractParserTestFiles( $dir, $info );
202  $name = $this->extractCredits( $path, $info );
203  if ( isset( $info['callback'] ) ) {
204  $this->callbacks[$name] = $info['callback'];
205  }
206 
207  if ( $version === 2 ) {
208  $this->extractAttributes( $path, $info );
209  }
210 
211  foreach ( $info as $key => $val ) {
212  // If it's a global setting,
213  if ( in_array( $key, self::$globalSettings ) ) {
214  $this->storeToArray( $path, "wg$key", $val, $this->globals );
215  continue;
216  }
217  // Ignore anything that starts with a @
218  if ( $key[0] === '@' ) {
219  continue;
220  }
221 
222  if ( $version === 2 ) {
223  // Only whitelisted attributes are set
224  if ( in_array( $key, self::$coreAttributes ) ) {
225  $this->storeToArray( $path, $key, $val, $this->attributes );
226  }
227  } else {
228  // version === 1
229  if ( !in_array( $key, self::$notAttributes )
230  && !in_array( $key, self::$creditsAttributes )
231  ) {
232  // If it's not blacklisted, it's an attribute
233  $this->storeToArray( $path, $key, $val, $this->attributes );
234  }
235  }
236 
237  }
238  }
239 
244  protected function extractAttributes( $path, array $info ) {
245  if ( isset( $info['attributes'] ) ) {
246  foreach ( $info['attributes'] as $extName => $value ) {
247  $this->storeToArray( $path, $extName, $value, $this->extAttributes );
248  }
249  }
250  }
251 
252  public function getExtractedInfo() {
253  // Make sure the merge strategies are set
254  foreach ( $this->globals as $key => $val ) {
255  if ( isset( self::$mergeStrategies[$key] ) ) {
256  $this->globals[$key][ExtensionRegistry::MERGE_STRATEGY] = self::$mergeStrategies[$key];
257  }
258  }
259 
260  // Merge $this->extAttributes into $this->attributes depending on what is loaded
261  foreach ( $this->extAttributes as $extName => $value ) {
262  // Only set the attribute if $extName is loaded (and hence present in credits)
263  if ( isset( $this->credits[$extName] ) ) {
264  foreach ( $value as $attrName => $attrValue ) {
265  $this->storeToArray(
266  '', // Don't provide a path since it's impossible to generate an error here
267  $extName . $attrName,
268  $attrValue,
269  $this->attributes
270  );
271  }
272  unset( $this->extAttributes[$extName] );
273  }
274  }
275 
276  return [
277  'globals' => $this->globals,
278  'defines' => $this->defines,
279  'callbacks' => $this->callbacks,
280  'credits' => $this->credits,
281  'attributes' => $this->attributes,
282  ];
283  }
284 
285  public function getRequirements( array $info ) {
286  return isset( $info['requires'] ) ? $info['requires'] : [];
287  }
288 
289  protected function extractHooks( array $info ) {
290  if ( isset( $info['Hooks'] ) ) {
291  foreach ( $info['Hooks'] as $name => $value ) {
292  if ( is_array( $value ) ) {
293  foreach ( $value as $callback ) {
294  $this->globals['wgHooks'][$name][] = $callback;
295  }
296  } else {
297  $this->globals['wgHooks'][$name][] = $value;
298  }
299  }
300  }
301  }
302 
308  protected function extractNamespaces( array $info ) {
309  if ( isset( $info['namespaces'] ) ) {
310  foreach ( $info['namespaces'] as $ns ) {
311  $id = $ns['id'];
312  $this->defines[$ns['constant']] = $id;
313  if ( !( isset( $ns['conditional'] ) && $ns['conditional'] ) ) {
314  // If it is not conditional, register it
315  $this->attributes['ExtensionNamespaces'][$id] = $ns['name'];
316  }
317  if ( isset( $ns['gender'] ) ) {
318  $this->globals['wgExtraGenderNamespaces'][$id] = $ns['gender'];
319  }
320  if ( isset( $ns['subpages'] ) && $ns['subpages'] ) {
321  $this->globals['wgNamespacesWithSubpages'][$id] = true;
322  }
323  if ( isset( $ns['content'] ) && $ns['content'] ) {
324  $this->globals['wgContentNamespaces'][] = $id;
325  }
326  if ( isset( $ns['defaultcontentmodel'] ) ) {
327  $this->globals['wgNamespaceContentModels'][$id] = $ns['defaultcontentmodel'];
328  }
329  if ( isset( $ns['protection'] ) ) {
330  $this->globals['wgNamespaceProtection'][$id] = $ns['protection'];
331  }
332  if ( isset( $ns['capitallinkoverride'] ) ) {
333  $this->globals['wgCapitalLinkOverrides'][$id] = $ns['capitallinkoverride'];
334  }
335  }
336  }
337  }
338 
339  protected function extractResourceLoaderModules( $dir, array $info ) {
340  $defaultPaths = isset( $info['ResourceFileModulePaths'] )
341  ? $info['ResourceFileModulePaths']
342  : false;
343  if ( isset( $defaultPaths['localBasePath'] ) ) {
344  if ( $defaultPaths['localBasePath'] === '' ) {
345  // Avoid double slashes (e.g. /extensions/Example//path)
346  $defaultPaths['localBasePath'] = $dir;
347  } else {
348  $defaultPaths['localBasePath'] = "$dir/{$defaultPaths['localBasePath']}";
349  }
350  }
351 
352  foreach ( [ 'ResourceModules', 'ResourceModuleSkinStyles' ] as $setting ) {
353  if ( isset( $info[$setting] ) ) {
354  foreach ( $info[$setting] as $name => $data ) {
355  if ( isset( $data['localBasePath'] ) ) {
356  if ( $data['localBasePath'] === '' ) {
357  // Avoid double slashes (e.g. /extensions/Example//path)
358  $data['localBasePath'] = $dir;
359  } else {
360  $data['localBasePath'] = "$dir/{$data['localBasePath']}";
361  }
362  }
363  if ( $defaultPaths ) {
364  $data += $defaultPaths;
365  }
366  $this->globals["wg$setting"][$name] = $data;
367  }
368  }
369  }
370  }
371 
372  protected function extractExtensionMessagesFiles( $dir, array $info ) {
373  if ( isset( $info['ExtensionMessagesFiles'] ) ) {
374  $this->globals["wgExtensionMessagesFiles"] += array_map( function( $file ) use ( $dir ) {
375  return "$dir/$file";
376  }, $info['ExtensionMessagesFiles'] );
377  }
378  }
379 
387  protected function extractMessagesDirs( $dir, array $info ) {
388  if ( isset( $info['MessagesDirs'] ) ) {
389  foreach ( $info['MessagesDirs'] as $name => $files ) {
390  foreach ( (array)$files as $file ) {
391  $this->globals["wgMessagesDirs"][$name][] = "$dir/$file";
392  }
393  }
394  }
395  }
396 
403  protected function extractCredits( $path, array $info ) {
404  $credits = [
405  'path' => $path,
406  'type' => isset( $info['type'] ) ? $info['type'] : 'other',
407  ];
408  foreach ( self::$creditsAttributes as $attr ) {
409  if ( isset( $info[$attr] ) ) {
410  $credits[$attr] = $info[$attr];
411  }
412  }
413 
414  $name = $credits['name'];
415 
416  // If someone is loading the same thing twice, throw
417  // a nice error (T121493)
418  if ( isset( $this->credits[$name] ) ) {
419  $firstPath = $this->credits[$name]['path'];
420  $secondPath = $credits['path'];
421  throw new Exception( "It was attempted to load $name twice, from $firstPath and $secondPath." );
422  }
423 
424  $this->credits[$name] = $credits;
425  $this->globals['wgExtensionCredits'][$credits['type']][] = $credits;
426 
427  return $name;
428  }
429 
436  protected function extractConfig1( array $info ) {
437  if ( isset( $info['config'] ) ) {
438  if ( isset( $info['config']['_prefix'] ) ) {
439  $prefix = $info['config']['_prefix'];
440  unset( $info['config']['_prefix'] );
441  } else {
442  $prefix = 'wg';
443  }
444  foreach ( $info['config'] as $key => $val ) {
445  if ( $key[0] !== '@' ) {
446  $this->globals["$prefix$key"] = $val;
447  }
448  }
449  }
450  }
451 
459  protected function extractConfig2( array $info, $dir ) {
460  if ( isset( $info['config_prefix'] ) ) {
461  $prefix = $info['config_prefix'];
462  } else {
463  $prefix = 'wg';
464  }
465  if ( isset( $info['config'] ) ) {
466  foreach ( $info['config'] as $key => $data ) {
467  $value = $data['value'];
468  if ( isset( $data['merge_strategy'] ) ) {
469  $value[ExtensionRegistry::MERGE_STRATEGY] = $data['merge_strategy'];
470  }
471  if ( isset( $data['path'] ) && $data['path'] ) {
472  $value = "$dir/$value";
473  }
474  $this->globals["$prefix$key"] = $value;
475  }
476  }
477  }
478 
479  protected function extractServiceWiringFiles( $dir, array $info ) {
480  if ( isset( $info['ServiceWiringFiles'] ) ) {
481  foreach ( $info['ServiceWiringFiles'] as $path ) {
482  $this->globals['wgServiceWiringFiles'][] = "$dir/$path";
483  }
484  }
485  }
486 
487  protected function extractParserTestFiles( $dir, array $info ) {
488  if ( isset( $info['ParserTestFiles'] ) ) {
489  foreach ( $info['ParserTestFiles'] as $path ) {
490  $this->globals['wgParserTestFiles'][] = "$dir/$path";
491  }
492  }
493  }
494 
502  protected function storeToArray( $path, $name, $value, &$array ) {
503  if ( !is_array( $value ) ) {
504  throw new InvalidArgumentException( "The value for '$name' should be an array (from $path)" );
505  }
506  if ( isset( $array[$name] ) ) {
507  $array[$name] = array_merge_recursive( $array[$name], $value );
508  } else {
509  $array[$name] = $value;
510  }
511  }
512 
513  public function getExtraAutoloaderPaths( $dir, array $info ) {
514  $paths = [];
515  if ( isset( $info['load_composer_autoloader'] ) && $info['load_composer_autoloader'] === true ) {
516  $path = "$dir/vendor/autoload.php";
517  if ( file_exists( $path ) ) {
518  $paths[] = $path;
519  }
520  }
521  return $paths;
522  }
523 }
ExtensionProcessor\getRequirements
getRequirements(array $info)
Get the requirements for the provided info.
Definition: ExtensionProcessor.php:285
ExtensionProcessor\extractParserTestFiles
extractParserTestFiles( $dir, array $info)
Definition: ExtensionProcessor.php:487
ExtensionProcessor\$coreAttributes
static string[] $coreAttributes
Top-level attributes that come from MW core.
Definition: ExtensionProcessor.php:64
ExtensionProcessor\$callbacks
callable[] $callbacks
Things to be called once registration of these extensions are done keyed by the name of the extension...
Definition: ExtensionProcessor.php:158
ExtensionProcessor\$mergeStrategies
static array $mergeStrategies
Mapping of global settings to their specific merge strategies.
Definition: ExtensionProcessor.php:76
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
ExtensionProcessor\extractResourceLoaderModules
extractResourceLoaderModules( $dir, array $info)
Definition: ExtensionProcessor.php:339
ExtensionProcessor\extractConfig1
extractConfig1(array $info)
Set configuration settings for manifest_version == 1.
Definition: ExtensionProcessor.php:436
ExtensionProcessor\storeToArray
storeToArray( $path, $name, $value, &$array)
Definition: ExtensionProcessor.php:502
Processor
Processors read associated arrays and register whatever is required.
Definition: Processor.php:9
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
ExtensionProcessor\extractExtensionMessagesFiles
extractExtensionMessagesFiles( $dir, array $info)
Definition: ExtensionProcessor.php:372
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
ExtensionProcessor\extractHooks
extractHooks(array $info)
Definition: ExtensionProcessor.php:289
ExtensionProcessor
Definition: ExtensionProcessor.php:3
ExtensionProcessor\extractServiceWiringFiles
extractServiceWiringFiles( $dir, array $info)
Definition: ExtensionProcessor.php:479
ExtensionProcessor\extractConfig2
extractConfig2(array $info, $dir)
Set configuration settings for manifest_version == 2.
Definition: ExtensionProcessor.php:459
ExtensionProcessor\$globals
array $globals
Stuff that is going to be set to $GLOBALS.
Definition: ExtensionProcessor.php:140
$dir
$dir
Definition: Autoload.php:8
ExtensionProcessor\getExtraAutoloaderPaths
getExtraAutoloaderPaths( $dir, array $info)
Get the path for additional autoloaders, e.g.
Definition: ExtensionProcessor.php:513
$value
$value
Definition: styleTest.css.php:45
ExtensionProcessor\$credits
array $credits
Definition: ExtensionProcessor.php:163
globals
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining globals
Definition: globals.txt:25
ExtensionProcessor\extractNamespaces
extractNamespaces(array $info)
Register namespaces with the appropriate global settings.
Definition: ExtensionProcessor.php:308
ExtensionProcessor\getExtractedInfo
getExtractedInfo()
Definition: ExtensionProcessor.php:252
ExtensionProcessor\$extAttributes
array $extAttributes
Extension attributes, keyed by name => settings.
Definition: ExtensionProcessor.php:179
ExtensionProcessor\$globalSettings
static array $globalSettings
Keys that should be set to $GLOBALS.
Definition: ExtensionProcessor.php:10
ExtensionProcessor\$creditsAttributes
static array $creditsAttributes
Keys that are part of the extension credits.
Definition: ExtensionProcessor.php:97
ExtensionProcessor\extractAttributes
extractAttributes( $path, array $info)
Definition: ExtensionProcessor.php:244
ExtensionProcessor\extractCredits
extractCredits( $path, array $info)
Definition: ExtensionProcessor.php:403
$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
ExtensionProcessor\extractInfo
extractInfo( $path, array $info, $version)
Definition: ExtensionProcessor.php:187
ExtensionProcessor\$defines
array $defines
Things that should be define()'d.
Definition: ExtensionProcessor.php:150
ExtensionProcessor\$attributes
array $attributes
Any thing else in the $info that hasn't already been processed.
Definition: ExtensionProcessor.php:171
ExtensionProcessor\$notAttributes
static array $notAttributes
Things that are not 'attributes', but are not in $globalSettings or $creditsAttributes.
Definition: ExtensionProcessor.php:114
ExtensionProcessor\extractMessagesDirs
extractMessagesDirs( $dir, array $info)
Set message-related settings, which need to be expanded to use absolute paths.
Definition: ExtensionProcessor.php:387
array
the array() calling protocol came about after MediaWiki 1.4rc1.