Merge "Add missing 'public' keywords to some more Language methods"
[lhc/web/wiklou.git] / includes / Setup.php
1 <?php
2 /**
3 * Include most things that are needed to make %MediaWiki work.
4 *
5 * This file is included by WebStart.php and doMaintenance.php so that both
6 * web and maintenance scripts share a final set up phase to include necessary
7 * files and create global object variables.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26 use MediaWiki\MediaWikiServices;
27
28 /**
29 * This file is not a valid entry point, perform no further processing unless
30 * MEDIAWIKI is defined
31 */
32 if ( !defined( 'MEDIAWIKI' ) ) {
33 exit( 1 );
34 }
35
36 $fname = 'Setup.php';
37 $ps_setup = Profiler::instance()->scopedProfileIn( $fname );
38
39 // If any extensions are still queued, force load them
40 ExtensionRegistry::getInstance()->loadFromQueue();
41
42 // Check to see if we are at the file scope
43 if ( !isset( $wgVersion ) ) {
44 echo "Error, Setup.php must be included from the file scope, after DefaultSettings.php\n";
45 die( 1 );
46 }
47
48 // Set various default paths sensibly...
49 $ps_default = Profiler::instance()->scopedProfileIn( $fname . '-defaults' );
50
51 if ( $wgScript === false ) {
52 $wgScript = "$wgScriptPath/index.php";
53 }
54 if ( $wgLoadScript === false ) {
55 $wgLoadScript = "$wgScriptPath/load.php";
56 }
57
58 if ( $wgArticlePath === false ) {
59 if ( $wgUsePathInfo ) {
60 $wgArticlePath = "$wgScript/$1";
61 } else {
62 $wgArticlePath = "$wgScript?title=$1";
63 }
64 }
65
66 if ( !empty( $wgActionPaths ) && !isset( $wgActionPaths['view'] ) ) {
67 // 'view' is assumed the default action path everywhere in the code
68 // but is rarely filled in $wgActionPaths
69 $wgActionPaths['view'] = $wgArticlePath;
70 }
71
72 if ( $wgResourceBasePath === null ) {
73 $wgResourceBasePath = $wgScriptPath;
74 }
75 if ( $wgStylePath === false ) {
76 $wgStylePath = "$wgResourceBasePath/skins";
77 }
78 if ( $wgLocalStylePath === false ) {
79 // Avoid wgResourceBasePath here since that may point to a different domain (e.g. CDN)
80 $wgLocalStylePath = "$wgScriptPath/skins";
81 }
82 if ( $wgExtensionAssetsPath === false ) {
83 $wgExtensionAssetsPath = "$wgResourceBasePath/extensions";
84 }
85
86 if ( $wgLogo === false ) {
87 $wgLogo = "$wgResourceBasePath/resources/assets/wiki.png";
88 }
89
90 if ( $wgUploadPath === false ) {
91 $wgUploadPath = "$wgScriptPath/images";
92 }
93 if ( $wgUploadDirectory === false ) {
94 $wgUploadDirectory = "$IP/images";
95 }
96 if ( $wgReadOnlyFile === false ) {
97 $wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
98 }
99 if ( $wgFileCacheDirectory === false ) {
100 $wgFileCacheDirectory = "{$wgUploadDirectory}/cache";
101 }
102 if ( $wgDeletedDirectory === false ) {
103 $wgDeletedDirectory = "{$wgUploadDirectory}/deleted";
104 }
105
106 if ( $wgGitInfoCacheDirectory === false && $wgCacheDirectory !== false ) {
107 $wgGitInfoCacheDirectory = "{$wgCacheDirectory}/gitinfo";
108 }
109
110 if ( $wgEnableParserCache === false ) {
111 $wgParserCacheType = CACHE_NONE;
112 }
113
114 // Fix path to icon images after they were moved in 1.24
115 if ( $wgRightsIcon ) {
116 $wgRightsIcon = str_replace(
117 "{$wgStylePath}/common/images/",
118 "{$wgResourceBasePath}/resources/assets/licenses/",
119 $wgRightsIcon
120 );
121 }
122
123 if ( isset( $wgFooterIcons['copyright']['copyright'] )
124 && $wgFooterIcons['copyright']['copyright'] === []
125 ) {
126 if ( $wgRightsIcon || $wgRightsText ) {
127 $wgFooterIcons['copyright']['copyright'] = [
128 'url' => $wgRightsUrl,
129 'src' => $wgRightsIcon,
130 'alt' => $wgRightsText,
131 ];
132 }
133 }
134
135 if ( isset( $wgFooterIcons['poweredby'] )
136 && isset( $wgFooterIcons['poweredby']['mediawiki'] )
137 && $wgFooterIcons['poweredby']['mediawiki']['src'] === null
138 ) {
139 $wgFooterIcons['poweredby']['mediawiki']['src'] =
140 "$wgResourceBasePath/resources/assets/poweredby_mediawiki_88x31.png";
141 $wgFooterIcons['poweredby']['mediawiki']['srcset'] =
142 "$wgResourceBasePath/resources/assets/poweredby_mediawiki_132x47.png 1.5x, " .
143 "$wgResourceBasePath/resources/assets/poweredby_mediawiki_176x62.png 2x";
144 }
145
146 /**
147 * Unconditional protection for NS_MEDIAWIKI since otherwise it's too easy for a
148 * sysadmin to set $wgNamespaceProtection incorrectly and leave the wiki insecure.
149 *
150 * Note that this is the definition of editinterface and it can be granted to
151 * all users if desired.
152 */
153 $wgNamespaceProtection[NS_MEDIAWIKI] = 'editinterface';
154
155 /**
156 * The canonical names of namespaces 6 and 7 are, as of v1.14, "File"
157 * and "File_talk". The old names "Image" and "Image_talk" are
158 * retained as aliases for backwards compatibility.
159 */
160 $wgNamespaceAliases['Image'] = NS_FILE;
161 $wgNamespaceAliases['Image_talk'] = NS_FILE_TALK;
162
163 /**
164 * Initialise $wgLockManagers to include basic FS version
165 */
166 $wgLockManagers[] = [
167 'name' => 'fsLockManager',
168 'class' => 'FSLockManager',
169 'lockDirectory' => "{$wgUploadDirectory}/lockdir",
170 ];
171 $wgLockManagers[] = [
172 'name' => 'nullLockManager',
173 'class' => 'NullLockManager',
174 ];
175
176 /**
177 * Initialise $wgLocalFileRepo from backwards-compatible settings
178 */
179 if ( !$wgLocalFileRepo ) {
180 $wgLocalFileRepo = [
181 'class' => 'LocalRepo',
182 'name' => 'local',
183 'directory' => $wgUploadDirectory,
184 'scriptDirUrl' => $wgScriptPath,
185 'scriptExtension' => '.php',
186 'url' => $wgUploadBaseUrl ? $wgUploadBaseUrl . $wgUploadPath : $wgUploadPath,
187 'hashLevels' => $wgHashedUploadDirectory ? 2 : 0,
188 'thumbScriptUrl' => $wgThumbnailScriptPath,
189 'transformVia404' => !$wgGenerateThumbnailOnParse,
190 'deletedDir' => $wgDeletedDirectory,
191 'deletedHashLevels' => $wgHashedUploadDirectory ? 3 : 0
192 ];
193 }
194 /**
195 * Initialise shared repo from backwards-compatible settings
196 */
197 if ( $wgUseSharedUploads ) {
198 if ( $wgSharedUploadDBname ) {
199 $wgForeignFileRepos[] = [
200 'class' => 'ForeignDBRepo',
201 'name' => 'shared',
202 'directory' => $wgSharedUploadDirectory,
203 'url' => $wgSharedUploadPath,
204 'hashLevels' => $wgHashedSharedUploadDirectory ? 2 : 0,
205 'thumbScriptUrl' => $wgSharedThumbnailScriptPath,
206 'transformVia404' => !$wgGenerateThumbnailOnParse,
207 'dbType' => $wgDBtype,
208 'dbServer' => $wgDBserver,
209 'dbUser' => $wgDBuser,
210 'dbPassword' => $wgDBpassword,
211 'dbName' => $wgSharedUploadDBname,
212 'dbFlags' => ( $wgDebugDumpSql ? DBO_DEBUG : 0 ) | DBO_DEFAULT,
213 'tablePrefix' => $wgSharedUploadDBprefix,
214 'hasSharedCache' => $wgCacheSharedUploads,
215 'descBaseUrl' => $wgRepositoryBaseUrl,
216 'fetchDescription' => $wgFetchCommonsDescriptions,
217 ];
218 } else {
219 $wgForeignFileRepos[] = [
220 'class' => 'FileRepo',
221 'name' => 'shared',
222 'directory' => $wgSharedUploadDirectory,
223 'url' => $wgSharedUploadPath,
224 'hashLevels' => $wgHashedSharedUploadDirectory ? 2 : 0,
225 'thumbScriptUrl' => $wgSharedThumbnailScriptPath,
226 'transformVia404' => !$wgGenerateThumbnailOnParse,
227 'descBaseUrl' => $wgRepositoryBaseUrl,
228 'fetchDescription' => $wgFetchCommonsDescriptions,
229 ];
230 }
231 }
232 if ( $wgUseInstantCommons ) {
233 $wgForeignFileRepos[] = [
234 'class' => 'ForeignAPIRepo',
235 'name' => 'wikimediacommons',
236 'apibase' => 'https://commons.wikimedia.org/w/api.php',
237 'url' => 'https://upload.wikimedia.org/wikipedia/commons',
238 'thumbUrl' => 'https://upload.wikimedia.org/wikipedia/commons/thumb',
239 'hashLevels' => 2,
240 'transformVia404' => true,
241 'fetchDescription' => true,
242 'descriptionCacheExpiry' => 43200,
243 'apiThumbCacheExpiry' => 86400,
244 ];
245 }
246 /*
247 * Add on default file backend config for file repos.
248 * FileBackendGroup will handle initializing the backends.
249 */
250 if ( !isset( $wgLocalFileRepo['backend'] ) ) {
251 $wgLocalFileRepo['backend'] = $wgLocalFileRepo['name'] . '-backend';
252 }
253 foreach ( $wgForeignFileRepos as &$repo ) {
254 if ( !isset( $repo['directory'] ) && $repo['class'] === 'ForeignAPIRepo' ) {
255 $repo['directory'] = $wgUploadDirectory; // b/c
256 }
257 if ( !isset( $repo['backend'] ) ) {
258 $repo['backend'] = $repo['name'] . '-backend';
259 }
260 }
261 unset( $repo ); // no global pollution; destroy reference
262
263 $rcMaxAgeDays = $wgRCMaxAge / ( 3600 * 24 );
264 if ( $wgRCFilterByAge ) {
265 // Trim down $wgRCLinkDays so that it only lists links which are valid
266 // as determined by $wgRCMaxAge.
267 // Note that we allow 1 link higher than the max for things like 56 days but a 60 day link.
268 sort( $wgRCLinkDays );
269
270 // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
271 for ( $i = 0; $i < count( $wgRCLinkDays ); $i++ ) {
272 // @codingStandardsIgnoreEnd
273 if ( $wgRCLinkDays[$i] >= $rcMaxAgeDays ) {
274 $wgRCLinkDays = array_slice( $wgRCLinkDays, 0, $i + 1, false );
275 break;
276 }
277 }
278 }
279 // Ensure that default user options are not invalid, since that breaks Special:Preferences
280 $wgDefaultUserOptions['rcdays'] = min(
281 $wgDefaultUserOptions['rcdays'],
282 ceil( $rcMaxAgeDays )
283 );
284 $wgDefaultUserOptions['watchlistdays'] = min(
285 $wgDefaultUserOptions['watchlistdays'],
286 ceil( $rcMaxAgeDays )
287 );
288 unset( $rcMaxAgeDays );
289
290 if ( $wgSkipSkin ) {
291 $wgSkipSkins[] = $wgSkipSkin;
292 }
293
294 $wgSkipSkins[] = 'fallback';
295 $wgSkipSkins[] = 'apioutput';
296
297 if ( $wgLocalInterwiki ) {
298 array_unshift( $wgLocalInterwikis, $wgLocalInterwiki );
299 }
300
301 // Set default shared prefix
302 if ( $wgSharedPrefix === false ) {
303 $wgSharedPrefix = $wgDBprefix;
304 }
305
306 // Set default shared schema
307 if ( $wgSharedSchema === false ) {
308 $wgSharedSchema = $wgDBmwschema;
309 }
310
311 if ( !$wgCookiePrefix ) {
312 if ( $wgSharedDB && $wgSharedPrefix && in_array( 'user', $wgSharedTables ) ) {
313 $wgCookiePrefix = $wgSharedDB . '_' . $wgSharedPrefix;
314 } elseif ( $wgSharedDB && in_array( 'user', $wgSharedTables ) ) {
315 $wgCookiePrefix = $wgSharedDB;
316 } elseif ( $wgDBprefix ) {
317 $wgCookiePrefix = $wgDBname . '_' . $wgDBprefix;
318 } else {
319 $wgCookiePrefix = $wgDBname;
320 }
321 }
322 $wgCookiePrefix = strtr( $wgCookiePrefix, '=,; +."\'\\[', '__________' );
323
324 if ( $wgEnableEmail ) {
325 $wgUseEnotif = $wgEnotifUserTalk || $wgEnotifWatchlist;
326 } else {
327 // Disable all other email settings automatically if $wgEnableEmail
328 // is set to false. - bug 63678
329 $wgAllowHTMLEmail = false;
330 $wgEmailAuthentication = false; // do not require auth if you're not sending email anyway
331 $wgEnableUserEmail = false;
332 $wgEnotifFromEditor = false;
333 $wgEnotifImpersonal = false;
334 $wgEnotifMaxRecips = 0;
335 $wgEnotifMinorEdits = false;
336 $wgEnotifRevealEditorAddress = false;
337 $wgEnotifUseRealName = false;
338 $wgEnotifUserTalk = false;
339 $wgEnotifWatchlist = false;
340 unset( $wgGroupPermissions['user']['sendemail'] );
341 $wgUseEnotif = false;
342 $wgUserEmailUseReplyTo = false;
343 $wgUsersNotifiedOnAllChanges = [];
344 }
345
346 if ( $wgMetaNamespace === false ) {
347 $wgMetaNamespace = str_replace( ' ', '_', $wgSitename );
348 }
349
350 // Default value is 2000 or the suhosin limit if it is between 1 and 2000
351 if ( $wgResourceLoaderMaxQueryLength === false ) {
352 $suhosinMaxValueLength = (int)ini_get( 'suhosin.get.max_value_length' );
353 if ( $suhosinMaxValueLength > 0 && $suhosinMaxValueLength < 2000 ) {
354 $wgResourceLoaderMaxQueryLength = $suhosinMaxValueLength;
355 } else {
356 $wgResourceLoaderMaxQueryLength = 2000;
357 }
358 unset( $suhosinMaxValueLength );
359 }
360
361 // Ensure the minimum chunk size is less than PHP upload limits or the maximum
362 // upload size.
363 $wgMinUploadChunkSize = min(
364 $wgMinUploadChunkSize,
365 UploadBase::getMaxUploadSize( 'file' ),
366 UploadBase::getMaxPhpUploadSize(),
367 ( wfShorthandToInteger(
368 ini_get( 'post_max_size' ) ?: ini_get( 'hhvm.server.max_post_size' ),
369 PHP_INT_MAX
370 ) ?: PHP_INT_MAX ) - 1024 // Leave some room for other POST parameters
371 );
372
373 /**
374 * Definitions of the NS_ constants are in Defines.php
375 * @private
376 */
377 $wgCanonicalNamespaceNames = [
378 NS_MEDIA => 'Media',
379 NS_SPECIAL => 'Special',
380 NS_TALK => 'Talk',
381 NS_USER => 'User',
382 NS_USER_TALK => 'User_talk',
383 NS_PROJECT => 'Project',
384 NS_PROJECT_TALK => 'Project_talk',
385 NS_FILE => 'File',
386 NS_FILE_TALK => 'File_talk',
387 NS_MEDIAWIKI => 'MediaWiki',
388 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
389 NS_TEMPLATE => 'Template',
390 NS_TEMPLATE_TALK => 'Template_talk',
391 NS_HELP => 'Help',
392 NS_HELP_TALK => 'Help_talk',
393 NS_CATEGORY => 'Category',
394 NS_CATEGORY_TALK => 'Category_talk',
395 ];
396
397 /// @todo UGLY UGLY
398 if ( is_array( $wgExtraNamespaces ) ) {
399 $wgCanonicalNamespaceNames = $wgCanonicalNamespaceNames + $wgExtraNamespaces;
400 }
401
402 // These are now the same, always
403 // To determine the user language, use $wgLang->getCode()
404 $wgContLanguageCode = $wgLanguageCode;
405
406 // Easy to forget to falsify $wgDebugToolbar for static caches.
407 // If file cache or CDN cache is on, just disable this (DWIMD).
408 if ( $wgUseFileCache || $wgUseSquid ) {
409 $wgDebugToolbar = false;
410 }
411
412 // We always output HTML5 since 1.22, overriding these is no longer supported
413 // we set them here for extensions that depend on its value.
414 $wgHtml5 = true;
415 $wgXhtmlDefaultNamespace = 'http://www.w3.org/1999/xhtml';
416 $wgJsMimeType = 'text/javascript';
417
418 // Blacklisted file extensions shouldn't appear on the "allowed" list
419 $wgFileExtensions = array_values( array_diff( $wgFileExtensions, $wgFileBlacklist ) );
420
421 if ( $wgInvalidateCacheOnLocalSettingsChange ) {
422 MediaWiki\suppressWarnings();
423 $wgCacheEpoch = max( $wgCacheEpoch, gmdate( 'YmdHis', filemtime( "$IP/LocalSettings.php" ) ) );
424 MediaWiki\restoreWarnings();
425 }
426
427 if ( $wgNewUserLog ) {
428 // Add a new log type
429 $wgLogTypes[] = 'newusers';
430 $wgLogNames['newusers'] = 'newuserlogpage';
431 $wgLogHeaders['newusers'] = 'newuserlogpagetext';
432 $wgLogActionsHandlers['newusers/newusers'] = 'NewUsersLogFormatter';
433 $wgLogActionsHandlers['newusers/create'] = 'NewUsersLogFormatter';
434 $wgLogActionsHandlers['newusers/create2'] = 'NewUsersLogFormatter';
435 $wgLogActionsHandlers['newusers/byemail'] = 'NewUsersLogFormatter';
436 $wgLogActionsHandlers['newusers/autocreate'] = 'NewUsersLogFormatter';
437 }
438
439 if ( $wgPageLanguageUseDB ) {
440 $wgLogTypes[] = 'pagelang';
441 $wgLogActionsHandlers['pagelang/pagelang'] = 'PageLangLogFormatter';
442 }
443
444 if ( $wgCookieSecure === 'detect' ) {
445 $wgCookieSecure = ( WebRequest::detectProtocol() === 'https' );
446 }
447
448 if ( $wgProfileOnly ) {
449 $wgDebugLogGroups['profileoutput'] = $wgDebugLogFile;
450 $wgDebugLogFile = '';
451 }
452
453 // Backwards compatibility with old password limits
454 if ( $wgMinimalPasswordLength !== false ) {
455 $wgPasswordPolicy['policies']['default']['MinimalPasswordLength'] = $wgMinimalPasswordLength;
456 }
457
458 if ( $wgMaximalPasswordLength !== false ) {
459 $wgPasswordPolicy['policies']['default']['MaximalPasswordLength'] = $wgMaximalPasswordLength;
460 }
461
462 // Backwards compatibility warning
463 if ( !$wgSessionsInObjectCache && !$wgSessionsInMemcached ) {
464 wfDeprecated( '$wgSessionsInObjectCache = false', '1.27' );
465 if ( $wgSessionHandler ) {
466 wfDeprecated( '$wgSessionsHandler', '1.27' );
467 }
468 $cacheType = get_class( ObjectCache::getInstance( $wgSessionCacheType ) );
469 wfDebugLog(
470 'caches',
471 "Session data will be stored in \"$cacheType\" cache with " .
472 "expiry $wgObjectCacheSessionExpiry seconds"
473 );
474 }
475 $wgSessionsInObjectCache = true;
476
477 if ( $wgPHPSessionHandling !== 'enable' &&
478 $wgPHPSessionHandling !== 'warn' &&
479 $wgPHPSessionHandling !== 'disable'
480 ) {
481 $wgPHPSessionHandling = 'warn';
482 }
483 if ( defined( 'MW_NO_SESSION' ) ) {
484 // If the entry point wants no session, force 'disable' here unless they
485 // specifically set it to the (undocumented) 'warn'.
486 $wgPHPSessionHandling = MW_NO_SESSION === 'warn' ? 'warn' : 'disable';
487 }
488
489 Profiler::instance()->scopedProfileOut( $ps_default );
490
491 // Disable MWDebug for command line mode, this prevents MWDebug from eating up
492 // all the memory from logging SQL queries on maintenance scripts
493 global $wgCommandLineMode;
494 if ( $wgDebugToolbar && !$wgCommandLineMode ) {
495 MWDebug::init();
496 }
497
498 if ( !class_exists( 'AutoLoader' ) ) {
499 require_once "$IP/includes/AutoLoader.php";
500 }
501
502 // Reset the global service locator, so any services that have already been created will be
503 // re-created while taking into account any custom settings and extensions.
504 MediaWikiServices::resetGlobalInstance( new GlobalVarConfig() );
505
506 // Define a constant that indicates that the bootstrapping of the service locator
507 // is complete.
508 define( 'MW_SERVICE_BOOTSTRAP_COMPLETE', 1 );
509
510 // Install a header callback to prevent caching of responses with cookies (T127993)
511 if ( !$wgCommandLineMode ) {
512 header_register_callback( function () {
513 $headers = [];
514 foreach ( headers_list() as $header ) {
515 list( $name, $value ) = explode( ':', $header, 2 );
516 $headers[strtolower( trim( $name ) )][] = trim( $value );
517 }
518
519 if ( isset( $headers['set-cookie'] ) ) {
520 $cacheControl = isset( $headers['cache-control'] )
521 ? implode( ', ', $headers['cache-control'] )
522 : '';
523
524 if ( !preg_match( '/(?:^|,)\s*(?:private|no-cache|no-store)\s*(?:$|,)/i', $cacheControl ) ) {
525 header( 'Expires: Thu, 01 Jan 1970 00:00:00 GMT' );
526 header( 'Cache-Control: private, max-age=0, s-maxage=0' );
527 MediaWiki\Logger\LoggerFactory::getInstance( 'cache-cookies' )->warning(
528 'Cookies set on {url} with Cache-Control "{cache-control}"', [
529 'url' => WebRequest::getGlobalRequestURL(),
530 'cookies' => $headers['set-cookie'],
531 'cache-control' => $cacheControl ?: '<not set>',
532 ]
533 );
534 }
535 }
536 } );
537 }
538
539 MWExceptionHandler::installHandler();
540
541 require_once "$IP/includes/compat/normal/UtfNormalUtil.php";
542
543 $ps_validation = Profiler::instance()->scopedProfileIn( $fname . '-validation' );
544
545 // T48998: Bail out early if $wgArticlePath is non-absolute
546 foreach ( [ 'wgArticlePath', 'wgVariantArticlePath' ] as $varName ) {
547 if ( $$varName && !preg_match( '/^(https?:\/\/|\/)/', $$varName ) ) {
548 throw new FatalError(
549 "If you use a relative URL for \$$varName, it must start " .
550 'with a slash (<code>/</code>).<br><br>See ' .
551 "<a href=\"https://www.mediawiki.org/wiki/Manual:\$$varName\">" .
552 "https://www.mediawiki.org/wiki/Manual:\$$varName</a>."
553 );
554 }
555 }
556
557 Profiler::instance()->scopedProfileOut( $ps_validation );
558
559 $ps_default2 = Profiler::instance()->scopedProfileIn( $fname . '-defaults2' );
560
561 if ( $wgCanonicalServer === false ) {
562 $wgCanonicalServer = wfExpandUrl( $wgServer, PROTO_HTTP );
563 }
564
565 // Set server name
566 $serverParts = wfParseUrl( $wgCanonicalServer );
567 if ( $wgServerName !== false ) {
568 wfWarn( '$wgServerName should be derived from $wgCanonicalServer, '
569 . 'not customized. Overwriting $wgServerName.' );
570 }
571 $wgServerName = $serverParts['host'];
572 unset( $serverParts );
573
574 // Set defaults for configuration variables
575 // that are derived from the server name by default
576 // Note: $wgEmergencyContact and $wgPasswordSender may be false or empty string (T104142)
577 if ( !$wgEmergencyContact ) {
578 $wgEmergencyContact = 'wikiadmin@' . $wgServerName;
579 }
580 if ( !$wgPasswordSender ) {
581 $wgPasswordSender = 'apache@' . $wgServerName;
582 }
583 if ( !$wgNoReplyAddress ) {
584 $wgNoReplyAddress = $wgPasswordSender;
585 }
586
587 if ( $wgSecureLogin && substr( $wgServer, 0, 2 ) !== '//' ) {
588 $wgSecureLogin = false;
589 wfWarn( 'Secure login was enabled on a server that only supports '
590 . 'HTTP or HTTPS. Disabling secure login.' );
591 }
592
593 $wgVirtualRestConfig['global']['domain'] = $wgCanonicalServer;
594
595 // Now that GlobalFunctions is loaded, set defaults that depend on it.
596 if ( $wgTmpDirectory === false ) {
597 $wgTmpDirectory = wfTempDir();
598 }
599
600 // We don't use counters anymore. Left here for extensions still
601 // expecting this to exist. Should be removed sometime 1.26 or later.
602 if ( !isset( $wgDisableCounters ) ) {
603 $wgDisableCounters = true;
604 }
605
606 if ( $wgMainWANCache === false ) {
607 // Setup a WAN cache from $wgMainCacheType with no relayer.
608 // Sites using multiple datacenters can configure a relayer.
609 $wgMainWANCache = 'mediawiki-main-default';
610 $wgWANObjectCaches[$wgMainWANCache] = [
611 'class' => 'WANObjectCache',
612 'cacheId' => $wgMainCacheType,
613 'channels' => [ 'purge' => 'wancache-main-default-purge' ]
614 ];
615 }
616
617 Profiler::instance()->scopedProfileOut( $ps_default2 );
618
619 $ps_misc = Profiler::instance()->scopedProfileIn( $fname . '-misc1' );
620
621 // Raise the memory limit if it's too low
622 wfMemoryLimit();
623
624 /**
625 * Set up the timezone, suppressing the pseudo-security warning in PHP 5.1+
626 * that happens whenever you use a date function without the timezone being
627 * explicitly set. Inspired by phpMyAdmin's treatment of the problem.
628 */
629 if ( is_null( $wgLocaltimezone ) ) {
630 MediaWiki\suppressWarnings();
631 $wgLocaltimezone = date_default_timezone_get();
632 MediaWiki\restoreWarnings();
633 }
634
635 date_default_timezone_set( $wgLocaltimezone );
636 if ( is_null( $wgLocalTZoffset ) ) {
637 $wgLocalTZoffset = date( 'Z' ) / 60;
638 }
639
640 if ( !$wgDBerrorLogTZ ) {
641 $wgDBerrorLogTZ = $wgLocaltimezone;
642 }
643
644 // initialize the request object in $wgRequest
645 $wgRequest = RequestContext::getMain()->getRequest(); // BackCompat
646
647 // Useful debug output
648 if ( $wgCommandLineMode ) {
649 wfDebug( "\n\nStart command line script $self\n" );
650 } else {
651 $debug = "\n\nStart request {$wgRequest->getMethod()} {$wgRequest->getRequestURL()}\n";
652
653 if ( $wgDebugPrintHttpHeaders ) {
654 $debug .= "HTTP HEADERS:\n";
655
656 foreach ( $wgRequest->getAllHeaders() as $name => $value ) {
657 $debug .= "$name: $value\n";
658 }
659 }
660 wfDebug( $debug );
661 }
662
663 Profiler::instance()->scopedProfileOut( $ps_misc );
664 $ps_memcached = Profiler::instance()->scopedProfileIn( $fname . '-memcached' );
665
666 $wgMemc = wfGetMainCache();
667 $messageMemc = wfGetMessageCacheStorage();
668 $parserMemc = wfGetParserCacheStorage();
669
670 wfDebugLog( 'caches',
671 'cluster: ' . get_class( $wgMemc ) .
672 ', WAN: ' . $wgMainWANCache .
673 ', stash: ' . $wgMainStash .
674 ', message: ' . get_class( $messageMemc ) .
675 ', parser: ' . get_class( $parserMemc ) );
676
677 Profiler::instance()->scopedProfileOut( $ps_memcached );
678
679 // Most of the config is out, some might want to run hooks here.
680 Hooks::run( 'SetupAfterCache' );
681
682 $ps_globals = Profiler::instance()->scopedProfileIn( $fname . '-globals' );
683
684 /**
685 * @var Language $wgContLang
686 */
687 $wgContLang = Language::factory( $wgLanguageCode );
688 $wgContLang->initEncoding();
689 $wgContLang->initContLang();
690
691 // Now that variant lists may be available...
692 $wgRequest->interpolateTitle();
693
694 if ( !is_object( $wgAuth ) ) {
695 $wgAuth = new AuthPlugin;
696 Hooks::run( 'AuthPluginSetup', [ &$wgAuth ] );
697 }
698
699 // Set up the session
700 $ps_session = Profiler::instance()->scopedProfileIn( $fname . '-session' );
701 /**
702 * @var MediaWiki\Session\SessionId|null $wgInitialSessionId The persistent
703 * session ID (if any) loaded at startup
704 */
705 $wgInitialSessionId = null;
706 if ( !defined( 'MW_NO_SESSION' ) && !$wgCommandLineMode ) {
707 // If session.auto_start is there, we can't touch session name
708 if ( $wgPHPSessionHandling !== 'disable' && !wfIniGetBool( 'session.auto_start' ) ) {
709 session_name( $wgSessionName ? $wgSessionName : $wgCookiePrefix . '_session' );
710 }
711
712 // Create the SessionManager singleton and set up our session handler,
713 // unless we're specifically asked not to.
714 if ( !defined( 'MW_NO_SESSION_HANDLER' ) ) {
715 MediaWiki\Session\PHPSessionHandler::install(
716 MediaWiki\Session\SessionManager::singleton()
717 );
718 }
719
720 // Initialize the session
721 try {
722 $session = MediaWiki\Session\SessionManager::getGlobalSession();
723 } catch ( OverflowException $ex ) {
724 if ( isset( $ex->sessionInfos ) && count( $ex->sessionInfos ) >= 2 ) {
725 // The exception is because the request had multiple possible
726 // sessions tied for top priority. Report this to the user.
727 $list = [];
728 foreach ( $ex->sessionInfos as $info ) {
729 $list[] = $info->getProvider()->describe( $wgContLang );
730 }
731 $list = $wgContLang->listToText( $list );
732 throw new HttpError( 400,
733 Message::newFromKey( 'sessionmanager-tie', $list )->inLanguage( $wgContLang )->plain()
734 );
735 }
736
737 // Not the one we want, rethrow
738 throw $ex;
739 }
740
741 if ( $session->isPersistent() ) {
742 $wgInitialSessionId = $session->getSessionId();
743 }
744
745 $session->renew();
746 if ( MediaWiki\Session\PHPSessionHandler::isEnabled() &&
747 ( $session->isPersistent() || $session->shouldRememberUser() )
748 ) {
749 // Start the PHP-session for backwards compatibility
750 session_id( $session->getId() );
751 MediaWiki\quietCall( 'session_start' );
752 }
753
754 unset( $session );
755 } else {
756 // Even if we didn't set up a global Session, still install our session
757 // handler unless specifically requested not to.
758 if ( !defined( 'MW_NO_SESSION_HANDLER' ) ) {
759 MediaWiki\Session\PHPSessionHandler::install(
760 MediaWiki\Session\SessionManager::singleton()
761 );
762 }
763 }
764 Profiler::instance()->scopedProfileOut( $ps_session );
765
766 /**
767 * @var User $wgUser
768 */
769 $wgUser = RequestContext::getMain()->getUser(); // BackCompat
770
771 /**
772 * @var Language $wgLang
773 */
774 $wgLang = new StubUserLang;
775
776 /**
777 * @var OutputPage $wgOut
778 */
779 $wgOut = RequestContext::getMain()->getOutput(); // BackCompat
780
781 /**
782 * @var Parser $wgParser
783 */
784 $wgParser = new StubObject( 'wgParser', $wgParserConf['class'], [ $wgParserConf ] );
785
786 /**
787 * @var Title $wgTitle
788 */
789 $wgTitle = null;
790
791 Profiler::instance()->scopedProfileOut( $ps_globals );
792 $ps_extensions = Profiler::instance()->scopedProfileIn( $fname . '-extensions' );
793
794 // Extension setup functions
795 // Entries should be added to this variable during the inclusion
796 // of the extension file. This allows the extension to perform
797 // any necessary initialisation in the fully initialised environment
798 foreach ( $wgExtensionFunctions as $func ) {
799 // Allow closures in PHP 5.3+
800 if ( is_object( $func ) && $func instanceof Closure ) {
801 $profName = $fname . '-extensions-closure';
802 } elseif ( is_array( $func ) ) {
803 if ( is_object( $func[0] ) ) {
804 $profName = $fname . '-extensions-' . get_class( $func[0] ) . '::' . $func[1];
805 } else {
806 $profName = $fname . '-extensions-' . implode( '::', $func );
807 }
808 } else {
809 $profName = $fname . '-extensions-' . strval( $func );
810 }
811
812 $ps_ext_func = Profiler::instance()->scopedProfileIn( $profName );
813 call_user_func( $func );
814 Profiler::instance()->scopedProfileOut( $ps_ext_func );
815 }
816
817 // If the session user has a 0 id but a valid name, that means we need to
818 // autocreate it.
819 if ( !defined( 'MW_NO_SESSION' ) && !$wgCommandLineMode ) {
820 $sessionUser = MediaWiki\Session\SessionManager::getGlobalSession()->getUser();
821 if ( $sessionUser->getId() === 0 && User::isValidUserName( $sessionUser->getName() ) ) {
822 $ps_autocreate = Profiler::instance()->scopedProfileIn( $fname . '-autocreate' );
823 MediaWiki\Session\SessionManager::autoCreateUser( $sessionUser );
824 Profiler::instance()->scopedProfileOut( $ps_autocreate );
825 }
826 unset( $sessionUser );
827 }
828
829 wfDebug( "Fully initialised\n" );
830 $wgFullyInitialised = true;
831
832 Profiler::instance()->scopedProfileOut( $ps_extensions );
833 Profiler::instance()->scopedProfileOut( $ps_setup );