Go to the documentation of this file.
27 require_once __DIR__ .
'/../../maintenance/Maintenance.php';
129 Hooks::run(
'LoadExtensionSchemaUpdates', [ $this ] );
137 global $wgExtNewTables, $wgExtNewFields, $wgExtPGNewFields,
138 $wgExtPGAlteredFields, $wgExtNewIndexes, $wgExtModifiedFields;
140 # For extensions only, should be populated via hooks
141 # $wgDBtype should be checked to specify the proper file
142 $wgExtNewTables = [];
143 $wgExtNewFields = [];
144 $wgExtPGNewFields = [];
145 $wgExtPGAlteredFields = [];
146 $wgExtNewIndexes = [];
147 $wgExtModifiedFields = [];
155 if ( !defined(
'MEDIAWIKI_INSTALL' ) || defined(
'MW_EXTENSIONS_LOADED' ) ) {
161 $queue = $registry->getQueue();
163 $registry->clearQueue();
166 $data = $registry->readFromQueue(
$queue );
168 if ( isset( $data[
'globals'][
'wgHooks'][
'LoadExtensionSchemaUpdates'] ) ) {
169 $hooks = $data[
'globals'][
'wgHooks'][
'LoadExtensionSchemaUpdates'];
171 if (
$vars && isset(
$vars[
'wgHooks'][
'LoadExtensionSchemaUpdates'] ) ) {
172 $hooks = array_merge_recursive( $hooks,
$vars[
'wgHooks'][
'LoadExtensionSchemaUpdates'] );
175 $wgHooks[
'LoadExtensionSchemaUpdates'] = $hooks;
176 if (
$vars && isset(
$vars[
'wgAutoloadClasses'] ) ) {
192 $class = ucfirst(
$type ) .
'Updater';
196 throw new MWException( __METHOD__ .
' called for unsupported $wgDBtype' );
216 if ( $this->maintenance->isQuiet() ) {
221 $str = htmlspecialchars( $str );
240 $this->extensionUpdates[] = $update;
253 $this->extensionUpdates[] = [
'addTable', $tableName, $sqlPath,
true ];
264 $this->extensionUpdates[] = [
'addIndex', $tableName, $indexName, $sqlPath,
true ];
276 $this->extensionUpdates[] = [
'addField', $tableName, $columnName, $sqlPath,
true ];
288 $this->extensionUpdates[] = [
'dropField', $tableName, $columnName, $sqlPath,
true ];
301 $this->extensionUpdates[] = [
'dropIndex', $tableName, $indexName, $sqlPath,
true ];
312 $this->extensionUpdates[] = [
'dropTable', $tableName, $sqlPath,
true ];
328 $sqlPath, $skipBothIndexExistWarning =
false
330 $this->extensionUpdates[] = [
335 $skipBothIndexExistWarning,
349 $this->extensionUpdates[] = [
'modifyField', $tableName, $fieldName, $sqlPath,
true ];
359 $this->extensionUpdates[] = [
'modifyTable', $tableName, $sqlPath,
true ];
370 return ( $this->db->tableExists( $tableName, __METHOD__ ) );
383 $this->postDatabaseUpdateMaintenance[] = $class;
412 $this->updatesSkipped = [];
415 $func = $funcList[0];
416 $args = $funcList[1];
417 $origParams = $funcList[2];
420 $this->updatesSkipped[] = $origParams;
446 $what = array_flip( $what );
447 $this->skipSchema = isset( $what[
'noschema'] ) || $this->fileHandle !==
null;
448 if ( isset( $what[
'core'] ) ) {
451 if ( isset( $what[
'extensions'] ) ) {
456 if ( isset( $what[
'stats'] ) ) {
460 if ( $this->fileHandle ) {
461 $this->skipSchema =
false;
473 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
479 $func = array_shift(
$params );
480 if ( !is_array( $func ) && method_exists( $this, $func ) ) {
481 $func = [ $this, $func ];
482 } elseif ( $passSelf ) {
483 array_unshift(
$params, $this );
487 if (
$ret !==
false ) {
488 $updatesDone[] = $origParams;
489 $lbFactory->waitForReplication( [
'timeout' => self::REPLICATION_WAIT_TIMEOUT ] );
494 $this->updatesSkipped = array_merge( $this->updatesSkipped,
$updatesSkipped );
506 $row = $this->db->selectRow(
510 [
'ul_key' => $key ],
526 $values = [
'ul_key' => $key ];
528 $values[
'ul_value'] = $val;
530 $this->db->insert(
'updatelog', $values, __METHOD__,
'IGNORE' );
543 return $this->db->tableExists(
'updatelog', __METHOD__ ) &&
544 $this->db->fieldExists(
'updatelog',
'ul_value', __METHOD__ );
565 $this->
output(
"...skipping update to shared table $name.\n" );
581 global $wgExtNewFields, $wgExtNewTables, $wgExtModifiedFields,
586 foreach ( $wgExtNewTables
as $tableRecord ) {
588 'addTable', $tableRecord[0], $tableRecord[1],
true
592 foreach ( $wgExtNewFields
as $fieldRecord ) {
594 'addField', $fieldRecord[0], $fieldRecord[1],
595 $fieldRecord[2],
true
599 foreach ( $wgExtNewIndexes
as $fieldRecord ) {
601 'addIndex', $fieldRecord[0], $fieldRecord[1],
602 $fieldRecord[2],
true
606 foreach ( $wgExtModifiedFields
as $fieldRecord ) {
608 'modifyField', $fieldRecord[0], $fieldRecord[1],
609 $fieldRecord[2],
true
632 $this->db->sourceFile(
637 [ $this,
'appendLine' ]
653 if ( fwrite( $this->fileHandle,
$line ) ===
false ) {
669 if ( $msg ===
null ) {
670 $msg =
"Applying $path patch";
672 if ( $this->skipSchema ) {
673 $this->
output(
"...skipping schema change ($msg).\n" );
678 $this->
output(
"$msg ..." );
680 if ( !$isFullPath ) {
683 if ( $this->fileHandle !==
null ) {
686 $this->db->sourceFile(
$path );
688 $this->
output(
"done.\n" );
706 if ( file_exists(
"$IP/maintenance/$dbType/archives/$patch" ) ) {
707 return "$IP/maintenance/$dbType/archives/$patch";
709 return "$IP/maintenance/archives/$patch";
726 if ( $this->db->tableExists(
$name, __METHOD__ ) ) {
727 $this->
output(
"...$name table already exists.\n" );
729 return $this->
applyPatch( $patch, $fullpath,
"Creating $name table" );
744 protected function addField( $table, $field, $patch, $fullpath =
false ) {
745 if ( !$this->
doTable( $table ) ) {
749 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
750 $this->
output(
"...$table table does not exist, skipping new field patch.\n" );
751 } elseif ( $this->db->fieldExists( $table, $field, __METHOD__ ) ) {
752 $this->
output(
"...have $field field in $table table.\n" );
754 return $this->
applyPatch( $patch, $fullpath,
"Adding $field field to table $table" );
769 protected function addIndex( $table, $index, $patch, $fullpath =
false ) {
770 if ( !$this->
doTable( $table ) ) {
774 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
775 $this->
output(
"...skipping: '$table' table doesn't exist yet.\n" );
776 } elseif ( $this->db->indexExists( $table, $index, __METHOD__ ) ) {
777 $this->
output(
"...index $index already set on $table table.\n" );
779 return $this->
applyPatch( $patch, $fullpath,
"Adding index $index to table $table" );
796 if ( !$this->
doTable( $table ) ) {
800 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
801 $this->
output(
"...skipping: '$table' table doesn't exist yet.\n" );
805 $newIndex = $indexes[0];
806 foreach ( $indexes
as $index ) {
807 if ( $this->db->indexExists( $table, $index, __METHOD__ ) ) {
809 "...skipping index $newIndex because index $index already set on $table table.\n"
815 return $this->
applyPatch( $patch, $fullpath,
"Adding index $index to table $table" );
827 protected function dropField( $table, $field, $patch, $fullpath =
false ) {
828 if ( !$this->
doTable( $table ) ) {
832 if ( $this->db->fieldExists( $table, $field, __METHOD__ ) ) {
833 return $this->
applyPatch( $patch, $fullpath,
"Table $table contains $field field. Dropping" );
835 $this->
output(
"...$table table does not contain $field field.\n" );
850 protected function dropIndex( $table, $index, $patch, $fullpath =
false ) {
851 if ( !$this->
doTable( $table ) ) {
855 if ( $this->db->indexExists( $table, $index, __METHOD__ ) ) {
856 return $this->
applyPatch( $patch, $fullpath,
"Dropping $index index from table $table" );
858 $this->
output(
"...$index key doesn't exist.\n" );
877 $skipBothIndexExistWarning, $patch, $fullpath =
false
879 if ( !$this->
doTable( $table ) ) {
884 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
885 $this->
output(
"...skipping: '$table' table doesn't exist yet.\n" );
891 if ( $this->db->indexExists( $table, $newIndex, __METHOD__ ) ) {
892 $this->
output(
"...index $newIndex already set on $table table.\n" );
893 if ( !$skipBothIndexExistWarning &&
894 $this->db->indexExists( $table, $oldIndex, __METHOD__ )
896 $this->
output(
"...WARNING: $oldIndex still exists, despite it has " .
897 "been renamed into $newIndex (which also exists).\n" .
898 " $oldIndex should be manually removed if not needed anymore.\n" );
905 if ( !$this->db->indexExists( $table, $oldIndex, __METHOD__ ) ) {
906 $this->
output(
"...skipping: index $oldIndex doesn't exist.\n" );
915 "Renaming index $oldIndex into $newIndex to table $table"
930 public function dropTable( $table, $patch =
false, $fullpath =
false ) {
931 if ( !$this->
doTable( $table ) ) {
935 if ( $this->db->tableExists( $table, __METHOD__ ) ) {
936 $msg =
"Dropping table $table";
938 if ( $patch ===
false ) {
939 $this->
output(
"$msg ..." );
940 $this->db->dropTable( $table, __METHOD__ );
941 $this->
output(
"done.\n" );
943 return $this->
applyPatch( $patch, $fullpath, $msg );
946 $this->
output(
"...$table doesn't exist.\n" );
961 public function modifyField( $table, $field, $patch, $fullpath =
false ) {
962 if ( !$this->
doTable( $table ) ) {
966 $updateKey =
"$table-$field-$patch";
967 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
968 $this->
output(
"...$table table does not exist, skipping modify field patch.\n" );
969 } elseif ( !$this->db->fieldExists( $table, $field, __METHOD__ ) ) {
970 $this->
output(
"...$field field does not exist in $table table, " .
971 "skipping modify field patch.\n" );
973 $this->
output(
"...$field in table $table already modified by patch $patch.\n" );
975 $apply = $this->
applyPatch( $patch, $fullpath,
"Modifying $field field of table $table" );
993 public function modifyTable( $table, $patch, $fullpath =
false ) {
994 if ( !$this->
doTable( $table ) ) {
998 $updateKey =
"$table-$patch";
999 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
1000 $this->
output(
"...$table table does not exist, skipping modify table patch.\n" );
1002 $this->
output(
"...table $table already modified by patch $patch.\n" );
1004 $apply = $this->
applyPatch( $patch, $fullpath,
"Modifying table $table" );
1029 $this->
output(
"Running $script...\n" );
1030 $task = $this->maintenance->runChild( $class );
1031 $ok = $task->execute();
1033 throw new RuntimeException(
"Execution of $script did not complete successfully." );
1035 $this->
output(
"done.\n" );
1045 $zonePath = $repo->getZonePath(
'temp' );
1046 if ( $repo->getBackend()->directoryExists( [
'dir' => $zonePath ] ) ) {
1048 $status = $repo->getBackend()->secure( [
1054 $this->
output(
"Set the local repo temp zone container to be private.\n" );
1056 $this->
output(
"Failed to set the local repo temp zone container to be private.\n" );
1068 $this->
output(
"Purging caches..." );
1071 $this->db->delete(
'objectcache',
'*', __METHOD__ );
1080 $blobStore->clear();
1083 $this->db->delete(
'module_deps',
'*', __METHOD__ );
1084 $this->
output(
"done.\n" );
1091 $this->
output(
"...site_stats is populated..." );
1092 $row = $this->db->selectRow(
'site_stats',
'*', [
'ss_row_id' => 1 ], __METHOD__ );
1093 if ( $row ===
false ) {
1094 $this->
output(
"data is missing! rebuilding...\n" );
1095 } elseif ( isset( $row->site_stats ) && $row->ss_total_pages == -1 ) {
1096 $this->
output(
"missing ss_total_pages, rebuilding...\n" );
1098 $this->
output(
"done.\n" );
1105 # Common updater functions
1111 $activeUsers = $this->db->selectField(
'site_stats',
'ss_active_users',
'', __METHOD__ );
1112 if ( $activeUsers == -1 ) {
1113 $activeUsers = $this->db->selectField(
'recentchanges',
1114 'COUNT( DISTINCT rc_user_text )',
1115 [
'rc_user != 0',
'rc_bot' => 0,
"rc_log_type != 'newusers'" ], __METHOD__
1117 $this->db->update(
'site_stats',
1118 [
'ss_active_users' => intval( $activeUsers ) ],
1119 [
'ss_row_id' => 1 ], __METHOD__, [
'LIMIT' => 1 ]
1122 $this->
output(
"...ss_active_users user count set...\n" );
1131 "Populating log_user_text field, printing progress markers. For large\n" .
1132 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1133 "maintenance/populateLogUsertext.php.\n"
1138 $this->
output(
"done.\n" );
1148 "Populating log_search table, printing progress markers. For large\n" .
1149 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1150 "maintenance/populateLogSearch.php.\n" );
1154 $this->
output(
"done.\n" );
1163 if ( $this->db->fieldExists(
'categorylinks',
'cl_collation', __METHOD__ ) ) {
1164 if ( $this->db->selectField(
1171 $this->
output(
"...collations up-to-date.\n" );
1176 $this->
output(
"Updating category collations..." );
1179 $this->
output(
"...done.\n" );
1187 if ( $this->db->tableExists(
'user_properties' ) ) {
1190 $this->
output(
"done.\n" );
1200 if ( !$this->
doTable(
'profiling' ) ) {
1204 $profileToDb =
false;
1207 if (
$out ===
'db' ) {
1208 $profileToDb =
true;
1209 } elseif ( is_array(
$out ) && in_array(
'db',
$out ) ) {
1210 $profileToDb =
true;
1214 if ( $profileToDb && !$this->db->tableExists(
'profiling', __METHOD__ ) ) {
1215 $this->
applyPatch(
'patch-profiling.sql',
false,
'Add profiling table' );
1226 $cl = $this->maintenance->runChild(
1229 $this->
output(
"Rebuilding localisation cache...\n" );
1232 $this->
output(
"done.\n" );
1243 $this->
output(
"Turning off Content Handler DB fields for this part of upgrade.\n" );
1255 if ( $this->holdContentHandlerUseDB ) {
1256 $this->
output(
"Content Handler DB fields should be usable now.\n" );
1271 "Migrating comments to the 'comments' table, printing progress markers. For large\n" .
1272 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1273 "maintenance/migrateComments.php.\n"
1276 $ok = $task->execute();
1277 $this->
output( $ok ?
"done.\n" :
"errors were encountered.\n" );
1288 if ( $this->
tableExists(
'image_comment_temp' ) ) {
1289 if ( $wgCommentTableSchemaMigrationStage >
MIGRATION_OLD ) {
1290 $this->
output(
"Merging image_comment_temp into the image table\n" );
1291 $task = $this->maintenance->runChild(
1295 $ok = $task->execute();
1296 $this->
output( $ok ?
"done.\n" :
"errors were encountered.\n" );
1301 $this->
dropTable(
'image_comment_temp' );
1316 "Migrating actors to the 'actor' table, printing progress markers. For large\n" .
1317 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1318 "maintenance/migrateActors.php.\n"
1320 $task = $this->maintenance->runChild(
'MigrateActors',
'migrateActors.php' );
1321 $ok = $task->execute();
1322 $this->
output( $ok ?
"done.\n" :
"errors were encountered.\n" );
1331 if ( $this->db->fieldExists(
'archive',
'ar_text', __METHOD__ ) ) {
1332 $this->
output(
"Migrating archive ar_text to modern storage.\n" );
1335 if ( $task->execute() ) {
1336 $this->
applyPatch(
'patch-drop-ar_text.sql',
false,
1337 'Dropping ar_text and ar_flags columns' );
1347 $info = $this->db->fieldInfo(
'archive',
'ar_rev_id', __METHOD__ );
1349 throw new MWException(
'Missing ar_rev_id field of archive table. Should not happen.' );
1351 if ( $info->isNullable() ) {
1352 $this->
output(
"Populating ar_rev_id.\n" );
1353 $task = $this->maintenance->runChild(
'PopulateArchiveRevId',
'populateArchiveRevId.php' );
1354 if ( $task->execute() ) {
1355 $this->
applyPatch(
'patch-ar_rev_id-not-null.sql',
false,
1356 'Making ar_rev_id not nullable' );
1366 if ( !$this->
updateRowExists(
'populate externallinks.el_index_60' ) ) {
1368 "Populating el_index_60 field, printing progress markers. For large\n" .
1369 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1370 "maintenance/populateExternallinksIndex60.php.\n"
1372 $task = $this->maintenance->runChild(
'PopulateExternallinksIndex60',
1373 'populateExternallinksIndex60.php' );
1375 $this->
output(
"done.\n" );
1389 "Migrating revision data to the MCR 'slot' and 'content' tables, printing progress markers.\n" .
1390 "For large databases, you may want to hit Ctrl-C and do this manually with\n" .
1391 "maintenance/populateContentTables.php.\n"
1393 $task = $this->maintenance->runChild(
1396 $ok = $task->execute();
1397 $this->
output( $ok ?
"done.\n" :
"errors were encountered.\n" );
output( $str)
Output some text.
dropIndex( $table, $index, $patch, $fullpath=false)
Drop an index from an existing table.
modifyExtensionTable( $tableName, $sqlPath)
dropTable( $table, $patch=false, $fullpath=false)
If the specified table exists, drop it, or execute the patch if one is provided.
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. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header '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). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. '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
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.
populateExternallinksIndex60()
Populates the externallinks.el_index_60 field.
$wgAutoloadClasses['ReplaceTextHooks']
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.
migrateImageCommentTemp()
Merge image_comment_temp into the image table.
doMigrateUserOptions()
Migrates user options from the user table blob to user_properties.
populateContentTables()
Populates the MCR content tables.
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.
int $wgMultiContentRevisionSchemaMigrationStage
RevisionStore table schema migration stage (content, slots, content_models & slot_roles tables).
getPostDatabaseUpdateMaintenance()
setDB(IDatabase $db)
Sets database object to be returned by getDB().
appendLine( $line)
Append a line to the open filehandle.
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.
const REPLICATION_WAIT_TIMEOUT
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.
$wgProfiler
Profiler configuration.
renameIndex( $table, $oldIndex, $newIndex, $skipBothIndexExistWarning, $patch, $fullpath=false)
Rename an index from an existing table.
getExtensionUpdates()
Get the list of extension-defined updates.
migrateArchiveText()
Migrate ar_text to modern storage.
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.
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
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.
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
Fake maintenance wrapper, mostly used for the web installer/updater.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
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.
Allows to change the fields on the form that will be generated $name
__construct(Database &$db, $shared, Maintenance $maintenance=null)
populateArchiveRevId()
Populate ar_rev_id, then make it not nullable.
canUseNewUpdatelog()
Updatelog was changed in 1.17 to have a ul_value column so we can record more information about what ...
runMaintenance( $class, $script)
Run a maintenance script.
resource $fileHandle
File handle for SQL output.
const SCHEMA_COMPAT_WRITE_NEW
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.
doLogUsertextPopulation()
Populates the log_user_text field in the logging table.
static newForDB(Database $db, $shared=false, Maintenance $maintenance=null)
addExtensionField( $tableName, $columnName, $sqlPath)
modifyField( $table, $field, $patch, $fullpath=false)
Modify an existing field.
writeSchemaUpdateFile(array $schemaUpdate=[])
addIndexIfNoneExist( $table, $indexes, $patch, $fullpath=false)
Add a new index to an existing table if none of the given indexes exist.
$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.
migrateActors()
Migrate actors to the new 'actor' table.
dropExtensionField( $tableName, $columnName, $sqlPath)
purgeCache()
Purge various database caches.
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)
$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
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.