Go to the documentation of this file.
3 use Composer\Semver\Semver;
89 if ( self::$instance ===
null ) {
90 self::$instance =
new self();
103 if ( $mtime ===
false ) {
104 if ( file_exists(
$path ) ) {
105 $mtime = filemtime(
$path );
107 throw new Exception(
"$path does not exist!" );
110 if ( $mtime ===
false ) {
111 $err = error_get_last();
112 throw new Exception(
"Couldn't stat $path: {$err['message']}" );
116 $this->queued[
$path] = $mtime;
125 if ( !$this->queued ) {
129 if ( $this->finished ) {
131 "The following paths tried to load late: "
132 . implode(
', ', array_keys( $this->queued ) )
149 }
catch ( InvalidArgumentException
$e ) {
155 md5( json_encode( $this->queued + $versions ) )
157 $data =
$cache->get( $key );
165 $data[
'globals'][
'wgAutoloadClasses'] += $data[
'autoload'];
166 unset( $data[
'autoload'] );
169 $cache->set( $key, $data, 60 * 60 * 24 );
199 $this->finished =
true;
212 $autoloadClasses = [];
213 $autoloadNamespaces = [];
214 $autoloaderPaths = [];
218 PHP_MAJOR_VERSION .
'.' . PHP_MINOR_VERSION .
'.' . PHP_RELEASE_VERSION,
219 get_loaded_extensions()
221 $extDependencies = [];
225 $json = file_get_contents(
$path );
226 if ( $json ===
false ) {
227 throw new Exception(
"Unable to read $path, does it exist?" );
229 $info = json_decode( $json,
true );
230 if ( !is_array( $info ) ) {
231 throw new Exception(
"$path is not a valid JSON file." );
234 if ( !isset( $info[
'manifest_version'] ) ) {
236 "{$info['name']}'s extension.json or skin.json does not have manifest_version",
241 $info[
'manifest_version'] = 1;
243 $version = $info[
'manifest_version'];
244 if ( $version < self::OLDEST_MANIFEST_VERSION || $version > self::MANIFEST_VERSION ) {
245 $incompatible[] =
"$path: unsupported manifest_version: {$version}";
248 $dir = dirname(
$path );
249 if ( isset( $info[
'AutoloadClasses'] ) ) {
251 $GLOBALS[
'wgAutoloadClasses'] += $autoload;
252 $autoloadClasses += $autoload;
254 if ( isset( $info[
'AutoloadNamespaces'] ) ) {
255 $autoloadNamespaces += $this->
processAutoLoader( $dir, $info[
'AutoloadNamespaces'] );
260 $requires = $processor->getRequirements( $info );
263 if ( is_array( $requires ) && $requires && isset( $info[
'name'] ) ) {
264 $extDependencies[$info[
'name']] = $requires;
268 $autoloaderPaths = array_merge( $autoloaderPaths,
269 $processor->getExtraAutoloaderPaths( $dir, $info ) );
271 $processor->extractInfo(
$path, $info, $version );
273 $data = $processor->getExtractedInfo();
274 $data[
'warnings'] = $warnings;
277 $incompatible = array_merge(
280 ->setLoadedExtensionsAndSkins( $data[
'credits'] )
281 ->checkArray( $extDependencies )
284 if ( $incompatible ) {
289 $data[
'globals'][
'wgAutoloadClasses'] = [];
290 $data[
'autoload'] = $autoloadClasses;
291 $data[
'autoloaderPaths'] = $autoloaderPaths;
292 $data[
'autoloaderNS'] = $autoloadNamespaces;
297 foreach ( $info[
'globals']
as $key => $val ) {
300 if ( is_array( $val ) && isset( $val[self::MERGE_STRATEGY] ) ) {
302 unset( $val[self::MERGE_STRATEGY] );
304 $mergeStrategy =
'array_merge';
314 if ( !is_array(
$GLOBALS[$key] ) || !is_array( $val ) ) {
319 switch ( $mergeStrategy ) {
320 case 'array_merge_recursive':
323 case 'array_replace_recursive':
326 case 'array_plus_2d':
336 throw new UnexpectedValueException(
"Unknown merge strategy '$mergeStrategy'" );
340 if ( isset( $info[
'autoloaderNS'] ) ) {
344 foreach ( $info[
'defines']
as $name => $val ) {
345 define(
$name, $val );
347 foreach ( $info[
'autoloaderPaths']
as $path ) {
348 if ( file_exists(
$path ) ) {
353 $this->loaded += $info[
'credits'];
354 if ( $info[
'attributes'] ) {
355 if ( !$this->attributes ) {
356 $this->attributes = $info[
'attributes'];
358 $this->attributes = array_merge_recursive( $this->attributes, $info[
'attributes'] );
362 foreach ( $info[
'callbacks']
as $name => $cb ) {
363 if ( !is_callable( $cb ) ) {
364 if ( is_array( $cb ) ) {
365 $cb =
'[ ' . implode(
', ', $cb ) .
' ]';
367 throw new UnexpectedValueException(
"callback '$cb' is not callable" );
369 call_user_func( $cb, $info[
'credits'][
$name] );
396 $isLoaded = isset( $this->loaded[
$name] );
397 if ( $constraint ===
'*' || !$isLoaded ) {
401 if ( !isset( $this->loaded[
$name][
'version'] ) ) {
402 $msg =
"{$name} does not expose its version, but an extension or a skin"
403 .
" requires: {$constraint}.";
404 throw new LogicException( $msg );
407 return SemVer::satisfies( $this->loaded[
$name][
'version'], $constraint );
415 return $this->attributes[
$name] ?? [];
436 foreach ( $files
as &$file ) {
437 $file =
"$dir/$file";
static newFromId( $id)
Create a new cache object of the specified type.
isLoaded( $name, $constraint=' *')
Whether a thing has been loaded.
getQueue()
Get the current load queue.
bool $finished
Whether we are done loading things.
const MANIFEST_VERSION
Version of the highest supported manifest version Note: Update MANIFEST_VERSION_MW_VERSION when chang...
A BagOStuff object with no objects in it.
wfArrayPlus2d(array $baseArray, array $newValues)
Merges two (possibly) 2 dimensional arrays into the target array ($baseArray).
Copyright (C) 2018 Kunal Mehta legoktm@member.fsf.org
static detectLocalServerCache()
Detects which local server cache library is present and returns a configuration for it.
exportExtractedData(array $info)
$wgVersion
MediaWiki version number.
getAllThings()
Get information about all things.
array $loaded
Array of loaded things, keyed by name, values are credits information.
processAutoLoader( $dir, array $files)
Fully expand autoloader paths.
clearQueue()
Clear the current load queue.
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
const MERGE_STRATEGY
Special key that defines the merge strategy.
const CACHE_VERSION
Bump whenever the registration cache needs resetting.
array $attributes
Items in the JSON file that aren't being set as globals.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
load( $path)
Loads and processes the given JSON file without delay.
const MANIFEST_VERSION_MW_VERSION
MediaWiki version constraint representing what the current highest MANIFEST_VERSION is supported in.
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
static string[] $psr4Namespaces
finish()
After this is called, no more extensions can be loaded.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
const OLDEST_MANIFEST_VERSION
Version of the oldest supported manifest version.
const MEDIAWIKI_CORE
"requires" key that applies to MediaWiki core/$wgVersion
Allows to change the fields on the form that will be generated $name
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
readFromQueue(array $queue)
Process a queue of extensions and return their extracted data.
array $queued
List of paths that should be loaded.
$wgDevelopmentWarnings
If set to true MediaWiki will throw notices for some possible error conditions and for deprecated fun...
Provides functions to check a set of extensions with dependencies against a set of loaded extensions ...
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
int bool $wgExtensionInfoMTime
When loading extensions through the extension registration system, this can be used to invalidate the...
static ExtensionRegistry $instance