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
25 * Base class for DBMS-specific installation helper classes.
30 abstract class DatabaseInstaller
{
33 * The Installer object.
35 * TODO: naming this parent is confusing, 'installer' would be clearer.
42 * The database connection.
49 * Internal variables for installation.
53 protected $internalDefaults = array();
56 * Array of MW configuration globals this class uses.
60 protected $globalNames = array();
63 * Return the internal name, e.g. 'mysql', or 'sqlite'.
65 public abstract function getName();
68 * @return bool Returns true if the client library is compiled in.
70 public abstract function isCompiled();
73 * Checks for installation prerequisites other than those checked by isCompiled()
77 public function checkPrerequisites() {
78 return Status
::newGood();
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 public abstract function getConnectForm();
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.
99 public abstract 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.
108 public function getSettingsForm() {
113 * Set variables based on the request array, assuming it was submitted via
114 * the form return by getSettingsForm().
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
130 public abstract function openConnection();
133 * Create the database and return a Status object indicating success or
138 public abstract 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.
149 public function getConnection() {
151 return Status
::newGood( $this->db
);
154 $status = $this->openConnection();
155 if ( $status->isOK() ) {
156 $this->db
= $status->value
;
158 $this->db
->clearFlag( DBO_TRX
);
159 $this->db
->commit( __METHOD__
);
165 * Create database tables from scratch.
169 public function createTables() {
170 $status = $this->getConnection();
171 if ( !$status->isOK() ) {
174 $this->db
->selectDB( $this->getVar( 'wgDBname' ) );
176 if( $this->db
->tableExists( 'archive', __METHOD__
) ) {
177 $status->warning( 'config-install-tables-exist' );
182 $this->db
->setFlag( DBO_DDLMODE
); // For Oracle's handling of schema files
183 $this->db
->begin( __METHOD__
);
185 $error = $this->db
->sourceFile( $this->db
->getSchemaPath() );
186 if( $error !== true ) {
187 $this->db
->reportQueryError( $error, 0, '', __METHOD__
);
188 $this->db
->rollback( __METHOD__
);
189 $status->fatal( 'config-install-tables-failed', $error );
191 $this->db
->commit( __METHOD__
);
193 // Resume normal operations
194 if( $status->isOk() ) {
201 * Create the tables for each extension the user enabled
204 public function createExtensionTables() {
205 $status = $this->getConnection();
206 if ( !$status->isOK() ) {
210 // Now run updates to create tables for old extensions
211 DatabaseUpdater
::newForDB( $this->db
)->doUpdates( array( 'extensions' ) );
217 * Get the DBMS-specific options for LocalSettings.php generation.
221 public abstract function getLocalSettings();
224 * Override this to provide DBMS-specific schema variables, to be
225 * substituted into tables.sql and other schema files.
228 public function getSchemaVars() {
233 * Set appropriate schema variables in the current database connection.
235 * This should be called after any request data has been imported, but before
236 * any write operations to the database.
238 public function setupSchemaVars() {
239 $status = $this->getConnection();
240 if ( $status->isOK() ) {
241 $status->value
->setSchemaVars( $this->getSchemaVars() );
243 throw new MWException( __METHOD__
.': unexpected DB connection error' );
248 * Set up LBFactory so that wfGetDB() etc. works.
249 * We set up a special LBFactory instance which returns the current
250 * installer connection.
252 public function enableLB() {
253 $status = $this->getConnection();
254 if ( !$status->isOK() ) {
255 throw new MWException( __METHOD__
.': unexpected DB connection error' );
257 LBFactory
::setInstance( new LBFactory_Single( array(
258 'connection' => $status->value
) ) );
262 * Perform database upgrades
266 public function doUpgrade() {
267 $this->setupSchemaVars();
271 ob_start( array( $this, 'outputHandler' ) );
273 $up = DatabaseUpdater
::newForDB( $this->db
);
275 } catch ( MWException
$e ) {
276 echo "\nAn error occured:\n";
285 * Allow DB installers a chance to make last-minute changes before installation
286 * occurs. This happens before setupDatabase() or createTables() is called, but
287 * long after the constructor. Helpful for things like modifying setup steps :)
289 public function preInstall() {
294 * Allow DB installers a chance to make checks before upgrade.
296 public function preUpgrade() {
301 * Get an array of MW configuration globals that will be configured by this class.
304 public function getGlobalNames() {
305 return $this->globalNames
;
309 * Construct and initialise parent.
310 * This is typically only called from Installer::getDBInstaller()
313 public function __construct( $parent ) {
314 $this->parent
= $parent;
318 * Convenience function.
319 * Check if a named extension is present.
325 protected static function checkExtension( $name ) {
326 wfSuppressWarnings();
327 $compiled = wfDl( $name );
333 * Get the internationalised name for this DBMS.
336 public function getReadableName() {
337 return wfMsg( 'config-type-' . $this->getName() );
341 * Get a name=>value map of MW configuration globals that overrides.
342 * DefaultSettings.php
345 public function getGlobalDefaults() {
350 * Get a name=>value map of internal variables used during installation.
353 public function getInternalDefaults() {
354 return $this->internalDefaults
;
358 * Get a variable, taking local defaults into account.
360 * @param $default null
363 public function getVar( $var, $default = null ) {
364 $defaults = $this->getGlobalDefaults();
365 $internal = $this->getInternalDefaults();
366 if ( isset( $defaults[$var] ) ) {
367 $default = $defaults[$var];
368 } elseif ( isset( $internal[$var] ) ) {
369 $default = $internal[$var];
371 return $this->parent
->getVar( $var, $default );
375 * Convenience alias for $this->parent->setVar()
376 * @param $name string
377 * @param $value mixed
379 public function setVar( $name, $value ) {
380 $this->parent
->setVar( $name, $value );
384 * Get a labelled text box to configure a local variable.
387 * @param $label string
388 * @param $attribs array
389 * @param $helpData string
392 public function getTextBox( $var, $label, $attribs = array(), $helpData = "" ) {
393 $name = $this->getName() . '_' . $var;
394 $value = $this->getVar( $var );
395 if ( !isset( $attribs ) ) {
398 return $this->parent
->getTextBox( array(
401 'attribs' => $attribs,
402 'controlName' => $name,
409 * Get a labelled password box to configure a local variable.
410 * Implements password hiding.
413 * @param $label string
414 * @param $attribs array
415 * @param $helpData string
418 public function getPasswordBox( $var, $label, $attribs = array(), $helpData = "" ) {
419 $name = $this->getName() . '_' . $var;
420 $value = $this->getVar( $var );
421 if ( !isset( $attribs ) ) {
424 return $this->parent
->getPasswordBox( array(
427 'attribs' => $attribs,
428 'controlName' => $name,
435 * Get a labelled checkbox to configure a local boolean variable.
439 public function getCheckBox( $var, $label, $attribs = array(), $helpData = "" ) {
440 $name = $this->getName() . '_' . $var;
441 $value = $this->getVar( $var );
442 return $this->parent
->getCheckBox( array(
445 'attribs' => $attribs,
446 'controlName' => $name,
453 * Get a set of labelled radio buttons.
455 * @param $params Array:
457 * var: The variable to be configured (required)
458 * label: The message name for the label (required)
459 * itemLabelPrefix: The message name prefix for the item labels (required)
460 * values: List of allowed values (required)
461 * itemAttribs Array of attribute arrays, outer key is the value name (optional)
465 public function getRadioSet( $params ) {
466 $params['controlName'] = $this->getName() . '_' . $params['var'];
467 $params['value'] = $this->getVar( $params['var'] );
468 return $this->parent
->getRadioSet( $params );
472 * Convenience function to set variables based on form data.
473 * Assumes that variables containing "password" in the name are (potentially
475 * @param $varNames Array
478 public function setVarsFromRequest( $varNames ) {
479 return $this->parent
->setVarsFromRequest( $varNames, $this->getName() . '_' );
483 * Determine whether an existing installation of MediaWiki is present in
484 * the configured administrative connection. Returns true if there is
485 * such a wiki, false if the database doesn't exist.
487 * Traditionally, this is done by testing for the existence of either
488 * the revision table or the cur table.
492 public function needsUpgrade() {
493 $status = $this->getConnection();
494 if ( !$status->isOK() ) {
498 if ( !$this->db
->selectDB( $this->getVar( 'wgDBname' ) ) ) {
501 return $this->db
->tableExists( 'cur', __METHOD__
) ||
$this->db
->tableExists( 'revision', __METHOD__
);
505 * Get a standard install-user fieldset.
509 public function getInstallUserBox() {
511 Html
::openElement( 'fieldset' ) .
512 Html
::element( 'legend', array(), wfMsg( 'config-db-install-account' ) ) .
513 $this->getTextBox( '_InstallUser', 'config-db-username', array( 'dir' => 'ltr' ), $this->parent
->getHelpBox( 'config-db-install-username' ) ) .
514 $this->getPasswordBox( '_InstallPassword', 'config-db-password', array( 'dir' => 'ltr' ), $this->parent
->getHelpBox( 'config-db-install-password' ) ) .
515 Html
::closeElement( 'fieldset' );
519 * Submit a standard install user fieldset.
522 public function submitInstallUserBox() {
523 $this->setVarsFromRequest( array( '_InstallUser', '_InstallPassword' ) );
524 return Status
::newGood();
528 * Get a standard web-user fieldset
529 * @param $noCreateMsg String: Message to display instead of the creation checkbox.
530 * Set this to false to show a creation checkbox.
534 public function getWebUserBox( $noCreateMsg = false ) {
535 $wrapperStyle = $this->getVar( '_SameAccount' ) ?
'display: none' : '';
536 $s = Html
::openElement( 'fieldset' ) .
537 Html
::element( 'legend', array(), wfMsg( 'config-db-web-account' ) ) .
539 '_SameAccount', 'config-db-web-account-same',
540 array( 'class' => 'hideShowRadio', 'rel' => 'dbOtherAccount' )
542 Html
::openElement( 'div', array( 'id' => 'dbOtherAccount', 'style' => $wrapperStyle ) ) .
543 $this->getTextBox( 'wgDBuser', 'config-db-username' ) .
544 $this->getPasswordBox( 'wgDBpassword', 'config-db-password' ) .
545 $this->parent
->getHelpBox( 'config-db-web-help' );
546 if ( $noCreateMsg ) {
547 $s .= $this->parent
->getWarningBox( wfMsgNoTrans( $noCreateMsg ) );
549 $s .= $this->getCheckBox( '_CreateDBAccount', 'config-db-web-create' );
551 $s .= Html
::closeElement( 'div' ) . Html
::closeElement( 'fieldset' );
556 * Submit the form from getWebUserBox().
560 public function submitWebUserBox() {
561 $this->setVarsFromRequest(
562 array( 'wgDBuser', 'wgDBpassword', '_SameAccount', '_CreateDBAccount' )
565 if ( $this->getVar( '_SameAccount' ) ) {
566 $this->setVar( 'wgDBuser', $this->getVar( '_InstallUser' ) );
567 $this->setVar( 'wgDBpassword', $this->getVar( '_InstallPassword' ) );
570 if( $this->getVar( '_CreateDBAccount' ) && strval( $this->getVar( 'wgDBpassword' ) ) == '' ) {
571 return Status
::newFatal( 'config-db-password-empty', $this->getVar( 'wgDBuser' ) );
574 return Status
::newGood();
578 * Common function for databases that don't understand the MySQLish syntax of interwiki.sql.
582 public function populateInterwikiTable() {
583 $status = $this->getConnection();
584 if ( !$status->isOK() ) {
587 $this->db
->selectDB( $this->getVar( 'wgDBname' ) );
589 if( $this->db
->selectRow( 'interwiki', '*', array(), __METHOD__
) ) {
590 $status->warning( 'config-install-interwiki-exists' );
594 wfSuppressWarnings();
595 $rows = file( "$IP/maintenance/interwiki.list",
596 FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES
);
598 $interwikis = array();
600 return Status
::newFatal( 'config-install-interwiki-list' );
602 foreach( $rows as $row ) {
603 $row = preg_replace( '/^\s*([^#]*?)\s*(#.*)?$/', '\\1', $row ); // strip comments - whee
604 if ( $row == "" ) continue;
606 $interwikis[] = array_combine(
607 array( 'iw_prefix', 'iw_url', 'iw_local', 'iw_api', 'iw_wikiid' ),
611 $this->db
->insert( 'interwiki', $interwikis, __METHOD__
);
612 return Status
::newGood();
615 public function outputHandler( $string ) {
616 return htmlspecialchars( $string );