MediaWiki  1.33.0
SiteConfiguration.php
Go to the documentation of this file.
1 <?php
24 
125 
129  public $suffixes = [];
130 
134  public $wikis = [];
135 
139  public $settings = [];
140 
146  public $localVHosts = [];
147 
152  public $fullLoadCallback = null;
153 
155  public $fullLoadDone = false;
156 
171  public $siteParamsCallback = null;
172 
177  protected $cfgCache = [];
178 
188  public function get( $settingName, $wiki, $suffix = null, $params = [],
189  $wikiTags = []
190  ) {
191  $params = $this->mergeParams( $wiki, $suffix, $params, $wikiTags );
192  return $this->getSetting( $settingName, $wiki, $params );
193  }
194 
203  protected function getSetting( $settingName, $wiki, array $params ) {
204  $retval = null;
205  if ( array_key_exists( $settingName, $this->settings ) ) {
206  $thisSetting =& $this->settings[$settingName];
207  do {
208  // Do individual wiki settings
209  if ( array_key_exists( $wiki, $thisSetting ) ) {
210  $retval = $thisSetting[$wiki];
211  break;
212  } elseif ( array_key_exists( "+$wiki", $thisSetting ) && is_array( $thisSetting["+$wiki"] ) ) {
213  $retval = $thisSetting["+$wiki"];
214  }
215 
216  // Do tag settings
217  foreach ( $params['tags'] as $tag ) {
218  if ( array_key_exists( $tag, $thisSetting ) ) {
219  if ( is_array( $retval ) && is_array( $thisSetting[$tag] ) ) {
220  $retval = self::arrayMerge( $retval, $thisSetting[$tag] );
221  } else {
222  $retval = $thisSetting[$tag];
223  }
224  break 2;
225  } elseif ( array_key_exists( "+$tag", $thisSetting ) && is_array( $thisSetting["+$tag"] ) ) {
226  if ( $retval === null ) {
227  $retval = [];
228  }
229  $retval = self::arrayMerge( $retval, $thisSetting["+$tag"] );
230  }
231  }
232  // Do suffix settings
233  $suffix = $params['suffix'];
234  if ( !is_null( $suffix ) ) {
235  if ( array_key_exists( $suffix, $thisSetting ) ) {
236  if ( is_array( $retval ) && is_array( $thisSetting[$suffix] ) ) {
237  $retval = self::arrayMerge( $retval, $thisSetting[$suffix] );
238  } else {
239  $retval = $thisSetting[$suffix];
240  }
241  break;
242  } elseif ( array_key_exists( "+$suffix", $thisSetting )
243  && is_array( $thisSetting["+$suffix"] )
244  ) {
245  if ( $retval === null ) {
246  $retval = [];
247  }
248  $retval = self::arrayMerge( $retval, $thisSetting["+$suffix"] );
249  }
250  }
251 
252  // Fall back to default.
253  if ( array_key_exists( 'default', $thisSetting ) ) {
254  if ( is_array( $retval ) && is_array( $thisSetting['default'] ) ) {
255  $retval = self::arrayMerge( $retval, $thisSetting['default'] );
256  } else {
257  $retval = $thisSetting['default'];
258  }
259  break;
260  }
261  } while ( false );
262  }
263 
264  if ( !is_null( $retval ) && count( $params['params'] ) ) {
265  foreach ( $params['params'] as $key => $value ) {
266  $retval = $this->doReplace( '$' . $key, $value, $retval );
267  }
268  }
269  return $retval;
270  }
271 
281  function doReplace( $from, $to, $in ) {
282  if ( is_string( $in ) ) {
283  return str_replace( $from, $to, $in );
284  } elseif ( is_array( $in ) ) {
285  foreach ( $in as $key => $val ) {
286  $in[$key] = $this->doReplace( $from, $to, $val );
287  }
288  return $in;
289  } else {
290  return $in;
291  }
292  }
293 
302  public function getAll( $wiki, $suffix = null, $params = [], $wikiTags = [] ) {
303  $params = $this->mergeParams( $wiki, $suffix, $params, $wikiTags );
304  $localSettings = [];
305  foreach ( $this->settings as $varname => $stuff ) {
306  $append = false;
307  $var = $varname;
308  if ( substr( $varname, 0, 1 ) == '+' ) {
309  $append = true;
310  $var = substr( $varname, 1 );
311  }
312 
313  $value = $this->getSetting( $varname, $wiki, $params );
314  if ( $append && is_array( $value ) && is_array( $GLOBALS[$var] ) ) {
316  }
317  if ( !is_null( $value ) ) {
318  $localSettings[$var] = $value;
319  }
320  }
321  return $localSettings;
322  }
323 
332  public function getBool( $setting, $wiki, $suffix = null, $wikiTags = [] ) {
333  return (bool)$this->get( $setting, $wiki, $suffix, [], $wikiTags );
334  }
335 
341  function &getLocalDatabases() {
342  return $this->wikis;
343  }
344 
354  public function extractVar( $setting, $wiki, $suffix, &$var,
355  $params = [], $wikiTags = []
356  ) {
357  $value = $this->get( $setting, $wiki, $suffix, $params, $wikiTags );
358  if ( !is_null( $value ) ) {
359  $var = $value;
360  }
361  }
362 
371  public function extractGlobal( $setting, $wiki, $suffix = null,
372  $params = [], $wikiTags = []
373  ) {
374  $params = $this->mergeParams( $wiki, $suffix, $params, $wikiTags );
375  $this->extractGlobalSetting( $setting, $wiki, $params );
376  }
377 
383  public function extractGlobalSetting( $setting, $wiki, $params ) {
384  $value = $this->getSetting( $setting, $wiki, $params );
385  if ( !is_null( $value ) ) {
386  if ( substr( $setting, 0, 1 ) == '+' && is_array( $value ) ) {
387  $setting = substr( $setting, 1 );
388  if ( is_array( $GLOBALS[$setting] ) ) {
389  $GLOBALS[$setting] = self::arrayMerge( $GLOBALS[$setting], $value );
390  } else {
391  $GLOBALS[$setting] = $value;
392  }
393  } else {
394  $GLOBALS[$setting] = $value;
395  }
396  }
397  }
398 
406  public function extractAllGlobals( $wiki, $suffix = null, $params = [],
407  $wikiTags = []
408  ) {
409  $params = $this->mergeParams( $wiki, $suffix, $params, $wikiTags );
410  foreach ( $this->settings as $varName => $setting ) {
411  $this->extractGlobalSetting( $varName, $wiki, $params );
412  }
413  }
414 
423  protected function getWikiParams( $wiki ) {
424  static $default = [
425  'suffix' => null,
426  'lang' => null,
427  'tags' => [],
428  'params' => [],
429  ];
430 
431  if ( !is_callable( $this->siteParamsCallback ) ) {
432  return $default;
433  }
434 
435  $ret = ( $this->siteParamsCallback )( $this, $wiki );
436  # Validate the returned value
437  if ( !is_array( $ret ) ) {
438  return $default;
439  }
440 
441  foreach ( $default as $name => $def ) {
442  if ( !isset( $ret[$name] ) || ( is_array( $default[$name] ) && !is_array( $ret[$name] ) ) ) {
443  $ret[$name] = $default[$name];
444  }
445  }
446 
447  return $ret;
448  }
449 
462  protected function mergeParams( $wiki, $suffix, array $params, array $wikiTags ) {
463  $ret = $this->getWikiParams( $wiki );
464 
465  if ( is_null( $ret['suffix'] ) ) {
466  $ret['suffix'] = $suffix;
467  }
468 
469  $ret['tags'] = array_unique( array_merge( $ret['tags'], $wikiTags ) );
470 
471  $ret['params'] += $params;
472 
473  // Automatically fill that ones if needed
474  if ( !isset( $ret['params']['lang'] ) && !is_null( $ret['lang'] ) ) {
475  $ret['params']['lang'] = $ret['lang'];
476  }
477  if ( !isset( $ret['params']['site'] ) && !is_null( $ret['suffix'] ) ) {
478  $ret['params']['site'] = $ret['suffix'];
479  }
480 
481  return $ret;
482  }
483 
490  public function siteFromDB( $wiki ) {
491  // Allow override
492  $def = $this->getWikiParams( $wiki );
493  if ( !is_null( $def['suffix'] ) && !is_null( $def['lang'] ) ) {
494  return [ $def['suffix'], $def['lang'] ];
495  }
496 
497  $site = null;
498  $lang = null;
499  foreach ( $this->suffixes as $altSite => $suffix ) {
500  if ( $suffix === '' ) {
501  $site = '';
502  $lang = $wiki;
503  break;
504  } elseif ( substr( $wiki, -strlen( $suffix ) ) == $suffix ) {
505  $site = is_numeric( $altSite ) ? $suffix : $altSite;
506  $lang = substr( $wiki, 0, strlen( $wiki ) - strlen( $suffix ) );
507  break;
508  }
509  }
510  $lang = str_replace( '_', '-', $lang );
511 
512  return [ $site, $lang ];
513  }
514 
526  public function getConfig( $wiki, $settings ) {
527  global $IP;
528 
529  $multi = is_array( $settings );
531  if ( WikiMap::isCurrentWikiId( $wiki ) ) { // $wiki is this wiki
532  $res = [];
533  foreach ( $settings as $name ) {
534  if ( !preg_match( '/^wg[A-Z]/', $name ) ) {
535  throw new MWException( "Variable '$name' does start with 'wg'." );
536  } elseif ( !isset( $GLOBALS[$name] ) ) {
537  throw new MWException( "Variable '$name' is not set." );
538  }
539  $res[$name] = $GLOBALS[$name];
540  }
541  } else { // $wiki is a foreign wiki
542  if ( isset( $this->cfgCache[$wiki] ) ) {
543  $res = array_intersect_key( $this->cfgCache[$wiki], array_flip( $settings ) );
544  if ( count( $res ) == count( $settings ) ) {
545  return $multi ? $res : current( $res ); // cache hit
546  }
547  } elseif ( !in_array( $wiki, $this->wikis ) ) {
548  throw new MWException( "No such wiki '$wiki'." );
549  } else {
550  $this->cfgCache[$wiki] = [];
551  }
552  $result = Shell::makeScriptCommand(
553  "$IP/maintenance/getConfiguration.php",
554  [
555  '--wiki', $wiki,
556  '--settings', implode( ' ', $settings ),
557  '--format', 'PHP',
558  ]
559  )
560  // limit.sh breaks this call
561  ->limits( [ 'memory' => 0, 'filesize' => 0 ] )
562  ->execute();
563 
564  $data = trim( $result->getStdout() );
565  if ( $result->getExitCode() || $data === '' ) {
566  throw new MWException( "Failed to run getConfiguration.php: {$result->getStdout()}" );
567  }
568  $res = unserialize( $data );
569  if ( !is_array( $res ) ) {
570  throw new MWException( "Failed to unserialize configuration array." );
571  }
572  $this->cfgCache[$wiki] = $this->cfgCache[$wiki] + $res;
573  }
574 
575  return $multi ? $res : current( $res );
576  }
577 
588  static function arrayMerge( $array1/* ... */ ) {
589  $out = $array1;
590  $argsCount = func_num_args();
591  for ( $i = 1; $i < $argsCount; $i++ ) {
592  foreach ( func_get_arg( $i ) as $key => $value ) {
593  if ( isset( $out[$key] ) && is_array( $out[$key] ) && is_array( $value ) ) {
594  $out[$key] = self::arrayMerge( $out[$key], $value );
595  } elseif ( !isset( $out[$key] ) || !$out[$key] && !is_numeric( $key ) ) {
596  // Values that evaluate to true given precedence, for the
597  // primary purpose of merging permissions arrays.
598  $out[$key] = $value;
599  } elseif ( is_numeric( $key ) ) {
600  $out[] = $value;
601  }
602  }
603  }
604 
605  return $out;
606  }
607 
608  public function loadFullData() {
609  if ( $this->fullLoadCallback && !$this->fullLoadDone ) {
610  ( $this->fullLoadCallback )( $this );
611  $this->fullLoadDone = true;
612  }
613  }
614 }
MediaWiki\Shell\Shell
Executes shell commands.
Definition: Shell.php:44
SiteConfiguration\extractVar
extractVar( $setting, $wiki, $suffix, &$var, $params=[], $wikiTags=[])
Retrieves the value of a given setting, and places it in a variable passed by reference.
Definition: SiteConfiguration.php:354
SiteConfiguration\$fullLoadDone
$fullLoadDone
Whether or not all data has been loaded.
Definition: SiteConfiguration.php:155
SiteConfiguration
This is a class for holding configuration settings, particularly for multi-wiki sites.
Definition: SiteConfiguration.php:124
WikiMap\isCurrentWikiId
static isCurrentWikiId( $wikiId)
Definition: WikiMap.php:312
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
captcha-old.count
count
Definition: captcha-old.py:249
SiteConfiguration\getConfig
getConfig( $wiki, $settings)
Get the resolved (post-setup) configuration of a potentially foreign wiki.
Definition: SiteConfiguration.php:526
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1983
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:780
SiteConfiguration\extractAllGlobals
extractAllGlobals( $wiki, $suffix=null, $params=[], $wikiTags=[])
Retrieves the values of all settings, and places them in their corresponding global variables.
Definition: SiteConfiguration.php:406
$params
$params
Definition: styleTest.css.php:44
$res
$res
Definition: database.txt:21
SiteConfiguration\siteFromDB
siteFromDB( $wiki)
Work out the site and language name from a database name.
Definition: SiteConfiguration.php:490
SiteConfiguration\doReplace
doReplace( $from, $to, $in)
Type-safe string replace; won't do replacements on non-strings private?
Definition: SiteConfiguration.php:281
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
SiteConfiguration\getBool
getBool( $setting, $wiki, $suffix=null, $wikiTags=[])
Retrieves a configuration setting for a given wiki, forced to a boolean.
Definition: SiteConfiguration.php:332
$data
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
Definition: generatePhpCharToUpperMappings.php:13
MWException
MediaWiki exception.
Definition: MWException.php:26
$IP
$IP
Definition: update.php:3
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
SiteConfiguration\$cfgCache
array $cfgCache
Configuration cache for getConfig()
Definition: SiteConfiguration.php:177
settings
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 settings
Definition: globals.txt:25
SiteConfiguration\$localVHosts
$localVHosts
Array of domains that are local and can be handled by the same server.
Definition: SiteConfiguration.php:146
SiteConfiguration\$siteParamsCallback
string array $siteParamsCallback
A callback function that returns an array with the following keys (all optional):
Definition: SiteConfiguration.php:171
array
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))
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
$value
$value
Definition: styleTest.css.php:49
SiteConfiguration\getAll
getAll( $wiki, $suffix=null, $params=[], $wikiTags=[])
Gets all settings for a wiki.
Definition: SiteConfiguration.php:302
$ret
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition: hooks.txt:1985
SiteConfiguration\arrayMerge
static arrayMerge( $array1)
Merge multiple arrays together.
Definition: SiteConfiguration.php:588
SiteConfiguration\getLocalDatabases
& getLocalDatabases()
Retrieves an array of local databases.
Definition: SiteConfiguration.php:341
unserialize
unserialize( $serialized)
Definition: ApiMessageTrait.php:142
SiteConfiguration\$wikis
$wikis
Array of wikis, should be the same as $wgLocalDatabases.
Definition: SiteConfiguration.php:134
SiteConfiguration\$fullLoadCallback
string array $fullLoadCallback
Optional callback to load full configuration data.
Definition: SiteConfiguration.php:152
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
SiteConfiguration\$settings
$settings
The whole array of settings.
Definition: SiteConfiguration.php:139
SiteConfiguration\extractGlobal
extractGlobal( $setting, $wiki, $suffix=null, $params=[], $wikiTags=[])
Retrieves the value of a given setting, and places it in its corresponding global variable.
Definition: SiteConfiguration.php:371
SiteConfiguration\getSetting
getSetting( $settingName, $wiki, array $params)
Really retrieves a configuration setting for a given wiki.
Definition: SiteConfiguration.php:203
SiteConfiguration\mergeParams
mergeParams( $wiki, $suffix, array $params, array $wikiTags)
Merge params between the ones passed to the function and the ones given by self::$siteParamsCallback ...
Definition: SiteConfiguration.php:462
SiteConfiguration\loadFullData
loadFullData()
Definition: SiteConfiguration.php:608
SiteConfiguration\extractGlobalSetting
extractGlobalSetting( $setting, $wiki, $params)
Definition: SiteConfiguration.php:383
SiteConfiguration\$suffixes
$suffixes
Array of suffixes, for self::siteFromDB()
Definition: SiteConfiguration.php:129
$GLOBALS
$GLOBALS['IP']
Definition: ComposerHookHandler.php:6
SiteConfiguration\getWikiParams
getWikiParams( $wiki)
Return specific settings for $wiki See the documentation of self::$siteParamsCallback for more in-dep...
Definition: SiteConfiguration.php:423