123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643 |
- <?php
- class ExtensionProcessor implements Processor {
- /**
- * Keys that should be set to $GLOBALS
- *
- * @var array
- */
- protected static $globalSettings = [
- 'ActionFilteredLogs',
- 'Actions',
- 'AddGroups',
- 'APIFormatModules',
- 'APIListModules',
- 'APIMetaModules',
- 'APIModules',
- 'APIPropModules',
- 'AuthManagerAutoConfig',
- 'AvailableRights',
- 'CentralIdLookupProviders',
- 'ChangeCredentialsBlacklist',
- 'ConfigRegistry',
- 'ContentHandlers',
- 'DefaultUserOptions',
- 'ExtensionEntryPointListFiles',
- 'ExtensionFunctions',
- 'FeedClasses',
- 'FileExtensions',
- 'FilterLogTypes',
- 'GrantPermissionGroups',
- 'GrantPermissions',
- 'GroupPermissions',
- 'GroupsAddToSelf',
- 'GroupsRemoveFromSelf',
- 'HiddenPrefs',
- 'ImplicitGroups',
- 'JobClasses',
- 'LogActions',
- 'LogActionsHandlers',
- 'LogHeaders',
- 'LogNames',
- 'LogRestrictions',
- 'LogTypes',
- 'MediaHandlers',
- 'PasswordPolicy',
- 'RateLimits',
- 'RawHtmlMessages',
- 'ReauthenticateTime',
- 'RecentChangesFlags',
- 'RemoveCredentialsBlacklist',
- 'RemoveGroups',
- 'ResourceLoaderSources',
- 'RevokePermissions',
- 'SessionProviders',
- 'SpecialPages',
- 'ValidSkinNames',
- ];
- /**
- * Top-level attributes that come from MW core
- *
- * @var string[]
- */
- protected static $coreAttributes = [
- 'SkinOOUIThemes',
- 'TrackingCategories',
- 'RestRoutes',
- ];
- /**
- * Mapping of global settings to their specific merge strategies.
- *
- * @see ExtensionRegistry::exportExtractedData
- * @see getExtractedInfo
- * @var array
- */
- protected static $mergeStrategies = [
- 'wgAuthManagerAutoConfig' => 'array_plus_2d',
- 'wgCapitalLinkOverrides' => 'array_plus',
- 'wgExtensionCredits' => 'array_merge_recursive',
- 'wgExtraGenderNamespaces' => 'array_plus',
- 'wgGrantPermissions' => 'array_plus_2d',
- 'wgGroupPermissions' => 'array_plus_2d',
- 'wgHooks' => 'array_merge_recursive',
- 'wgNamespaceContentModels' => 'array_plus',
- 'wgNamespaceProtection' => 'array_plus',
- 'wgNamespacesWithSubpages' => 'array_plus',
- 'wgPasswordPolicy' => 'array_merge_recursive',
- 'wgRateLimits' => 'array_plus_2d',
- 'wgRevokePermissions' => 'array_plus_2d',
- ];
- /**
- * Keys that are part of the extension credits
- *
- * @var array
- */
- protected static $creditsAttributes = [
- 'name',
- 'namemsg',
- 'author',
- 'version',
- 'url',
- 'description',
- 'descriptionmsg',
- 'license-name',
- ];
- /**
- * Things that are not 'attributes', and are not in
- * $globalSettings or $creditsAttributes.
- *
- * @var array
- */
- protected static $notAttributes = [
- 'callback',
- 'Hooks',
- 'namespaces',
- 'ResourceFileModulePaths',
- 'ResourceModules',
- 'ResourceModuleSkinStyles',
- 'OOUIThemePaths',
- 'QUnitTestModule',
- 'ExtensionMessagesFiles',
- 'MessagesDirs',
- 'type',
- 'config',
- 'config_prefix',
- 'ServiceWiringFiles',
- 'ParserTestFiles',
- 'AutoloadClasses',
- 'manifest_version',
- 'load_composer_autoloader',
- ];
- /**
- * Stuff that is going to be set to $GLOBALS
- *
- * Some keys are pre-set to arrays so we can += to them
- *
- * @var array
- */
- protected $globals = [
- 'wgExtensionMessagesFiles' => [],
- 'wgMessagesDirs' => [],
- ];
- /**
- * Things that should be define()'d
- *
- * @var array
- */
- protected $defines = [];
- /**
- * Things to be called once registration of these extensions are done
- * keyed by the name of the extension that it belongs to
- *
- * @var callable[]
- */
- protected $callbacks = [];
- /**
- * @var array
- */
- protected $credits = [];
- /**
- * @var array
- */
- protected $config = [];
- /**
- * Any thing else in the $info that hasn't
- * already been processed
- *
- * @var array
- */
- protected $attributes = [];
- /**
- * Extension attributes, keyed by name =>
- * settings.
- *
- * @var array
- */
- protected $extAttributes = [];
- /**
- * @param string $path
- * @param array $info
- * @param int $version manifest_version for info
- */
- public function extractInfo( $path, array $info, $version ) {
- $dir = dirname( $path );
- $this->extractHooks( $info );
- $this->extractExtensionMessagesFiles( $dir, $info );
- $this->extractMessagesDirs( $dir, $info );
- $this->extractNamespaces( $info );
- $this->extractResourceLoaderModules( $dir, $info );
- if ( isset( $info['ServiceWiringFiles'] ) ) {
- $this->extractPathBasedGlobal(
- 'wgServiceWiringFiles',
- $dir,
- $info['ServiceWiringFiles']
- );
- }
- if ( isset( $info['ParserTestFiles'] ) ) {
- $this->extractPathBasedGlobal(
- 'wgParserTestFiles',
- $dir,
- $info['ParserTestFiles']
- );
- }
- $name = $this->extractCredits( $path, $info );
- if ( isset( $info['callback'] ) ) {
- $this->callbacks[$name] = $info['callback'];
- }
- // config should be after all core globals are extracted,
- // so duplicate setting detection will work fully
- if ( $version === 2 ) {
- $this->extractConfig2( $info, $dir );
- } else {
- // $version === 1
- $this->extractConfig1( $info );
- }
- if ( $version === 2 ) {
- $this->extractAttributes( $path, $info );
- }
- foreach ( $info as $key => $val ) {
- // If it's a global setting,
- if ( in_array( $key, self::$globalSettings ) ) {
- $this->storeToArray( $path, "wg$key", $val, $this->globals );
- continue;
- }
- // Ignore anything that starts with a @
- if ( $key[0] === '@' ) {
- continue;
- }
- if ( $version === 2 ) {
- // Only whitelisted attributes are set
- if ( in_array( $key, self::$coreAttributes ) ) {
- $this->storeToArray( $path, $key, $val, $this->attributes );
- }
- } else {
- // version === 1
- if ( !in_array( $key, self::$notAttributes )
- && !in_array( $key, self::$creditsAttributes )
- ) {
- // If it's not blacklisted, it's an attribute
- $this->storeToArray( $path, $key, $val, $this->attributes );
- }
- }
- }
- }
- /**
- * @param string $path
- * @param array $info
- */
- protected function extractAttributes( $path, array $info ) {
- if ( isset( $info['attributes'] ) ) {
- foreach ( $info['attributes'] as $extName => $value ) {
- $this->storeToArray( $path, $extName, $value, $this->extAttributes );
- }
- }
- }
- public function getExtractedInfo() {
- // Make sure the merge strategies are set
- foreach ( $this->globals as $key => $val ) {
- if ( isset( self::$mergeStrategies[$key] ) ) {
- $this->globals[$key][ExtensionRegistry::MERGE_STRATEGY] = self::$mergeStrategies[$key];
- }
- }
- // Merge $this->extAttributes into $this->attributes depending on what is loaded
- foreach ( $this->extAttributes as $extName => $value ) {
- // Only set the attribute if $extName is loaded (and hence present in credits)
- if ( isset( $this->credits[$extName] ) ) {
- foreach ( $value as $attrName => $attrValue ) {
- $this->storeToArray(
- '', // Don't provide a path since it's impossible to generate an error here
- $extName . $attrName,
- $attrValue,
- $this->attributes
- );
- }
- unset( $this->extAttributes[$extName] );
- }
- }
- return [
- 'globals' => $this->globals,
- 'config' => $this->config,
- 'defines' => $this->defines,
- 'callbacks' => $this->callbacks,
- 'credits' => $this->credits,
- 'attributes' => $this->attributes,
- ];
- }
- public function getRequirements( array $info, $includeDev ) {
- // Quick shortcuts
- if ( !$includeDev || !isset( $info['dev-requires'] ) ) {
- return $info['requires'] ?? [];
- }
- if ( !isset( $info['requires'] ) ) {
- return $info['dev-requires'] ?? [];
- }
- // OK, we actually have to merge everything
- $merged = [];
- // Helper that combines version requirements by
- // picking the non-null if one is, or combines
- // the two. Note that it is not possible for
- // both inputs to be null.
- $pick = function ( $a, $b ) {
- if ( $a === null ) {
- return $b;
- } elseif ( $b === null ) {
- return $a;
- } else {
- return "$a $b";
- }
- };
- $req = $info['requires'];
- $dev = $info['dev-requires'];
- if ( isset( $req['MediaWiki'] ) || isset( $dev['MediaWiki'] ) ) {
- $merged['MediaWiki'] = $pick(
- $req['MediaWiki'] ?? null,
- $dev['MediaWiki'] ?? null
- );
- }
- $platform = array_merge(
- array_keys( $req['platform'] ?? [] ),
- array_keys( $dev['platform'] ?? [] )
- );
- if ( $platform ) {
- foreach ( $platform as $pkey ) {
- if ( $pkey === 'php' ) {
- $value = $pick(
- $req['platform']['php'] ?? null,
- $dev['platform']['php'] ?? null
- );
- } else {
- // Prefer dev value, but these should be constant
- // anyways (ext-* and ability-*)
- $value = $dev['platform'][$pkey] ?? $req['platform'][$pkey];
- }
- $merged['platform'][$pkey] = $value;
- }
- }
- foreach ( [ 'extensions', 'skins' ] as $thing ) {
- $things = array_merge(
- array_keys( $req[$thing] ?? [] ),
- array_keys( $dev[$thing] ?? [] )
- );
- foreach ( $things as $name ) {
- $merged[$thing][$name] = $pick(
- $req[$thing][$name] ?? null,
- $dev[$thing][$name] ?? null
- );
- }
- }
- return $merged;
- }
- protected function extractHooks( array $info ) {
- if ( isset( $info['Hooks'] ) ) {
- foreach ( $info['Hooks'] as $name => $value ) {
- if ( is_array( $value ) ) {
- foreach ( $value as $callback ) {
- $this->globals['wgHooks'][$name][] = $callback;
- }
- } else {
- $this->globals['wgHooks'][$name][] = $value;
- }
- }
- }
- }
- /**
- * Register namespaces with the appropriate global settings
- *
- * @param array $info
- */
- protected function extractNamespaces( array $info ) {
- if ( isset( $info['namespaces'] ) ) {
- foreach ( $info['namespaces'] as $ns ) {
- if ( defined( $ns['constant'] ) ) {
- // If the namespace constant is already defined, use it.
- // This allows namespace IDs to be overwritten locally.
- $id = constant( $ns['constant'] );
- } else {
- $id = $ns['id'];
- $this->defines[ $ns['constant'] ] = $id;
- }
- if ( !( isset( $ns['conditional'] ) && $ns['conditional'] ) ) {
- // If it is not conditional, register it
- $this->attributes['ExtensionNamespaces'][$id] = $ns['name'];
- }
- if ( isset( $ns['gender'] ) ) {
- $this->globals['wgExtraGenderNamespaces'][$id] = $ns['gender'];
- }
- if ( isset( $ns['subpages'] ) && $ns['subpages'] ) {
- $this->globals['wgNamespacesWithSubpages'][$id] = true;
- }
- if ( isset( $ns['content'] ) && $ns['content'] ) {
- $this->globals['wgContentNamespaces'][] = $id;
- }
- if ( isset( $ns['defaultcontentmodel'] ) ) {
- $this->globals['wgNamespaceContentModels'][$id] = $ns['defaultcontentmodel'];
- }
- if ( isset( $ns['protection'] ) ) {
- $this->globals['wgNamespaceProtection'][$id] = $ns['protection'];
- }
- if ( isset( $ns['capitallinkoverride'] ) ) {
- $this->globals['wgCapitalLinkOverrides'][$id] = $ns['capitallinkoverride'];
- }
- }
- }
- }
- protected function extractResourceLoaderModules( $dir, array $info ) {
- $defaultPaths = $info['ResourceFileModulePaths'] ?? false;
- if ( isset( $defaultPaths['localBasePath'] ) ) {
- if ( $defaultPaths['localBasePath'] === '' ) {
- // Avoid double slashes (e.g. /extensions/Example//path)
- $defaultPaths['localBasePath'] = $dir;
- } else {
- $defaultPaths['localBasePath'] = "$dir/{$defaultPaths['localBasePath']}";
- }
- }
- foreach ( [ 'ResourceModules', 'ResourceModuleSkinStyles', 'OOUIThemePaths' ] as $setting ) {
- if ( isset( $info[$setting] ) ) {
- foreach ( $info[$setting] as $name => $data ) {
- if ( isset( $data['localBasePath'] ) ) {
- if ( $data['localBasePath'] === '' ) {
- // Avoid double slashes (e.g. /extensions/Example//path)
- $data['localBasePath'] = $dir;
- } else {
- $data['localBasePath'] = "$dir/{$data['localBasePath']}";
- }
- }
- if ( $defaultPaths ) {
- $data += $defaultPaths;
- }
- if ( $setting === 'OOUIThemePaths' ) {
- $this->attributes[$setting][$name] = $data;
- } else {
- $this->globals["wg$setting"][$name] = $data;
- }
- }
- }
- }
- if ( isset( $info['QUnitTestModule'] ) ) {
- $data = $info['QUnitTestModule'];
- if ( isset( $data['localBasePath'] ) ) {
- if ( $data['localBasePath'] === '' ) {
- // Avoid double slashes (e.g. /extensions/Example//path)
- $data['localBasePath'] = $dir;
- } else {
- $data['localBasePath'] = "$dir/{$data['localBasePath']}";
- }
- }
- $this->attributes['QUnitTestModules']["test.{$info['name']}"] = $data;
- }
- }
- protected function extractExtensionMessagesFiles( $dir, array $info ) {
- if ( isset( $info['ExtensionMessagesFiles'] ) ) {
- foreach ( $info['ExtensionMessagesFiles'] as &$file ) {
- $file = "$dir/$file";
- }
- $this->globals["wgExtensionMessagesFiles"] += $info['ExtensionMessagesFiles'];
- }
- }
- /**
- * Set message-related settings, which need to be expanded to use
- * absolute paths
- *
- * @param string $dir
- * @param array $info
- */
- protected function extractMessagesDirs( $dir, array $info ) {
- if ( isset( $info['MessagesDirs'] ) ) {
- foreach ( $info['MessagesDirs'] as $name => $files ) {
- foreach ( (array)$files as $file ) {
- $this->globals["wgMessagesDirs"][$name][] = "$dir/$file";
- }
- }
- }
- }
- /**
- * @param string $path
- * @param array $info
- * @return string Name of thing
- * @throws Exception
- */
- protected function extractCredits( $path, array $info ) {
- $credits = [
- 'path' => $path,
- 'type' => $info['type'] ?? 'other',
- ];
- foreach ( self::$creditsAttributes as $attr ) {
- if ( isset( $info[$attr] ) ) {
- $credits[$attr] = $info[$attr];
- }
- }
- $name = $credits['name'];
- // If someone is loading the same thing twice, throw
- // a nice error (T121493)
- if ( isset( $this->credits[$name] ) ) {
- $firstPath = $this->credits[$name]['path'];
- $secondPath = $credits['path'];
- throw new Exception( "It was attempted to load $name twice, from $firstPath and $secondPath." );
- }
- $this->credits[$name] = $credits;
- $this->globals['wgExtensionCredits'][$credits['type']][] = $credits;
- return $name;
- }
- /**
- * Set configuration settings for manifest_version == 1
- * @todo In the future, this should be done via Config interfaces
- *
- * @param array $info
- */
- protected function extractConfig1( array $info ) {
- if ( isset( $info['config'] ) ) {
- if ( isset( $info['config']['_prefix'] ) ) {
- $prefix = $info['config']['_prefix'];
- unset( $info['config']['_prefix'] );
- } else {
- $prefix = 'wg';
- }
- foreach ( $info['config'] as $key => $val ) {
- if ( $key[0] !== '@' ) {
- $this->addConfigGlobal( "$prefix$key", $val, $info['name'] );
- }
- }
- }
- }
- /**
- * Set configuration settings for manifest_version == 2
- * @todo In the future, this should be done via Config interfaces
- *
- * @param array $info
- * @param string $dir
- */
- protected function extractConfig2( array $info, $dir ) {
- $prefix = $info['config_prefix'] ?? 'wg';
- if ( isset( $info['config'] ) ) {
- foreach ( $info['config'] as $key => $data ) {
- $value = $data['value'];
- if ( isset( $data['merge_strategy'] ) ) {
- $value[ExtensionRegistry::MERGE_STRATEGY] = $data['merge_strategy'];
- }
- if ( isset( $data['path'] ) && $data['path'] ) {
- $value = "$dir/$value";
- }
- $this->addConfigGlobal( "$prefix$key", $value, $info['name'] );
- $data['providedby'] = $info['name'];
- if ( isset( $info['ConfigRegistry'][0] ) ) {
- $data['configregistry'] = array_keys( $info['ConfigRegistry'] )[0];
- }
- $this->config[$key] = $data;
- }
- }
- }
- /**
- * Helper function to set a value to a specific global, if it isn't set already.
- *
- * @param string $key The config key with the prefix and anything
- * @param mixed $value The value of the config
- * @param string $extName Name of the extension
- */
- private function addConfigGlobal( $key, $value, $extName ) {
- if ( array_key_exists( $key, $this->globals ) ) {
- throw new RuntimeException(
- "The configuration setting '$key' was already set by MediaWiki core or"
- . " another extension, and cannot be set again by $extName." );
- }
- $this->globals[$key] = $value;
- }
- protected function extractPathBasedGlobal( $global, $dir, $paths ) {
- foreach ( $paths as $path ) {
- $this->globals[$global][] = "$dir/$path";
- }
- }
- /**
- * @param string $path
- * @param string $name
- * @param array $value
- * @param array &$array
- * @throws InvalidArgumentException
- */
- protected function storeToArray( $path, $name, $value, &$array ) {
- if ( !is_array( $value ) ) {
- throw new InvalidArgumentException( "The value for '$name' should be an array (from $path)" );
- }
- if ( isset( $array[$name] ) ) {
- $array[$name] = array_merge_recursive( $array[$name], $value );
- } else {
- $array[$name] = $value;
- }
- }
- public function getExtraAutoloaderPaths( $dir, array $info ) {
- $paths = [];
- if ( isset( $info['load_composer_autoloader'] ) && $info['load_composer_autoloader'] === true ) {
- $paths[] = "$dir/vendor/autoload.php";
- }
- return $paths;
- }
- }
|