3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
22 class WebInstallerExistingWiki
extends WebInstallerPage
{
27 public function execute() {
28 // If there is no LocalSettings.php, continue to the installer welcome page
29 $vars = Installer
::getExistingLocalSettings();
34 // Check if the upgrade key supplied to the user has appeared in LocalSettings.php
35 if ( $vars['wgUpgradeKey'] !== false
36 && $this->getVar( '_UpgradeKeySupplied' )
37 && $this->getVar( 'wgUpgradeKey' ) === $vars['wgUpgradeKey']
39 // It's there, so the user is authorized
40 $status = $this->handleExistingUpgrade( $vars );
41 if ( $status->isOK() ) {
45 $this->parent
->showStatusBox( $status );
46 $this->endForm( 'continue' );
52 // If there is no $wgUpgradeKey, tell the user to add one to LocalSettings.php
53 if ( $vars['wgUpgradeKey'] === false ) {
54 if ( $this->getVar( 'wgUpgradeKey', false ) === false ) {
55 $secretKey = $this->getVar( 'wgSecretKey' ); // preserve $wgSecretKey
56 $this->parent
->generateKeys();
57 $this->setVar( 'wgSecretKey', $secretKey );
58 $this->setVar( '_UpgradeKeySupplied', true );
61 $this->addHTML( $this->parent
->getInfoBox(
62 wfMessage( 'config-upgrade-key-missing', "<pre dir=\"ltr\">\$wgUpgradeKey = '" .
63 $this->getVar( 'wgUpgradeKey' ) . "';</pre>" )->plain()
65 $this->endForm( 'continue' );
70 // If there is an upgrade key, but it wasn't supplied, prompt the user to enter it
72 $r = $this->parent
->request
;
73 if ( $r->wasPosted() ) {
74 $key = $r->getText( 'config_wgUpgradeKey' );
75 if ( !$key ||
$key !== $vars['wgUpgradeKey'] ) {
76 $this->parent
->showError( 'config-localsettings-badkey' );
82 $status = $this->handleExistingUpgrade( $vars );
83 if ( $status->isOK() ) {
86 $this->parent
->showStatusBox( $status );
99 * Show the "enter key" form
101 protected function showKeyForm() {
104 $this->parent
->getInfoBox( wfMessage( 'config-localsettings-upgrade' )->plain() ) .
106 $this->parent
->getTextBox( array(
107 'var' => 'wgUpgradeKey',
108 'label' => 'config-localsettings-key',
109 'attribs' => array( 'autocomplete' => 'off' ),
112 $this->endForm( 'continue' );
116 * @param string[] $names
117 * @param mixed[] $vars
121 protected function importVariables( $names, $vars ) {
122 $status = Status
::newGood();
123 foreach ( $names as $name ) {
124 if ( !isset( $vars[$name] ) ) {
125 $status->fatal( 'config-localsettings-incomplete', $name );
127 $this->setVar( $name, $vars[$name] );
134 * Initiate an upgrade of the existing database
136 * @param mixed[] $vars Variables from LocalSettings.php
140 protected function handleExistingUpgrade( $vars ) {
142 if ( !isset( $vars['wgDBtype'] ) ||
143 !in_array( $vars['wgDBtype'], Installer
::getDBTypes() )
145 return Status
::newFatal( 'config-localsettings-connection-error', '' );
148 // Set the relevant variables from LocalSettings.php
149 $requiredVars = array( 'wgDBtype' );
150 $status = $this->importVariables( $requiredVars, $vars );
151 $installer = $this->parent
->getDBInstaller();
152 $status->merge( $this->importVariables( $installer->getGlobalNames(), $vars ) );
153 if ( !$status->isOK() ) {
157 if ( isset( $vars['wgDBadminuser'] ) ) {
158 $this->setVar( '_InstallUser', $vars['wgDBadminuser'] );
160 $this->setVar( '_InstallUser', $vars['wgDBuser'] );
162 if ( isset( $vars['wgDBadminpassword'] ) ) {
163 $this->setVar( '_InstallPassword', $vars['wgDBadminpassword'] );
165 $this->setVar( '_InstallPassword', $vars['wgDBpassword'] );
168 // Test the database connection
169 $status = $installer->getConnection();
170 if ( !$status->isOK() ) {
171 // Adjust the error message to explain things correctly
172 $status->replaceMessage( 'config-connection-error',
173 'config-localsettings-connection-error' );
179 $this->setVar( '_ExistingDBSettings', true );
181 // Copy $wgAuthenticationTokenVersion too, if it exists
182 $this->setVar( 'wgAuthenticationTokenVersion',
183 isset( $vars['wgAuthenticationTokenVersion'] )
184 ?
$vars['wgAuthenticationTokenVersion']