3 class ExtensionProcessor
implements Processor
{
6 * Keys that should be set to $GLOBALS
10 protected static $globalSettings = array(
11 'ResourceLoaderSources',
12 'ResourceLoaderLESSVars',
13 'ResourceLoaderLESSImportPaths',
20 'GroupsRemoveFromSelf',
26 'CentralIdLookupProviders',
31 'ExtensionEntryPointListFiles',
51 * Mapping of global settings to their specific merge strategies.
53 * @see ExtensionRegistry::exportExtractedData
54 * @see getExtractedInfo
57 protected static $mergeStrategies = array(
58 'wgGroupPermissions' => 'array_plus_2d',
59 'wgRevokePermissions' => 'array_plus_2d',
60 'wgHooks' => 'array_merge_recursive',
61 'wgExtensionCredits' => 'array_merge_recursive',
62 'wgExtraGenderNamespaces' => 'array_plus',
63 'wgNamespacesWithSubpages' => 'array_plus',
64 'wgNamespaceContentModels' => 'array_plus',
65 'wgNamespaceProtection' => 'array_plus',
66 'wgCapitalLinkOverrides' => 'array_plus',
70 * Keys that are part of the extension credits
74 protected static $creditsAttributes = array(
86 * Things that are not 'attributes', but are not in
87 * $globalSettings or $creditsAttributes.
91 protected static $notAttributes = array(
95 'ResourceFileModulePaths',
97 'ResourceModuleSkinStyles',
98 'ExtensionMessagesFiles',
105 'load_composer_autoloader',
109 * Stuff that is going to be set to $GLOBALS
111 * Some keys are pre-set to arrays so we can += to them
115 protected $globals = array(
116 'wgExtensionMessagesFiles' => array(),
117 'wgMessagesDirs' => array(),
121 * Things that should be define()'d
125 protected $defines = array();
128 * Things to be called once registration of these extensions are done
132 protected $callbacks = array();
137 protected $credits = array();
140 * Any thing else in the $info that hasn't
141 * already been processed
145 protected $attributes = array();
148 * @param string $path
150 * @param int $version manifest_version for info
153 public function extractInfo( $path, array $info, $version ) {
154 $this->extractConfig( $info );
155 $this->extractHooks( $info );
156 $dir = dirname( $path );
157 $this->extractExtensionMessagesFiles( $dir, $info );
158 $this->extractMessagesDirs( $dir, $info );
159 $this->extractNamespaces( $info );
160 $this->extractResourceLoaderModules( $dir, $info );
161 $this->extractParserTestFiles( $dir, $info );
162 if ( isset( $info['callback'] ) ) {
163 $this->callbacks
[] = $info['callback'];
166 $this->extractCredits( $path, $info );
167 foreach ( $info as $key => $val ) {
168 if ( in_array( $key, self
::$globalSettings ) ) {
169 $this->storeToArray( "wg$key", $val, $this->globals
);
170 // Ignore anything that starts with a @
171 } elseif ( $key[0] !== '@' && !in_array( $key, self
::$notAttributes )
172 && !in_array( $key, self
::$creditsAttributes )
174 $this->storeToArray( $key, $val, $this->attributes
);
179 public function getExtractedInfo() {
180 // Make sure the merge strategies are set
181 foreach ( $this->globals
as $key => $val ) {
182 if ( isset( self
::$mergeStrategies[$key] ) ) {
183 $this->globals
[$key][ExtensionRegistry
::MERGE_STRATEGY
] = self
::$mergeStrategies[$key];
188 'globals' => $this->globals
,
189 'defines' => $this->defines
,
190 'callbacks' => $this->callbacks
,
191 'credits' => $this->credits
,
192 'attributes' => $this->attributes
,
196 public function getRequirements( array $info ) {
197 $requirements = array();
198 $key = ExtensionRegistry
::MEDIAWIKI_CORE
;
199 if ( isset( $info['requires'][$key] ) ) {
200 $requirements[$key] = $info['requires'][$key];
203 return $requirements;
206 protected function extractHooks( array $info ) {
207 if ( isset( $info['Hooks'] ) ) {
208 foreach ( $info['Hooks'] as $name => $value ) {
209 foreach ( (array)$value as $callback ) {
210 $this->globals
['wgHooks'][$name][] = $callback;
217 * Register namespaces with the appropriate global settings
221 protected function extractNamespaces( array $info ) {
222 if ( isset( $info['namespaces'] ) ) {
223 foreach ( $info['namespaces'] as $ns ) {
225 $this->defines
[$ns['constant']] = $id;
226 $this->attributes
['ExtensionNamespaces'][$id] = $ns['name'];
227 if ( isset( $ns['gender'] ) ) {
228 $this->globals
['wgExtraGenderNamespaces'][$id] = $ns['gender'];
230 if ( isset( $ns['subpages'] ) && $ns['subpages'] ) {
231 $this->globals
['wgNamespacesWithSubpages'][$id] = true;
233 if ( isset( $ns['content'] ) && $ns['content'] ) {
234 $this->globals
['wgContentNamespaces'][] = $id;
236 if ( isset( $ns['defaultcontentmodel'] ) ) {
237 $this->globals
['wgNamespaceContentModels'][$id] = $ns['defaultcontentmodel'];
239 if ( isset( $ns['protection'] ) ) {
240 $this->globals
['wgNamespaceProtection'][$id] = $ns['protection'];
242 if ( isset( $ns['capitallinkoverride'] ) ) {
243 $this->globals
['wgCapitalLinkOverrides'][$id] = $ns['capitallinkoverride'];
249 protected function extractResourceLoaderModules( $dir, array $info ) {
250 $defaultPaths = isset( $info['ResourceFileModulePaths'] )
251 ?
$info['ResourceFileModulePaths']
253 if ( isset( $defaultPaths['localBasePath'] ) ) {
254 $defaultPaths['localBasePath'] = "$dir/{$defaultPaths['localBasePath']}";
257 foreach ( array( 'ResourceModules', 'ResourceModuleSkinStyles' ) as $setting ) {
258 if ( isset( $info[$setting] ) ) {
259 foreach ( $info[$setting] as $name => $data ) {
260 if ( isset( $data['localBasePath'] ) ) {
261 $data['localBasePath'] = "$dir/{$data['localBasePath']}";
263 if ( $defaultPaths ) {
264 $data +
= $defaultPaths;
266 $this->globals
["wg$setting"][$name] = $data;
272 protected function extractExtensionMessagesFiles( $dir, array $info ) {
273 if ( isset( $info['ExtensionMessagesFiles'] ) ) {
274 $this->globals
["wgExtensionMessagesFiles"] +
= array_map( function( $file ) use ( $dir ) {
276 }, $info['ExtensionMessagesFiles'] );
281 * Set message-related settings, which need to be expanded to use
287 protected function extractMessagesDirs( $dir, array $info ) {
288 if ( isset( $info['MessagesDirs'] ) ) {
289 foreach ( $info['MessagesDirs'] as $name => $files ) {
290 foreach ( (array)$files as $file ) {
291 $this->globals
["wgMessagesDirs"][$name][] = "$dir/$file";
298 * @param string $path
302 protected function extractCredits( $path, array $info ) {
305 'type' => isset( $info['type'] ) ?
$info['type'] : 'other',
307 foreach ( self
::$creditsAttributes as $attr ) {
308 if ( isset( $info[$attr] ) ) {
309 $credits[$attr] = $info[$attr];
313 $name = $credits['name'];
315 // If someone is loading the same thing twice, throw
316 // a nice error (T121493)
317 if ( isset( $this->credits
[$name] ) ) {
318 $firstPath = $this->credits
[$name]['path'];
319 $secondPath = $credits['path'];
320 throw new Exception( "It was attempted to load $name twice, from $firstPath and $secondPath." );
323 $this->credits
[$name] = $credits;
324 $this->globals
['wgExtensionCredits'][$credits['type']][] = $credits;
328 * Set configuration settings
329 * @todo In the future, this should be done via Config interfaces
333 protected function extractConfig( array $info ) {
334 if ( isset( $info['config'] ) ) {
335 if ( isset( $info['config']['_prefix'] ) ) {
336 $prefix = $info['config']['_prefix'];
337 unset( $info['config']['_prefix'] );
341 foreach ( $info['config'] as $key => $val ) {
342 if ( $key[0] !== '@' ) {
343 $this->globals
["$prefix$key"] = $val;
349 protected function extractParserTestFiles( $dir, array $info ) {
350 if ( isset( $info['ParserTestFiles'] ) ) {
351 foreach ( $info['ParserTestFiles'] as $path ) {
352 $this->globals
['wgParserTestFiles'][] = "$dir/$path";
358 * @param string $name
359 * @param array $value
360 * @param array &$array
361 * @throws InvalidArgumentException
363 protected function storeToArray( $name, $value, &$array ) {
364 if ( !is_array( $value ) ) {
365 throw new InvalidArgumentException( "The value for '$name' should be an array" );
367 if ( isset( $array[$name] ) ) {
368 $array[$name] = array_merge_recursive( $array[$name], $value );
370 $array[$name] = $value;
374 public function getExtraAutoloaderPaths( $dir, array $info ) {
376 if ( isset( $info['load_composer_autoloader'] ) && $info['load_composer_autoloader'] === true ) {
377 $path = "$dir/vendor/autoload.php";
378 if ( file_exists( $path ) ) {