MediaWiki
1.30.0
|
Class for setting up the MediaWiki database using Microsoft SQL Server. More...
Public Member Functions | |
canCreateAccounts () | |
Return true if the install user can create accounts. More... | |
createTables () | |
Create database tables from scratch. More... | |
getConnectForm () | |
getGlobalDefaults () | |
Get a name=>value map of MW configuration globals for the default values. More... | |
getLocalSettings () | |
Get the DBMS-specific options for LocalSettings.php generation. More... | |
getName () | |
getSchemaVars () | |
Get variables to substitute into tables.sql and the SQL patch files. More... | |
getSettingsForm () | |
isCompiled () | |
openConnection () | |
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 () | |
setupUser () | |
submitConnectForm () | |
Set variables based on the request array, assuming it was submitted via the form returned by getConnectForm(). More... | |
submitSettingsForm () | |
Public Member Functions inherited from DatabaseInstaller | |
__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... | |
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... | |
getConnection () | |
Connect to the database using the administrative user/password currently defined in the session. 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... | |
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... | |
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... | |
needsUpgrade () | |
Determine whether an existing installation of MediaWiki is present in the configured administrative connection. More... | |
outputHandler ( $string) | |
populateInterwikiTable () | |
Common function for databases that don't understand the MySQLish syntax of interwiki.sql. 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... | |
submitInstallUserBox () | |
Submit a standard install user fieldset. More... | |
submitWebUserBox () | |
Submit the form from getWebUserBox(). More... | |
Public Attributes | |
$webUserPrivs | |
Public Attributes inherited from DatabaseInstaller | |
Database | $db = null |
The database connection. More... | |
WebInstaller | $parent |
The Installer object. More... | |
Static Public Attributes | |
static | $minimumVersion = '9.00.1399' |
Static Public Attributes inherited from DatabaseInstaller | |
static string | $minimumVersion |
Set by subclasses. More... | |
Protected Attributes | |
$globalNames | |
$internalDefaults | |
Protected Attributes inherited from DatabaseInstaller | |
array | $globalNames = [] |
Array of MW configuration globals this class uses. More... | |
array | $internalDefaults = [] |
Internal variables for installation. More... | |
Static Protected Attributes | |
static | $notMiniumumVerisonMessage = 'config-mssql-old' |
Static Protected Attributes inherited from DatabaseInstaller | |
static string | $notMiniumumVerisonMessage |
Set by subclasses. More... | |
Private Member Functions | |
catalogExists ( $catalogName) | |
Try to see if a given fulltext catalog exists We assume we already have the appropriate database selected. More... | |
databaseExists ( $dbName) | |
Try to see if a given database exists. More... | |
loginExists ( $user) | |
Try to see if the login exists. More... | |
schemaExists ( $schemaName) | |
Try to see if a given schema exists We assume we already have the appropriate database selected. More... | |
userExists ( $user) | |
Try to see if the user account exists We assume we already have the appropriate database selected. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from DatabaseInstaller | |
static | meetsMinimumRequirement ( $serverVersion) |
Whether the provided version meets the necessary requirements for this type. More... | |
Static Protected Member Functions inherited from DatabaseInstaller | |
static | checkExtension ( $name) |
Convenience function. More... | |
Class for setting up the MediaWiki database using Microsoft SQL Server.
Definition at line 34 of file MssqlInstaller.php.
MssqlInstaller::canCreateAccounts | ( | ) |
Return true if the install user can create accounts.
Definition at line 260 of file MssqlInstaller.php.
References $res, as, captcha-old\count, databaseExists(), DatabaseInstaller\getConnection(), DatabaseInstaller\getVar(), and schemaExists().
Referenced by getSettingsForm(), and submitSettingsForm().
|
private |
Try to see if a given fulltext catalog exists We assume we already have the appropriate database selected.
string | $catalogName | Catalog name to check |
Definition at line 708 of file MssqlInstaller.php.
References $res.
Referenced by setupDatabase().
MssqlInstaller::createTables | ( | ) |
Create database tables from scratch.
Reimplemented from DatabaseInstaller.
Definition at line 634 of file MssqlInstaller.php.
References DatabaseInstaller\getVar().
|
private |
Try to see if a given database exists.
string | $dbName | Database name to check |
Definition at line 686 of file MssqlInstaller.php.
References $res.
Referenced by canCreateAccounts(), and setupDatabase().
MssqlInstaller::getConnectForm | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 85 of file MssqlInstaller.php.
References Html\closeElement(), Html\element(), DatabaseInstaller\getPasswordBox(), DatabaseInstaller\getRadioSet(), DatabaseInstaller\getTextBox(), DatabaseInstaller\getVar(), Html\openElement(), text, and wfMessage().
MssqlInstaller::getGlobalDefaults | ( | ) |
Get a name=>value map of MW configuration globals for the default values.
Reimplemented from DatabaseInstaller.
Definition at line 652 of file MssqlInstaller.php.
MssqlInstaller::getLocalSettings | ( | ) |
Get the DBMS-specific options for LocalSettings.php generation.
Reimplemented from DatabaseInstaller.
Definition at line 727 of file MssqlInstaller.php.
References LocalSettingsGenerator\escapePhpString(), and DatabaseInstaller\getVar().
MssqlInstaller::getName | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 71 of file MssqlInstaller.php.
MssqlInstaller::getSchemaVars | ( | ) |
Get variables to substitute into tables.sql and the SQL patch files.
Reimplemented from DatabaseInstaller.
Definition at line 718 of file MssqlInstaller.php.
References DatabaseInstaller\getVar().
MssqlInstaller::getSettingsForm | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 357 of file MssqlInstaller.php.
References $s, canCreateAccounts(), Html\closeElement(), Html\element(), DatabaseInstaller\getCheckBox(), DatabaseInstaller\getPasswordBox(), DatabaseInstaller\getRadioSet(), DatabaseInstaller\getTextBox(), DatabaseInstaller\getVar(), Html\openElement(), plain, text, and wfMessage().
MssqlInstaller::isCompiled | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 78 of file MssqlInstaller.php.
References DatabaseInstaller\checkExtension().
|
private |
Try to see if the login exists.
string | $user | Username to check |
Definition at line 665 of file MssqlInstaller.php.
Referenced by setupUser().
MssqlInstaller::openConnection | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 201 of file MssqlInstaller.php.
References DatabaseInstaller\$db, $e, $user, $wgDBWindowsAuthentication, DatabaseInstaller\getVar(), global, and StatusValue\newGood().
MssqlInstaller::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 from DatabaseInstaller.
Definition at line 478 of file MssqlInstaller.php.
MssqlInstaller::preUpgrade | ( | ) |
Allow DB installers a chance to make checks before upgrade.
Reimplemented from DatabaseInstaller.
Definition at line 234 of file MssqlInstaller.php.
References $wgDBpassword, $wgDBuser, DatabaseInstaller\getConnection(), DatabaseInstaller\getVar(), and global.
|
private |
Try to see if a given schema exists We assume we already have the appropriate database selected.
string | $schemaName | Schema name to check |
Definition at line 697 of file MssqlInstaller.php.
References $res.
Referenced by canCreateAccounts(), and setupDatabase().
MssqlInstaller::setupDatabase | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 490 of file MssqlInstaller.php.
References catalogExists(), databaseExists(), DatabaseInstaller\getConnection(), DatabaseInstaller\getVar(), schemaExists(), and DatabaseInstaller\setupSchemaVars().
MssqlInstaller::setupUser | ( | ) |
Definition at line 526 of file MssqlInstaller.php.
References $name, as, DatabaseInstaller\getConnection(), DatabaseInstaller\getVar(), loginExists(), StatusValue\newGood(), DatabaseInstaller\setupSchemaVars(), and userExists().
MssqlInstaller::submitConnectForm | ( | ) |
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 from DatabaseInstaller.
Definition at line 143 of file MssqlInstaller.php.
References DatabaseInstaller\getConnection(), StatusValue\newGood(), DatabaseInstaller\setVar(), and DatabaseInstaller\setVarsFromRequest().
MssqlInstaller::submitSettingsForm | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 411 of file MssqlInstaller.php.
References $e, $user, canCreateAccounts(), DatabaseInstaller\getVar(), StatusValue\newFatal(), StatusValue\newGood(), DatabaseInstaller\setVar(), and DatabaseInstaller\setVarsFromRequest().
|
private |
Try to see if the user account exists We assume we already have the appropriate database selected.
string | $user | Username to check |
Definition at line 676 of file MssqlInstaller.php.
Referenced by setupUser().
|
protected |
Definition at line 36 of file MssqlInstaller.php.
|
protected |
Definition at line 46 of file MssqlInstaller.php.
|
static |
Definition at line 54 of file MssqlInstaller.php.
|
staticprotected |
Definition at line 55 of file MssqlInstaller.php.
MssqlInstaller::$webUserPrivs |
Definition at line 60 of file MssqlInstaller.php.