Merge "MessageCache invalidation improvements"
[lhc/web/wiklou.git] / mw-config / index.php
1 <?php
2 // @codingStandardsIgnoreFile Generic.Arrays.DisallowLongArraySyntax
3 /**
4 * New version of MediaWiki web-based config/installation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @file
22 */
23
24 // Bail on old versions of PHP, or if composer has not been run yet to install
25 // dependencies. Using dirname( __FILE__ ) here because __DIR__ is PHP5.3+.
26 // @codingStandardsIgnoreStart MediaWiki.Usage.DirUsage.FunctionFound
27 require_once dirname( __FILE__ ) . '/../includes/PHPVersionCheck.php';
28 // @codingStandardsIgnoreEnd
29 wfEntryPointCheck( 'mw-config/index.php' );
30
31 define( 'MW_CONFIG_CALLBACK', 'Installer::overrideConfig' );
32 define( 'MEDIAWIKI_INSTALL', true );
33
34 // Resolve relative to regular MediaWiki root
35 // instead of mw-config subdirectory.
36 chdir( dirname( __DIR__ ) );
37 require dirname( __DIR__ ) . '/includes/WebStart.php';
38
39 wfInstallerMain();
40
41 function wfInstallerMain() {
42 global $wgRequest, $wgLang, $wgMetaNamespace, $wgCanonicalNamespaceNames;
43
44 $installer = InstallerOverrides::getWebInstaller( $wgRequest );
45
46 if ( !$installer->startSession() ) {
47
48 if ( $installer->request->getVal( "css" ) ) {
49 // Do not display errors on css pages
50 $installer->outputCss();
51 exit;
52 }
53
54 $errors = $installer->getPhpErrors();
55 $installer->showError( 'config-session-error', $errors[0] );
56 $installer->finish();
57 exit;
58 }
59
60 $fingerprint = $installer->getFingerprint();
61 if ( isset( $_SESSION['installData'][$fingerprint] ) ) {
62 $session = $_SESSION['installData'][$fingerprint];
63 } else {
64 $session = array();
65 }
66
67 if ( !is_null( $wgRequest->getVal( 'uselang' ) ) ) {
68 $langCode = $wgRequest->getVal( 'uselang' );
69 } elseif ( isset( $session['settings']['_UserLang'] ) ) {
70 $langCode = $session['settings']['_UserLang'];
71 } else {
72 $langCode = 'en';
73 }
74 $wgLang = Language::factory( $langCode );
75 RequestContext::getMain()->setLanguage( $wgLang );
76
77 $installer->setParserLanguage( $wgLang );
78
79 $wgMetaNamespace = $wgCanonicalNamespaceNames[NS_PROJECT];
80
81 $session = $installer->execute( $session );
82
83 $_SESSION['installData'][$fingerprint] = $session;
84
85 }