2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
2020-03-14 18:56:18 +00:00
|
|
|
* The setup for all MediaWiki processes (both web-based and CLI).
|
2014-04-13 20:07:50 +00:00
|
|
|
*
|
2020-04-12 20:22:41 +00:00
|
|
|
* This file must be included by all entry points (such as WebStart.php and doMaintenance.php).
|
|
|
|
|
* - The entry point MUST do these:
|
|
|
|
|
* - define the 'MEDIAWIKI' constant.
|
|
|
|
|
* - define the $IP global variable.
|
|
|
|
|
* - The entry point SHOULD do these:
|
|
|
|
|
* - define the 'MW_ENTRY_POINT' constant.
|
|
|
|
|
* - display an error if MW_CONFIG_CALLBACK is not defined and the
|
|
|
|
|
* the file specified in MW_CONFIG_FILE (or the $IP/LocalSettings.php default)
|
|
|
|
|
* does not exist. The error should either be sent before and instead
|
|
|
|
|
* of the Setup.php inclusion, or (if it needs classes and dependencies
|
|
|
|
|
* from core) the erorr can be displayed via a MW_CONFIG_CALLBACK,
|
|
|
|
|
* which must then abort the process to prevent the rest of Setup.php
|
|
|
|
|
* from executing.
|
2020-03-14 18:56:18 +00:00
|
|
|
*
|
|
|
|
|
* It does:
|
|
|
|
|
* - run-time environment checks,
|
|
|
|
|
* - load autoloaders, constants, default settings, and global functions,
|
|
|
|
|
* - load the site configuration (e.g. LocalSettings.php),
|
|
|
|
|
* - load the enabled extensions (via ExtensionRegistry),
|
|
|
|
|
* - expand any dynamic site configuration defaults and shortcuts
|
|
|
|
|
* - initialization of:
|
|
|
|
|
* - PHP run-time (setlocale, memory limit, default date timezone)
|
|
|
|
|
* - the debug logger (MWDebug)
|
|
|
|
|
* - the service container (MediaWikiServices)
|
|
|
|
|
* - the exception handler (MWExceptionHandler)
|
|
|
|
|
* - the session manager (SessionManager)
|
2012-05-10 15:51:44 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
2010-10-02 07:57:43 +00:00
|
|
|
*
|
|
|
|
|
* @file
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2020-06-01 05:00:39 +00:00
|
|
|
|
|
|
|
|
use MediaWiki\Logger\LoggerFactory;
|
2016-05-01 19:29:11 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2019-10-03 04:01:38 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
2018-05-10 23:18:19 +00:00
|
|
|
use Wikimedia\Rdbms\ChronologyProtector;
|
2020-01-10 00:00:51 +00:00
|
|
|
use Wikimedia\Rdbms\LBFactory;
|
2004-09-02 23:28:24 +00:00
|
|
|
|
|
|
|
|
/**
|
2020-03-13 16:20:13 +00:00
|
|
|
* Environment checks
|
|
|
|
|
*
|
|
|
|
|
* These are inline checks done before we include any source files,
|
|
|
|
|
* and thus these conditions may be assumed by all source code.
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2020-03-13 16:20:13 +00:00
|
|
|
|
|
|
|
|
// This file must be included from a valid entry point (e.g. WebStart.php, Maintenance.php)
|
2011-01-14 21:42:38 +00:00
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
2006-07-14 05:35:31 +00:00
|
|
|
exit( 1 );
|
2008-04-14 07:45:50 +00:00
|
|
|
}
|
2004-08-06 22:30:47 +00:00
|
|
|
|
2020-03-13 16:20:13 +00:00
|
|
|
// This file must have global scope.
|
2018-10-04 20:34:28 +00:00
|
|
|
$wgScopeTest = 'MediaWiki Setup.php scope test';
|
|
|
|
|
if ( !isset( $GLOBALS['wgScopeTest'] ) || $GLOBALS['wgScopeTest'] !== $wgScopeTest ) {
|
|
|
|
|
echo "Error, Setup.php must be included from the file scope.\n";
|
|
|
|
|
die( 1 );
|
|
|
|
|
}
|
|
|
|
|
unset( $wgScopeTest );
|
|
|
|
|
|
2020-03-13 16:20:13 +00:00
|
|
|
// PHP must not be configured to overload mbstring functions. (T5782, T122807)
|
|
|
|
|
// This was deprecated by upstream in PHP 7.2, likely to be removed in PHP 8.0.
|
2018-04-17 22:07:48 +00:00
|
|
|
if ( ini_get( 'mbstring.func_overload' ) ) {
|
|
|
|
|
die( 'MediaWiki does not support installations where mbstring.func_overload is non-zero.' );
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-13 16:20:13 +00:00
|
|
|
// The MW_ENTRY_POINT constant must always exists, to make it safe to access.
|
|
|
|
|
// For compat, we do support older and custom MW entryoints that don't set this,
|
|
|
|
|
// in which case we assign a default here.
|
2019-09-02 23:55:00 +00:00
|
|
|
if ( !defined( 'MW_ENTRY_POINT' ) ) {
|
|
|
|
|
/**
|
|
|
|
|
* The entry point, which may be either the script filename without the
|
|
|
|
|
* file extension, or "cli" for maintenance scripts, or "unknown" for any
|
|
|
|
|
* entry point that does not set the constant.
|
|
|
|
|
*/
|
|
|
|
|
define( 'MW_ENTRY_POINT', 'unknown' );
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-13 16:20:13 +00:00
|
|
|
/**
|
|
|
|
|
* Pre-config setup: Before loading LocalSettings.php
|
|
|
|
|
*
|
|
|
|
|
* These are changes and additions to runtime that don't vary on site configuration.
|
|
|
|
|
*/
|
2017-09-19 19:24:19 +00:00
|
|
|
|
2020-03-13 16:20:13 +00:00
|
|
|
require_once "$IP/includes/AutoLoader.php";
|
2017-09-19 19:24:19 +00:00
|
|
|
require_once "$IP/includes/Defines.php";
|
|
|
|
|
require_once "$IP/includes/DefaultSettings.php";
|
|
|
|
|
require_once "$IP/includes/GlobalFunctions.php";
|
|
|
|
|
|
|
|
|
|
// Load composer's autoloader if present
|
|
|
|
|
if ( is_readable( "$IP/vendor/autoload.php" ) ) {
|
|
|
|
|
require_once "$IP/vendor/autoload.php";
|
2019-02-02 19:56:31 +00:00
|
|
|
} elseif ( file_exists( "$IP/vendor/autoload.php" ) ) {
|
|
|
|
|
die( "$IP/vendor/autoload.php exists but is not readable" );
|
2017-09-19 19:24:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Assert that composer dependencies were successfully loaded
|
2019-10-03 04:01:38 +00:00
|
|
|
if ( !interface_exists( LoggerInterface::class ) ) {
|
2017-09-19 19:24:19 +00:00
|
|
|
$message = (
|
|
|
|
|
'MediaWiki requires the <a href="https://github.com/php-fig/log">PSR-3 logging ' .
|
|
|
|
|
"library</a> to be present. This library is not embedded directly in MediaWiki's " .
|
|
|
|
|
"git repository and must be installed separately by the end user.\n\n" .
|
|
|
|
|
'Please see <a href="https://www.mediawiki.org/wiki/Download_from_Git' .
|
|
|
|
|
'#Fetch_external_libraries">mediawiki.org</a> for help on installing ' .
|
|
|
|
|
'the required components.'
|
|
|
|
|
);
|
|
|
|
|
echo $message;
|
|
|
|
|
trigger_error( $message, E_USER_ERROR );
|
|
|
|
|
die( 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MediaWiki\HeaderCallback::register();
|
|
|
|
|
|
2019-08-25 18:22:26 +00:00
|
|
|
// Set the encoding used by PHP for reading HTTP input, and writing output.
|
2019-07-13 00:46:56 +00:00
|
|
|
// This is also the default for mbstring functions.
|
|
|
|
|
mb_internal_encoding( 'UTF-8' );
|
|
|
|
|
|
2017-09-19 19:24:19 +00:00
|
|
|
/**
|
|
|
|
|
* Load LocalSettings.php
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if ( defined( 'MW_CONFIG_CALLBACK' ) ) {
|
|
|
|
|
call_user_func( MW_CONFIG_CALLBACK );
|
|
|
|
|
} else {
|
|
|
|
|
if ( !defined( 'MW_CONFIG_FILE' ) ) {
|
|
|
|
|
define( 'MW_CONFIG_FILE', "$IP/LocalSettings.php" );
|
|
|
|
|
}
|
|
|
|
|
require_once MW_CONFIG_FILE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Customization point after all loading (constants, functions, classes,
|
|
|
|
|
* DefaultSettings, LocalSettings). Specifically, this is before usage of
|
|
|
|
|
* settings, before instantiation of Profiler (and other singletons), and
|
|
|
|
|
* before any setup functions or hooks run.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if ( defined( 'MW_SETUP_CALLBACK' ) ) {
|
|
|
|
|
call_user_func( MW_SETUP_CALLBACK );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2020-03-14 18:56:18 +00:00
|
|
|
* Load queued extensions
|
2017-09-19 19:24:19 +00:00
|
|
|
*/
|
|
|
|
|
|
Implement extension registration from an extension.json file
Introduces wfLoadExtension()/wfLoadSkin() which should be used in
LocalSettings.php rather than require-ing a PHP entry point.
Extensions and skins would add "extension.json" or "skin.json" files
in their root, which contains all the information typically
present in PHP entry point files (classes to autoload, special pages,
API modules, etc.) A full schema can be found at
docs/extension.schema.json, and a script to validate these to the
schema is provided. An additional script is provided to convert
typical PHP entry point files into their JSON equivalents.
The basic flow of loading an extension goes like:
* Get the ExtensionRegistry singleton instance
* ExtensionRegistry takes a filename, reads the file or tries
to get the parsed JSON from APC if possible.
* The JSON is run through a Processor instance,
which registers things with the appropriate
global settings.
* The output of the processor is cached in APC if possible.
* The extension/skin is marked as loaded in the
ExtensionRegistry and a callback function is executed
if one was specified.
For ideal performance, a batch loading method is also provided:
* The absolute path name to the JSON file is queued
in the ExtensionRegistry instance.
* When loadFromQueue() is called, it constructs a hash
unique to the members of the current queue, and sees
if the queue has been cached in APC. If not, it processes
each file individually, and combines the result of each
Processor into one giant array, which is cached in APC.
* The giant array then sets various global settings,
defines constants, and calls callbacks.
To invalidate the cached processed info, by default the mtime
of each JSON file is checked. However that can be slow if you
have a large number of extensions, so you can set $wgExtensionInfoMTime
to the mtime of one file, and `touch` it whenever you update
your extensions.
Change-Id: I7074b65d07c5c7d4e3f1fb0755d74a0b07ed4596
2014-10-15 00:31:15 +00:00
|
|
|
ExtensionRegistry::getInstance()->loadFromQueue();
|
2016-12-03 17:46:48 +00:00
|
|
|
// Don't let any other extensions load
|
|
|
|
|
ExtensionRegistry::getInstance()->finish();
|
Implement extension registration from an extension.json file
Introduces wfLoadExtension()/wfLoadSkin() which should be used in
LocalSettings.php rather than require-ing a PHP entry point.
Extensions and skins would add "extension.json" or "skin.json" files
in their root, which contains all the information typically
present in PHP entry point files (classes to autoload, special pages,
API modules, etc.) A full schema can be found at
docs/extension.schema.json, and a script to validate these to the
schema is provided. An additional script is provided to convert
typical PHP entry point files into their JSON equivalents.
The basic flow of loading an extension goes like:
* Get the ExtensionRegistry singleton instance
* ExtensionRegistry takes a filename, reads the file or tries
to get the parsed JSON from APC if possible.
* The JSON is run through a Processor instance,
which registers things with the appropriate
global settings.
* The output of the processor is cached in APC if possible.
* The extension/skin is marked as loaded in the
ExtensionRegistry and a callback function is executed
if one was specified.
For ideal performance, a batch loading method is also provided:
* The absolute path name to the JSON file is queued
in the ExtensionRegistry instance.
* When loadFromQueue() is called, it constructs a hash
unique to the members of the current queue, and sees
if the queue has been cached in APC. If not, it processes
each file individually, and combines the result of each
Processor into one giant array, which is cached in APC.
* The giant array then sets various global settings,
defines constants, and calls callbacks.
To invalidate the cached processed info, by default the mtime
of each JSON file is checked. However that can be slow if you
have a large number of extensions, so you can set $wgExtensionInfoMTime
to the mtime of one file, and `touch` it whenever you update
your extensions.
Change-Id: I7074b65d07c5c7d4e3f1fb0755d74a0b07ed4596
2014-10-15 00:31:15 +00:00
|
|
|
|
2020-03-14 18:56:18 +00:00
|
|
|
// Set the configured locale on all requests for consistency
|
|
|
|
|
// This must be after LocalSettings.php (and is informed by the installer).
|
2017-05-09 16:12:41 +00:00
|
|
|
putenv( "LC_ALL=$wgShellLocale" );
|
|
|
|
|
setlocale( LC_ALL, $wgShellLocale );
|
|
|
|
|
|
2020-03-14 18:56:18 +00:00
|
|
|
/**
|
|
|
|
|
* Expand dynamic defaults and shortcuts
|
|
|
|
|
*/
|
|
|
|
|
|
2013-04-20 22:49:30 +00:00
|
|
|
if ( $wgScript === false ) {
|
2015-10-07 16:47:25 +00:00
|
|
|
$wgScript = "$wgScriptPath/index.php";
|
2013-04-20 22:49:30 +00:00
|
|
|
}
|
|
|
|
|
if ( $wgLoadScript === false ) {
|
2015-10-07 16:47:25 +00:00
|
|
|
$wgLoadScript = "$wgScriptPath/load.php";
|
2013-04-20 22:49:30 +00:00
|
|
|
}
|
2019-05-09 01:36:18 +00:00
|
|
|
if ( $wgRestPath === false ) {
|
|
|
|
|
$wgRestPath = "$wgScriptPath/rest.php";
|
|
|
|
|
}
|
2011-01-14 21:42:38 +00:00
|
|
|
if ( $wgArticlePath === false ) {
|
|
|
|
|
if ( $wgUsePathInfo ) {
|
2013-01-26 18:32:03 +00:00
|
|
|
$wgArticlePath = "$wgScript/$1";
|
2007-01-03 08:41:16 +00:00
|
|
|
} else {
|
2013-01-26 18:32:03 +00:00
|
|
|
$wgArticlePath = "$wgScript?title=$1";
|
2007-01-03 08:41:16 +00:00
|
|
|
}
|
|
|
|
|
}
|
2015-09-01 16:13:02 +00:00
|
|
|
if ( $wgResourceBasePath === null ) {
|
|
|
|
|
$wgResourceBasePath = $wgScriptPath;
|
|
|
|
|
}
|
2013-04-20 22:49:30 +00:00
|
|
|
if ( $wgStylePath === false ) {
|
2015-09-01 16:13:02 +00:00
|
|
|
$wgStylePath = "$wgResourceBasePath/skins";
|
2013-04-20 22:49:30 +00:00
|
|
|
}
|
|
|
|
|
if ( $wgLocalStylePath === false ) {
|
2015-09-01 16:13:02 +00:00
|
|
|
// Avoid wgResourceBasePath here since that may point to a different domain (e.g. CDN)
|
2013-04-20 22:49:30 +00:00
|
|
|
$wgLocalStylePath = "$wgScriptPath/skins";
|
|
|
|
|
}
|
|
|
|
|
if ( $wgExtensionAssetsPath === false ) {
|
2015-09-01 16:13:02 +00:00
|
|
|
$wgExtensionAssetsPath = "$wgResourceBasePath/extensions";
|
2014-09-17 23:12:53 +00:00
|
|
|
}
|
2007-01-03 08:41:16 +00:00
|
|
|
|
2020-01-07 19:18:51 +00:00
|
|
|
// For backwards compatibility, the value of wgLogos is copied to wgLogo.
|
|
|
|
|
// This is because some extensions/skins may be using $config->get('Logo')
|
|
|
|
|
// to access the value.
|
2020-02-05 15:44:14 +00:00
|
|
|
if ( $wgLogos !== false && isset( $wgLogos['1x'] ) ) {
|
2020-01-07 19:18:51 +00:00
|
|
|
$wgLogo = $wgLogos['1x'];
|
|
|
|
|
}
|
2013-04-20 22:49:30 +00:00
|
|
|
if ( $wgLogo === false ) {
|
2014-09-18 11:01:33 +00:00
|
|
|
$wgLogo = "$wgResourceBasePath/resources/assets/wiki.png";
|
2013-04-20 22:49:30 +00:00
|
|
|
}
|
2007-01-03 08:41:16 +00:00
|
|
|
|
2013-04-20 22:49:30 +00:00
|
|
|
if ( $wgUploadPath === false ) {
|
|
|
|
|
$wgUploadPath = "$wgScriptPath/images";
|
|
|
|
|
}
|
|
|
|
|
if ( $wgUploadDirectory === false ) {
|
|
|
|
|
$wgUploadDirectory = "$IP/images";
|
|
|
|
|
}
|
|
|
|
|
if ( $wgReadOnlyFile === false ) {
|
|
|
|
|
$wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
|
|
|
|
|
}
|
|
|
|
|
if ( $wgFileCacheDirectory === false ) {
|
|
|
|
|
$wgFileCacheDirectory = "{$wgUploadDirectory}/cache";
|
|
|
|
|
}
|
|
|
|
|
if ( $wgDeletedDirectory === false ) {
|
|
|
|
|
$wgDeletedDirectory = "{$wgUploadDirectory}/deleted";
|
|
|
|
|
}
|
2014-06-26 19:05:29 +00:00
|
|
|
if ( $wgGitInfoCacheDirectory === false && $wgCacheDirectory !== false ) {
|
|
|
|
|
$wgGitInfoCacheDirectory = "{$wgCacheDirectory}/gitinfo";
|
|
|
|
|
}
|
2020-03-14 18:56:18 +00:00
|
|
|
if ( $wgSharedPrefix === false ) {
|
|
|
|
|
$wgSharedPrefix = $wgDBprefix;
|
|
|
|
|
}
|
|
|
|
|
if ( $wgSharedSchema === false ) {
|
|
|
|
|
$wgSharedSchema = $wgDBmwschema;
|
|
|
|
|
}
|
|
|
|
|
if ( $wgMetaNamespace === false ) {
|
|
|
|
|
$wgMetaNamespace = str_replace( ' ', '_', $wgSitename );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Blacklisted file extensions shouldn't appear on the "allowed" list
|
|
|
|
|
$wgFileExtensions = array_values( array_diff( $wgFileExtensions, $wgFileBlacklist ) );
|
2014-06-26 19:05:29 +00:00
|
|
|
|
2014-09-09 12:29:57 +00:00
|
|
|
// Fix path to icon images after they were moved in 1.24
|
|
|
|
|
if ( $wgRightsIcon ) {
|
|
|
|
|
$wgRightsIcon = str_replace(
|
|
|
|
|
"{$wgStylePath}/common/images/",
|
2014-09-17 23:12:53 +00:00
|
|
|
"{$wgResourceBasePath}/resources/assets/licenses/",
|
2014-09-09 12:29:57 +00:00
|
|
|
$wgRightsIcon
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-01 21:12:00 +00:00
|
|
|
if ( isset( $wgFooterIcons['copyright']['copyright'] )
|
2016-02-17 09:09:32 +00:00
|
|
|
&& $wgFooterIcons['copyright']['copyright'] === []
|
2013-12-01 20:39:00 +00:00
|
|
|
) {
|
2016-01-02 21:49:29 +00:00
|
|
|
if ( $wgRightsIcon || $wgRightsText ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$wgFooterIcons['copyright']['copyright'] = [
|
2011-01-14 21:42:38 +00:00
|
|
|
'url' => $wgRightsUrl,
|
|
|
|
|
'src' => $wgRightsIcon,
|
|
|
|
|
'alt' => $wgRightsText,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2010-12-04 20:55:23 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-01 20:39:00 +00:00
|
|
|
if ( isset( $wgFooterIcons['poweredby'] )
|
|
|
|
|
&& isset( $wgFooterIcons['poweredby']['mediawiki'] )
|
|
|
|
|
&& $wgFooterIcons['poweredby']['mediawiki']['src'] === null
|
|
|
|
|
) {
|
2014-05-11 15:33:33 +00:00
|
|
|
$wgFooterIcons['poweredby']['mediawiki']['src'] =
|
2014-09-17 23:12:53 +00:00
|
|
|
"$wgResourceBasePath/resources/assets/poweredby_mediawiki_88x31.png";
|
2014-10-13 14:15:12 +00:00
|
|
|
$wgFooterIcons['poweredby']['mediawiki']['srcset'] =
|
|
|
|
|
"$wgResourceBasePath/resources/assets/poweredby_mediawiki_132x47.png 1.5x, " .
|
|
|
|
|
"$wgResourceBasePath/resources/assets/poweredby_mediawiki_176x62.png 2x";
|
2010-12-04 20:55:23 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-31 13:03:30 +00:00
|
|
|
/**
|
2009-07-15 22:41:56 +00:00
|
|
|
* Unconditional protection for NS_MEDIAWIKI since otherwise it's too easy for a
|
|
|
|
|
* sysadmin to set $wgNamespaceProtection incorrectly and leave the wiki insecure.
|
2008-08-31 13:03:30 +00:00
|
|
|
*
|
2009-07-15 22:41:56 +00:00
|
|
|
* Note that this is the definition of editinterface and it can be granted to
|
2008-08-31 13:03:30 +00:00
|
|
|
* all users if desired.
|
|
|
|
|
*/
|
|
|
|
|
$wgNamespaceProtection[NS_MEDIAWIKI] = 'editinterface';
|
|
|
|
|
|
2011-12-20 03:52:06 +00:00
|
|
|
/**
|
|
|
|
|
* Initialise $wgLockManagers to include basic FS version
|
|
|
|
|
*/
|
2016-02-17 09:09:32 +00:00
|
|
|
$wgLockManagers[] = [
|
2013-04-20 22:49:30 +00:00
|
|
|
'name' => 'fsLockManager',
|
2018-01-13 00:02:09 +00:00
|
|
|
'class' => FSLockManager::class,
|
2011-12-20 03:52:06 +00:00
|
|
|
'lockDirectory' => "{$wgUploadDirectory}/lockdir",
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
|
|
|
|
$wgLockManagers[] = [
|
2013-04-20 22:49:30 +00:00
|
|
|
'name' => 'nullLockManager',
|
2018-01-13 00:02:09 +00:00
|
|
|
'class' => NullLockManager::class,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2011-12-20 03:52:06 +00:00
|
|
|
|
2017-06-23 11:31:49 +00:00
|
|
|
/**
|
|
|
|
|
* Default parameters for the "<gallery>" tag.
|
|
|
|
|
* @see DefaultSettings.php for description of the fields.
|
|
|
|
|
*/
|
|
|
|
|
$wgGalleryOptions += [
|
|
|
|
|
'imagesPerRow' => 0,
|
|
|
|
|
'imageWidth' => 120,
|
|
|
|
|
'imageHeight' => 120,
|
|
|
|
|
'captionLength' => true,
|
|
|
|
|
'showBytes' => true,
|
|
|
|
|
'showDimensions' => true,
|
|
|
|
|
'mode' => 'traditional',
|
|
|
|
|
];
|
|
|
|
|
|
2007-05-30 21:02:32 +00:00
|
|
|
/**
|
2018-07-14 01:22:44 +00:00
|
|
|
* Shortcuts for $wgLocalFileRepo
|
2007-05-30 21:02:32 +00:00
|
|
|
*/
|
2008-12-23 23:34:35 +00:00
|
|
|
if ( !$wgLocalFileRepo ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$wgLocalFileRepo = [
|
2018-01-13 00:02:09 +00:00
|
|
|
'class' => LocalRepo::class,
|
2007-05-30 21:02:32 +00:00
|
|
|
'name' => 'local',
|
|
|
|
|
'directory' => $wgUploadDirectory,
|
2010-07-02 19:54:46 +00:00
|
|
|
'scriptDirUrl' => $wgScriptPath,
|
2007-05-30 21:02:32 +00:00
|
|
|
'url' => $wgUploadBaseUrl ? $wgUploadBaseUrl . $wgUploadPath : $wgUploadPath,
|
|
|
|
|
'hashLevels' => $wgHashedUploadDirectory ? 2 : 0,
|
|
|
|
|
'thumbScriptUrl' => $wgThumbnailScriptPath,
|
|
|
|
|
'transformVia404' => !$wgGenerateThumbnailOnParse,
|
2010-07-04 15:56:46 +00:00
|
|
|
'deletedDir' => $wgDeletedDirectory,
|
2014-07-31 19:17:42 +00:00
|
|
|
'deletedHashLevels' => $wgHashedUploadDirectory ? 3 : 0
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2007-05-30 21:02:32 +00:00
|
|
|
}
|
2018-07-14 01:22:44 +00:00
|
|
|
|
|
|
|
|
if ( !isset( $wgLocalFileRepo['backend'] ) ) {
|
|
|
|
|
// Create a default FileBackend name.
|
|
|
|
|
// FileBackendGroup will register a default, if absent from $wgFileBackends.
|
|
|
|
|
$wgLocalFileRepo['backend'] = $wgLocalFileRepo['name'] . '-backend';
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-30 21:02:32 +00:00
|
|
|
/**
|
2018-07-14 01:22:44 +00:00
|
|
|
* Shortcuts for $wgForeignFileRepos
|
2007-05-30 21:02:32 +00:00
|
|
|
*/
|
2008-12-23 23:34:35 +00:00
|
|
|
if ( $wgUseSharedUploads ) {
|
|
|
|
|
if ( $wgSharedUploadDBname ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$wgForeignFileRepos[] = [
|
2018-01-13 00:02:09 +00:00
|
|
|
'class' => ForeignDBRepo::class,
|
2007-05-30 21:02:32 +00:00
|
|
|
'name' => 'shared',
|
|
|
|
|
'directory' => $wgSharedUploadDirectory,
|
|
|
|
|
'url' => $wgSharedUploadPath,
|
|
|
|
|
'hashLevels' => $wgHashedSharedUploadDirectory ? 2 : 0,
|
|
|
|
|
'thumbScriptUrl' => $wgSharedThumbnailScriptPath,
|
|
|
|
|
'transformVia404' => !$wgGenerateThumbnailOnParse,
|
|
|
|
|
'dbType' => $wgDBtype,
|
|
|
|
|
'dbServer' => $wgDBserver,
|
|
|
|
|
'dbUser' => $wgDBuser,
|
|
|
|
|
'dbPassword' => $wgDBpassword,
|
|
|
|
|
'dbName' => $wgSharedUploadDBname,
|
2011-01-14 21:42:38 +00:00
|
|
|
'dbFlags' => ( $wgDebugDumpSql ? DBO_DEBUG : 0 ) | DBO_DEFAULT,
|
2007-05-30 21:02:32 +00:00
|
|
|
'tablePrefix' => $wgSharedUploadDBprefix,
|
|
|
|
|
'hasSharedCache' => $wgCacheSharedUploads,
|
|
|
|
|
'descBaseUrl' => $wgRepositoryBaseUrl,
|
|
|
|
|
'fetchDescription' => $wgFetchCommonsDescriptions,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2007-05-30 21:02:32 +00:00
|
|
|
} else {
|
2016-02-17 09:09:32 +00:00
|
|
|
$wgForeignFileRepos[] = [
|
2018-01-13 00:02:09 +00:00
|
|
|
'class' => FileRepo::class,
|
2007-05-30 21:02:32 +00:00
|
|
|
'name' => 'shared',
|
|
|
|
|
'directory' => $wgSharedUploadDirectory,
|
|
|
|
|
'url' => $wgSharedUploadPath,
|
|
|
|
|
'hashLevels' => $wgHashedSharedUploadDirectory ? 2 : 0,
|
|
|
|
|
'thumbScriptUrl' => $wgSharedThumbnailScriptPath,
|
|
|
|
|
'transformVia404' => !$wgGenerateThumbnailOnParse,
|
|
|
|
|
'descBaseUrl' => $wgRepositoryBaseUrl,
|
|
|
|
|
'fetchDescription' => $wgFetchCommonsDescriptions,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2007-05-30 21:02:32 +00:00
|
|
|
}
|
|
|
|
|
}
|
2011-01-14 21:42:38 +00:00
|
|
|
if ( $wgUseInstantCommons ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$wgForeignFileRepos[] = [
|
2018-01-13 00:02:09 +00:00
|
|
|
'class' => ForeignAPIRepo::class,
|
2013-04-20 22:49:30 +00:00
|
|
|
'name' => 'wikimediacommons',
|
2015-06-15 22:47:08 +00:00
|
|
|
'apibase' => 'https://commons.wikimedia.org/w/api.php',
|
2015-11-06 19:24:30 +00:00
|
|
|
'url' => 'https://upload.wikimedia.org/wikipedia/commons',
|
|
|
|
|
'thumbUrl' => 'https://upload.wikimedia.org/wikipedia/commons/thumb',
|
2013-04-20 22:49:30 +00:00
|
|
|
'hashLevels' => 2,
|
2015-11-06 19:24:30 +00:00
|
|
|
'transformVia404' => true,
|
2013-04-20 22:49:30 +00:00
|
|
|
'fetchDescription' => true,
|
2012-01-02 15:34:35 +00:00
|
|
|
'descriptionCacheExpiry' => 43200,
|
2017-01-25 20:03:33 +00:00
|
|
|
'apiThumbCacheExpiry' => 0,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2009-11-06 15:38:47 +00:00
|
|
|
}
|
2011-12-20 03:52:06 +00:00
|
|
|
foreach ( $wgForeignFileRepos as &$repo ) {
|
2018-01-13 00:02:09 +00:00
|
|
|
if ( !isset( $repo['directory'] ) && $repo['class'] === ForeignAPIRepo::class ) {
|
2011-12-22 01:06:19 +00:00
|
|
|
$repo['directory'] = $wgUploadDirectory; // b/c
|
|
|
|
|
}
|
2011-12-20 03:52:06 +00:00
|
|
|
if ( !isset( $repo['backend'] ) ) {
|
2011-12-22 01:06:19 +00:00
|
|
|
$repo['backend'] = $repo['name'] . '-backend';
|
2011-12-20 03:52:06 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
unset( $repo ); // no global pollution; destroy reference
|
2009-11-06 15:38:47 +00:00
|
|
|
|
2015-12-29 13:24:27 +00:00
|
|
|
$rcMaxAgeDays = $wgRCMaxAge / ( 3600 * 24 );
|
|
|
|
|
// Ensure that default user options are not invalid, since that breaks Special:Preferences
|
|
|
|
|
$wgDefaultUserOptions['rcdays'] = min(
|
|
|
|
|
$wgDefaultUserOptions['rcdays'],
|
|
|
|
|
ceil( $rcMaxAgeDays )
|
|
|
|
|
);
|
|
|
|
|
$wgDefaultUserOptions['watchlistdays'] = min(
|
|
|
|
|
$wgDefaultUserOptions['watchlistdays'],
|
|
|
|
|
ceil( $rcMaxAgeDays )
|
|
|
|
|
);
|
|
|
|
|
unset( $rcMaxAgeDays );
|
2011-01-06 21:00:17 +00:00
|
|
|
|
|
|
|
|
if ( !$wgCookiePrefix ) {
|
|
|
|
|
if ( $wgSharedDB && $wgSharedPrefix && in_array( 'user', $wgSharedTables ) ) {
|
|
|
|
|
$wgCookiePrefix = $wgSharedDB . '_' . $wgSharedPrefix;
|
|
|
|
|
} elseif ( $wgSharedDB && in_array( 'user', $wgSharedTables ) ) {
|
|
|
|
|
$wgCookiePrefix = $wgSharedDB;
|
|
|
|
|
} elseif ( $wgDBprefix ) {
|
|
|
|
|
$wgCookiePrefix = $wgDBname . '_' . $wgDBprefix;
|
|
|
|
|
} else {
|
|
|
|
|
$wgCookiePrefix = $wgDBname;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-01-14 21:42:38 +00:00
|
|
|
$wgCookiePrefix = strtr( $wgCookiePrefix, '=,; +."\'\\[', '__________' );
|
2011-01-06 21:00:17 +00:00
|
|
|
|
2014-08-04 19:59:25 +00:00
|
|
|
if ( $wgEnableEmail ) {
|
|
|
|
|
$wgUseEnotif = $wgEnotifUserTalk || $wgEnotifWatchlist;
|
|
|
|
|
} else {
|
|
|
|
|
// Disable all other email settings automatically if $wgEnableEmail
|
2017-02-20 22:44:19 +00:00
|
|
|
// is set to false. - T65678
|
2014-08-04 19:59:25 +00:00
|
|
|
$wgAllowHTMLEmail = false;
|
|
|
|
|
$wgEmailAuthentication = false; // do not require auth if you're not sending email anyway
|
|
|
|
|
$wgEnableUserEmail = false;
|
|
|
|
|
$wgEnotifFromEditor = false;
|
|
|
|
|
$wgEnotifImpersonal = false;
|
|
|
|
|
$wgEnotifMaxRecips = 0;
|
|
|
|
|
$wgEnotifMinorEdits = false;
|
|
|
|
|
$wgEnotifRevealEditorAddress = false;
|
|
|
|
|
$wgEnotifUseRealName = false;
|
|
|
|
|
$wgEnotifUserTalk = false;
|
|
|
|
|
$wgEnotifWatchlist = false;
|
|
|
|
|
unset( $wgGroupPermissions['user']['sendemail'] );
|
|
|
|
|
$wgUseEnotif = false;
|
|
|
|
|
$wgUserEmailUseReplyTo = false;
|
2016-02-17 09:09:32 +00:00
|
|
|
$wgUsersNotifiedOnAllChanges = [];
|
2014-08-04 19:59:25 +00:00
|
|
|
}
|
|
|
|
|
|
The beginnings of HipHop compiled mode support. It works now for parser cache hits.
* Work around HipHop issue 314 (volatile broken) and issue 308 (no compilation detection) by adding some large and ugly compilation detection code to WebStart.php and doMaintenance.php.
* Provide an MW_COMPILED constant which can be used to detect compiled mode throughout the codebase.
* Introduced wfIsHipHop(), which detects either compiled or interpreted mode. Used this to work around unusual eval() return value in eval.php.
* Work around lack of ini_get() in Maintenance.php, by duplicating wfIsHipHop().
* In Maintenance::shouldExecute(), accept "include" as an inclusion function name, since all kinds of inclusion give this string in HipHop.
* Introduced new class MWInit, which provides some static functions in the pre-autoloader environment.
* Introduced MWInit::compiledPath(), which provides a relative path for invoking a compiled file, and MWInit::interpretedPath(), which provides an absolute path for interpreting a PHP file. Used these new functions in the appropriate places.
* When we are running compiled code, don't include files which would generate duplicate class, function or constant definitions. Documented the new requirements on the contents of Defines.php and UtfNormalDefines.php.
* In HipHop compiled mode, it's not possible to have executable code in the same file as a class definition.
** Moved MimeMagic initialisation to the constructor.
** Moved Namespace.php global variable initialisation to Setup.php.
** Moved MemcachedSessions.php initialisation to the caller in GlobalFunctions.php.
** Moved Sanitizer.php constants and global variables to static class members. Introduced an accessor function for the attribs regex, as a new place to put code formerly at file level.
** Moved Language.php initialisation of $wgLanguageNames to Language::getLanguageNames(). Removed the global variable, marked "private" since forever.
* In two places: don't use error_log() with type=3 to append to a file, HipHop doesn't support it. Use file_put_contents() with FILE_APPEND instead.
* Work around the terrible breakage of class_exists() by using MWInit::classExists() instead in various places. In WebInstaller::getPageByName(), the class_exists() was marked with a fixme comment already, so I replaced it with an autoloader solution.
2011-04-04 12:59:55 +00:00
|
|
|
/**
|
|
|
|
|
* Definitions of the NS_ constants are in Defines.php
|
|
|
|
|
* @private
|
|
|
|
|
*/
|
2019-10-03 21:50:47 +00:00
|
|
|
$wgCanonicalNamespaceNames = NamespaceInfo::CANONICAL_NAMES;
|
The beginnings of HipHop compiled mode support. It works now for parser cache hits.
* Work around HipHop issue 314 (volatile broken) and issue 308 (no compilation detection) by adding some large and ugly compilation detection code to WebStart.php and doMaintenance.php.
* Provide an MW_COMPILED constant which can be used to detect compiled mode throughout the codebase.
* Introduced wfIsHipHop(), which detects either compiled or interpreted mode. Used this to work around unusual eval() return value in eval.php.
* Work around lack of ini_get() in Maintenance.php, by duplicating wfIsHipHop().
* In Maintenance::shouldExecute(), accept "include" as an inclusion function name, since all kinds of inclusion give this string in HipHop.
* Introduced new class MWInit, which provides some static functions in the pre-autoloader environment.
* Introduced MWInit::compiledPath(), which provides a relative path for invoking a compiled file, and MWInit::interpretedPath(), which provides an absolute path for interpreting a PHP file. Used these new functions in the appropriate places.
* When we are running compiled code, don't include files which would generate duplicate class, function or constant definitions. Documented the new requirements on the contents of Defines.php and UtfNormalDefines.php.
* In HipHop compiled mode, it's not possible to have executable code in the same file as a class definition.
** Moved MimeMagic initialisation to the constructor.
** Moved Namespace.php global variable initialisation to Setup.php.
** Moved MemcachedSessions.php initialisation to the caller in GlobalFunctions.php.
** Moved Sanitizer.php constants and global variables to static class members. Introduced an accessor function for the attribs regex, as a new place to put code formerly at file level.
** Moved Language.php initialisation of $wgLanguageNames to Language::getLanguageNames(). Removed the global variable, marked "private" since forever.
* In two places: don't use error_log() with type=3 to append to a file, HipHop doesn't support it. Use file_put_contents() with FILE_APPEND instead.
* Work around the terrible breakage of class_exists() by using MWInit::classExists() instead in various places. In WebInstaller::getPageByName(), the class_exists() was marked with a fixme comment already, so I replaced it with an autoloader solution.
2011-04-04 12:59:55 +00:00
|
|
|
|
|
|
|
|
/// @todo UGLY UGLY
|
2013-04-20 22:49:30 +00:00
|
|
|
if ( is_array( $wgExtraNamespaces ) ) {
|
2017-05-01 17:18:38 +00:00
|
|
|
$wgCanonicalNamespaceNames += $wgExtraNamespaces;
|
The beginnings of HipHop compiled mode support. It works now for parser cache hits.
* Work around HipHop issue 314 (volatile broken) and issue 308 (no compilation detection) by adding some large and ugly compilation detection code to WebStart.php and doMaintenance.php.
* Provide an MW_COMPILED constant which can be used to detect compiled mode throughout the codebase.
* Introduced wfIsHipHop(), which detects either compiled or interpreted mode. Used this to work around unusual eval() return value in eval.php.
* Work around lack of ini_get() in Maintenance.php, by duplicating wfIsHipHop().
* In Maintenance::shouldExecute(), accept "include" as an inclusion function name, since all kinds of inclusion give this string in HipHop.
* Introduced new class MWInit, which provides some static functions in the pre-autoloader environment.
* Introduced MWInit::compiledPath(), which provides a relative path for invoking a compiled file, and MWInit::interpretedPath(), which provides an absolute path for interpreting a PHP file. Used these new functions in the appropriate places.
* When we are running compiled code, don't include files which would generate duplicate class, function or constant definitions. Documented the new requirements on the contents of Defines.php and UtfNormalDefines.php.
* In HipHop compiled mode, it's not possible to have executable code in the same file as a class definition.
** Moved MimeMagic initialisation to the constructor.
** Moved Namespace.php global variable initialisation to Setup.php.
** Moved MemcachedSessions.php initialisation to the caller in GlobalFunctions.php.
** Moved Sanitizer.php constants and global variables to static class members. Introduced an accessor function for the attribs regex, as a new place to put code formerly at file level.
** Moved Language.php initialisation of $wgLanguageNames to Language::getLanguageNames(). Removed the global variable, marked "private" since forever.
* In two places: don't use error_log() with type=3 to append to a file, HipHop doesn't support it. Use file_put_contents() with FILE_APPEND instead.
* Work around the terrible breakage of class_exists() by using MWInit::classExists() instead in various places. In WebInstaller::getPageByName(), the class_exists() was marked with a fixme comment already, so I replaced it with an autoloader solution.
2011-04-04 12:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
2018-10-19 14:40:38 +00:00
|
|
|
// Hard-deprecate setting $wgDummyLanguageCodes in LocalSettings.php
|
|
|
|
|
if ( count( $wgDummyLanguageCodes ) !== 0 ) {
|
|
|
|
|
wfDeprecated( '$wgDummyLanguageCodes', '1.29' );
|
|
|
|
|
}
|
2017-03-09 00:12:01 +00:00
|
|
|
// Merge in the legacy language codes, incorporating overrides from the config
|
|
|
|
|
$wgDummyLanguageCodes += [
|
2018-10-19 14:40:38 +00:00
|
|
|
// Internal language codes of the private-use area which get mapped to
|
|
|
|
|
// themselves.
|
2017-03-09 00:12:01 +00:00
|
|
|
'qqq' => 'qqq', // Used for message documentation
|
|
|
|
|
'qqx' => 'qqx', // Used for viewing message keys
|
|
|
|
|
] + $wgExtraLanguageCodes + LanguageCode::getDeprecatedCodeMapping();
|
2018-10-19 14:40:38 +00:00
|
|
|
// Merge in (inverted) BCP 47 mappings
|
|
|
|
|
foreach ( LanguageCode::getNonstandardLanguageCodeMapping() as $code => $bcp47 ) {
|
|
|
|
|
$bcp47 = strtolower( $bcp47 ); // force case-insensitivity
|
|
|
|
|
if ( !isset( $wgDummyLanguageCodes[$bcp47] ) ) {
|
|
|
|
|
$wgDummyLanguageCodes[$bcp47] = $wgDummyLanguageCodes[$code] ?? $code;
|
|
|
|
|
}
|
|
|
|
|
}
|
Break up $wgDummyLanguageCodes
$wgDummyLanguageCodes is a set and mapping of different language codes:
* Renamed language codes: ['als' => 'gsw', 'bat-smg' => 'sgs',
'be-xold' => 'be-tarask', 'fiu-vro' => 'vro',
'roa-rup' => 'rup', 'zh-classical' => 'lzh',
'zh-min-nan' => 'nan', 'zh-yue' => 'yue'].
The old language codes are deprecated because they are invalid but
should be supported for compatibility reasons for a while.
* Language codes of macro languages, which get mapped to the main
language: ['bh' => 'bho', 'no' => 'nb'].
* Language variants which get mapped to main language:
['simple' => 'en'].
* Internal language codes of the private-use-area which get mapped to
itself: ['qqq' => 'qqq', 'qqx' => 'qqx']
This is a very strange conglomeration which should get differentiated,
and were split up in the following ways:
* Renamed language codes are available from
LanguageCode::getDeprecatedCodeMapping().
* Language codes of macro languages and the variants that are mapped to
the main language are available as $wgExtraLanguageCodes and are set
in DefaultSettings.php.
* Internal language codes are set in $wgDummyLanguageCodes in Setup.php.
Change-Id: If73c74ee87d8235381449cab7dcd9f46b0f23590
2017-01-12 14:17:41 +00:00
|
|
|
|
2011-01-06 21:00:17 +00:00
|
|
|
if ( $wgInvalidateCacheOnLocalSettingsChange ) {
|
2018-02-10 07:52:26 +00:00
|
|
|
Wikimedia\suppressWarnings();
|
2015-06-10 18:29:05 +00:00
|
|
|
$wgCacheEpoch = max( $wgCacheEpoch, gmdate( 'YmdHis', filemtime( "$IP/LocalSettings.php" ) ) );
|
2018-02-10 07:52:26 +00:00
|
|
|
Wikimedia\restoreWarnings();
|
2011-01-06 21:00:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $wgNewUserLog ) {
|
2017-12-22 20:40:13 +00:00
|
|
|
// Add new user log type
|
2013-02-03 20:05:24 +00:00
|
|
|
$wgLogTypes[] = 'newusers';
|
|
|
|
|
$wgLogNames['newusers'] = 'newuserlogpage';
|
|
|
|
|
$wgLogHeaders['newusers'] = 'newuserlogpagetext';
|
2018-01-13 00:02:09 +00:00
|
|
|
$wgLogActionsHandlers['newusers/newusers'] = NewUsersLogFormatter::class;
|
|
|
|
|
$wgLogActionsHandlers['newusers/create'] = NewUsersLogFormatter::class;
|
|
|
|
|
$wgLogActionsHandlers['newusers/create2'] = NewUsersLogFormatter::class;
|
|
|
|
|
$wgLogActionsHandlers['newusers/byemail'] = NewUsersLogFormatter::class;
|
|
|
|
|
$wgLogActionsHandlers['newusers/autocreate'] = NewUsersLogFormatter::class;
|
2011-01-06 21:00:17 +00:00
|
|
|
}
|
|
|
|
|
|
2017-12-22 20:40:13 +00:00
|
|
|
if ( $wgPageCreationLog ) {
|
|
|
|
|
// Add page creation log type
|
|
|
|
|
$wgLogTypes[] = 'create';
|
|
|
|
|
$wgLogActionsHandlers['create/create'] = LogFormatter::class;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-25 14:38:50 +00:00
|
|
|
if ( $wgPageLanguageUseDB ) {
|
|
|
|
|
$wgLogTypes[] = 'pagelang';
|
2018-01-13 00:02:09 +00:00
|
|
|
$wgLogActionsHandlers['pagelang/pagelang'] = PageLangLogFormatter::class;
|
2014-05-25 14:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
2011-06-16 05:13:29 +00:00
|
|
|
if ( $wgCookieSecure === 'detect' ) {
|
2012-09-27 00:20:15 +00:00
|
|
|
$wgCookieSecure = ( WebRequest::detectProtocol() === 'https' );
|
2011-06-16 05:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
2015-04-23 01:48:48 +00:00
|
|
|
// Backwards compatibility with old password limits
|
|
|
|
|
if ( $wgMinimalPasswordLength !== false ) {
|
|
|
|
|
$wgPasswordPolicy['policies']['default']['MinimalPasswordLength'] = $wgMinimalPasswordLength;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $wgMaximalPasswordLength !== false ) {
|
|
|
|
|
$wgPasswordPolicy['policies']['default']['MaximalPasswordLength'] = $wgMaximalPasswordLength;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-01 20:44:03 +00:00
|
|
|
if ( $wgPHPSessionHandling !== 'enable' &&
|
|
|
|
|
$wgPHPSessionHandling !== 'warn' &&
|
|
|
|
|
$wgPHPSessionHandling !== 'disable'
|
|
|
|
|
) {
|
|
|
|
|
$wgPHPSessionHandling = 'warn';
|
2015-08-24 20:06:55 +00:00
|
|
|
}
|
2016-02-18 20:56:40 +00:00
|
|
|
if ( defined( 'MW_NO_SESSION' ) ) {
|
|
|
|
|
// If the entry point wants no session, force 'disable' here unless they
|
|
|
|
|
// specifically set it to the (undocumented) 'warn'.
|
2019-09-01 12:45:11 +00:00
|
|
|
// @phan-suppress-next-line PhanUndeclaredConstant
|
2016-02-18 20:56:40 +00:00
|
|
|
$wgPHPSessionHandling = MW_NO_SESSION === 'warn' ? 'warn' : 'disable';
|
|
|
|
|
}
|
2015-08-24 20:06:55 +00:00
|
|
|
|
2019-08-31 22:43:23 +00:00
|
|
|
MWDebug::setup();
|
2011-12-04 18:29:57 +00:00
|
|
|
|
2016-05-01 19:29:11 +00:00
|
|
|
// Reset the global service locator, so any services that have already been created will be
|
|
|
|
|
// re-created while taking into account any custom settings and extensions.
|
2016-04-14 19:02:31 +00:00
|
|
|
MediaWikiServices::resetGlobalInstance( new GlobalVarConfig(), 'quick' );
|
2016-09-15 18:52:55 +00:00
|
|
|
|
2016-05-01 19:29:11 +00:00
|
|
|
// Define a constant that indicates that the bootstrapping of the service locator
|
|
|
|
|
// is complete.
|
|
|
|
|
define( 'MW_SERVICE_BOOTSTRAP_COMPLETE', 1 );
|
|
|
|
|
|
2013-05-08 06:48:56 +00:00
|
|
|
MWExceptionHandler::installHandler();
|
The beginnings of HipHop compiled mode support. It works now for parser cache hits.
* Work around HipHop issue 314 (volatile broken) and issue 308 (no compilation detection) by adding some large and ugly compilation detection code to WebStart.php and doMaintenance.php.
* Provide an MW_COMPILED constant which can be used to detect compiled mode throughout the codebase.
* Introduced wfIsHipHop(), which detects either compiled or interpreted mode. Used this to work around unusual eval() return value in eval.php.
* Work around lack of ini_get() in Maintenance.php, by duplicating wfIsHipHop().
* In Maintenance::shouldExecute(), accept "include" as an inclusion function name, since all kinds of inclusion give this string in HipHop.
* Introduced new class MWInit, which provides some static functions in the pre-autoloader environment.
* Introduced MWInit::compiledPath(), which provides a relative path for invoking a compiled file, and MWInit::interpretedPath(), which provides an absolute path for interpreting a PHP file. Used these new functions in the appropriate places.
* When we are running compiled code, don't include files which would generate duplicate class, function or constant definitions. Documented the new requirements on the contents of Defines.php and UtfNormalDefines.php.
* In HipHop compiled mode, it's not possible to have executable code in the same file as a class definition.
** Moved MimeMagic initialisation to the constructor.
** Moved Namespace.php global variable initialisation to Setup.php.
** Moved MemcachedSessions.php initialisation to the caller in GlobalFunctions.php.
** Moved Sanitizer.php constants and global variables to static class members. Introduced an accessor function for the attribs regex, as a new place to put code formerly at file level.
** Moved Language.php initialisation of $wgLanguageNames to Language::getLanguageNames(). Removed the global variable, marked "private" since forever.
* In two places: don't use error_log() with type=3 to append to a file, HipHop doesn't support it. Use file_put_contents() with FILE_APPEND instead.
* Work around the terrible breakage of class_exists() by using MWInit::classExists() instead in various places. In WebInstaller::getPageByName(), the class_exists() was marked with a fixme comment already, so I replaced it with an autoloader solution.
2011-04-04 12:59:55 +00:00
|
|
|
|
2019-07-19 04:04:41 +00:00
|
|
|
// T30798: $wgServer must be explicitly set
|
|
|
|
|
if ( $wgServer === false ) {
|
|
|
|
|
throw new FatalError(
|
|
|
|
|
'$wgServer must be set in LocalSettings.php. ' .
|
|
|
|
|
'See <a href="https://www.mediawiki.org/wiki/Manual:$wgServer">' .
|
|
|
|
|
'https://www.mediawiki.org/wiki/Manual:$wgServer</a>.'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-06 09:31:24 +00:00
|
|
|
if ( $wgCanonicalServer === false ) {
|
|
|
|
|
$wgCanonicalServer = wfExpandUrl( $wgServer, PROTO_HTTP );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set server name
|
|
|
|
|
$serverParts = wfParseUrl( $wgCanonicalServer );
|
|
|
|
|
if ( $wgServerName !== false ) {
|
2014-05-11 15:33:33 +00:00
|
|
|
wfWarn( '$wgServerName should be derived from $wgCanonicalServer, '
|
|
|
|
|
. 'not customized. Overwriting $wgServerName.' );
|
2014-05-06 09:31:24 +00:00
|
|
|
}
|
|
|
|
|
$wgServerName = $serverParts['host'];
|
|
|
|
|
unset( $serverParts );
|
|
|
|
|
|
|
|
|
|
// Set defaults for configuration variables
|
|
|
|
|
// that are derived from the server name by default
|
2015-08-31 15:32:56 +00:00
|
|
|
// Note: $wgEmergencyContact and $wgPasswordSender may be false or empty string (T104142)
|
|
|
|
|
if ( !$wgEmergencyContact ) {
|
2014-05-06 09:31:24 +00:00
|
|
|
$wgEmergencyContact = 'wikiadmin@' . $wgServerName;
|
|
|
|
|
}
|
2015-08-31 15:32:56 +00:00
|
|
|
if ( !$wgPasswordSender ) {
|
2014-05-06 09:31:24 +00:00
|
|
|
$wgPasswordSender = 'apache@' . $wgServerName;
|
|
|
|
|
}
|
2015-04-30 21:38:05 +00:00
|
|
|
if ( !$wgNoReplyAddress ) {
|
2016-03-18 14:19:07 +00:00
|
|
|
$wgNoReplyAddress = $wgPasswordSender;
|
2015-04-30 21:38:05 +00:00
|
|
|
}
|
2014-05-06 09:31:24 +00:00
|
|
|
|
2012-10-08 04:21:08 +00:00
|
|
|
if ( $wgSecureLogin && substr( $wgServer, 0, 2 ) !== '//' ) {
|
|
|
|
|
$wgSecureLogin = false;
|
2014-05-11 15:33:33 +00:00
|
|
|
wfWarn( 'Secure login was enabled on a server that only supports '
|
|
|
|
|
. 'HTTP or HTTPS. Disabling secure login.' );
|
2012-10-08 04:21:08 +00:00
|
|
|
}
|
|
|
|
|
|
2015-05-27 21:46:45 +00:00
|
|
|
$wgVirtualRestConfig['global']['domain'] = $wgCanonicalServer;
|
|
|
|
|
|
2015-01-07 21:57:56 +00:00
|
|
|
// Now that GlobalFunctions is loaded, set defaults that depend on it.
|
2012-05-26 03:19:55 +00:00
|
|
|
if ( $wgTmpDirectory === false ) {
|
|
|
|
|
$wgTmpDirectory = wfTempDir();
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-23 22:44:19 +00:00
|
|
|
if ( $wgMainWANCache === false ) {
|
2020-03-30 21:28:53 +00:00
|
|
|
// Setup a WAN cache from $wgMainCacheType
|
2015-04-23 22:44:19 +00:00
|
|
|
$wgMainWANCache = 'mediawiki-main-default';
|
2016-02-17 09:09:32 +00:00
|
|
|
$wgWANObjectCaches[$wgMainWANCache] = [
|
2018-01-13 00:02:09 +00:00
|
|
|
'class' => WANObjectCache::class,
|
2020-03-30 21:28:53 +00:00
|
|
|
'cacheId' => $wgMainCacheType,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2015-04-23 22:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
2019-05-22 16:03:50 +00:00
|
|
|
if ( $wgSharedDB && $wgSharedTables ) {
|
|
|
|
|
// Apply $wgSharedDB table aliases for the local LB (all non-foreign DB connections)
|
|
|
|
|
MediaWikiServices::getInstance()->getDBLoadBalancer()->setTableAliases(
|
|
|
|
|
array_fill_keys(
|
|
|
|
|
$wgSharedTables,
|
|
|
|
|
[
|
|
|
|
|
'dbname' => $wgSharedDB,
|
|
|
|
|
'schema' => $wgSharedSchema,
|
|
|
|
|
'prefix' => $wgSharedPrefix
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-13 20:07:50 +00:00
|
|
|
// Raise the memory limit if it's too low
|
2019-07-13 00:46:56 +00:00
|
|
|
// Note, this makes use of wfDebug, and thus should not be before
|
|
|
|
|
// MWDebug::init() is called.
|
2019-07-13 01:05:54 +00:00
|
|
|
wfMemoryLimit( $wgMemoryLimit );
|
2006-07-26 07:15:39 +00:00
|
|
|
|
2010-01-08 01:48:53 +00:00
|
|
|
/**
|
2010-09-04 00:18:01 +00:00
|
|
|
* Set up the timezone, suppressing the pseudo-security warning in PHP 5.1+
|
2010-01-08 01:48:53 +00:00
|
|
|
* that happens whenever you use a date function without the timezone being
|
|
|
|
|
* explicitly set. Inspired by phpMyAdmin's treatment of the problem.
|
|
|
|
|
*/
|
2020-01-09 23:48:34 +00:00
|
|
|
if ( $wgLocaltimezone === null ) {
|
2018-02-10 07:52:26 +00:00
|
|
|
Wikimedia\suppressWarnings();
|
2011-05-15 13:56:12 +00:00
|
|
|
$wgLocaltimezone = date_default_timezone_get();
|
2018-02-10 07:52:26 +00:00
|
|
|
Wikimedia\restoreWarnings();
|
2011-05-15 13:56:12 +00:00
|
|
|
}
|
2010-01-08 01:48:53 +00:00
|
|
|
|
2011-05-15 13:42:10 +00:00
|
|
|
date_default_timezone_set( $wgLocaltimezone );
|
2020-01-09 23:48:34 +00:00
|
|
|
if ( $wgLocalTZoffset === null ) {
|
2019-09-15 14:40:42 +00:00
|
|
|
$wgLocalTZoffset = (int)date( 'Z' ) / 60;
|
2011-05-15 13:42:10 +00:00
|
|
|
}
|
2016-08-05 08:17:48 +00:00
|
|
|
// The part after the System| is ignored, but rest of MW fills it
|
|
|
|
|
// out as the local offset.
|
|
|
|
|
$wgDefaultUserOptions['timecorrection'] = "System|$wgLocalTZoffset";
|
2011-05-15 13:42:10 +00:00
|
|
|
|
2015-04-16 02:16:15 +00:00
|
|
|
if ( !$wgDBerrorLogTZ ) {
|
|
|
|
|
$wgDBerrorLogTZ = $wgLocaltimezone;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-29 02:40:04 +00:00
|
|
|
// Initialize the request object in $wgRequest
|
2015-11-17 18:43:47 +00:00
|
|
|
$wgRequest = RequestContext::getMain()->getRequest(); // BackCompat
|
2018-02-01 00:47:09 +00:00
|
|
|
// Set user IP/agent information for agent session consistency purposes
|
2018-05-25 07:04:23 +00:00
|
|
|
$cpPosInfo = LBFactory::getCPInfoFromCookieValue(
|
|
|
|
|
// The cookie has no prefix and is set by MediaWiki::preOutputCommit()
|
|
|
|
|
$wgRequest->getCookie( 'cpPosIndex', '' ),
|
|
|
|
|
// Mitigate broken client-side cookie expiration handling (T190082)
|
|
|
|
|
time() - ChronologyProtector::POSITION_COOKIE_TTL
|
|
|
|
|
);
|
2016-09-15 18:52:55 +00:00
|
|
|
MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->setRequestInfo( [
|
|
|
|
|
'IPAddress' => $wgRequest->getIP(),
|
|
|
|
|
'UserAgent' => $wgRequest->getHeader( 'User-Agent' ),
|
2019-04-23 18:37:53 +00:00
|
|
|
'ChronologyProtection' => $wgRequest->getHeader( 'MediaWiki-Chronology-Protection' ),
|
2018-05-25 07:04:23 +00:00
|
|
|
'ChronologyPositionIndex' => $wgRequest->getInt( 'cpPosIndex', $cpPosInfo['index'] ),
|
|
|
|
|
'ChronologyClientId' => $cpPosInfo['clientId']
|
2019-04-23 18:37:53 +00:00
|
|
|
?? $wgRequest->getHeader( 'MediaWiki-Chronology-Client-Id' )
|
2016-09-15 18:52:55 +00:00
|
|
|
] );
|
2018-05-25 07:04:23 +00:00
|
|
|
unset( $cpPosInfo );
|
2018-02-01 00:47:09 +00:00
|
|
|
// Make sure that object caching does not undermine the ChronologyProtector improvements
|
|
|
|
|
if ( $wgRequest->getCookie( 'UseDC', '' ) === 'master' ) {
|
|
|
|
|
// The user is pinned to the primary DC, meaning that they made recent changes which should
|
|
|
|
|
// be reflected in their subsequent web requests. Avoid the use of interim cache keys because
|
|
|
|
|
// they use a blind TTL and could be stale if an object changes twice in a short time span.
|
2017-11-29 04:39:47 +00:00
|
|
|
MediaWikiServices::getInstance()->getMainWANObjectCache()->useInterimHoldOffCaching( false );
|
|
|
|
|
}
|
2015-11-17 18:43:47 +00:00
|
|
|
|
2014-04-13 20:07:50 +00:00
|
|
|
// Useful debug output
|
2020-06-01 05:00:39 +00:00
|
|
|
( function () {
|
|
|
|
|
global $wgCommandLineMode, $wgRequest;
|
|
|
|
|
$logger = LoggerFactory::getInstance( 'wfDebug' );
|
|
|
|
|
if ( $wgCommandLineMode ) {
|
|
|
|
|
$self = $_SERVER['PHP_SELF'] ?? '';
|
|
|
|
|
$logger->debug( "\n\nStart command line script $self" );
|
|
|
|
|
} else {
|
|
|
|
|
$debug = "\n\nStart request {$wgRequest->getMethod()} {$wgRequest->getRequestURL()}\n";
|
|
|
|
|
$debug .= "IP: " . $wgRequest->getIP() . "\n";
|
|
|
|
|
$debug .= "HTTP HEADERS:\n";
|
|
|
|
|
foreach ( $wgRequest->getAllHeaders() as $name => $value ) {
|
|
|
|
|
$debug .= "$name: $value\n";
|
|
|
|
|
}
|
|
|
|
|
$debug .= "(end headers)";
|
|
|
|
|
$logger->debug( $debug );
|
2010-01-27 17:21:18 +00:00
|
|
|
}
|
2020-06-01 05:00:39 +00:00
|
|
|
} )();
|
2003-08-11 13:53:20 +00:00
|
|
|
|
2020-01-20 10:21:03 +00:00
|
|
|
/**
|
|
|
|
|
* @var BagOStuff $wgMemc
|
|
|
|
|
* @deprecated since 1.35, use the LocalServerObjectCache service instead
|
|
|
|
|
*/
|
2018-08-14 23:43:25 +00:00
|
|
|
$wgMemc = ObjectCache::getLocalClusterInstance();
|
2017-05-30 00:10:16 +00:00
|
|
|
|
2014-04-13 20:07:50 +00:00
|
|
|
// Most of the config is out, some might want to run hooks here.
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
Hooks::runner()->onSetupAfterCache();
|
2008-12-10 23:15:50 +00:00
|
|
|
|
2014-04-01 19:03:00 +00:00
|
|
|
/**
|
|
|
|
|
* @var Language $wgContLang
|
2018-07-25 14:37:16 +00:00
|
|
|
* @deprecated since 1.32, use the ContentLanguage service directly
|
2014-04-01 19:03:00 +00:00
|
|
|
*/
|
2018-07-25 14:37:16 +00:00
|
|
|
$wgContLang = MediaWikiServices::getInstance()->getContentLanguage();
|
2011-03-24 00:48:22 +00:00
|
|
|
|
2014-02-06 09:04:46 +00:00
|
|
|
// Now that variant lists may be available...
|
|
|
|
|
$wgRequest->interpolateTitle();
|
2014-04-01 19:03:00 +00:00
|
|
|
|
2016-02-01 20:44:03 +00:00
|
|
|
/**
|
2020-04-07 21:38:17 +00:00
|
|
|
* @var MediaWiki\Session\SessionId|null The persistent session ID (if any) loaded at startup
|
2016-02-01 20:44:03 +00:00
|
|
|
*/
|
|
|
|
|
$wgInitialSessionId = null;
|
|
|
|
|
if ( !defined( 'MW_NO_SESSION' ) && !$wgCommandLineMode ) {
|
|
|
|
|
// If session.auto_start is there, we can't touch session name
|
|
|
|
|
if ( $wgPHPSessionHandling !== 'disable' && !wfIniGetBool( 'session.auto_start' ) ) {
|
2018-06-11 09:16:48 +00:00
|
|
|
session_name( $wgSessionName ?: $wgCookiePrefix . '_session' );
|
2016-02-01 20:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
2016-02-18 20:56:40 +00:00
|
|
|
// Create the SessionManager singleton and set up our session handler,
|
|
|
|
|
// unless we're specifically asked not to.
|
|
|
|
|
if ( !defined( 'MW_NO_SESSION_HANDLER' ) ) {
|
|
|
|
|
MediaWiki\Session\PHPSessionHandler::install(
|
|
|
|
|
MediaWiki\Session\SessionManager::singleton()
|
|
|
|
|
);
|
|
|
|
|
}
|
2016-02-01 20:44:03 +00:00
|
|
|
|
|
|
|
|
// Initialize the session
|
|
|
|
|
try {
|
|
|
|
|
$session = MediaWiki\Session\SessionManager::getGlobalSession();
|
2019-09-07 14:21:09 +00:00
|
|
|
} catch ( MediaWiki\Session\SessionOverflowException $ex ) {
|
|
|
|
|
// The exception is because the request had multiple possible
|
|
|
|
|
// sessions tied for top priority. Report this to the user.
|
|
|
|
|
$list = [];
|
|
|
|
|
foreach ( $ex->getSessionInfos() as $info ) {
|
|
|
|
|
$list[] = $info->getProvider()->describe( $wgContLang );
|
2016-02-01 20:44:03 +00:00
|
|
|
}
|
2019-09-07 14:21:09 +00:00
|
|
|
$list = $wgContLang->listToText( $list );
|
|
|
|
|
throw new HttpError( 400,
|
|
|
|
|
Message::newFromKey( 'sessionmanager-tie', $list )->inLanguage( $wgContLang )->plain()
|
|
|
|
|
);
|
2016-02-01 20:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $session->isPersistent() ) {
|
|
|
|
|
$wgInitialSessionId = $session->getSessionId();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$session->renew();
|
|
|
|
|
if ( MediaWiki\Session\PHPSessionHandler::isEnabled() &&
|
2019-01-12 19:16:52 +00:00
|
|
|
( $session->isPersistent() || $session->shouldRememberUser() ) &&
|
|
|
|
|
session_id() !== $session->getId()
|
2016-02-01 20:44:03 +00:00
|
|
|
) {
|
|
|
|
|
// Start the PHP-session for backwards compatibility
|
2019-01-12 19:16:52 +00:00
|
|
|
if ( session_id() !== '' ) {
|
|
|
|
|
wfDebugLog( 'session', 'PHP session {old_id} was already started, changing to {new_id}', 'all', [
|
|
|
|
|
'old_id' => session_id(),
|
|
|
|
|
'new_id' => $session->getId(),
|
|
|
|
|
] );
|
|
|
|
|
session_write_close();
|
|
|
|
|
}
|
2016-02-01 20:44:03 +00:00
|
|
|
session_id( $session->getId() );
|
2019-01-12 19:16:52 +00:00
|
|
|
session_start();
|
2016-02-01 20:44:03 +00:00
|
|
|
}
|
2016-02-18 20:56:40 +00:00
|
|
|
|
|
|
|
|
unset( $session );
|
|
|
|
|
} else {
|
|
|
|
|
// Even if we didn't set up a global Session, still install our session
|
|
|
|
|
// handler unless specifically requested not to.
|
|
|
|
|
if ( !defined( 'MW_NO_SESSION_HANDLER' ) ) {
|
|
|
|
|
MediaWiki\Session\PHPSessionHandler::install(
|
|
|
|
|
MediaWiki\Session\SessionManager::singleton()
|
|
|
|
|
);
|
|
|
|
|
}
|
2016-02-01 20:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
2014-04-01 19:03:00 +00:00
|
|
|
/**
|
|
|
|
|
* @var User $wgUser
|
2020-03-21 01:43:22 +00:00
|
|
|
* @deprecated since 1.35, use an available context source when possible, or, as a backup,
|
|
|
|
|
* RequestContext::getMain()
|
2014-04-01 19:03:00 +00:00
|
|
|
*/
|
2014-04-13 20:07:50 +00:00
|
|
|
$wgUser = RequestContext::getMain()->getUser(); // BackCompat
|
2011-03-24 00:48:22 +00:00
|
|
|
|
2014-02-06 09:04:46 +00:00
|
|
|
/**
|
2014-04-01 19:03:00 +00:00
|
|
|
* @var Language $wgLang
|
2014-02-06 09:04:46 +00:00
|
|
|
*/
|
|
|
|
|
$wgLang = new StubUserLang;
|
2011-03-24 00:48:22 +00:00
|
|
|
|
2014-02-06 09:04:46 +00:00
|
|
|
/**
|
2014-04-01 19:03:00 +00:00
|
|
|
* @var OutputPage $wgOut
|
2014-02-06 09:04:46 +00:00
|
|
|
*/
|
2014-04-13 20:07:50 +00:00
|
|
|
$wgOut = RequestContext::getMain()->getOutput(); // BackCompat
|
2007-11-20 10:55:08 +00:00
|
|
|
|
2014-02-06 09:04:46 +00:00
|
|
|
/**
|
2014-04-01 19:03:00 +00:00
|
|
|
* @var Parser $wgParser
|
2019-03-03 13:40:58 +00:00
|
|
|
* @deprecated since 1.32, use MediaWikiServices::getInstance()->getParser() instead
|
2014-02-06 09:04:46 +00:00
|
|
|
*/
|
2019-12-30 20:57:37 +00:00
|
|
|
$wgParser = new DeprecatedGlobal( 'wgParser', function () {
|
2016-08-16 20:47:43 +00:00
|
|
|
return MediaWikiServices::getInstance()->getParser();
|
2019-12-30 20:57:37 +00:00
|
|
|
}, '1.32' );
|
2006-11-30 07:47:34 +00:00
|
|
|
|
2014-04-01 19:03:00 +00:00
|
|
|
/**
|
|
|
|
|
* @var Title $wgTitle
|
|
|
|
|
*/
|
2014-02-06 09:04:46 +00:00
|
|
|
$wgTitle = null;
|
2004-05-31 08:43:36 +00:00
|
|
|
|
2015-10-23 18:50:11 +00:00
|
|
|
// Extension setup functions
|
2014-04-13 20:07:50 +00:00
|
|
|
// Entries should be added to this variable during the inclusion
|
|
|
|
|
// of the extension file. This allows the extension to perform
|
|
|
|
|
// any necessary initialisation in the fully initialised environment
|
2008-12-23 23:34:35 +00:00
|
|
|
foreach ( $wgExtensionFunctions as $func ) {
|
2005-12-14 16:46:27 +00:00
|
|
|
call_user_func( $func );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
2016-02-01 20:44:03 +00:00
|
|
|
// If the session user has a 0 id but a valid name, that means we need to
|
|
|
|
|
// autocreate it.
|
2016-02-07 22:46:34 +00:00
|
|
|
if ( !defined( 'MW_NO_SESSION' ) && !$wgCommandLineMode ) {
|
|
|
|
|
$sessionUser = MediaWiki\Session\SessionManager::getGlobalSession()->getUser();
|
|
|
|
|
if ( $sessionUser->getId() === 0 && User::isValidUserName( $sessionUser->getName() ) ) {
|
2016-04-01 16:49:26 +00:00
|
|
|
$res = MediaWiki\Auth\AuthManager::singleton()->autoCreateUser(
|
|
|
|
|
$sessionUser,
|
|
|
|
|
MediaWiki\Auth\AuthManager::AUTOCREATE_SOURCE_SESSION,
|
|
|
|
|
true
|
|
|
|
|
);
|
2016-08-10 01:32:28 +00:00
|
|
|
\MediaWiki\Logger\LoggerFactory::getInstance( 'authevents' )->info( 'Autocreation attempt', [
|
2016-02-11 08:12:45 +00:00
|
|
|
'event' => 'autocreate',
|
|
|
|
|
'status' => $res,
|
|
|
|
|
] );
|
|
|
|
|
unset( $res );
|
2016-02-07 22:46:34 +00:00
|
|
|
}
|
|
|
|
|
unset( $sessionUser );
|
2016-02-01 20:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
2016-06-30 09:29:10 +00:00
|
|
|
if ( !$wgCommandLineMode ) {
|
|
|
|
|
Pingback::schedulePingback();
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-18 08:48:43 +00:00
|
|
|
$wgFullyInitialised = true;
|