|
MediaWiki master
|
Class for setting up the MediaWiki database using MySQL. More...
Inherits MediaWiki\Installer\DatabaseInstaller.

Public Member Functions | |||||||
| canCreateAccounts () | |||||||
| Return true if the install user can create accounts. | |||||||
| getCharsets () | |||||||
| Get a list of character sets that are available and supported. | |||||||
| getConnectForm (WebInstaller $webInstaller) | |||||||
| getEngines () | |||||||
| Get a list of storage engines that are available and supported. | |||||||
| getLocalSettings () | |||||||
Get the DBMS-specific options for LocalSettings.php generation.
| |||||||
| getName () | |||||||
| getSchemaVars () | |||||||
| Get variables to substitute into the SQL schema and patch files. | |||||||
| getSettingsForm (WebInstaller $webInstaller) | |||||||
| isCompiled () | |||||||
| preUpgrade () | |||||||
| Allow DB installers a chance to make checks before upgrade. | |||||||
Public Member Functions inherited from MediaWiki\Installer\DatabaseInstaller | |||||||
| __construct ( $parent) | |||||||
| Construct and initialise parent. | |||||||
| checkPrerequisites () | |||||||
| Checks for installation prerequisites other than those checked by isCompiled() | |||||||
| definitelyGetConnection (string $type) | |||||||
| Get a connection and unwrap it from its Status object, throwing an exception on failure. | |||||||
| getConfigVar (string $name) | |||||||
Get a MediaWiki configuration value for the wiki being created.The name should not have a "wg" prefix.
| |||||||
| getConnection ( $type=self::CONN_DONT_KNOW) | |||||||
| Connect to the database using the administrative user/password currently defined in the session. | |||||||
| getDbType () | |||||||
| Get the selected database type name. | |||||||
| getGlobalDefaults () | |||||||
| Get a name=>value map of MW configuration globals for the default values. | |||||||
| getGlobalNames () | |||||||
| Get an array of MW configuration globals that will be configured by this class. | |||||||
| getInternalDefaults () | |||||||
| Get a name=>value map of internal variables used during installation. | |||||||
| getOption (string $name) | |||||||
Get a named installer option.
| |||||||
| getProvision (string $name) | |||||||
Get the object stored by provide()
| |||||||
| getReadableName () | |||||||
| Get the internationalised name for this DBMS. | |||||||
| getVar ( $var, $default=null) | |||||||
| Get a variable, taking local defaults into account. | |||||||
| needsUpgrade () | |||||||
| Determine whether an existing installation of MediaWiki is present in the configured administrative connection. | |||||||
| provide (string $name, $value) | |||||||
Store an object to be used by a later task.
| |||||||
| setVar ( $name, $value) | |||||||
| Convenience alias for $this->parent->setVar() | |||||||
Static Public Member Functions | ||||
| static | meetsMinimumRequirement (IDatabase $conn) | |||
Whether the provided version meets the necessary requirements for this type.
| ||||
Public Attributes | |
| string[] | $supportedEngines = [ 'InnoDB' ] |
| string[] | $webUserPrivs |
Public Attributes inherited from MediaWiki\Installer\DatabaseInstaller | |
| IMaintainableDatabase | $db = null |
| Installer | $parent |
| The Installer object. | |
Public Attributes inherited from MediaWiki\Installer\Task\ITaskContext | |
| const | CONN_CREATE_DATABASE = 'create-database' |
| A connection for creating DBs, suitable for pre-installation. | |
| const | CONN_CREATE_SCHEMA = 'create-schema' |
| A connection to the new DB, for creating schemas and other similar objects in the new DB. | |
| const | CONN_CREATE_TABLES = 'create-tables' |
| A connection with a role suitable for creating tables. | |
| const | CONN_DONT_KNOW = 'dont-know' |
| Legacy default connection type. | |
Static Public Attributes | |
| static | $minimumVersion |
Static Public Attributes inherited from MediaWiki\Installer\DatabaseInstaller | |
| static string | $minimumVersion |
| Set by subclasses. | |
Protected Member Functions | |
| escapeLikeInternal ( $s, $escapeChar='`') | |
| getTableOptions () | |
| Return any table options to be applied to all tables that don't override them. | |
| likeToRegex ( $wildcard) | |
| Convert a wildcard (as used in LIKE) to a regex Slashes are escaped, slash terminators included. | |
| openConnection (string $type) | |
Protected Member Functions inherited from MediaWiki\Installer\DatabaseInstaller | |
| changeConnType (IMaintainableDatabase $conn, &$storedType, $newType) | |
| Change the type of a connection. | |
| changeConnTypeFromSchemaToTables (IMaintainableDatabase $conn) | |
| Change the type of a connection from CONN_CREATE_SCHEMA to CONN_CREATE_TABLES. | |
Protected Attributes | |
| $globalNames | |
| $internalDefaults | |
Protected Attributes inherited from MediaWiki\Installer\DatabaseInstaller | |
| array | $globalNames = [] |
| Array of MW configuration globals this class uses. | |
| array | $internalDefaults = [] |
| Internal variables for installation. | |
Static Protected Attributes | |
| static | $notMinimumVersionMessage |
Static Protected Attributes inherited from MediaWiki\Installer\DatabaseInstaller | |
| static string | $notMinimumVersionMessage |
| Set by subclasses. | |
Additional Inherited Members | |
Static Protected Member Functions inherited from MediaWiki\Installer\DatabaseInstaller | |
| static | checkExtension ( $name) |
| Convenience function. | |
Class for setting up the MediaWiki database using MySQL.
Definition at line 24 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::canCreateAccounts | ( | ) |
Return true if the install user can create accounts.
Definition at line 218 of file MysqlInstaller.php.
|
protected |
| string | $s | |
| string | $escapeChar |
Definition at line 177 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::getCharsets | ( | ) |
Get a list of character sets that are available and supported.
Definition at line 209 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::getConnectForm | ( | WebInstaller | $webInstaller | ) |
Reimplemented from MediaWiki\Installer\DatabaseInstaller.
Definition at line 79 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::getEngines | ( | ) |
Get a list of storage engines that are available and supported.
Definition at line 188 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::getLocalSettings | ( | ) |
Get the DBMS-specific options for LocalSettings.php generation.
Reimplemented from MediaWiki\Installer\DatabaseInstaller.
Definition at line 336 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::getName | ( | ) |
Reimplemented from MediaWiki\Installer\DatabaseInstaller.
Definition at line 68 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::getSchemaVars | ( | ) |
Get variables to substitute into the SQL schema and patch files.
Reimplemented from MediaWiki\Installer\DatabaseInstaller.
Definition at line 329 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::getSettingsForm | ( | WebInstaller | $webInstaller | ) |
Reimplemented from MediaWiki\Installer\DatabaseInstaller.
Definition at line 83 of file MysqlInstaller.php.
|
protected |
Return any table options to be applied to all tables that don't override them.
Definition at line 312 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::isCompiled | ( | ) |
Reimplemented from MediaWiki\Installer\DatabaseInstaller.
Definition at line 75 of file MysqlInstaller.php.
References MediaWiki\Installer\DatabaseInstaller\checkExtension().
|
protected |
Convert a wildcard (as used in LIKE) to a regex Slashes are escaped, slash terminators included.
| string | $wildcard |
Definition at line 297 of file MysqlInstaller.php.
|
static |
Whether the provided version meets the necessary requirements for this type.
| IDatabase | $conn |
Reimplemented from MediaWiki\Installer\DatabaseInstaller.
Definition at line 88 of file MysqlInstaller.php.
References Wikimedia\Rdbms\IReadableDatabase\getSoftwareLink().
Referenced by MediaWiki\Installer\MysqlConnectForm\submit().
|
protected |
| string | $type |
Reimplemented from MediaWiki\Installer\DatabaseInstaller.
Definition at line 100 of file MysqlInstaller.php.
| MediaWiki\Installer\MysqlInstaller::preUpgrade | ( | ) |
Allow DB installers a chance to make checks before upgrade.
Reimplemented from MediaWiki\Installer\DatabaseInstaller.
Definition at line 122 of file MysqlInstaller.php.
References $wgDBpassword, and $wgDBuser.
|
protected |
Definition at line 27 of file MysqlInstaller.php.
|
protected |
Definition at line 38 of file MysqlInstaller.php.
|
static |
Definition at line 52 of file MysqlInstaller.php.
|
staticprotected |
Definition at line 54 of file MysqlInstaller.php.
| string [] MediaWiki\Installer\MysqlInstaller::$supportedEngines = [ 'InnoDB' ] |
Definition at line 45 of file MysqlInstaller.php.
| string [] MediaWiki\Installer\MysqlInstaller::$webUserPrivs |
Definition at line 57 of file MysqlInstaller.php.