Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / installer / DatabaseInstaller.php
blob752450fbef4b722eee84ad9e8a74f4b9b30309bb
1 <?php
2 /**
3 * DBMS-specific installation helper.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Deployment
24 /**
25 * Base class for DBMS-specific installation helper classes.
27 * @ingroup Deployment
28 * @since 1.17
30 abstract class DatabaseInstaller {
32 /**
33 * The Installer object.
35 * @todo Naming this parent is confusing, 'installer' would be clearer.
37 * @var WebInstaller
39 public $parent;
41 /**
42 * The database connection.
44 * @var DatabaseBase
46 public $db = null;
48 /**
49 * Internal variables for installation.
51 * @var array
53 protected $internalDefaults = array();
55 /**
56 * Array of MW configuration globals this class uses.
58 * @var array
60 protected $globalNames = array();
62 /**
63 * Return the internal name, e.g. 'mysql', or 'sqlite'.
65 abstract public function getName();
67 /**
68 * @return bool Returns true if the client library is compiled in.
70 abstract public function isCompiled();
72 /**
73 * Checks for installation prerequisites other than those checked by isCompiled()
74 * @since 1.19
75 * @return Status
77 public function checkPrerequisites() {
78 return Status::newGood();
81 /**
82 * Get HTML for a web form that configures this database. Configuration
83 * at this time should be the minimum needed to connect and test
84 * whether install or upgrade is required.
86 * If this is called, $this->parent can be assumed to be a WebInstaller.
88 abstract public function getConnectForm();
90 /**
91 * Set variables based on the request array, assuming it was submitted
92 * via the form returned by getConnectForm(). Validate the connection
93 * settings by attempting to connect with them.
95 * If this is called, $this->parent can be assumed to be a WebInstaller.
97 * @return Status
99 abstract public function submitConnectForm();
102 * Get HTML for a web form that retrieves settings used for installation.
103 * $this->parent can be assumed to be a WebInstaller.
104 * If the DB type has no settings beyond those already configured with
105 * getConnectForm(), this should return false.
106 * @return bool
108 public function getSettingsForm() {
109 return false;
113 * Set variables based on the request array, assuming it was submitted via
114 * the form return by getSettingsForm().
116 * @return Status
118 public function submitSettingsForm() {
119 return Status::newGood();
123 * Open a connection to the database using the administrative user/password
124 * currently defined in the session, without any caching. Returns a status
125 * object. On success, the status object will contain a Database object in
126 * its value member.
128 * @return Status
130 abstract public function openConnection();
133 * Create the database and return a Status object indicating success or
134 * failure.
136 * @return Status
138 abstract public function setupDatabase();
141 * Connect to the database using the administrative user/password currently
142 * defined in the session. Returns a status object. On success, the status
143 * object will contain a Database object in its value member.
145 * This will return a cached connection if one is available.
147 * @return Status
149 public function getConnection() {
150 if ( $this->db ) {
151 return Status::newGood( $this->db );
154 $status = $this->openConnection();
155 if ( $status->isOK() ) {
156 $this->db = $status->value;
157 // Enable autocommit
158 $this->db->clearFlag( DBO_TRX );
159 $this->db->commit( __METHOD__ );
162 return $status;
166 * Apply a SQL source file to the database as part of running an installation step.
168 * @param string $sourceFileMethod
169 * @param string $stepName
170 * @param string $archiveTableMustNotExist
171 * @return Status
173 private function stepApplySourceFile(
174 $sourceFileMethod,
175 $stepName,
176 $archiveTableMustNotExist = false
178 $status = $this->getConnection();
179 if ( !$status->isOK() ) {
180 return $status;
182 $this->db->selectDB( $this->getVar( 'wgDBname' ) );
184 if ( $archiveTableMustNotExist && $this->db->tableExists( 'archive', __METHOD__ ) ) {
185 $status->warning( "config-$stepName-tables-exist" );
186 $this->enableLB();
188 return $status;
191 $this->db->setFlag( DBO_DDLMODE ); // For Oracle's handling of schema files
192 $this->db->begin( __METHOD__ );
194 $error = $this->db->sourceFile(
195 call_user_func( array( $this->db, $sourceFileMethod ) )
197 if ( $error !== true ) {
198 $this->db->reportQueryError( $error, 0, '', __METHOD__ );
199 $this->db->rollback( __METHOD__ );
200 $status->fatal( "config-$stepName-tables-failed", $error );
201 } else {
202 $this->db->commit( __METHOD__ );
204 // Resume normal operations
205 if ( $status->isOk() ) {
206 $this->enableLB();
209 return $status;
213 * Create database tables from scratch.
215 * @return Status
217 public function createTables() {
218 return $this->stepApplySourceFile( 'getSchemaPath', 'install', true );
222 * Insert update keys into table to prevent running unneded updates.
224 * @return Status
226 public function insertUpdateKeys() {
227 return $this->stepApplySourceFile( 'getUpdateKeysPath', 'updates', false );
231 * Create the tables for each extension the user enabled
232 * @return Status
234 public function createExtensionTables() {
235 $status = $this->getConnection();
236 if ( !$status->isOK() ) {
237 return $status;
240 // Now run updates to create tables for old extensions
241 DatabaseUpdater::newForDB( $this->db )->doUpdates( array( 'extensions' ) );
243 return $status;
247 * Get the DBMS-specific options for LocalSettings.php generation.
249 * @return string
251 abstract public function getLocalSettings();
254 * Override this to provide DBMS-specific schema variables, to be
255 * substituted into tables.sql and other schema files.
256 * @return array
258 public function getSchemaVars() {
259 return array();
263 * Set appropriate schema variables in the current database connection.
265 * This should be called after any request data has been imported, but before
266 * any write operations to the database.
268 public function setupSchemaVars() {
269 $status = $this->getConnection();
270 if ( $status->isOK() ) {
271 $status->value->setSchemaVars( $this->getSchemaVars() );
272 } else {
273 $msg = __METHOD__ . ': unexpected error while establishing'
274 . ' a database connection with message: '
275 . $status->getMessage()->plain();
276 throw new MWException( $msg );
281 * Set up LBFactory so that wfGetDB() etc. works.
282 * We set up a special LBFactory instance which returns the current
283 * installer connection.
285 public function enableLB() {
286 $status = $this->getConnection();
287 if ( !$status->isOK() ) {
288 throw new MWException( __METHOD__ . ': unexpected DB connection error' );
290 LBFactory::setInstance( new LBFactorySingle( array(
291 'connection' => $status->value ) ) );
295 * Perform database upgrades
297 * @return bool
299 public function doUpgrade() {
300 $this->setupSchemaVars();
301 $this->enableLB();
303 $ret = true;
304 ob_start( array( $this, 'outputHandler' ) );
305 $up = DatabaseUpdater::newForDB( $this->db );
306 try {
307 $up->doUpdates();
308 } catch ( Exception $e ) {
309 echo "\nAn error occurred:\n";
310 echo $e->getText();
311 $ret = false;
313 $up->purgeCache();
314 ob_end_flush();
316 return $ret;
320 * Allow DB installers a chance to make last-minute changes before installation
321 * occurs. This happens before setupDatabase() or createTables() is called, but
322 * long after the constructor. Helpful for things like modifying setup steps :)
324 public function preInstall() {
328 * Allow DB installers a chance to make checks before upgrade.
330 public function preUpgrade() {
334 * Get an array of MW configuration globals that will be configured by this class.
335 * @return array
337 public function getGlobalNames() {
338 return $this->globalNames;
342 * Construct and initialise parent.
343 * This is typically only called from Installer::getDBInstaller()
344 * @param WebInstaller $parent
346 public function __construct( $parent ) {
347 $this->parent = $parent;
351 * Convenience function.
352 * Check if a named extension is present.
354 * @param string $name
355 * @return bool
357 protected static function checkExtension( $name ) {
358 return extension_loaded( $name );
362 * Get the internationalised name for this DBMS.
363 * @return string
365 public function getReadableName() {
366 // Messages: config-type-mysql, config-type-postgres, config-type-sqlite,
367 // config-type-oracle
368 return wfMessage( 'config-type-' . $this->getName() )->text();
372 * Get a name=>value map of MW configuration globals for the default values.
373 * @return array
375 public function getGlobalDefaults() {
376 $defaults = array();
377 foreach ( $this->getGlobalNames() as $var ) {
378 if ( isset( $GLOBALS[$var] ) ) {
379 $defaults[$var] = $GLOBALS[$var];
382 return $defaults;
386 * Get a name=>value map of internal variables used during installation.
387 * @return array
389 public function getInternalDefaults() {
390 return $this->internalDefaults;
394 * Get a variable, taking local defaults into account.
395 * @param string $var
396 * @param mixed|null $default
397 * @return mixed
399 public function getVar( $var, $default = null ) {
400 $defaults = $this->getGlobalDefaults();
401 $internal = $this->getInternalDefaults();
402 if ( isset( $defaults[$var] ) ) {
403 $default = $defaults[$var];
404 } elseif ( isset( $internal[$var] ) ) {
405 $default = $internal[$var];
408 return $this->parent->getVar( $var, $default );
412 * Convenience alias for $this->parent->setVar()
413 * @param string $name
414 * @param mixed $value
416 public function setVar( $name, $value ) {
417 $this->parent->setVar( $name, $value );
421 * Get a labelled text box to configure a local variable.
423 * @param string $var
424 * @param string $label
425 * @param array $attribs
426 * @param string $helpData
427 * @return string
429 public function getTextBox( $var, $label, $attribs = array(), $helpData = "" ) {
430 $name = $this->getName() . '_' . $var;
431 $value = $this->getVar( $var );
432 if ( !isset( $attribs ) ) {
433 $attribs = array();
436 return $this->parent->getTextBox( array(
437 'var' => $var,
438 'label' => $label,
439 'attribs' => $attribs,
440 'controlName' => $name,
441 'value' => $value,
442 'help' => $helpData
443 ) );
447 * Get a labelled password box to configure a local variable.
448 * Implements password hiding.
450 * @param string $var
451 * @param string $label
452 * @param array $attribs
453 * @param string $helpData
454 * @return string
456 public function getPasswordBox( $var, $label, $attribs = array(), $helpData = "" ) {
457 $name = $this->getName() . '_' . $var;
458 $value = $this->getVar( $var );
459 if ( !isset( $attribs ) ) {
460 $attribs = array();
463 return $this->parent->getPasswordBox( array(
464 'var' => $var,
465 'label' => $label,
466 'attribs' => $attribs,
467 'controlName' => $name,
468 'value' => $value,
469 'help' => $helpData
470 ) );
474 * Get a labelled checkbox to configure a local boolean variable.
476 * @param string $var
477 * @param string $label
478 * @param array $attribs Optional.
479 * @param string $helpData Optional.
480 * @return string
482 public function getCheckBox( $var, $label, $attribs = array(), $helpData = "" ) {
483 $name = $this->getName() . '_' . $var;
484 $value = $this->getVar( $var );
486 return $this->parent->getCheckBox( array(
487 'var' => $var,
488 'label' => $label,
489 'attribs' => $attribs,
490 'controlName' => $name,
491 'value' => $value,
492 'help' => $helpData
493 ) );
497 * Get a set of labelled radio buttons.
499 * @param array $params Parameters are:
500 * var: The variable to be configured (required)
501 * label: The message name for the label (required)
502 * itemLabelPrefix: The message name prefix for the item labels (required)
503 * values: List of allowed values (required)
504 * itemAttribs Array of attribute arrays, outer key is the value name (optional)
506 * @return string
508 public function getRadioSet( $params ) {
509 $params['controlName'] = $this->getName() . '_' . $params['var'];
510 $params['value'] = $this->getVar( $params['var'] );
512 return $this->parent->getRadioSet( $params );
516 * Convenience function to set variables based on form data.
517 * Assumes that variables containing "password" in the name are (potentially
518 * fake) passwords.
519 * @param array $varNames
520 * @return array
522 public function setVarsFromRequest( $varNames ) {
523 return $this->parent->setVarsFromRequest( $varNames, $this->getName() . '_' );
527 * Determine whether an existing installation of MediaWiki is present in
528 * the configured administrative connection. Returns true if there is
529 * such a wiki, false if the database doesn't exist.
531 * Traditionally, this is done by testing for the existence of either
532 * the revision table or the cur table.
534 * @return bool
536 public function needsUpgrade() {
537 $status = $this->getConnection();
538 if ( !$status->isOK() ) {
539 return false;
542 if ( !$this->db->selectDB( $this->getVar( 'wgDBname' ) ) ) {
543 return false;
546 return $this->db->tableExists( 'cur', __METHOD__ ) ||
547 $this->db->tableExists( 'revision', __METHOD__ );
551 * Get a standard install-user fieldset.
553 * @return string
555 public function getInstallUserBox() {
556 return Html::openElement( 'fieldset' ) .
557 Html::element( 'legend', array(), wfMessage( 'config-db-install-account' )->text() ) .
558 $this->getTextBox(
559 '_InstallUser',
560 'config-db-username',
561 array( 'dir' => 'ltr' ),
562 $this->parent->getHelpBox( 'config-db-install-username' )
564 $this->getPasswordBox(
565 '_InstallPassword',
566 'config-db-password',
567 array( 'dir' => 'ltr' ),
568 $this->parent->getHelpBox( 'config-db-install-password' )
570 Html::closeElement( 'fieldset' );
574 * Submit a standard install user fieldset.
575 * @return Status
577 public function submitInstallUserBox() {
578 $this->setVarsFromRequest( array( '_InstallUser', '_InstallPassword' ) );
580 return Status::newGood();
584 * Get a standard web-user fieldset
585 * @param string|bool $noCreateMsg Message to display instead of the creation checkbox.
586 * Set this to false to show a creation checkbox (default).
588 * @return string
590 public function getWebUserBox( $noCreateMsg = false ) {
591 $wrapperStyle = $this->getVar( '_SameAccount' ) ? 'display: none' : '';
592 $s = Html::openElement( 'fieldset' ) .
593 Html::element( 'legend', array(), wfMessage( 'config-db-web-account' )->text() ) .
594 $this->getCheckBox(
595 '_SameAccount', 'config-db-web-account-same',
596 array( 'class' => 'hideShowRadio', 'rel' => 'dbOtherAccount' )
598 Html::openElement( 'div', array( 'id' => 'dbOtherAccount', 'style' => $wrapperStyle ) ) .
599 $this->getTextBox( 'wgDBuser', 'config-db-username' ) .
600 $this->getPasswordBox( 'wgDBpassword', 'config-db-password' ) .
601 $this->parent->getHelpBox( 'config-db-web-help' );
602 if ( $noCreateMsg ) {
603 $s .= $this->parent->getWarningBox( wfMessage( $noCreateMsg )->plain() );
604 } else {
605 $s .= $this->getCheckBox( '_CreateDBAccount', 'config-db-web-create' );
607 $s .= Html::closeElement( 'div' ) . Html::closeElement( 'fieldset' );
609 return $s;
613 * Submit the form from getWebUserBox().
615 * @return Status
617 public function submitWebUserBox() {
618 $this->setVarsFromRequest(
619 array( 'wgDBuser', 'wgDBpassword', '_SameAccount', '_CreateDBAccount' )
622 if ( $this->getVar( '_SameAccount' ) ) {
623 $this->setVar( 'wgDBuser', $this->getVar( '_InstallUser' ) );
624 $this->setVar( 'wgDBpassword', $this->getVar( '_InstallPassword' ) );
627 if ( $this->getVar( '_CreateDBAccount' ) && strval( $this->getVar( 'wgDBpassword' ) ) == '' ) {
628 return Status::newFatal( 'config-db-password-empty', $this->getVar( 'wgDBuser' ) );
631 return Status::newGood();
635 * Common function for databases that don't understand the MySQLish syntax of interwiki.sql.
637 * @return Status
639 public function populateInterwikiTable() {
640 $status = $this->getConnection();
641 if ( !$status->isOK() ) {
642 return $status;
644 $this->db->selectDB( $this->getVar( 'wgDBname' ) );
646 if ( $this->db->selectRow( 'interwiki', '*', array(), __METHOD__ ) ) {
647 $status->warning( 'config-install-interwiki-exists' );
649 return $status;
651 global $IP;
652 MediaWiki\suppressWarnings();
653 $rows = file( "$IP/maintenance/interwiki.list",
654 FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES );
655 MediaWiki\restoreWarnings();
656 $interwikis = array();
657 if ( !$rows ) {
658 return Status::newFatal( 'config-install-interwiki-list' );
660 foreach ( $rows as $row ) {
661 $row = preg_replace( '/^\s*([^#]*?)\s*(#.*)?$/', '\\1', $row ); // strip comments - whee
662 if ( $row == "" ) {
663 continue;
665 $row .= "|";
666 $interwikis[] = array_combine(
667 array( 'iw_prefix', 'iw_url', 'iw_local', 'iw_api', 'iw_wikiid' ),
668 explode( '|', $row )
671 $this->db->insert( 'interwiki', $interwikis, __METHOD__ );
673 return Status::newGood();
676 public function outputHandler( $string ) {
677 return htmlspecialchars( $string );