79use Psr\Log\LoggerInterface;
80use Wikimedia\RequestTimeout\RequestTimeout;
92if ( !defined(
'MEDIAWIKI' ) ) {
98if ( ini_get(
'mbstring.func_overload' ) ) {
99 die(
'MediaWiki does not support installations where mbstring.func_overload is non-zero.' );
105if ( !defined(
'MW_ENTRY_POINT' ) ) {
111 define(
'MW_ENTRY_POINT',
'unknown' );
128require_once MW_INSTALL_PATH .
'/includes/AutoLoader.php';
129require_once MW_INSTALL_PATH .
'/includes/Defines.php';
132if ( !interface_exists( LoggerInterface::class ) ) {
134 'MediaWiki requires the <a href="https://github.com/php-fig/log">PSR-3 logging ' .
135 "library</a> to be present. This library is not embedded directly in MediaWiki's " .
136 "git repository and must be installed separately by the end user.\n\n" .
137 'Please see the <a href="https://www.mediawiki.org/wiki/Download_from_Git' .
138 '#Fetch_external_libraries">instructions for installing libraries</a> on mediawiki.org ' .
139 'for help on installing the required components.'
142 trigger_error( $message, E_USER_ERROR );
160if ( defined(
'MW_USE_CONFIG_SCHEMA_CLASS' ) ) {
169require_once MW_INSTALL_PATH .
'/includes/GlobalFunctions.php';
171HeaderCallback::register();
175mb_internal_encoding(
'UTF-8' );
184 MainConfigNames::BaseDirectory => MW_INSTALL_PATH,
185 MainConfigNames::ExtensionDirectory => MW_INSTALL_PATH .
'/extensions',
186 MainConfigNames::StyleDirectory => MW_INSTALL_PATH .
'/skins',
187 MainConfigNames::ServiceWiringFiles => [ MW_INSTALL_PATH .
'/includes/ServiceWiring.php' ],
196if ( !isset( $GLOBALS[
'wgScopeTest'] ) || $GLOBALS[
'wgScopeTest'] !==
$wgScopeTest ) {
197 foreach (
$wgSettings->getConfigSchema()->getDefinedKeys() as $key ) {
207 if ( defined(
'MW_CONFIG_CALLBACK' ) ) {
212 if ( getenv(
'MW_USE_LOCAL_SETTINGS_LOADER' ) ) {
216 $localSettingsLoader->loadLocalSettingsFile( MW_CONFIG_FILE );
217 unset( $localSettingsLoader );
219 if ( str_ends_with( MW_CONFIG_FILE,
'.php' ) ) {
222 require_once MW_CONFIG_FILE;
237if (
$wgSettings->getConfig()->get( MainConfigNames::WikiFarmSettingsDirectory ) ) {
239 $wikiFarmSettingsLoader->loadWikiFarmSettings();
240 unset( $wikiFarmSettingsLoader );
253if ( defined(
'MW_SETUP_CALLBACK' ) ) {
269require __DIR__ .
'/SetupDynamicConfig.php';
271if ( defined(
'MW_AUTOLOAD_TEST_CLASSES' ) ) {
272 require_once __DIR__ .
'/../tests/common/TestsAutoLoader.php';
277 '$wgBaseDirectory must not be modified in settings files! ' .
278 'Use the MW_INSTALL_PATH environment variable to override the installation root directory.'
290if ( defined(
'MW_AUTOLOAD_TEST_CLASSES' ) ) {
291 ExtensionRegistry::getInstance()->setLoadTestClassesAndNamespaces(
true );
294ExtensionRegistry::getInstance()->setSettingsBuilder(
$wgSettings );
295ExtensionRegistry::getInstance()->loadFromQueue();
297ExtensionRegistry::getInstance()->finish();
304if ( defined(
'MW_FINAL_SETUP_CALLBACK' ) ) {
305 call_user_func( MW_FINAL_SETUP_CALLBACK,
$wgSettings );
319putenv(
"LC_ALL=" . setlocale( LC_ALL,
'C.UTF-8',
'C' ) );
329MediaWikiServices::allowGlobalInstance();
333define(
'MW_SERVICE_BOOTSTRAP_COMPLETE', 1 );
336if ( !defined(
'MW_PHPUNIT_TEST' ) ) {
346call_user_func(
static function (): void {
351 $tracer = MediaWikiServices::getInstance()->getTracer();
352 $request = RequestContext::getMain()->getRequest();
354 $startTimeNanos = (int)( 1e9 * $_SERVER[
'REQUEST_TIME_FLOAT'] );
357 $spanName = $request->getMethod();
359 $tracer->createRootSpan( $spanName )
360 ->setSpanKind( SpanInterface::SPAN_KIND_SERVER )
361 ->setAttributes( array_filter( [
362 'http.request.method' => $request->getMethod(),
363 'url.path' => $request->getRequestURL(),
364 'server.name' => $_SERVER[
'SERVER_NAME'] ??
null,
366 ->start( $startTimeNanos );
367 $rootSpan->activate();
369 TracerState::getInstance()->setRootSpan( $rootSpan );
377 '$wgServer must be set in LocalSettings.php. ' .
378 'See <a href="https://www.mediawiki.org/wiki/Manual:$wgServer">' .
379 'https://www.mediawiki.org/wiki/Manual:$wgServer</a>.'
390 MediaWikiServices::getInstance()->getHookContainer(),
398 $wgCanonicalServer = MediaWikiServices::getInstance()->getUrlUtils()->getCanonicalServer();
403 wfWarn(
'$wgServerName should be derived from $wgCanonicalServer, '
404 .
'not customized. Overwriting $wgServerName.' );
423 wfWarn(
'Secure login was enabled on a server that only supports '
424 .
'HTTP or HTTPS. Disabling secure login.' );
434 MediaWikiServices::getInstance()->getDBLoadBalancer()->setTableAliases(
454$wgRequest = RequestContext::getMain()->getRequest();
457if (
$wgRequest->getCookie(
'UseDC',
'' ) ===
'master' ) {
461 MediaWikiServices::getInstance()->getMainWANObjectCache()->useInterimHoldOffCaching(
false );
465(
static function () {
468 $logger = LoggerFactory::getInstance(
'wfDebug' );
470 $self = $_SERVER[
'PHP_SELF'] ??
'';
471 $logger->debug(
"\n\nStart command line script $self" );
473 $debug =
"\n\nStart request {$wgRequest->getMethod()} {$wgRequest->getRequestURL()}\n";
474 $debug .=
"IP: " .
$wgRequest->getIP() .
"\n";
475 $debug .=
"HTTP HEADERS:\n";
476 foreach (
$wgRequest->getAllHeaders() as $name => $value ) {
477 $debug .=
"$name: $value\n";
479 $debug .=
"(end headers)";
480 $logger->debug( $debug );
485(
new HookRunner( MediaWikiServices::getInstance()->getHookContainer() ) )->onSetupAfterCache();
507 HeaderCallback::warnIfHeadersSent();
513 if ( !defined(
'MW_NO_SESSION_HANDLER' ) ) {
514 MediaWiki\Session\PHPSessionHandler::install(
515 MediaWiki\Session\SessionManager::singleton()
519 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
523 $session = MediaWiki\Session\SessionManager::getGlobalSession();
524 }
catch (
MediaWiki\Session\SessionOverflowException $ex ) {
528 foreach ( $ex->getSessionInfos() as $info ) {
529 $list[] = $info->getProvider()->describe( $contLang );
531 $list = $contLang->listToText( $list );
533 Message::newFromKey(
'sessionmanager-tie', $list )->inLanguage( $contLang )
539 if ( $session->isPersistent() ) {
544 if (
MediaWiki\Session\PHPSessionHandler::isEnabled() &&
545 ( $session->isPersistent() || $session->shouldRememberUser() ) &&
546 session_id() !== $session->getId()
549 if ( session_id() !==
'' ) {
550 wfDebugLog(
'session',
'PHP session {old_id} was already started, changing to {new_id}',
'all', [
551 'old_id' => session_id(),
552 'new_id' => $session->getId(),
554 session_write_close();
556 session_id( $session->getId() );
564 if ( !defined(
'MW_NO_SESSION_HANDLER' ) ) {
565 MediaWiki\Session\PHPSessionHandler::install(
566 MediaWiki\Session\SessionManager::singleton()
580register_shutdown_function(
static function () {
581 StubGlobalUser::$destructorDeprecationDisarmed =
true;
592$wgOut = RequestContext::getMain()->getOutput();
607 call_user_func( $func );
614 $sessionUser = MediaWiki\Session\SessionManager::getGlobalSession()->getUser();
615 if ( $sessionUser->getId() === 0 &&
616 MediaWikiServices::getInstance()->getUserNameUtils()->isValid( $sessionUser->getName() )
618 MediaWikiServices::getInstance()->getAuthManager()->autoCreateUser(
620 MediaWiki\Auth\AuthManager::AUTOCREATE_SOURCE_SESSION,
626 unset( $sessionUser );
637 DeferredUpdates::addCallableUpdate(
static function () {
638 MediaWikiServices::getInstance()->getPingback()->run();
644 $logger = LoggerFactory::getInstance(
'Settings' );
646 $logger->warning( $msg );
659 MediaWiki\Session\SessionManager::singleton()->logPotentialSessionLeakage();
wfDetectLocalSettingsFile(?string $installationPath=null)
Decide and remember where to load LocalSettings from.
wfDetectInstallPath()
Decide and remember where mediawiki is installed.
wfIsCLI()
Check if we are running from the commandline.
const MW_VERSION
The running version of MediaWiki.
wfTempDir()
Tries to get the system directory for temporary files.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
wfMemoryLimit( $newLimit)
Raise PHP's memory limit (if needed).
wfIniGetBool( $setting)
Safety wrapper around ini_get() for boolean settings.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
if(!defined( 'MEDIAWIKI')) if(ini_get('mbstring.func_overload')) if(!defined( 'MW_ENTRY_POINT')) global $IP
Environment checks.
if(defined( 'MW_SETUP_CALLBACK')) $dynamicDefaults
Customization point after most things are loaded (constants, functions, classes, LocalSettings.
if(!defined('MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli') if(MW_ENTRY_POINT !=='cli' && $wgPingback $settingsWarnings)
if( $wgCanonicalServer===false) $wgVirtualRestConfig['global']['domain']
global $wgInitialSessionId
if( $wgServer===false) global $wgHooks
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgLang
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgOut
$wgConf
$wgConf hold the site configuration.
if( $wgServerName !==false) $wgServerName
if(!interface_exists(LoggerInterface::class)) $wgCommandLineMode
Pre-config setup: Before loading LocalSettings.php.
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgTitle
global $wgFullyInitialised
global $wgExtensionFunctions
if(!defined('MW_SETUP_CALLBACK'))
Abort the web request with a custom HTML string that will represent the entire response.
Show an error that looks like an HTTP server error.
Group all the pieces relevant to the context of a request into one instance.
A class containing constants representing the names of configuration variables.
This class contains schema declarations for all configuration variables known to MediaWiki core.
static init(array $profilerConf)
$wgMemoryLimit
Config variable stub for the MemoryLimit setting, for use by phpdoc and IDEs.
$wgEmergencyContact
Config variable stub for the EmergencyContact setting, for use by phpdoc and IDEs.
$wgSharedTables
Config variable stub for the SharedTables setting, for use by phpdoc and IDEs.
$wgSessionName
Config variable stub for the SessionName setting, for use by phpdoc and IDEs.
$wgLogExceptionBacktrace
Config variable stub for the LogExceptionBacktrace setting, for use by phpdoc and IDEs.
$wgTmpDirectory
Config variable stub for the TmpDirectory setting, for use by phpdoc and IDEs.
$wgNoReplyAddress
Config variable stub for the NoReplyAddress setting, for use by phpdoc and IDEs.
$wgProfiler
Config variable stub for the Profiler setting, for use by phpdoc and IDEs.
$wgBaseDirectory
Config variable stub for the BaseDirectory setting, for use by phpdoc and IDEs.
$wgSecureLogin
Config variable stub for the SecureLogin setting, for use by phpdoc and IDEs.
$wgLocaltimezone
Config variable stub for the Localtimezone setting, for use by phpdoc and IDEs.
$wgShowExceptionDetails
Config variable stub for the ShowExceptionDetails setting, for use by phpdoc and IDEs.
$wgRequestTimeLimit
Config variable stub for the RequestTimeLimit setting, for use by phpdoc and IDEs.
$wgSharedDB
Config variable stub for the SharedDB setting, for use by phpdoc and IDEs.
$wgCanonicalServer
Config variable stub for the CanonicalServer setting, for use by phpdoc and IDEs.
$wgServer
Config variable stub for the Server setting, for use by phpdoc and IDEs.
$wgPropagateErrors
Config variable stub for the PropagateErrors setting, for use by phpdoc and IDEs.
$wgSharedSchema
Config variable stub for the SharedSchema setting, for use by phpdoc and IDEs.
$wgPasswordSender
Config variable stub for the PasswordSender setting, for use by phpdoc and IDEs.
$wgPingback
Config variable stub for the Pingback setting, for use by phpdoc and IDEs.
$wgCookiePrefix
Config variable stub for the CookiePrefix setting, for use by phpdoc and IDEs.
$wgSharedPrefix
Config variable stub for the SharedPrefix setting, for use by phpdoc and IDEs.
$wgPHPSessionHandling
Config variable stub for the PHPSessionHandling setting, for use by phpdoc and IDEs.