Go to the documentation of this file.
27 require_once __DIR__ .
'/../../maintenance/Maintenance.php';
127 Hooks::run(
'LoadExtensionSchemaUpdates', [ $this ] );
135 global $wgExtNewTables, $wgExtNewFields, $wgExtPGNewFields,
136 $wgExtPGAlteredFields, $wgExtNewIndexes, $wgExtModifiedFields;
138 # For extensions only, should be populated via hooks
139 # $wgDBtype should be checked to specifiy the proper file
140 $wgExtNewTables = [];
141 $wgExtNewFields = [];
142 $wgExtPGNewFields = [];
143 $wgExtPGAlteredFields = [];
144 $wgExtNewIndexes = [];
145 $wgExtModifiedFields = [];
153 if ( !defined(
'MEDIAWIKI_INSTALL' ) ) {
159 $queue = $registry->getQueue();
161 $registry->clearQueue();
164 $data = $registry->readFromQueue(
$queue );
165 $hooks = [
'wgHooks' => [
'LoadExtensionSchemaUpdates' => [] ] ];
166 if ( isset( $data[
'globals'][
'wgHooks'][
'LoadExtensionSchemaUpdates'] ) ) {
167 $hooks = $data[
'globals'][
'wgHooks'][
'LoadExtensionSchemaUpdates'];
169 if (
$vars && isset(
$vars[
'wgHooks'][
'LoadExtensionSchemaUpdates'] ) ) {
170 $hooks = array_merge_recursive( $hooks,
$vars[
'wgHooks'][
'LoadExtensionSchemaUpdates'] );
173 $wgHooks[
'LoadExtensionSchemaUpdates'] = $hooks;
174 if (
$vars && isset(
$vars[
'wgAutoloadClasses'] ) ) {
190 $class = ucfirst(
$type ) .
'Updater';
194 throw new MWException( __METHOD__ .
' called for unsupported $wgDBtype' );
213 if ( $this->maintenance->isQuiet() ) {
218 $str = htmlspecialchars( $str );
237 $this->extensionUpdates[] = $update;
250 $this->extensionUpdates[] = [
'addTable', $tableName, $sqlPath,
true ];
261 $this->extensionUpdates[] = [
'addIndex', $tableName, $indexName, $sqlPath,
true ];
273 $this->extensionUpdates[] = [
'addField', $tableName, $columnName, $sqlPath,
true ];
285 $this->extensionUpdates[] = [
'dropField', $tableName, $columnName, $sqlPath,
true ];
298 $this->extensionUpdates[] = [
'dropIndex', $tableName, $indexName, $sqlPath,
true ];
309 $this->extensionUpdates[] = [
'dropTable', $tableName, $sqlPath,
true ];
325 $sqlPath, $skipBothIndexExistWarning =
false
327 $this->extensionUpdates[] = [
332 $skipBothIndexExistWarning,
346 $this->extensionUpdates[] = [
'modifyField', $tableName, $fieldName, $sqlPath,
true ];
357 return ( $this->db->tableExists( $tableName, __METHOD__ ) );
370 $this->postDatabaseUpdateMaintenance[] = $class;
399 $this->updatesSkipped = [];
402 $func = $funcList[0];
404 $origParams = $funcList[2];
405 call_user_func_array( $func, $arg );
407 $this->updatesSkipped[] = $origParams;
433 $what = array_flip( $what );
434 $this->skipSchema = isset( $what[
'noschema'] ) || $this->fileHandle !==
null;
435 if ( isset( $what[
'core'] ) ) {
438 if ( isset( $what[
'extensions'] ) ) {
443 if ( isset( $what[
'stats'] ) ) {
447 if ( $this->fileHandle ) {
448 $this->skipSchema =
false;
460 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
466 $func = array_shift(
$params );
467 if ( !is_array( $func ) && method_exists( $this, $func ) ) {
468 $func = [ $this, $func ];
469 } elseif ( $passSelf ) {
470 array_unshift(
$params, $this );
474 if (
$ret !==
false ) {
475 $updatesDone[] = $origParams;
476 $lbFactory->waitForReplication();
481 $this->updatesSkipped = array_merge( $this->updatesSkipped,
$updatesSkipped );
493 $row = $this->db->selectRow(
497 [
'ul_key' => $key ],
513 $values = [
'ul_key' => $key ];
515 $values[
'ul_value'] = $val;
517 $this->db->insert(
'updatelog', $values, __METHOD__,
'IGNORE' );
530 return $this->db->tableExists(
'updatelog', __METHOD__ ) &&
531 $this->db->fieldExists(
'updatelog',
'ul_value', __METHOD__ );
552 $this->
output(
"...skipping update to shared table $name.\n" );
568 global $wgExtNewFields, $wgExtNewTables, $wgExtModifiedFields,
573 foreach ( $wgExtNewTables
as $tableRecord ) {
575 'addTable', $tableRecord[0], $tableRecord[1],
true
579 foreach ( $wgExtNewFields
as $fieldRecord ) {
581 'addField', $fieldRecord[0], $fieldRecord[1],
582 $fieldRecord[2],
true
586 foreach ( $wgExtNewIndexes
as $fieldRecord ) {
588 'addIndex', $fieldRecord[0], $fieldRecord[1],
589 $fieldRecord[2],
true
593 foreach ( $wgExtModifiedFields
as $fieldRecord ) {
595 'modifyField', $fieldRecord[0], $fieldRecord[1],
596 $fieldRecord[2],
true
619 $this->db->sourceFile(
624 [ $this,
'appendLine' ]
640 if ( fwrite( $this->fileHandle,
$line ) ===
false ) {
656 if ( $msg ===
null ) {
657 $msg =
"Applying $path patch";
659 if ( $this->skipSchema ) {
660 $this->
output(
"...skipping schema change ($msg).\n" );
665 $this->
output(
"$msg ..." );
667 if ( !$isFullPath ) {
670 if ( $this->fileHandle !==
null ) {
673 $this->db->sourceFile(
$path );
675 $this->
output(
"done.\n" );
693 if ( file_exists(
"$IP/maintenance/$dbType/archives/$patch" ) ) {
694 return "$IP/maintenance/$dbType/archives/$patch";
696 return "$IP/maintenance/archives/$patch";
713 if ( $this->db->tableExists(
$name, __METHOD__ ) ) {
714 $this->
output(
"...$name table already exists.\n" );
716 return $this->
applyPatch( $patch, $fullpath,
"Creating $name table" );
731 protected function addField( $table, $field, $patch, $fullpath =
false ) {
732 if ( !$this->
doTable( $table ) ) {
736 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
737 $this->
output(
"...$table table does not exist, skipping new field patch.\n" );
738 } elseif ( $this->db->fieldExists( $table, $field, __METHOD__ ) ) {
739 $this->
output(
"...have $field field in $table table.\n" );
741 return $this->
applyPatch( $patch, $fullpath,
"Adding $field field to table $table" );
756 protected function addIndex( $table, $index, $patch, $fullpath =
false ) {
757 if ( !$this->
doTable( $table ) ) {
761 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
762 $this->
output(
"...skipping: '$table' table doesn't exist yet.\n" );
763 } elseif ( $this->db->indexExists( $table, $index, __METHOD__ ) ) {
764 $this->
output(
"...index $index already set on $table table.\n" );
766 return $this->
applyPatch( $patch, $fullpath,
"Adding index $index to table $table" );
781 protected function dropField( $table, $field, $patch, $fullpath =
false ) {
782 if ( !$this->
doTable( $table ) ) {
786 if ( $this->db->fieldExists( $table, $field, __METHOD__ ) ) {
787 return $this->
applyPatch( $patch, $fullpath,
"Table $table contains $field field. Dropping" );
789 $this->
output(
"...$table table does not contain $field field.\n" );
804 protected function dropIndex( $table, $index, $patch, $fullpath =
false ) {
805 if ( !$this->
doTable( $table ) ) {
809 if ( $this->db->indexExists( $table, $index, __METHOD__ ) ) {
810 return $this->
applyPatch( $patch, $fullpath,
"Dropping $index index from table $table" );
812 $this->
output(
"...$index key doesn't exist.\n" );
831 $skipBothIndexExistWarning, $patch, $fullpath =
false
833 if ( !$this->
doTable( $table ) ) {
838 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
839 $this->
output(
"...skipping: '$table' table doesn't exist yet.\n" );
845 if ( $this->db->indexExists( $table, $newIndex, __METHOD__ ) ) {
846 $this->
output(
"...index $newIndex already set on $table table.\n" );
847 if ( !$skipBothIndexExistWarning &&
848 $this->db->indexExists( $table, $oldIndex, __METHOD__ )
850 $this->
output(
"...WARNING: $oldIndex still exists, despite it has " .
851 "been renamed into $newIndex (which also exists).\n" .
852 " $oldIndex should be manually removed if not needed anymore.\n" );
859 if ( !$this->db->indexExists( $table, $oldIndex, __METHOD__ ) ) {
860 $this->
output(
"...skipping: index $oldIndex doesn't exist.\n" );
869 "Renaming index $oldIndex into $newIndex to table $table"
884 public function dropTable( $table, $patch =
false, $fullpath =
false ) {
885 if ( !$this->
doTable( $table ) ) {
889 if ( $this->db->tableExists( $table, __METHOD__ ) ) {
890 $msg =
"Dropping table $table";
892 if ( $patch ===
false ) {
893 $this->
output(
"$msg ..." );
894 $this->db->dropTable( $table, __METHOD__ );
895 $this->
output(
"done.\n" );
897 return $this->
applyPatch( $patch, $fullpath, $msg );
900 $this->
output(
"...$table doesn't exist.\n" );
915 public function modifyField( $table, $field, $patch, $fullpath =
false ) {
916 if ( !$this->
doTable( $table ) ) {
920 $updateKey =
"$table-$field-$patch";
921 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
922 $this->
output(
"...$table table does not exist, skipping modify field patch.\n" );
923 } elseif ( !$this->db->fieldExists( $table, $field, __METHOD__ ) ) {
924 $this->
output(
"...$field field does not exist in $table table, " .
925 "skipping modify field patch.\n" );
927 $this->
output(
"...$field in table $table already modified by patch $patch.\n" );
929 $apply = $this->
applyPatch( $patch, $fullpath,
"Modifying $field field of table $table" );
947 public function modifyTable( $table, $patch, $fullpath =
false ) {
948 if ( !$this->
doTable( $table ) ) {
952 $updateKey =
"$table-$patch";
953 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
954 $this->
output(
"...$table table does not exist, skipping modify table patch.\n" );
956 $this->
output(
"...table $table already modified by patch $patch.\n" );
958 $apply = $this->
applyPatch( $patch, $fullpath,
"Modifying table $table" );
974 $zonePath = $repo->getZonePath(
'temp' );
975 if ( $repo->getBackend()->directoryExists( [
'dir' => $zonePath ] ) ) {
977 $status = $repo->getBackend()->secure( [
983 $this->
output(
"Set the local repo temp zone container to be private.\n" );
985 $this->
output(
"Failed to set the local repo temp zone container to be private.\n" );
995 # We can't guarantee that the user will be able to use TRUNCATE,
996 # but we know that DELETE is available to us
997 $this->
output(
"Purging caches..." );
998 $this->db->delete(
'objectcache',
'*', __METHOD__ );
1003 $blobStore->clear();
1004 $this->db->delete(
'module_deps',
'*', __METHOD__ );
1005 $this->
output(
"done.\n" );
1012 $this->
output(
"...site_stats is populated..." );
1013 $row = $this->db->selectRow(
'site_stats',
'*', [
'ss_row_id' => 1 ], __METHOD__ );
1014 if ( $row ===
false ) {
1015 $this->
output(
"data is missing! rebuilding...\n" );
1016 } elseif ( isset( $row->site_stats ) && $row->ss_total_pages == -1 ) {
1017 $this->
output(
"missing ss_total_pages, rebuilding...\n" );
1019 $this->
output(
"done.\n" );
1026 # Common updater functions
1032 $activeUsers = $this->db->selectField(
'site_stats',
'ss_active_users',
false, __METHOD__ );
1033 if ( $activeUsers == -1 ) {
1034 $activeUsers = $this->db->selectField(
'recentchanges',
1035 'COUNT( DISTINCT rc_user_text )',
1036 [
'rc_user != 0',
'rc_bot' => 0,
"rc_log_type != 'newusers'" ], __METHOD__
1038 $this->db->update(
'site_stats',
1039 [
'ss_active_users' => intval( $activeUsers ) ],
1040 [
'ss_row_id' => 1 ], __METHOD__, [
'LIMIT' => 1 ]
1043 $this->
output(
"...ss_active_users user count set...\n" );
1052 "Populating log_user_text field, printing progress markers. For large\n" .
1053 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1054 "maintenance/populateLogUsertext.php.\n"
1057 $task = $this->maintenance->runChild(
'PopulateLogUsertext' );
1059 $this->
output(
"done.\n" );
1069 "Populating log_search table, printing progress markers. For large\n" .
1070 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1071 "maintenance/populateLogSearch.php.\n" );
1073 $task = $this->maintenance->runChild(
'PopulateLogSearch' );
1075 $this->
output(
"done.\n" );
1085 $this->
output(
"...transcache tc_time already converted.\n" );
1090 return $this->
applyPatch(
'patch-tc-timestamp.sql',
false,
1091 "Converting tc_time from UNIX epoch to MediaWiki timestamp" );
1099 if ( $this->db->fieldExists(
'categorylinks',
'cl_collation', __METHOD__ ) ) {
1100 if ( $this->db->selectField(
1107 $this->
output(
"...collations up-to-date.\n" );
1112 $this->
output(
"Updating category collations..." );
1113 $task = $this->maintenance->runChild(
'UpdateCollation' );
1115 $this->
output(
"...done.\n" );
1123 if ( $this->db->tableExists(
'user_properties' ) ) {
1124 $cl = $this->maintenance->runChild(
'ConvertUserOptions',
'convertUserOptions.php' );
1126 $this->
output(
"done.\n" );
1136 if ( !$this->
doTable(
'profiling' ) ) {
1140 $profileToDb =
false;
1143 if (
$out ===
'db' ) {
1144 $profileToDb =
true;
1145 } elseif ( is_array(
$out ) && in_array(
'db',
$out ) ) {
1146 $profileToDb =
true;
1150 if ( $profileToDb && !$this->db->tableExists(
'profiling', __METHOD__ ) ) {
1151 $this->
applyPatch(
'patch-profiling.sql',
false,
'Add profiling table' );
1162 $cl = $this->maintenance->runChild(
'RebuildLocalisationCache',
'rebuildLocalisationCache.php' );
1163 $this->
output(
"Rebuilding localisation cache...\n" );
1166 $this->
output(
"done.\n" );
1176 if ( $wgContentHandlerUseDB ) {
1177 $this->
output(
"Turning off Content Handler DB fields for this part of upgrade.\n" );
1189 if ( $this->holdContentHandlerUseDB ) {
1190 $this->
output(
"Content Handler DB fields should be usable now.\n" );
1205 "Migrating comments to the 'comments' table, printing progress markers. For large\n" .
1206 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1207 "maintenance/migrateComments.php.\n"
1209 $task = $this->maintenance->runChild(
'MigrateComments',
'migrateComments.php' );
1211 $this->
output(
"done.\n" );
output( $str)
Output some text.
dropIndex( $table, $index, $patch, $fullpath=false)
Drop an index from an existing table.
dropTable( $table, $patch=false, $fullpath=false)
If the specified table exists, drop it, or execute the patch if one is provided.
copyFile( $filename)
Append an SQL fragment to the open file handle.
array $updatesSkipped
Array of updates that were skipped.
static singleton()
Get a RepoGroup instance.
applyPatch( $path, $isFullPath=false, $msg=null)
Applies a SQL patch.
doCollationUpdate()
Update CategoryLinks collation.
static doAllAndCommit( $database, array $options=[])
Do all updates and commit them.
Class for handling database updates.
addPostDatabaseUpdateMaintenance( $class)
Add a maintenance script to be run after the database updates are complete.
checkStats()
Check the site_stats table is not properly populated.
int $wgCommentTableSchemaMigrationStage
Comment table schema migration stage.
$wgSharedDB
Shared database for multiple wikis.
getCoreUpdateList()
Get an array of updates to perform on the database.
doMigrateUserOptions()
Migrates user options from the user table blob to user_properties.
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
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
dropField( $table, $field, $patch, $fullpath=false)
Drop a field from an existing table.
enableContentHandlerUseDB()
Turns content handler fields back on.
addField( $table, $field, $patch, $fullpath=false)
Add a new field to an existing table.
doTable( $name)
Returns whether updates should be executed on the database table $name.
getPostDatabaseUpdateMaintenance()
setDB(IDatabase $db)
Sets database object to be returned by getDB().
appendLine( $line)
Append a line to the open filehandle.
Allows to change the fields on the form that will be generated $name
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
patchPath(IDatabase $db, $patch)
Get the full path of a patch file.
getSchemaVars()
Get appropriate schema variables in the current database connection.
addExtensionIndex( $tableName, $indexName, $sqlPath)
$wgContentHandlerUseDB
Set to false to disable use of the database fields introduced by the ContentHandler facility.
Database $db
Handle to the database subclass.
migrateComments()
Migrate comments to the new 'comment' table.
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
doActiveUsersInit()
Sets the number of active users in the site_stats table.
const MIGRATION_WRITE_NEW
dropExtensionIndex( $tableName, $indexName, $sqlPath)
Drop an index from an extension table.
array $updates
Array of updates to perform on the database.
doEnableProfiling()
Enable profiling table when it's turned on.
addExtensionUpdate(array $update)
Add a new update coming from an extension.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these updates(as a Java servelet could)
setFileAccess()
Set any .htaccess files or equivilent for storage repos.
renameIndex( $table, $oldIndex, $newIndex, $skipBothIndexExistWarning, $patch, $fullpath=false)
Rename an index from an existing table.
getExtensionUpdates()
Get the list of extension-defined updates.
modifyTable( $table, $patch, $fullpath=false)
Modify an existing table, similar to modifyField.
global $wgCommandLineMode
modifyExtensionField( $tableName, $fieldName, $sqlPath)
rebuildLocalisationCache()
Rebuilds the localisation cache.
static getExistingLocalSettings()
Determine if LocalSettings.php exists.
getDB()
Get a database connection to run updates.
$wgLocalisationCacheConf
Localisation cache configuration.
runUpdates(array $updates, $passSelf)
Helper function for doUpdates()
doUpdates(array $what=[ 'core', 'extensions', 'stats'])
Do all the updates.
when a variable name is used in a it is silently declared as a new masking the global
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
Fake maintenance wrapper, mostly used for the web installer/updater.
updateRowExists( $key)
Helper function: check if the given key is present in the updatelog table.
disableContentHandlerUseDB()
Turns off content handler fields during parts of the upgrade where they aren't available.
doLogSearchPopulation()
Migrate log params to new table and index for searching.
doUpdateTranscacheField()
Updates the timestamps in the transcache table.
static newForDB(Database $db, $shared=false, $maintenance=null)
__construct(Database &$db, $shared, Maintenance $maintenance=null)
canUseNewUpdatelog()
Updatelog was changed in 1.17 to have a ul_value column so we can record more information about what ...
resource $fileHandle
File handle for SQL output.
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 noclasses & $ret
getOldGlobalUpdates()
Before 1.17, we used to handle updates via stuff like $wgExtNewTables/Fields/Indexes.
$wgAutoloadClasses
Array mapping class names to filenames, for autoloading.
doLogUsertextPopulation()
Populates the log_user_text field in the logging table.
addExtensionField( $tableName, $columnName, $sqlPath)
modifyField( $table, $field, $patch, $fullpath=false)
Modify an existing field.
writeSchemaUpdateFile(array $schemaUpdate=[])
$wgHooks['ArticleShow'][]
loadExtensions()
Loads LocalSettings.php, if needed, and initialises everything needed for LoadExtensionSchemaUpdates ...
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
renameExtensionIndex( $tableName, $oldIndexName, $newIndexName, $sqlPath, $skipBothIndexExistWarning=false)
Rename an index on an extension table.
addTable( $name, $patch, $fullpath=false)
Add a new table to the database.
This class generates message blobs for use by ResourceLoader modules.
dropExtensionField( $tableName, $columnName, $sqlPath)
purgeCache()
Purge the objectcache table.
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 noclasses just before the function returns a value If you return true
$wgCategoryCollation
Specify how category names should be sorted, when listed on a category page.
bool $skipSchema
Flag specifying whether or not to skip schema (e.g.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
addExtensionTable( $tableName, $sqlPath)
Convenience wrapper for addExtensionUpdate() when adding a new table (which is the most common usage ...
static getDBTypes()
Get a list of known DB types.
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 MediaWikiServices
initOldGlobals()
Initialize all of the old globals.
addIndex( $table, $index, $patch, $fullpath=false)
Add a new index to an existing table.
array $extensionUpdates
List of extension-provided database updates.
insertUpdateRow( $key, $val=null)
Helper function: Add a key to the updatelog table Obviously, only use this for updates that occur aft...
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
string[] $postDatabaseUpdateMaintenance
Scripts to run after database update Should be a subclass of LoggedUpdateMaintenance.
dropExtensionTable( $tableName, $sqlPath)
the array() calling protocol came about after MediaWiki 1.4rc1.
$holdContentHandlerUseDB
Hold the value of $wgContentHandlerUseDB during the upgrade.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out