27require_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" );
119 foreach ( MWNamespace::getCanonicalNamespaces() as $ns => $name ) {
121 if ( $name !==
'' ) {
122 $spaces[
$name] = $ns;
125 foreach (
$wgContLang->getNamespaces() as $ns => $name ) {
126 if ( $name !==
'' ) {
127 $spaces[
$name] = $ns;
131 $spaces[
$name] = $ns;
133 foreach (
$wgContLang->getNamespaceAliases() as $name => $ns ) {
134 $spaces[
$name] = $ns;
139 foreach ( $spaces as $name => $ns ) {
148 foreach ( $moreNames as $altName ) {
153 foreach ( array_unique( $moreNames ) as $altName ) {
154 if ( $altName !== $name ) {
155 $spaces[$altName] = $ns;
162 $origSpaces = $spaces;
163 uksort( $spaces,
function ( $a, $b ) use ( $origSpaces ) {
164 if ( $origSpaces[$a] < $origSpaces[$b] ) {
166 } elseif ( $origSpaces[$a] > $origSpaces[$b] ) {
168 } elseif ( $a < $b ) {
170 } elseif ( $a > $b ) {
178 foreach ( $spaces as $name => $ns ) {
182 $this->
output(
"{$this->totalPages} pages to fix, " .
183 "{$this->resolvablePages} were resolvable.\n\n" );
185 foreach ( $spaces as $name => $ns ) {
212 [
'rd_interwiki' =>
null ] );
214 [
'rd_interwiki' =>
'' ] );
218 $this->
output(
"{$this->totalLinks} links to fix, " .
219 "{$this->resolvableLinks} were resolvable.\n" );
230 $result = MediaWikiServices::getInstance()->getInterwikiLookup()->getAllPrefixes();
232 foreach ( $result as $row ) {
233 $prefixes[] = $row[
'iw_prefix'];
249 $count = $targets->numRows();
250 $this->totalPages += $count;
255 $dryRunNote =
$options[
'fix'] ?
'' :
' DRY RUN ONLY';
258 foreach ( $targets as $row ) {
262 $row->page_namespace, $row->page_title,
$options );
265 $logStatus =
'invalid title';
267 } elseif ( $newTitle->exists() ) {
269 if ( $this->
canMerge( $row->page_id, $newTitle, $logStatus ) ) {
276 $logStatus =
'dest title exists and --add-prefix not specified';
281 $logStatus =
'alternate title is invalid';
282 } elseif ( $newTitle->exists() ) {
284 $logStatus =
'title conflict';
287 $logStatus =
'alternate';
292 $logStatus =
'no conflict';
297 $logTitle =
"id={$row->page_id} ns={$row->page_namespace} dbk={$row->page_title}";
302 $this->
output(
"$logTitle *** $logStatus\n" );
306 $this->
output(
"$logTitle -> " .
307 $newTitle->getPrefixedDBkey() .
" ($logStatus)$dryRunNote\n" );
310 $pageOK = $this->
movePage( $row->page_id, $newTitle );
314 $this->
output(
"$logTitle => " .
315 $newTitle->getPrefixedDBkey() .
" (merge)$dryRunNote\n" );
318 $pageOK = $this->
mergePage( $row, $newTitle );
324 $this->resolvablePages++;
346 $fromField =
"{$fieldPrefix}_from";
347 $namespaceField =
"{$fieldPrefix}_namespace";
348 $titleField =
"{$fieldPrefix}_title";
351 $res = $this->db->select(
353 [ $fromField, $namespaceField, $titleField ],
354 array_merge( $batchConds, $extraConds, [
355 $namespaceField => 0,
356 $titleField . $this->db->buildLike(
"$name:", $this->db->anyString() )
360 'ORDER BY' => [ $titleField, $fromField ],
361 'LIMIT' => $batchSize
365 if (
$res->numRows() == 0 ) {
368 foreach (
$res as $row ) {
369 $logTitle =
"from={$row->$fromField} ns={$row->$namespaceField} " .
370 "dbk={$row->$titleField}";
372 $row->$namespaceField, $row->$titleField,
$options );
375 $this->
output(
"$table $logTitle *** INVALID\n" );
378 $this->resolvableLinks++;
380 $this->
output(
"$table $logTitle -> " .
381 $destTitle->getPrefixedDBkey() .
" DRY RUN\n" );
385 $this->db->update( $table,
388 $namespaceField => $destTitle->getNamespace(),
389 $titleField => $destTitle->getDBkey()
393 $namespaceField => 0,
394 $titleField => $row->$titleField,
395 $fromField => $row->$fromField
400 $this->
output(
"$table $logTitle -> " .
401 $destTitle->getPrefixedDBkey() .
"\n" );
403 $encLastTitle = $this->db->addQuotes( $row->$titleField );
404 $encLastFrom = $this->db->addQuotes( $row->$fromField );
407 "$titleField > $encLastTitle " .
408 "OR ($titleField = $encLastTitle AND $fromField > $encLastFrom)" ];
422 $prefix =
$options[
'source-pseudo-namespace'];
424 $this->
output(
"Checking prefix \"$prefix\" vs namespace $ns\n" );
440 if (
$options[
'move-talk'] && MWNamespace::isSubject( $ns ) ) {
446 return $this->db->select(
'page',
453 'page_namespace' => $checkNamespaces,
454 'page_title' . $this->db->buildLike(
"$name:", $this->db->anyString() ),
470 $dbk = substr( $sourceDbk, strlen(
"$name:" ) );
473 $dbk =
"$name-" . $dbk;
476 if ( $sourceNs ==
NS_TALK && MWNamespace::isSubject( $ns ) ) {
478 $destNS = MWNamespace::getTalk( $destNS );
480 $newTitle = Title::makeTitleSafe( $destNS, $dbk );
481 if ( !$newTitle || !$newTitle->canExist() ) {
498 if ( $prefix ==
'' && $suffix ==
'' ) {
502 $dbk = $prefix . $linkTarget->
getDBkey() . $suffix;
503 $title = Title::makeTitleSafe( $linkTarget->
getNamespace(), $dbk );
507 if ( !$title->exists() ) {
521 $this->db->update(
'page',
523 "page_namespace" => $newLinkTarget->getNamespace(),
524 "page_title" => $newLinkTarget->getDBkey(),
532 $fromNamespaceTables = [
533 [
'pagelinks',
'pl' ],
534 [
'templatelinks',
'tl' ],
535 [
'imagelinks',
'il' ] ];
536 foreach ( $fromNamespaceTables as $tableInfo ) {
537 list( $table, $fieldPrefix ) = $tableInfo;
538 $this->db->update( $table,
540 [
"{$fieldPrefix}_from_namespace" => $newLinkTarget->getNamespace() ],
542 [
"{$fieldPrefix}_from" => $id ],
562 $latestDest = Revision::newFromTitle( $linkTarget, 0, Revision::READ_LATEST );
563 $latestSource = Revision::newFromPageId( $id, 0, Revision::READ_LATEST );
564 if ( $latestSource->getTimestamp() > $latestDest->getTimestamp() ) {
565 $logStatus =
'cannot merge since source is later';
585 $sourceTitle = Title::makeTitle( $row->page_namespace, $row->page_title );
586 $sourceTitle->resetArticleID( $id );
587 $wikiPage =
new WikiPage( $sourceTitle );
588 $wikiPage->loadPageData(
'fromdbmaster' );
592 $this->db->update(
'revision',
594 [
'rev_page' => $destId ],
596 [
'rev_page' => $id ],
599 $this->db->delete(
'page', [
'page_id' => $id ], __METHOD__ );
613 DeferredUpdates::doUpdates();
$wgCapitalLinks
Set this to false to avoid forcing the first letter of links to capitals.
$wgNamespaceAliases
Namespace aliases.
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
Update object handling the cleanup of links tables after a page was deleted.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular param exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
Maintenance script that checks for articles to fix after adding/deleting namespaces.
checkLinkTable( $table, $fieldPrefix, $ns, $name, $options, $extraConds=[])
Check and repair the destination fields in a link table.
getAlternateTitle(LinkTarget $linkTarget, $options)
Get an alternative title to move a page to.
execute()
Do the actual work.
IMaintainableDatabase $db
getDestinationTitle( $ns, $name, $sourceNs, $sourceDbk, $options)
Get the preferred destination title for a given target page.
movePage( $id, LinkTarget $newLinkTarget)
Move a page.
getInterwikiList()
Get the interwiki list.
checkNamespace( $ns, $name, $options)
Check a given prefix and try to move it into the given destination namespace.
canMerge( $id, LinkTarget $linkTarget, &$logStatus)
Determine if we can merge a page.
getTargetList( $ns, $name, $options)
Find pages in main and talk namespaces that have a prefix of the new namespace so we know titles that...
__construct()
Default constructor.
checkAll( $options)
Check all namespaces.
checkPrefix( $options)
Move the given pseudo-namespace, either replacing the colon with a hyphen (useful for pseudo-namespac...
mergePage( $row, Title $newTitle)
Merge page histories.
Represents a title within MediaWiki.
getArticleID( $flags=0)
Get the article ID for this Title from the link cache, adding it if necessary.
Class representing a MediaWiki article and history.
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
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
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 local account incomplete not yet checked for validity & $retval
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
namespace and then decline to actually register it file or subcat img or subcat $title
Allows to change the fields on the form that will be generated $name
Advanced database interface for IDatabase handles that include maintenance methods.
require_once RUN_MAINTENANCE_IF_MAIN