Go to the documentation of this file.
27 require_once __DIR__ .
'/Maintenance.php';
54 parent::__construct();
55 $this->
addDescription(
'Find and fix pages affected by namespace addition/removal' );
56 $this->
addOption(
'fix',
'Attempt to automatically fix errors' );
57 $this->
addOption(
'merge',
"Instead of renaming conflicts, do a history merge with " .
58 "the correct title" );
59 $this->
addOption(
'add-suffix',
"Dupes will be renamed with correct namespace with " .
60 "<text> appended after the article name",
false,
true );
61 $this->
addOption(
'add-prefix',
"Dupes will be renamed with correct namespace with " .
62 "<text> prepended before the article name",
false,
true );
63 $this->
addOption(
'source-pseudo-namespace',
"Move all pages with the given source " .
64 "prefix (with an implied colon following it). If --dest-namespace is not specified, " .
65 "the colon will be replaced with a hyphen.",
67 $this->
addOption(
'dest-namespace',
"In combination with --source-pseudo-namespace, " .
68 "specify the namespace ID of the destination.",
false,
true );
69 $this->
addOption(
'move-talk',
"If this is specified, pages in the Talk namespace that " .
70 "begin with a conflicting prefix will be renamed, for example " .
71 "Talk:File:Foo -> File_Talk:Foo" );
80 'add-suffix' => $this->
getOption(
'add-suffix',
'' ),
81 'add-prefix' => $this->
getOption(
'add-prefix',
'' ),
82 'move-talk' => $this->
hasOption(
'move-talk' ),
83 'source-pseudo-namespace' => $this->
getOption(
'source-pseudo-namespace',
'' ),
84 'dest-namespace' => intval( $this->
getOption(
'dest-namespace', 0 ) ) ];
86 if (
$options[
'source-pseudo-namespace'] !==
'' ) {
93 $this->
output(
"\nLooks good!\n" );
95 $this->
output(
"\nOh noeees\n" );
109 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
115 $name = $contLang->ucfirst( $prefix );
122 if (
$name !==
'' ) {
123 $spaces[
$name] = $ns;
126 foreach ( $contLang->getNamespaces()
as $ns =>
$name ) {
127 if (
$name !==
'' ) {
128 $spaces[
$name] = $ns;
132 $spaces[
$name] = $ns;
134 foreach ( $contLang->getNamespaceAliases()
as $name => $ns ) {
135 $spaces[
$name] = $ns;
140 foreach ( $spaces
as $name => $ns ) {
142 $moreNames[] = $contLang->uc(
$name );
143 $moreNames[] = $contLang->ucfirst( $contLang->lc(
$name ) );
144 $moreNames[] = $contLang->ucwords(
$name );
145 $moreNames[] = $contLang->ucwords( $contLang->lc(
$name ) );
146 $moreNames[] = $contLang->ucwordbreaks(
$name );
147 $moreNames[] = $contLang->ucwordbreaks( $contLang->lc(
$name ) );
149 foreach ( $moreNames
as $altName ) {
150 $moreNames[] = $contLang->lcfirst( $altName );
152 $moreNames[] = $contLang->lcfirst(
$name );
154 foreach ( array_unique( $moreNames )
as $altName ) {
155 if ( $altName !==
$name ) {
156 $spaces[$altName] = $ns;
163 $origSpaces = $spaces;
164 uksort( $spaces,
function ( $a, $b )
use ( $origSpaces ) {
165 return $origSpaces[$a] <=> $origSpaces[$b]
170 foreach ( $spaces
as $name => $ns ) {
174 $this->
output(
"{$this->totalPages} pages to fix, " .
175 "{$this->resolvablePages} were resolvable.\n\n" );
177 foreach ( $spaces
as $name => $ns ) {
204 [
'rd_interwiki' =>
null ] );
206 [
'rd_interwiki' =>
'' ] );
210 $this->
output(
"{$this->totalLinks} links to fix, " .
211 "{$this->resolvableLinks} were resolvable.\n" );
222 $result = MediaWikiServices::getInstance()->getInterwikiLookup()->getAllPrefixes();
225 $prefixes[] = $row[
'iw_prefix'];
241 $count = $targets->numRows();
242 $this->totalPages += $count;
247 $dryRunNote =
$options[
'fix'] ?
'' :
' DRY RUN ONLY';
250 foreach ( $targets
as $row ) {
254 $row->page_namespace, $row->page_title,
$options );
257 $logStatus =
'invalid title';
259 } elseif ( $newTitle->exists() ) {
261 if ( $this->
canMerge( $row->page_id, $newTitle, $logStatus ) ) {
268 $logStatus =
'dest title exists and --add-prefix not specified';
273 $logStatus =
'alternate title is invalid';
274 } elseif ( $newTitle->exists() ) {
276 $logStatus =
'title conflict';
279 $logStatus =
'alternate';
284 $logStatus =
'no conflict';
289 $logTitle =
"id={$row->page_id} ns={$row->page_namespace} dbk={$row->page_title}";
294 $this->
output(
"$logTitle *** $logStatus\n" );
298 $this->
output(
"$logTitle -> " .
299 $newTitle->getPrefixedDBkey() .
" ($logStatus)$dryRunNote\n" );
302 $pageOK = $this->
movePage( $row->page_id, $newTitle );
306 $this->
output(
"$logTitle => " .
307 $newTitle->getPrefixedDBkey() .
" (merge)$dryRunNote\n" );
310 $pageOK = $this->
mergePage( $row, $newTitle );
316 $this->resolvablePages++;
338 $fromField =
"{$fieldPrefix}_from";
339 $namespaceField =
"{$fieldPrefix}_namespace";
340 $titleField =
"{$fieldPrefix}_title";
343 $res = $this->db->select(
345 [ $fromField, $namespaceField, $titleField ],
346 array_merge( $batchConds, $extraConds, [
347 $namespaceField => 0,
348 $titleField . $this->db->buildLike(
"$name:", $this->db->anyString() )
352 'ORDER BY' => [ $titleField, $fromField ],
353 'LIMIT' => $batchSize
357 if (
$res->numRows() == 0 ) {
360 foreach (
$res as $row ) {
361 $logTitle =
"from={$row->$fromField} ns={$row->$namespaceField} " .
362 "dbk={$row->$titleField}";
364 $row->$namespaceField, $row->$titleField,
$options );
367 $this->
output(
"$table $logTitle *** INVALID\n" );
370 $this->resolvableLinks++;
372 $this->
output(
"$table $logTitle -> " .
373 $destTitle->getPrefixedDBkey() .
" DRY RUN\n" );
377 $this->db->update( $table,
380 $namespaceField => $destTitle->getNamespace(),
381 $titleField => $destTitle->getDBkey()
385 $namespaceField => 0,
386 $titleField => $row->$titleField,
387 $fromField => $row->$fromField
392 $this->
output(
"$table $logTitle -> " .
393 $destTitle->getPrefixedDBkey() .
"\n" );
395 $encLastTitle = $this->db->addQuotes( $row->$titleField );
396 $encLastFrom = $this->db->addQuotes( $row->$fromField );
399 "$titleField > $encLastTitle " .
400 "OR ($titleField = $encLastTitle AND $fromField > $encLastFrom)" ];
414 $prefix =
$options[
'source-pseudo-namespace'];
416 $this->
output(
"Checking prefix \"$prefix\" vs namespace $ns\n" );
438 return $this->db->select(
'page',
445 'page_namespace' => $checkNamespaces,
446 'page_title' . $this->db->buildLike(
"$name:", $this->db->anyString() ),
462 $dbk = substr( $sourceDbk, strlen(
"$name:" ) );
465 $dbk =
"$name-" . $dbk;
473 if ( !$newTitle || !$newTitle->canExist() ) {
490 if ( $prefix ==
'' && $suffix ==
'' ) {
494 $dbk = $prefix . $linkTarget->
getDBkey() . $suffix;
499 if ( !
$title->exists() ) {
513 $this->db->update(
'page',
516 "page_title" => $newLinkTarget->
getDBkey(),
524 $fromNamespaceTables = [
525 [
'pagelinks',
'pl' ],
526 [
'templatelinks',
'tl' ],
527 [
'imagelinks',
'il' ] ];
528 foreach ( $fromNamespaceTables
as $tableInfo ) {
529 list( $table, $fieldPrefix ) = $tableInfo;
530 $this->db->update( $table,
532 [
"{$fieldPrefix}_from_namespace" => $newLinkTarget->
getNamespace() ],
534 [
"{$fieldPrefix}_from" => $id ],
556 if ( $latestSource->getTimestamp() > $latestDest->getTimestamp() ) {
557 $logStatus =
'cannot merge since source is later';
578 $sourceTitle->resetArticleID( $id );
579 $wikiPage =
new WikiPage( $sourceTitle );
580 $wikiPage->loadPageData(
'fromdbmaster' );
584 $this->db->update(
'revision',
586 [
'rev_page' => $destId ],
588 [
'rev_page' => $id ],
591 $this->db->delete(
'page', [
'page_id' => $id ], __METHOD__ );
getTargetList( $ns, $name, $options)
Find pages in main and talk namespaces that have a prefix of the new namespace so we know titles that...
mergePage( $row, Title $newTitle)
Merge page histories.
addDescription( $text)
Set the description text.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED since 1.16! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
__construct()
Default constructor.
static addUpdate(DeferrableUpdate $update, $stage=self::POSTSEND)
Add an update to the deferred list to be run later by execute()
Class representing a MediaWiki article and history.
getArticleID( $flags=0)
Get the article ID for this Title from the link cache, adding it if necessary.
require_once RUN_MAINTENANCE_IF_MAIN
Maintenance script that checks for articles to fix after adding/deleting namespaces.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
static newFromPageId( $pageId, $revId=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given page ID.
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
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
checkAll( $options)
Check all namespaces.
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
getDestinationTitle( $ns, $name, $sourceNs, $sourceDbk, $options)
Get the preferred destination title for a given target page.
IMaintainableDatabase $db
namespace and then decline to actually register it file or subcat img or subcat $title
getAlternateTitle(LinkTarget $linkTarget, $options)
Get an alternative title to move a page to.
execute()
Do the actual work.
canMerge( $id, LinkTarget $linkTarget, &$logStatus)
Determine if we can merge a page.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
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 makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
checkNamespace( $ns, $name, $options)
Check a given prefix and try to move it into the given destination namespace.
movePage( $id, LinkTarget $newLinkTarget)
Move a page.
static isSubject( $index)
Is the given namespace is a subject (non-talk) namespace?
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 but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Allows to change the fields on the form that will be generated $name
$wgNamespaceAliases
Namespace aliases.
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
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 incomplete not yet checked for validity & $retval
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
Update object handling the cleanup of links tables after a page was deleted.
static doUpdates( $mode='run', $stage=self::ALL)
Do any deferred updates and clear the list.
checkLinkTable( $table, $fieldPrefix, $ns, $name, $options, $extraConds=[])
Check and repair the destination fields in a link table.
Represents a title within MediaWiki.
getOption( $name, $default=null)
Get an option, or return the default.
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
$wgCapitalLinks
Set this to false to avoid forcing the first letter of links to capitals.
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 getCanonicalNamespaces( $rebuild=false)
Returns array of all defined namespaces with their canonical (English) names.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
output( $out, $channel=null)
Throw some output to the user.
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
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
hasOption( $name)
Checks to see if a particular option exists.
static getTalk( $index)
Get the talk namespace index for a given namespace.
checkPrefix( $options)
Move the given pseudo-namespace, either replacing the colon with a hyphen (useful for pseudo-namespac...
getInterwikiList()
Get the interwiki list.
Advanced database interface for IDatabase handles that include maintenance methods.