Go to the documentation of this file.
47 '_MysqlEngine' =>
'InnoDB',
48 '_MysqlCharset' =>
'binary',
49 '_InstallUser' =>
'root',
62 'CREATE TEMPORARY TABLES',
87 $this->parent->getHelpBox(
'config-db-host-help' )
91 $this->
getTextBox(
'wgDBname',
'config-db-name', [
'dir' =>
'ltr' ],
92 $this->parent->getHelpBox(
'config-db-name-help' ) ) .
93 $this->
getTextBox(
'wgDBprefix',
'config-db-prefix', [
'dir' =>
'ltr' ],
94 $this->parent->getHelpBox(
'config-db-prefix-help' ) ) .
105 if ( !strlen( $newValues[
'wgDBserver'] ) ) {
106 $status->fatal(
'config-missing-db-host' );
108 if ( !strlen( $newValues[
'wgDBname'] ) ) {
109 $status->fatal(
'config-missing-db-name' );
110 } elseif ( !preg_match(
'/^[a-z0-9+_-]+$/i', $newValues[
'wgDBname'] ) ) {
111 $status->fatal(
'config-invalid-db-name', $newValues[
'wgDBname'] );
113 if ( !preg_match(
'/^[a-z0-9_-]*$/i', $newValues[
'wgDBprefix'] ) ) {
114 $status->fatal(
'config-invalid-db-prefix', $newValues[
'wgDBprefix'] );
137 return static::meetsMinimumRequirement( $conn->getServerVersion() );
146 $db = Database::factory(
'mysql', [
147 'host' => $this->
getVar(
'wgDBserver' ),
148 'user' => $this->
getVar(
'_InstallUser' ),
149 'password' => $this->
getVar(
'_InstallPassword' ),
152 'tablePrefix' => $this->
getVar(
'wgDBprefix' ) ] );
155 $status->fatal(
'config-connection-error',
$e->getMessage() );
166 $this->parent->showStatusError(
$status );
174 $conn->selectDB( $this->
getVar(
'wgDBname' ) );
176 # Determine existing default character set
177 if ( $conn->tableExists(
"revision", __METHOD__ ) ) {
179 $res = $conn->query(
"SHOW TABLE STATUS LIKE '$revision'", __METHOD__ );
180 $row = $conn->fetchObject(
$res );
182 $this->parent->showMessage(
'config-show-table-status' );
183 $existingSchema =
false;
184 $existingEngine =
false;
186 if ( preg_match(
'/^latin1/', $row->Collation ) ) {
187 $existingSchema =
'latin1';
188 } elseif ( preg_match(
'/^utf8/', $row->Collation ) ) {
189 $existingSchema =
'utf8';
190 } elseif ( preg_match(
'/^binary/', $row->Collation ) ) {
191 $existingSchema =
'binary';
193 $existingSchema =
false;
194 $this->parent->showMessage(
'config-unknown-collation' );
196 if ( isset( $row->Engine ) ) {
197 $existingEngine = $row->Engine;
199 $existingEngine = $row->Type;
203 $existingSchema =
false;
204 $existingEngine =
false;
207 if ( $existingSchema && $existingSchema != $this->
getVar(
'_MysqlCharset' ) ) {
208 $this->
setVar(
'_MysqlCharset', $existingSchema );
210 if ( $existingEngine && $existingEngine != $this->
getVar(
'_MysqlEngine' ) ) {
211 $this->
setVar(
'_MysqlEngine', $existingEngine );
214 # Normal user and password are selected after this step, so for now
215 # just copy these two
217 $wgDBpassword = $this->
getVar(
'_InstallPassword' );
226 return str_replace( [ $escapeChar,
'%',
'_' ],
227 [
"{$escapeChar}{$escapeChar}",
"{$escapeChar}%",
"{$escapeChar}_" ],
245 $res = $conn->query(
'SHOW ENGINES', __METHOD__ );
246 foreach (
$res as $row ) {
247 if ( $row->Support ==
'YES' || $row->Support ==
'DEFAULT' ) {
248 $engines[] = $row->Engine;
251 $engines = array_intersect( $this->supportedEngines, $engines );
262 return [
'binary',
'utf8' ];
279 $currentName = $conn->selectField(
'',
'CURRENT_USER()',
'', __METHOD__ );
280 $parts = explode(
'@', $currentName );
281 if (
count( $parts ) != 2 ) {
284 $quotedUser = $conn->addQuotes( $parts[0] ) .
285 '@' . $conn->addQuotes( $parts[1] );
289 $res = $conn->select(
'INFORMATION_SCHEMA.USER_PRIVILEGES',
'*',
290 [
'GRANTEE' => $quotedUser ], __METHOD__ );
291 $insertMysql =
false;
292 $grantOptions = array_flip( $this->webUserPrivs );
293 foreach (
$res as $row ) {
294 if ( $row->PRIVILEGE_TYPE ==
'INSERT' ) {
297 if ( $row->IS_GRANTABLE ) {
298 unset( $grantOptions[$row->PRIVILEGE_TYPE] );
303 if ( !$insertMysql ) {
304 $row = $conn->selectRow(
'INFORMATION_SCHEMA.SCHEMA_PRIVILEGES',
'*',
306 'GRANTEE' => $quotedUser,
307 'TABLE_SCHEMA' =>
'mysql',
308 'PRIVILEGE_TYPE' =>
'INSERT',
315 if ( !$insertMysql ) {
320 $res = $conn->select(
'INFORMATION_SCHEMA.SCHEMA_PRIVILEGES',
'*',
322 'GRANTEE' => $quotedUser,
325 foreach (
$res as $row ) {
327 if ( preg_match( $regex, $this->
getVar(
'wgDBname' ) ) ) {
328 unset( $grantOptions[$row->PRIVILEGE_TYPE] );
331 if (
count( $grantOptions ) ) {
346 $r = preg_quote( $wildcard,
'/' );
359 $noCreateMsg =
false;
361 $noCreateMsg =
'config-db-web-no-create-privs';
368 if ( !in_array( $this->
getVar(
'_MysqlEngine' ), $engines ) ) {
369 $this->
setVar(
'_MysqlEngine', reset( $engines ) );
373 'id' =>
'dbMyisamWarning'
375 $myisamWarning =
'config-mysql-myisam-dep';
376 if (
count( $engines ) === 1 ) {
377 $myisamWarning =
'config-mysql-only-myisam-dep';
379 $s .= $this->parent->getWarningBox(
wfMessage( $myisamWarning )->
text() );
382 if ( $this->
getVar(
'_MysqlEngine' ) !=
'MyISAM' ) {
384 $s .=
'$(\'#dbMyisamWarning\').hide();';
388 if (
count( $engines ) >= 2 ) {
393 'var' =>
'_MysqlEngine',
394 'label' =>
'config-mysql-engine',
395 'itemLabelPrefix' =>
'config-mysql-',
396 'values' => $engines,
399 'class' =>
'showHideRadio',
400 'rel' =>
'dbMyisamWarning'
403 'class' =>
'hideShowRadio',
404 'rel' =>
'dbMyisamWarning'
408 $s .= $this->parent->getHelpBox(
'config-mysql-engine-help' );
413 if ( !in_array( $this->
getVar(
'_MysqlCharset' ), $charsets ) ) {
414 $this->
setVar(
'_MysqlCharset', reset( $charsets ) );
418 if (
count( $charsets ) >= 2 ) {
423 'var' =>
'_MysqlCharset',
424 'label' =>
'config-mysql-charset',
425 'itemLabelPrefix' =>
'config-mysql-',
426 'values' => $charsets
428 $s .= $this->parent->getHelpBox(
'config-mysql-charset-help' );
447 $this->
setVar(
'_CreateDBAccount',
false );
450 $create = $this->
getVar(
'_CreateDBAccount' );
456 Database::factory(
'mysql', [
457 'host' => $this->
getVar(
'wgDBserver' ),
458 'user' => $this->
getVar(
'wgDBuser' ),
459 'password' => $this->
getVar(
'wgDBpassword' ),
462 'tablePrefix' => $this->
getVar(
'wgDBprefix' )
472 if ( !in_array( $this->
getVar(
'_MysqlEngine' ), $engines ) ) {
473 $this->
setVar(
'_MysqlEngine', reset( $engines ) );
476 if ( !in_array( $this->
getVar(
'_MysqlCharset' ), $charsets ) ) {
477 $this->
setVar(
'_MysqlCharset', reset( $charsets ) );
484 # Add our user callback to installSteps, right before the tables are created.
487 'callback' => [ $this,
'setupUser' ],
489 $this->parent->addInstallStep( $callback,
'tables' );
502 $dbName = $this->
getVar(
'wgDBname' );
503 if ( !$conn->selectDB( $dbName ) ) {
505 "CREATE DATABASE " . $conn->addIdentifierQuotes( $dbName ) .
"CHARACTER SET utf8",
508 $conn->selectDB( $dbName );
519 $dbUser = $this->
getVar(
'wgDBuser' );
520 if ( $dbUser == $this->
getVar(
'_InstallUser' ) ) {
529 $dbName = $this->
getVar(
'wgDBname' );
530 $this->db->selectDB( $dbName );
531 $server = $this->
getVar(
'wgDBserver' );
532 $password = $this->
getVar(
'wgDBpassword' );
533 $grantableNames = [];
535 if ( $this->
getVar(
'_CreateDBAccount' ) ) {
538 Database::factory(
'mysql', [
541 'password' => $password,
544 'tablePrefix' => $this->
getVar(
'wgDBprefix' )
547 $tryToCreate =
false;
553 $tryToCreate =
false;
556 if ( $tryToCreate ) {
560 'localhost.localdomain',
564 $createHostList = array_unique( $createHostList );
565 $escPass = $this->db->addQuotes( $password );
567 foreach ( $createHostList
as $host ) {
571 $this->db->begin( __METHOD__ );
572 $this->db->query(
"CREATE USER $fullName IDENTIFIED BY $escPass", __METHOD__ );
573 $this->db->commit( __METHOD__ );
574 $grantableNames[] = $fullName;
576 if ( $this->db->lastErrno() == 1396 ) {
578 $this->db->rollback( __METHOD__ );
579 $status->warning(
'config-install-user-alreadyexists', $dbUser );
580 $grantableNames[] = $fullName;
585 $this->db->rollback( __METHOD__ );
586 $status->warning(
'config-install-user-create-failed', $dbUser, $dqe->getMessage() );
590 $status->warning(
'config-install-user-alreadyexists', $dbUser );
591 $grantableNames[] = $fullName;
598 $dbAllTables = $this->db->addIdentifierQuotes( $dbName ) .
'.*';
599 foreach ( $grantableNames
as $name ) {
601 $this->db->begin( __METHOD__ );
602 $this->db->query(
"GRANT ALL PRIVILEGES ON $dbAllTables TO $name", __METHOD__ );
603 $this->db->commit( __METHOD__ );
605 $this->db->rollback( __METHOD__ );
606 $status->fatal(
'config-install-user-grant-failed', $dbUser, $dqe->getMessage() );
620 return $this->db->addQuotes(
$name ) .
'@' . $this->db->addQuotes( $host );
632 $res = $this->db->selectRow(
'mysql.user', [
'Host',
'User' ],
633 [
'Host' => $host,
'User' =>
$user ], __METHOD__ );
649 if ( $this->
getVar(
'_MysqlEngine' ) !==
null ) {
652 if ( $this->
getVar(
'_MysqlCharset' ) !==
null ) {
653 $options[] =
'DEFAULT CHARSET=' . $this->
getVar(
'_MysqlCharset' );
667 'wgDBname' => $this->
getVar(
'wgDBname' ),
668 'wgDBuser' => $this->
getVar(
'wgDBuser' ),
669 'wgDBpassword' => $this->
getVar(
'wgDBpassword' ),
678 return "# MySQL specific settings
679 \$wgDBprefix = \"{$prefix}\";
681 # MySQL table options to use during installation or update
682 \$wgDBTableOptions = \"{$tblOpts}\";
684 # Experimental charset support for MySQL 5.0.
685 \$wgDBmysql5 = {$dbmysql5};";
getTableOptions()
Return any table options to be applied to all tables that don't override them.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
likeToRegex( $wildcard)
Convert a wildcard (as used in LIKE) to a regex Slashes are escaped, slash terminators included.
getEngines()
Get a list of storage engines that are available and supported.
static $notMiniumumVerisonMessage
static checkExtension( $name)
Convenience function.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
userDefinitelyExists( $host, $user)
Try to see if the user account exists.
getConnection()
Connect to the database using the administrative user/password currently defined in the session.
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
preInstall()
Allow DB installers a chance to make last-minute changes before installation occurs.
getLocalSettings()
Get the DBMS-specific options for LocalSettings.php generation.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
static newFatal( $message)
Factory function for fatal errors.
getTextBox( $var, $label, $attribs=[], $helpData="")
Get a labelled text box to configure a local variable.
Allows to change the fields on the form that will be generated $name
static openElement( $element, $attribs=null)
This opens an XML element.
$wgDBpassword
Database user's password.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
buildFullUserName( $name, $host)
Return a formal 'User'@'Host' username for use in queries.
wfBoolToStr( $value)
Convenience function converts boolean values into "true" or "false" (string) values.
static closeElement( $element)
Returns "</$element>".
submitWebUserBox()
Submit the form from getWebUserBox().
setupSchemaVars()
Set appropriate schema variables in the current database connection.
submitConnectForm()
Set variables based on the request array, assuming it was submitted via the form returned by getConne...
when a variable name is used in a it is silently declared as a new masking the global
getWebUserBox( $noCreateMsg=false)
Get a standard web-user fieldset.
getRadioSet( $params)
Get a set of labelled radio buttons.
preUpgrade()
Allow DB installers a chance to make checks before upgrade.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
getVar( $var, $default=null)
Get a variable, taking local defaults into account.
static newGood( $value=null)
Factory function for good results.
getSchemaVars()
Get variables to substitute into tables.sql and the SQL patch files.
submitInstallUserBox()
Submit a standard install user fieldset.
Base class for DBMS-specific installation helper classes.
getCharsets()
Get a list of character sets that are available and supported.
Class for setting up the MediaWiki database using MySQL.
static closeElement( $element)
Shortcut to close an XML element.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static openElement( $element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
setVar( $name, $value)
Convenience alias for $this->parent->setVar()
getInstallUserBox()
Get a standard install-user fieldset.
setVarsFromRequest( $varNames)
Convenience function to set variables based on form data.
static escapePhpString( $string)
Returns the escaped version of a string of php code.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<
$wgDBuser
Database username.
Database $db
The database connection.
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
canCreateAccounts()
Return true if the install user can create accounts.
escapeLikeInternal( $s, $escapeChar='`')