MediaWiki REL1_28
WebInstallerExistingWiki.php
Go to the documentation of this file.
1<?php
23
27 public function execute() {
28 // If there is no LocalSettings.php, continue to the installer welcome page
30 if ( !$vars ) {
31 return 'skip';
32 }
33
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']
38 ) {
39 // It's there, so the user is authorized
41 if ( $status->isOK() ) {
42 return 'skip';
43 } else {
44 $this->startForm();
45 $this->parent->showStatusBox( $status );
46 $this->endForm( 'continue' );
47
48 return 'output';
49 }
50 }
51
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 );
59 }
60 $this->startForm();
61 $this->addHTML( $this->parent->getInfoBox(
62 wfMessage( 'config-upgrade-key-missing', "<pre dir=\"ltr\">\$wgUpgradeKey = '" .
63 $this->getVar( 'wgUpgradeKey' ) . "';</pre>" )->plain()
64 ) );
65 $this->endForm( 'continue' );
66
67 return 'output';
68 }
69
70 // If there is an upgrade key, but it wasn't supplied, prompt the user to enter it
71
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' );
77 $this->showKeyForm();
78
79 return 'output';
80 }
81 // Key was OK
83 if ( $status->isOK() ) {
84 return 'continue';
85 } else {
86 $this->parent->showStatusBox( $status );
87 $this->showKeyForm();
88
89 return 'output';
90 }
91 } else {
92 $this->showKeyForm();
93
94 return 'output';
95 }
96 }
97
101 protected function showKeyForm() {
102 $this->startForm();
103 $this->addHTML(
104 $this->parent->getInfoBox( wfMessage( 'config-localsettings-upgrade' )->plain() ) .
105 '<br />' .
106 $this->parent->getTextBox( [
107 'var' => 'wgUpgradeKey',
108 'label' => 'config-localsettings-key',
109 'attribs' => [ 'autocomplete' => 'off' ],
110 ] )
111 );
112 $this->endForm( 'continue' );
113 }
114
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 );
126 }
127 $this->setVar( $name, $vars[$name] );
128 }
129
130 return $status;
131 }
132
140 protected function handleExistingUpgrade( $vars ) {
141 // Check $wgDBtype
142 if ( !isset( $vars['wgDBtype'] ) ||
143 !in_array( $vars['wgDBtype'], Installer::getDBTypes() )
144 ) {
145 return Status::newFatal( 'config-localsettings-connection-error', '' );
146 }
147
148 // Set the relevant variables from LocalSettings.php
149 $requiredVars = [ 'wgDBtype' ];
150 $status = $this->importVariables( $requiredVars, $vars );
151 $installer = $this->parent->getDBInstaller();
152 $status->merge( $this->importVariables( $installer->getGlobalNames(), $vars ) );
153 if ( !$status->isOK() ) {
154 return $status;
155 }
156
157 if ( isset( $vars['wgDBadminuser'] ) ) {
158 $this->setVar( '_InstallUser', $vars['wgDBadminuser'] );
159 } else {
160 $this->setVar( '_InstallUser', $vars['wgDBuser'] );
161 }
162 if ( isset( $vars['wgDBadminpassword'] ) ) {
163 $this->setVar( '_InstallPassword', $vars['wgDBadminpassword'] );
164 } else {
165 $this->setVar( '_InstallPassword', $vars['wgDBpassword'] );
166 }
167
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' );
174
175 return $status;
176 }
177
178 // All good
179 $this->setVar( '_ExistingDBSettings', true );
180
181 // Copy $wgAuthenticationTokenVersion too, if it exists
182 $this->setVar( 'wgAuthenticationTokenVersion',
183 isset( $vars['wgAuthenticationTokenVersion'] )
184 ? $vars['wgAuthenticationTokenVersion']
185 : null
186 );
187
188 return $status;
189 }
190
191}
static getExistingLocalSettings()
Determine if LocalSettings.php exists.
static getDBTypes()
Get a list of known DB types.
handleExistingUpgrade( $vars)
Initiate an upgrade of the existing database.
showKeyForm()
Show the "enter key" form.
Abstract class to define pages for the web installer.
setVar( $name, $value)
endForm( $continue='continue', $back='back')
getVar( $var, $default=null)
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition hooks.txt:1049
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
Definition hooks.txt:2162
either a plain
Definition hooks.txt:1990
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:304
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37