MediaWiki
1.34.0
|
Base class for DBMS-specific installation helper classes. More...
Public Member Functions | |
__construct ( $parent) | |
Construct and initialise parent. More... | |
checkPrerequisites () | |
Checks for installation prerequisites other than those checked by isCompiled() More... | |
createExtensionTables () | |
Create the tables for each extension the user enabled. More... | |
createTables () | |
Create database tables from scratch. More... | |
doUpgrade () | |
Perform database upgrades. More... | |
enableLB () | |
Set up LBFactory so that wfGetDB() etc. More... | |
getCheckBox ( $var, $label, $attribs=[], $helpData="") | |
Get a labelled checkbox to configure a local boolean variable. More... | |
getConnectForm () | |
Get HTML for a web form that configures this database. More... | |
getConnection () | |
Connect to the database using the administrative user/password currently defined in the session. More... | |
getGlobalDefaults () | |
Get a name=>value map of MW configuration globals for the default values. More... | |
getGlobalNames () | |
Get an array of MW configuration globals that will be configured by this class. More... | |
getInstallUserBox () | |
Get a standard install-user fieldset. More... | |
getInternalDefaults () | |
Get a name=>value map of internal variables used during installation. More... | |
getLocalSettings () | |
Get the DBMS-specific options for LocalSettings.php generation. More... | |
getName () | |
Return the internal name, e.g. More... | |
getPasswordBox ( $var, $label, $attribs=[], $helpData="") | |
Get a labelled password box to configure a local variable. More... | |
getRadioSet ( $params) | |
Get a set of labelled radio buttons. More... | |
getReadableName () | |
Get the internationalised name for this DBMS. More... | |
getSchemaPath ( $db) | |
Return a path to the DBMS-specific schema file, otherwise default to tables.sql. More... | |
getSchemaVars () | |
Override this to provide DBMS-specific schema variables, to be substituted into tables.sql and other schema files. More... | |
getSettingsForm () | |
Get HTML for a web form that retrieves settings used for installation. More... | |
getTextBox ( $var, $label, $attribs=[], $helpData="") | |
Get a labelled text box to configure a local variable. More... | |
getUpdateKeysPath ( $db) | |
Return a path to the DBMS-specific update key file, otherwise default to update-keys.sql. More... | |
getVar ( $var, $default=null) | |
Get a variable, taking local defaults into account. More... | |
getWebUserBox ( $noCreateMsg=false) | |
Get a standard web-user fieldset. More... | |
insertUpdateKeys () | |
Insert update keys into table to prevent running unneded updates. More... | |
isCompiled () | |
needsUpgrade () | |
Determine whether an existing installation of MediaWiki is present in the configured administrative connection. More... | |
openConnection () | |
Open a connection to the database using the administrative user/password currently defined in the session, without any caching. More... | |
outputHandler ( $string) | |
populateInterwikiTable () | |
Common function for databases that don't understand the MySQLish syntax of interwiki.sql. More... | |
preInstall () | |
Allow DB installers a chance to make last-minute changes before installation occurs. More... | |
preUpgrade () | |
Allow DB installers a chance to make checks before upgrade. More... | |
setupDatabase () | |
Create the database and return a Status object indicating success or failure. More... | |
setupSchemaVars () | |
Set appropriate schema variables in the current database connection. More... | |
setVar ( $name, $value) | |
Convenience alias for $this->parent->setVar() More... | |
setVarsFromRequest ( $varNames) | |
Convenience function to set variables based on form data. More... | |
submitConnectForm () | |
Set variables based on the request array, assuming it was submitted via the form returned by getConnectForm(). More... | |
submitInstallUserBox () | |
Submit a standard install user fieldset. More... | |
submitSettingsForm () | |
Set variables based on the request array, assuming it was submitted via the form return by getSettingsForm(). More... | |
submitWebUserBox () | |
Submit the form from getWebUserBox(). More... | |
Static Public Member Functions | |
static | meetsMinimumRequirement ( $serverVersion) |
Whether the provided version meets the necessary requirements for this type. More... | |
Public Attributes | |
Database | $db = null |
The database connection. More... | |
WebInstaller | $parent |
The Installer object. More... | |
Static Public Attributes | |
static string | $minimumVersion |
Set by subclasses. More... | |
Static Protected Member Functions | |
static | checkExtension ( $name) |
Convenience function. More... | |
Protected Attributes | |
array | $globalNames = [] |
Array of MW configuration globals this class uses. More... | |
array | $internalDefaults = [] |
Internal variables for installation. More... | |
Static Protected Attributes | |
static string | $notMinimumVersionMessage |
Set by subclasses. More... | |
Private Member Functions | |
getSqlFilePath ( $db, $filename) | |
Return a path to the DBMS-specific SQL file if it exists, otherwise default SQL file. More... | |
stepApplySourceFile ( $sourceFileMethod, $stepName, $archiveTableMustNotExist=false) | |
Apply a SQL source file to the database as part of running an installation step. More... | |
Base class for DBMS-specific installation helper classes.
Definition at line 37 of file DatabaseInstaller.php.
DatabaseInstaller::__construct | ( | $parent | ) |
Construct and initialise parent.
This is typically only called from Installer::getDBInstaller()
WebInstaller | $parent |
Definition at line 432 of file DatabaseInstaller.php.
References $parent.
|
staticprotected |
Convenience function.
Check if a named extension is present.
string | $name |
Definition at line 443 of file DatabaseInstaller.php.
Referenced by SqliteInstaller\isCompiled(), PostgresInstaller\isCompiled(), and MysqlInstaller\isCompiled().
DatabaseInstaller::checkPrerequisites | ( | ) |
Checks for installation prerequisites other than those checked by isCompiled()
Reimplemented in SqliteInstaller.
Definition at line 109 of file DatabaseInstaller.php.
References StatusValue\newGood().
DatabaseInstaller::createExtensionTables | ( | ) |
Create the tables for each extension the user enabled.
Definition at line 308 of file DatabaseInstaller.php.
References $status, getConnection(), and DatabaseUpdater\newForDB().
DatabaseInstaller::createTables | ( | ) |
Create database tables from scratch.
Reimplemented in PostgresInstaller, and SqliteInstaller.
Definition at line 250 of file DatabaseInstaller.php.
References stepApplySourceFile().
DatabaseInstaller::doUpgrade | ( | ) |
Perform database upgrades.
SecurityCheck-XSS Escaping provided by $this->outputHandler
Definition at line 381 of file DatabaseInstaller.php.
References enableLB(), MWException\getText(), DatabaseUpdater\newForDB(), and setupSchemaVars().
DatabaseInstaller::enableLB | ( | ) |
Set up LBFactory so that wfGetDB() etc.
works. We set up a special LBFactory instance which returns the current installer connection.
Definition at line 360 of file DatabaseInstaller.php.
References $status, and getConnection().
Referenced by PostgresInstaller\createTables(), doUpgrade(), and stepApplySourceFile().
DatabaseInstaller::getCheckBox | ( | $var, | |
$label, | |||
$attribs = [] , |
|||
$helpData = "" |
|||
) |
Get a labelled checkbox to configure a local boolean variable.
string | $var | |
string | $label | |
array | $attribs | Optional. |
string | $helpData | Optional. |
Definition at line 567 of file DatabaseInstaller.php.
References getName(), and getVar().
Referenced by getWebUserBox().
|
abstract |
Get HTML for a web form that configures this database.
Configuration at this time should be the minimum needed to connect and test whether install or upgrade is required.
If this is called, $this->parent can be assumed to be a WebInstaller.
Reimplemented in SqliteInstaller, MysqlInstaller, and PostgresInstaller.
DatabaseInstaller::getConnection | ( | ) |
Connect to the database using the administrative user/password currently defined in the session.
Returns a status object. On success, the status object will contain a Database object in its value member.
This will return a cached connection if one is available.
Reimplemented in PostgresInstaller.
Definition at line 182 of file DatabaseInstaller.php.
References $status, DBO_TRX, StatusValue\newGood(), and openConnection().
Referenced by MysqlInstaller\canCreateAccounts(), createExtensionTables(), enableLB(), MysqlInstaller\getEngines(), needsUpgrade(), populateInterwikiTable(), Installer\populateSiteStats(), MysqlInstaller\preUpgrade(), SqliteInstaller\setupDatabase(), MysqlInstaller\setupDatabase(), setupSchemaVars(), MysqlInstaller\setupUser(), stepApplySourceFile(), and MysqlInstaller\submitConnectForm().
DatabaseInstaller::getGlobalDefaults | ( | ) |
Get a name=>value map of MW configuration globals for the default values.
Reimplemented in PostgresInstaller, and SqliteInstaller.
Definition at line 460 of file DatabaseInstaller.php.
References $GLOBALS, and getGlobalNames().
Referenced by getVar().
DatabaseInstaller::getGlobalNames | ( | ) |
Get an array of MW configuration globals that will be configured by this class.
Definition at line 423 of file DatabaseInstaller.php.
References $globalNames.
Referenced by getGlobalDefaults().
DatabaseInstaller::getInstallUserBox | ( | ) |
Get a standard install-user fieldset.
Definition at line 645 of file DatabaseInstaller.php.
References getPasswordBox(), getTextBox(), and wfMessage().
Referenced by PostgresInstaller\getConnectForm(), and MysqlInstaller\getConnectForm().
DatabaseInstaller::getInternalDefaults | ( | ) |
Get a name=>value map of internal variables used during installation.
Definition at line 474 of file DatabaseInstaller.php.
References $internalDefaults.
Referenced by getVar().
|
abstract |
Get the DBMS-specific options for LocalSettings.php generation.
Reimplemented in MysqlInstaller, PostgresInstaller, and SqliteInstaller.
|
abstract |
Return the internal name, e.g.
'mysql', or 'sqlite'.
Reimplemented in MysqlInstaller, PostgresInstaller, and SqliteInstaller.
Referenced by getCheckBox(), getPasswordBox(), getRadioSet(), getReadableName(), getTextBox(), and setVarsFromRequest().
DatabaseInstaller::getPasswordBox | ( | $var, | |
$label, | |||
$attribs = [] , |
|||
$helpData = "" |
|||
) |
Get a labelled password box to configure a local variable.
Implements password hiding.
string | $var | |
string | $label | |
array | $attribs | |
string | $helpData |
Definition at line 541 of file DatabaseInstaller.php.
References getName(), and getVar().
Referenced by getInstallUserBox(), and getWebUserBox().
DatabaseInstaller::getRadioSet | ( | $params | ) |
Get a set of labelled radio buttons.
array | $params | Parameters are: var: The variable to be configured (required) label: The message name for the label (required) itemLabelPrefix: The message name prefix for the item labels (required) values: List of allowed values (required) itemAttribs Array of attribute arrays, outer key is the value name (optional) |
Definition at line 593 of file DatabaseInstaller.php.
DatabaseInstaller::getReadableName | ( | ) |
Get the internationalised name for this DBMS.
Definition at line 451 of file DatabaseInstaller.php.
References getName(), and wfMessage().
DatabaseInstaller::getSchemaPath | ( | $db | ) |
Return a path to the DBMS-specific schema file, otherwise default to tables.sql.
IDatabase | $db |
Definition at line 289 of file DatabaseInstaller.php.
References getSqlFilePath().
Referenced by PostgresInstaller\createTables().
DatabaseInstaller::getSchemaVars | ( | ) |
Override this to provide DBMS-specific schema variables, to be substituted into tables.sql and other schema files.
Reimplemented in MysqlInstaller.
Definition at line 332 of file DatabaseInstaller.php.
Referenced by setupSchemaVars().
DatabaseInstaller::getSettingsForm | ( | ) |
Get HTML for a web form that retrieves settings used for installation.
$this->parent can be assumed to be a WebInstaller. If the DB type has no settings beyond those already configured with getConnectForm(), this should return false.
Reimplemented in MysqlInstaller, and PostgresInstaller.
Definition at line 140 of file DatabaseInstaller.php.
|
private |
Return a path to the DBMS-specific SQL file if it exists, otherwise default SQL file.
IDatabase | $db | |
string | $filename |
Definition at line 271 of file DatabaseInstaller.php.
References $db, $IP, and Wikimedia\Rdbms\IDatabase\getType().
Referenced by getSchemaPath(), and getUpdateKeysPath().
DatabaseInstaller::getTextBox | ( | $var, | |
$label, | |||
$attribs = [] , |
|||
$helpData = "" |
|||
) |
Get a labelled text box to configure a local variable.
string | $var | |
string | $label | |
array | $attribs | |
string | $helpData |
Definition at line 514 of file DatabaseInstaller.php.
References getName(), and getVar().
Referenced by PostgresInstaller\getConnectForm(), MysqlInstaller\getConnectForm(), SqliteInstaller\getConnectForm(), getInstallUserBox(), and getWebUserBox().
DatabaseInstaller::getUpdateKeysPath | ( | $db | ) |
Return a path to the DBMS-specific update key file, otherwise default to update-keys.sql.
IDatabase | $db |
Definition at line 300 of file DatabaseInstaller.php.
References getSqlFilePath().
DatabaseInstaller::getVar | ( | $var, | |
$default = null |
|||
) |
Get a variable, taking local defaults into account.
string | $var | |
mixed | null | $default |
Definition at line 484 of file DatabaseInstaller.php.
References getGlobalDefaults(), and getInternalDefaults().
Referenced by MysqlInstaller\canCreateAccounts(), PostgresInstaller\canCreateObjectsForWebUser(), PostgresInstaller\createTables(), getCheckBox(), PostgresInstaller\getInstallUserPermissions(), SqliteInstaller\getLocalSettings(), PostgresInstaller\getLocalSettings(), MysqlInstaller\getLocalSettings(), getPasswordBox(), getRadioSet(), MysqlInstaller\getSchemaVars(), MysqlInstaller\getSettingsForm(), MysqlInstaller\getTableOptions(), getTextBox(), getWebUserBox(), SqliteInstaller\needsUpgrade(), needsUpgrade(), MysqlInstaller\openConnection(), SqliteInstaller\openConnection(), PostgresInstaller\openConnectionToAnyDB(), PostgresInstaller\openConnectionWithParams(), PostgresInstaller\openPgConnection(), populateInterwikiTable(), PostgresInstaller\preInstall(), MysqlInstaller\preUpgrade(), PostgresInstaller\preUpgrade(), SqliteInstaller\setupDatabase(), MysqlInstaller\setupDatabase(), PostgresInstaller\setupDatabase(), PostgresInstaller\setupPLpgSQL(), PostgresInstaller\setupSchema(), MysqlInstaller\setupUser(), PostgresInstaller\setupUser(), stepApplySourceFile(), PostgresInstaller\submitConnectForm(), SqliteInstaller\submitConnectForm(), PostgresInstaller\submitSettingsForm(), MysqlInstaller\submitSettingsForm(), and submitWebUserBox().
DatabaseInstaller::getWebUserBox | ( | $noCreateMsg = false | ) |
Get a standard web-user fieldset.
string | bool | $noCreateMsg | Message to display instead of the creation checkbox. Set this to false to show a creation checkbox (default). |
Definition at line 680 of file DatabaseInstaller.php.
References $s, getCheckBox(), getPasswordBox(), getTextBox(), getVar(), and wfMessage().
Referenced by PostgresInstaller\getSettingsForm(), and MysqlInstaller\getSettingsForm().
DatabaseInstaller::insertUpdateKeys | ( | ) |
Insert update keys into table to prevent running unneded updates.
Definition at line 259 of file DatabaseInstaller.php.
References stepApplySourceFile().
|
abstract |
Reimplemented in MysqlInstaller, PostgresInstaller, and SqliteInstaller.
|
static |
Whether the provided version meets the necessary requirements for this type.
string | $serverVersion | Output of Database::getServerVersion() |
Definition at line 84 of file DatabaseInstaller.php.
References StatusValue\newFatal(), and StatusValue\newGood().
DatabaseInstaller::needsUpgrade | ( | ) |
Determine whether an existing installation of MediaWiki is present in the configured administrative connection.
Returns true if there is such a wiki, false if the database doesn't exist.
Traditionally, this is done by testing for the existence of either the revision table or the cur table.
Reimplemented in SqliteInstaller.
Definition at line 621 of file DatabaseInstaller.php.
References $status, getConnection(), and getVar().
|
abstract |
Open a connection to the database using the administrative user/password currently defined in the session, without any caching.
Returns a status object. On success, the status object will contain a Database object in its value member.
Reimplemented in SqliteInstaller, PostgresInstaller, and MysqlInstaller.
Referenced by getConnection().
DatabaseInstaller::outputHandler | ( | $string | ) |
Definition at line 766 of file DatabaseInstaller.php.
DatabaseInstaller::populateInterwikiTable | ( | ) |
Common function for databases that don't understand the MySQLish syntax of interwiki.sql.
Definition at line 729 of file DatabaseInstaller.php.
References $IP, $status, getConnection(), getVar(), StatusValue\newFatal(), and StatusValue\newGood().
DatabaseInstaller::preInstall | ( | ) |
Allow DB installers a chance to make last-minute changes before installation occurs.
This happens before setupDatabase() or createTables() is called, but long after the constructor. Helpful for things like modifying setup steps :)
Reimplemented in PostgresInstaller, and MysqlInstaller.
Definition at line 410 of file DatabaseInstaller.php.
DatabaseInstaller::preUpgrade | ( | ) |
Allow DB installers a chance to make checks before upgrade.
Reimplemented in PostgresInstaller, and MysqlInstaller.
Definition at line 416 of file DatabaseInstaller.php.
|
abstract |
Create the database and return a Status object indicating success or failure.
Reimplemented in PostgresInstaller, MysqlInstaller, and SqliteInstaller.
DatabaseInstaller::setupSchemaVars | ( | ) |
Set appropriate schema variables in the current database connection.
This should be called after any request data has been imported, but before any write operations to the database.
Definition at line 342 of file DatabaseInstaller.php.
References $status, getConnection(), and getSchemaVars().
Referenced by doUpgrade(), SqliteInstaller\setupDatabase(), MysqlInstaller\setupDatabase(), and MysqlInstaller\setupUser().
DatabaseInstaller::setVar | ( | $name, | |
$value | |||
) |
Convenience alias for $this->parent->setVar()
string | $name | |
mixed | $value |
Definition at line 501 of file DatabaseInstaller.php.
Referenced by MysqlInstaller\getSettingsForm(), MysqlInstaller\preUpgrade(), SqliteInstaller\setupDatabase(), PostgresInstaller\submitConnectForm(), SqliteInstaller\submitConnectForm(), PostgresInstaller\submitSettingsForm(), MysqlInstaller\submitSettingsForm(), and submitWebUserBox().
DatabaseInstaller::setVarsFromRequest | ( | $varNames | ) |
Convenience function to set variables based on form data.
Assumes that variables containing "password" in the name are (potentially fake) passwords.
array | $varNames |
Definition at line 607 of file DatabaseInstaller.php.
References getName().
Referenced by PostgresInstaller\submitConnectForm(), MysqlInstaller\submitConnectForm(), SqliteInstaller\submitConnectForm(), submitInstallUserBox(), MysqlInstaller\submitSettingsForm(), and submitWebUserBox().
|
private |
Apply a SQL source file to the database as part of running an installation step.
string | $sourceFileMethod | |
string | $stepName | |
bool | $archiveTableMustNotExist |
Definition at line 206 of file DatabaseInstaller.php.
References $status, DBO_DDLMODE, enableLB(), getConnection(), and getVar().
Referenced by createTables(), and insertUpdateKeys().
|
abstract |
Set variables based on the request array, assuming it was submitted via the form returned by getConnectForm().
Validate the connection settings by attempting to connect with them.
If this is called, $this->parent can be assumed to be a WebInstaller.
Reimplemented in SqliteInstaller, MysqlInstaller, and PostgresInstaller.
DatabaseInstaller::submitInstallUserBox | ( | ) |
Submit a standard install user fieldset.
Definition at line 667 of file DatabaseInstaller.php.
References StatusValue\newGood(), and setVarsFromRequest().
Referenced by PostgresInstaller\submitConnectForm(), and MysqlInstaller\submitConnectForm().
DatabaseInstaller::submitSettingsForm | ( | ) |
Set variables based on the request array, assuming it was submitted via the form return by getSettingsForm().
Reimplemented in MysqlInstaller, and PostgresInstaller.
Definition at line 150 of file DatabaseInstaller.php.
References StatusValue\newGood().
DatabaseInstaller::submitWebUserBox | ( | ) |
Submit the form from getWebUserBox().
Definition at line 707 of file DatabaseInstaller.php.
References getVar(), StatusValue\newFatal(), StatusValue\newGood(), setVar(), and setVarsFromRequest().
Referenced by PostgresInstaller\submitSettingsForm(), and MysqlInstaller\submitSettingsForm().
Database DatabaseInstaller::$db = null |
The database connection.
Definition at line 61 of file DatabaseInstaller.php.
Referenced by getSqlFilePath(), MysqlInstaller\openConnection(), PostgresInstaller\openConnectionToAnyDB(), and PostgresInstaller\openConnectionWithParams().
|
protected |
Array of MW configuration globals this class uses.
Definition at line 75 of file DatabaseInstaller.php.
Referenced by getGlobalNames().
|
protected |
Internal variables for installation.
Definition at line 68 of file DatabaseInstaller.php.
Referenced by getInternalDefaults().
|
static |
Set by subclasses.
Definition at line 49 of file DatabaseInstaller.php.
|
staticprotected |
Set by subclasses.
Definition at line 54 of file DatabaseInstaller.php.
WebInstaller DatabaseInstaller::$parent |
The Installer object.
Definition at line 44 of file DatabaseInstaller.php.
Referenced by __construct().