188 public function get( $settingName, $wiki, $suffix =
null,
$params = [],
205 if ( array_key_exists( $settingName, $this->
settings ) ) {
206 $thisSetting =& $this->
settings[$settingName];
209 if ( array_key_exists( $wiki, $thisSetting ) ) {
212 } elseif ( array_key_exists(
"+$wiki", $thisSetting ) && is_array( $thisSetting[
"+$wiki"] ) ) {
213 $retval = $thisSetting[
"+$wiki"];
217 foreach (
$params[
'tags'] as $tag ) {
218 if ( array_key_exists( $tag, $thisSetting ) ) {
219 if ( is_array(
$retval ) && is_array( $thisSetting[$tag] ) ) {
225 } elseif ( array_key_exists(
"+$tag", $thisSetting ) && is_array( $thisSetting[
"+$tag"] ) ) {
234 if ( !is_null( $suffix ) ) {
235 if ( array_key_exists( $suffix, $thisSetting ) ) {
236 if ( is_array(
$retval ) && is_array( $thisSetting[$suffix] ) ) {
239 $retval = $thisSetting[$suffix];
242 } elseif ( array_key_exists(
"+$suffix", $thisSetting )
243 && is_array( $thisSetting[
"+$suffix"] )
253 if ( array_key_exists(
'default', $thisSetting ) ) {
254 if ( is_array(
$retval ) && is_array( $thisSetting[
'default'] ) ) {
257 $retval = $thisSetting[
'default'];
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 );
302 public function getAll( $wiki, $suffix =
null,
$params = [], $wikiTags = [] ) {
305 foreach ( $this->
settings as $varname => $stuff ) {
308 if ( substr( $varname, 0, 1 ) ==
'+' ) {
310 $var = substr( $varname, 1 );
314 if ( $append && is_array(
$value ) && is_array(
$GLOBALS[$var] ) ) {
317 if ( !is_null(
$value ) ) {
318 $localSettings[$var] =
$value;
321 return $localSettings;
332 public function getBool( $setting, $wiki, $suffix =
null, $wikiTags = [] ) {
333 return (
bool)$this->
get( $setting, $wiki, $suffix, [], $wikiTags );
357 $value = $this->
get( $setting, $wiki, $suffix,
$params, $wikiTags );
358 if ( !is_null(
$value ) ) {
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] ) ) {
410 foreach ( $this->
settings as $varName => $setting ) {
431 if ( !is_callable( $this->siteParamsCallback ) ) {
435 $ret = call_user_func_array( $this->siteParamsCallback, [ $this, $wiki ] );
436 # Validate the returned value
437 if ( !is_array(
$ret ) ) {
441 foreach ( $default as $name => $def ) {
442 if ( !isset(
$ret[$name] ) || ( is_array( $default[$name] ) && !is_array(
$ret[$name] ) ) ) {
465 if ( is_null(
$ret[
'suffix'] ) ) {
466 $ret[
'suffix'] = $suffix;
469 $ret[
'tags'] = array_unique( array_merge(
$ret[
'tags'], $wikiTags ) );
474 if ( !isset(
$ret[
'params'][
'lang'] ) && !is_null(
$ret[
'lang'] ) ) {
475 $ret[
'params'][
'lang'] =
$ret[
'lang'];
477 if ( !isset(
$ret[
'params'][
'site'] ) && !is_null(
$ret[
'suffix'] ) ) {
478 $ret[
'params'][
'site'] =
$ret[
'suffix'];
493 if ( !is_null( $def[
'suffix'] ) && !is_null( $def[
'lang'] ) ) {
494 return [ $def[
'suffix'], $def[
'lang'] ];
499 foreach ( $this->suffixes as $altSite => $suffix ) {
500 if ( $suffix ===
'' ) {
504 } elseif ( substr( $db, -strlen( $suffix ) ) == $suffix ) {
505 $site = is_numeric( $altSite ) ? $suffix : $altSite;
506 $lang = substr( $db, 0, strlen( $db ) - strlen( $suffix ) );
511 return [ $site,
$lang ];
533 if ( !preg_match(
'/^wg[A-Z]/', $name ) ) {
534 throw new MWException(
"Variable '$name' does start with 'wg'." );
535 } elseif ( !isset(
$GLOBALS[$name] ) ) {
536 throw new MWException(
"Variable '$name' is not set." );
541 if ( isset( $this->cfgCache[$wiki] ) ) {
542 $res = array_intersect_key( $this->cfgCache[$wiki], array_flip(
$settings ) );
544 return $multi ?
$res : current(
$res );
546 } elseif ( !in_array( $wiki, $this->wikis ) ) {
549 $this->cfgCache[$wiki] = [];
551 $result = Shell::makeScriptCommand(
552 "$IP/maintenance/getConfiguration.php",
560 ->limits( [
'memory' => 0,
'filesize' => 0 ] )
563 $data = trim( $result->getStdout() );
564 if ( $result->getExitCode() != 0 || !strlen( $data ) ) {
565 throw new MWException(
"Failed to run getConfiguration.php: {$result->getStdout()}" );
568 if ( !is_array(
$res ) ) {
569 throw new MWException(
"Failed to unserialize configuration array." );
571 $this->cfgCache[$wiki] = $this->cfgCache[$wiki] +
$res;
574 return $multi ?
$res : current(
$res );
589 $argsCount = func_num_args();
590 for ( $i = 1; $i < $argsCount; $i++ ) {
591 foreach ( func_get_arg( $i ) as $key =>
$value ) {
592 if ( isset(
$out[$key] ) && is_array(
$out[$key] ) && is_array(
$value ) ) {
594 } elseif ( !isset(
$out[$key] ) || !
$out[$key] && !is_numeric( $key ) ) {
598 } elseif ( is_numeric( $key ) ) {
608 if ( $this->fullLoadCallback && !$this->fullLoadDone ) {
609 call_user_func( $this->fullLoadCallback, $this );
610 $this->fullLoadDone =
true;
unserialize( $serialized)
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
This is a class for holding configuration settings, particularly for multi-wiki sites.
getConfig( $wiki, $settings)
Get the resolved (post-setup) configuration of a potentially foreign wiki.
$localVHosts
Array of domains that are local and can be handled by the same server.
extractAllGlobals( $wiki, $suffix=null, $params=[], $wikiTags=[])
Retrieves the values of all settings, and places them in their corresponding global variables.
$wikis
Array of wikis, should be the same as $wgLocalDatabases.
getSetting( $settingName, $wiki, array $params)
Really retrieves a configuration setting for a given wiki.
mergeParams( $wiki, $suffix, array $params, array $wikiTags)
Merge params between the ones passed to the function and the ones given by self::$siteParamsCallback ...
static arrayMerge( $array1)
Merge multiple arrays together.
array $cfgCache
Configuration cache for getConfig()
string array $fullLoadCallback
Optional callback to load full configuration data.
extractGlobal( $setting, $wiki, $suffix=null, $params=[], $wikiTags=[])
Retrieves the value of a given setting, and places it in its corresponding global variable.
string array $siteParamsCallback
A callback function that returns an array with the following keys (all optional):
extractGlobalSetting( $setting, $wiki, $params)
getAll( $wiki, $suffix=null, $params=[], $wikiTags=[])
Gets all settings for a wiki.
extractVar( $setting, $wiki, $suffix, &$var, $params=[], $wikiTags=[])
Retrieves the value of a given setting, and places it in a variable passed by reference.
getWikiParams( $wiki)
Return specific settings for $wiki See the documentation of self::$siteParamsCallback for more in-dep...
siteFromDB( $db)
Work out the site and language name from a database name.
getBool( $setting, $wiki, $suffix=null, $wikiTags=[])
Retrieves a configuration setting for a given wiki, forced to a boolean.
$settings
The whole array of settings.
& getLocalDatabases()
Retrieves an array of local databases.
$fullLoadDone
Whether or not all data has been loaded.
$suffixes
Array of suffixes, for self::siteFromDB()
doReplace( $from, $to, $in)
Type-safe string replace; won't do replacements on non-strings private?
the array() calling protocol came about after MediaWiki 1.4rc1.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account incomplete not yet checked for validity & $retval
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
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub 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
Allows to change the fields on the form that will be generated $name
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
if(!isset( $args[0])) $lang