1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
|
<?php
/**
* Check for articles to fix after adding/deleting namespaces
*
* Copyright © 2005-2007 Brooke Vibber <bvibber@wikimedia.org>
* https://www.mediawiki.org/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup Maintenance
*/
// @codeCoverageIgnoreStart
require_once __DIR__ . '/Maintenance.php';
// @codeCoverageIgnoreEnd
use MediaWiki\Deferred\DeferredUpdates;
use MediaWiki\Deferred\LinksUpdate\LinksDeletionUpdate;
use MediaWiki\Linker\LinkTarget;
use MediaWiki\MainConfigNames;
use MediaWiki\Title\Title;
use MediaWiki\Title\TitleValue;
use Wikimedia\Rdbms\IDBAccessObject;
use Wikimedia\Rdbms\IExpression;
use Wikimedia\Rdbms\IResultWrapper;
use Wikimedia\Rdbms\LikeValue;
/**
* Maintenance script that checks for articles to fix after
* adding/deleting namespaces.
*
* @ingroup Maintenance
*/
class NamespaceDupes extends Maintenance {
/**
* Total number of pages that need fixing that are automatically resolveable
* @var int
*/
private $resolvablePages = 0;
/**
* Total number of pages that need fixing
* @var int
*/
private $totalPages = 0;
/**
* Total number of links that need fixing that are automatically resolveable
* @var int
*/
private $resolvableLinks = 0;
/**
* Total number of erroneous links
* @var int
*/
private $totalLinks = 0;
/**
* Total number of links deleted because they weren't automatically resolveable due to the
* target already existing
* @var int
*/
private $deletedLinks = 0;
public function __construct() {
parent::__construct();
$this->addDescription( 'Find and fix pages affected by namespace addition/removal' );
$this->addOption( 'fix', 'Attempt to automatically fix errors and delete broken links' );
$this->addOption( 'merge', "Instead of renaming conflicts, do a history merge with " .
"the correct title" );
$this->addOption( 'add-suffix', "Dupes will be renamed with correct namespace with " .
"<text> appended after the article name", false, true );
$this->addOption( 'add-prefix', "Dupes will be renamed with correct namespace with " .
"<text> prepended before the article name", false, true );
$this->addOption( 'source-pseudo-namespace', "Move all pages with the given source " .
"prefix (with an implied colon following it). If --dest-namespace is not specified, " .
"the colon will be replaced with a hyphen.",
false, true );
$this->addOption( 'dest-namespace', "In combination with --source-pseudo-namespace, " .
"specify the namespace ID of the destination.", false, true );
$this->addOption( 'move-talk', "If this is specified, pages in the Talk namespace that " .
"begin with a conflicting prefix will be renamed, for example " .
"Talk:File:Foo -> File_Talk:Foo" );
}
public function execute() {
$options = [
'fix' => $this->hasOption( 'fix' ),
'merge' => $this->hasOption( 'merge' ),
'add-suffix' => $this->getOption( 'add-suffix', '' ),
'add-prefix' => $this->getOption( 'add-prefix', '' ),
'move-talk' => $this->hasOption( 'move-talk' ),
'source-pseudo-namespace' => $this->getOption( 'source-pseudo-namespace', '' ),
'dest-namespace' => intval( $this->getOption( 'dest-namespace', 0 ) )
];
if ( $options['source-pseudo-namespace'] !== '' ) {
$retval = $this->checkPrefix( $options );
} else {
$retval = $this->checkAll( $options );
}
if ( $retval ) {
$this->output( "\nLooks good!\n" );
} else {
$this->output( "\nOh noeees\n" );
}
}
/**
* Check all namespaces
*
* @param array $options Associative array of validated command-line options
*
* @return bool
*/
private function checkAll( $options ) {
$contLang = $this->getServiceContainer()->getContentLanguage();
$spaces = [];
// List interwikis first, so they'll be overridden
// by any conflicting local namespaces.
foreach ( $this->getInterwikiList() as $prefix ) {
$name = $contLang->ucfirst( $prefix );
$spaces[$name] = 0;
}
// Now pull in all canonical and alias namespaces...
foreach (
$this->getServiceContainer()->getNamespaceInfo()->getCanonicalNamespaces()
as $ns => $name
) {
// This includes $wgExtraNamespaces
if ( $name !== '' ) {
$spaces[$name] = $ns;
}
}
foreach ( $contLang->getNamespaces() as $ns => $name ) {
if ( $name !== '' ) {
$spaces[$name] = $ns;
}
}
foreach ( $contLang->getNamespaceAliases() as $name => $ns ) {
$spaces[$name] = $ns;
}
// We'll need to check for lowercase keys as well,
// since we're doing case-sensitive searches in the db.
$capitalLinks = $this->getConfig()->get( MainConfigNames::CapitalLinks );
foreach ( $spaces as $name => $ns ) {
$moreNames = [];
$moreNames[] = $contLang->uc( $name );
$moreNames[] = $contLang->ucfirst( $contLang->lc( $name ) );
$moreNames[] = $contLang->ucwords( $name );
$moreNames[] = $contLang->ucwords( $contLang->lc( $name ) );
$moreNames[] = $contLang->ucwordbreaks( $name );
$moreNames[] = $contLang->ucwordbreaks( $contLang->lc( $name ) );
if ( !$capitalLinks ) {
foreach ( $moreNames as $altName ) {
$moreNames[] = $contLang->lcfirst( $altName );
}
$moreNames[] = $contLang->lcfirst( $name );
}
foreach ( array_unique( $moreNames ) as $altName ) {
if ( $altName !== $name ) {
$spaces[$altName] = $ns;
}
}
}
// Sort by namespace index, and if there are two with the same index,
// break the tie by sorting by name
$origSpaces = $spaces;
uksort( $spaces, static function ( $a, $b ) use ( $origSpaces ) {
return $origSpaces[$a] <=> $origSpaces[$b]
?: $a <=> $b;
} );
$ok = true;
foreach ( $spaces as $name => $ns ) {
$ok = $this->checkNamespace( $ns, $name, $options ) && $ok;
}
$this->output(
"{$this->totalPages} pages to fix, " .
"{$this->resolvablePages} were resolvable.\n\n"
);
foreach ( $spaces as $name => $ns ) {
if ( $ns != 0 ) {
/* Fix up link destinations for non-interwiki links only.
*
* For example if a page has [[Foo:Bar]] and then a Foo namespace
* is introduced, pagelinks needs to be updated to have
* page_namespace = NS_FOO.
*
* If instead an interwiki prefix was introduced called "Foo",
* the link should instead be moved to the iwlinks table. If a new
* language is introduced called "Foo", or if there is a pagelink
* [[fr:Bar]] when interlanguage magic links are turned on, the
* link would have to be moved to the langlinks table. Let's put
* those cases in the too-hard basket for now. The consequences are
* not especially severe.
* @fixme Handle interwiki links, and pagelinks to Category:, File:
* which probably need reparsing.
*/
$this->checkLinkTable( 'pagelinks', 'pl', $ns, $name, $options );
$this->checkLinkTable( 'templatelinks', 'tl', $ns, $name, $options );
// The redirect table has interwiki links randomly mixed in, we
// need to filter those out. For example [[w:Foo:Bar]] would
// have rd_interwiki=w and rd_namespace=0, which would match the
// query for a conflicting namespace "Foo" if filtering wasn't done.
$this->checkLinkTable( 'redirect', 'rd', $ns, $name, $options,
[ 'rd_interwiki' => '' ] );
}
}
$this->output(
"{$this->totalLinks} links to fix, " .
"{$this->resolvableLinks} were resolvable, " .
"{$this->deletedLinks} were deleted.\n"
);
return $ok;
}
/**
* @return string[]
*/
private function getInterwikiList() {
$result = $this->getServiceContainer()->getInterwikiLookup()->getAllPrefixes();
return array_column( $result, 'iw_prefix' );
}
/**
* Check a given prefix and try to move it into the given destination namespace
*
* @param int $ns Destination namespace id
* @param string $name
* @param array $options Associative array of validated command-line options
* @return bool
*/
private function checkNamespace( $ns, $name, $options ) {
$targets = $this->getTargetList( $ns, $name, $options );
$count = $targets->numRows();
$this->totalPages += $count;
if ( $count == 0 ) {
return true;
}
$dryRunNote = $options['fix'] ? '' : ' DRY RUN ONLY';
$ok = true;
foreach ( $targets as $row ) {
// Find the new title and determine the action to take
$newTitle = $this->getDestinationTitle(
$ns, $name, $row->page_namespace, $row->page_title );
$logStatus = false;
if ( !$newTitle ) {
if ( $options['add-prefix'] == '' && $options['add-suffix'] == '' ) {
$logStatus = 'invalid title and --add-prefix not specified';
$action = 'abort';
} else {
$action = 'alternate';
}
} elseif ( $newTitle->exists( IDBAccessObject::READ_LATEST ) ) {
if ( $options['merge'] ) {
if ( $this->canMerge( $row->page_id, $newTitle, $logStatus ) ) {
$action = 'merge';
} else {
$action = 'abort';
}
} elseif ( $options['add-prefix'] == '' && $options['add-suffix'] == '' ) {
$action = 'abort';
$logStatus = 'dest title exists and --add-prefix not specified';
} else {
$action = 'alternate';
}
} else {
$action = 'move';
$logStatus = 'no conflict';
}
if ( $action === 'alternate' ) {
[ $ns, $dbk ] = $this->getDestination( $ns, $name, $row->page_namespace,
$row->page_title );
$newTitle = $this->getAlternateTitle( $ns, $dbk, $options );
if ( !$newTitle ) {
$action = 'abort';
$logStatus = 'alternate title is invalid';
} elseif ( $newTitle->exists() ) {
$action = 'abort';
$logStatus = 'alternate title conflicts';
} else {
$action = 'move';
$logStatus = 'alternate';
}
}
// Take the action or log a dry run message
$logTitle = "id={$row->page_id} ns={$row->page_namespace} dbk={$row->page_title}";
$pageOK = true;
switch ( $action ) {
case 'abort':
$this->output( "$logTitle *** $logStatus\n" );
$pageOK = false;
break;
case 'move':
$this->output( "$logTitle -> " .
$newTitle->getPrefixedDBkey() . " ($logStatus)$dryRunNote\n" );
if ( $options['fix'] ) {
$pageOK = $this->movePage( $row->page_id, $newTitle );
}
break;
case 'merge':
$this->output( "$logTitle => " .
$newTitle->getPrefixedDBkey() . " (merge)$dryRunNote\n" );
if ( $options['fix'] ) {
$pageOK = $this->mergePage( $row, $newTitle );
}
break;
}
if ( $pageOK ) {
$this->resolvablePages++;
} else {
$ok = false;
}
}
return $ok;
}
/**
* Check and repair the destination fields in a link table
* @param string $table The link table name
* @param string $fieldPrefix The field prefix in the link table
* @param int $ns Destination namespace id
* @param string $name
* @param array $options Associative array of validated command-line options
* @param array $extraConds Extra conditions for the SQL query
*/
private function checkLinkTable( $table, $fieldPrefix, $ns, $name, $options,
$extraConds = []
) {
$dbw = $this->getPrimaryDB();
$batchConds = [];
$fromField = "{$fieldPrefix}_from";
$batchSize = 100;
$sqb = $dbw->newSelectQueryBuilder()
->select( $fromField )
->where( $extraConds )
->limit( $batchSize );
$linksMigration = $this->getServiceContainer()->getLinksMigration();
if ( isset( $linksMigration::$mapping[$table] ) ) {
$sqb->queryInfo( $linksMigration->getQueryInfo( $table ) );
[ $namespaceField, $titleField ] = $linksMigration->getTitleFields( $table );
$schemaMigrationStage = $linksMigration::$mapping[$table]['config'] === -1
? MIGRATION_NEW
: $this->getConfig()->get( $linksMigration::$mapping[$table]['config'] );
$linkTargetLookup = $this->getServiceContainer()->getLinkTargetLookup();
$targetIdField = $linksMigration::$mapping[$table]['target_id'];
} else {
$sqb->table( $table );
$namespaceField = "{$fieldPrefix}_namespace";
$titleField = "{$fieldPrefix}_title";
$sqb->fields( [ $namespaceField, $titleField ] );
// Variables only used for links migration, init only
$schemaMigrationStage = -1;
$linkTargetLookup = null;
$targetIdField = '';
}
$sqb->andWhere( [
$namespaceField => 0,
$dbw->expr( $titleField, IExpression::LIKE, new LikeValue( "$name:", $dbw->anyString() ) ),
] )
->orderBy( [ $titleField, $fromField ] )
->caller( __METHOD__ );
$updateRowsPerQuery = $this->getConfig()->get( MainConfigNames::UpdateRowsPerQuery );
while ( true ) {
$res = ( clone $sqb )
->andWhere( $batchConds )
->fetchResultSet();
if ( $res->numRows() == 0 ) {
break;
}
$rowsToDeleteIfStillExists = [];
foreach ( $res as $row ) {
$logTitle = "from={$row->$fromField} ns={$row->$namespaceField} " .
"dbk={$row->$titleField}";
$destTitle = $this->getDestinationTitle(
$ns, $name, $row->$namespaceField, $row->$titleField );
$this->totalLinks++;
if ( !$destTitle ) {
$this->output( "$table $logTitle *** INVALID\n" );
continue;
}
$this->resolvableLinks++;
if ( !$options['fix'] ) {
$this->output( "$table $logTitle -> " .
$destTitle->getPrefixedDBkey() . " DRY RUN\n" );
continue;
}
if ( isset( $linksMigration::$mapping[$table] ) ) {
$setValue = [];
if ( $schemaMigrationStage & SCHEMA_COMPAT_WRITE_NEW ) {
$setValue[$targetIdField] = $linkTargetLookup->acquireLinkTargetId( $destTitle, $dbw );
}
if ( $schemaMigrationStage & SCHEMA_COMPAT_WRITE_OLD ) {
$setValue["{$fieldPrefix}_namespace"] = $destTitle->getNamespace();
$setValue["{$fieldPrefix}_title"] = $destTitle->getDBkey();
}
$whereCondition = $linksMigration->getLinksConditions(
$table,
new TitleValue( 0, $row->$titleField )
);
$deleteCondition = $linksMigration->getLinksConditions(
$table,
new TitleValue( (int)$row->$namespaceField, $row->$titleField )
);
} else {
$setValue = [
$namespaceField => $destTitle->getNamespace(),
$titleField => $destTitle->getDBkey()
];
$whereCondition = [
$namespaceField => 0,
$titleField => $row->$titleField
];
$deleteCondition = [
$namespaceField => $row->$namespaceField,
$titleField => $row->$titleField,
];
}
$dbw->newUpdateQueryBuilder()
->update( $table )
->ignore()
->set( $setValue )
->where( [ $fromField => $row->$fromField ] )
->andWhere( $whereCondition )
->caller( __METHOD__ )
->execute();
// In case there is a key conflict on UPDATE IGNORE the row needs deletion
$rowsToDeleteIfStillExists[] = array_merge( [ $fromField => $row->$fromField ], $deleteCondition );
$this->output( "$table $logTitle -> " .
$destTitle->getPrefixedDBkey() . "\n"
);
}
if ( $options['fix'] && count( $rowsToDeleteIfStillExists ) > 0 ) {
$affectedRows = 0;
$deleteBatches = array_chunk( $rowsToDeleteIfStillExists, $updateRowsPerQuery );
foreach ( $deleteBatches as $deleteBatch ) {
$dbw->newDeleteQueryBuilder()
->deleteFrom( $table )
->where( $dbw->factorConds( $deleteBatch ) )
->caller( __METHOD__ )
->execute();
$affectedRows += $dbw->affectedRows();
if ( count( $deleteBatches ) > 1 ) {
$this->waitForReplication();
}
}
$this->deletedLinks += $affectedRows;
$this->resolvableLinks -= $affectedRows;
}
$batchConds = [
$dbw->buildComparison( '>', [
// @phan-suppress-next-line PhanPossiblyUndeclaredVariable rows contains at least one item
$titleField => $row->$titleField,
// @phan-suppress-next-line PhanPossiblyUndeclaredVariable rows contains at least one item
$fromField => $row->$fromField,
] )
];
$this->waitForReplication();
}
}
/**
* Move the given pseudo-namespace, either replacing the colon with a hyphen
* (useful for pseudo-namespaces that conflict with interwiki links) or move
* them to another namespace if specified.
* @param array $options Associative array of validated command-line options
* @return bool
*/
private function checkPrefix( $options ) {
$prefix = $options['source-pseudo-namespace'];
$ns = $options['dest-namespace'];
$this->output( "Checking prefix \"$prefix\" vs namespace $ns\n" );
return $this->checkNamespace( $ns, $prefix, $options );
}
/**
* Find pages in main and talk namespaces that have a prefix of the new
* namespace so we know titles that will need migrating
*
* @param int $ns Destination namespace id
* @param string $name Prefix that is being made a namespace
* @param array $options Associative array of validated command-line options
*
* @return IResultWrapper
*/
private function getTargetList( $ns, $name, $options ) {
$dbw = $this->getPrimaryDB();
if (
$options['move-talk'] &&
$this->getServiceContainer()->getNamespaceInfo()->isSubject( $ns )
) {
$checkNamespaces = [ NS_MAIN, NS_TALK ];
} else {
$checkNamespaces = NS_MAIN;
}
return $dbw->newSelectQueryBuilder()
->select( [ 'page_id', 'page_title', 'page_namespace' ] )
->from( 'page' )
->where( [
'page_namespace' => $checkNamespaces,
$dbw->expr( 'page_title', IExpression::LIKE, new LikeValue( "$name:", $dbw->anyString() ) ),
] )
->caller( __METHOD__ )->fetchResultSet();
}
/**
* Get the preferred destination for a given target page.
* @param int $ns The destination namespace ID
* @param string $name The conflicting prefix
* @param int $sourceNs The source namespace
* @param string $sourceDbk The source DB key (i.e. page_title)
* @return array [ ns, dbkey ], not necessarily valid
*/
private function getDestination( $ns, $name, $sourceNs, $sourceDbk ) {
$dbk = substr( $sourceDbk, strlen( "$name:" ) );
if ( $ns <= 0 ) {
// An interwiki or an illegal namespace like "Special" or "Media"
// try an alternate encoding with '-' for ':'
$dbk = "$name-" . $dbk;
$ns = 0;
}
$destNS = $ns;
$nsInfo = $this->getServiceContainer()->getNamespaceInfo();
if ( $sourceNs == NS_TALK && $nsInfo->isSubject( $ns ) ) {
// This is an associated talk page moved with the --move-talk feature.
$destNS = $nsInfo->getTalk( $destNS );
}
return [ $destNS, $dbk ];
}
/**
* Get the preferred destination title for a given target page.
* @param int $ns The destination namespace ID
* @param string $name The conflicting prefix
* @param int $sourceNs The source namespace
* @param string $sourceDbk The source DB key (i.e. page_title)
* @return Title|false
*/
private function getDestinationTitle( $ns, $name, $sourceNs, $sourceDbk ) {
[ $destNS, $dbk ] = $this->getDestination( $ns, $name, $sourceNs, $sourceDbk );
$newTitle = Title::makeTitleSafe( $destNS, $dbk );
if ( !$newTitle || !$newTitle->canExist() ) {
return false;
}
return $newTitle;
}
/**
* Get an alternative title to move a page to. This is used if the
* preferred destination title already exists.
*
* @param int $ns The destination namespace ID
* @param string $dbk The source DB key (i.e. page_title)
* @param array $options Associative array of validated command-line options
* @return Title|false
*/
private function getAlternateTitle( $ns, $dbk, $options ) {
$prefix = $options['add-prefix'];
$suffix = $options['add-suffix'];
if ( $prefix == '' && $suffix == '' ) {
return false;
}
$newDbk = $prefix . $dbk . $suffix;
return Title::makeTitleSafe( $ns, $newDbk );
}
/**
* Move a page
*
* @param int $id The page_id
* @param LinkTarget $newLinkTarget The new title link target
* @return bool
*/
private function movePage( $id, LinkTarget $newLinkTarget ) {
$dbw = $this->getPrimaryDB();
$dbw->newUpdateQueryBuilder()
->update( 'page' )
->set( [
"page_namespace" => $newLinkTarget->getNamespace(),
"page_title" => $newLinkTarget->getDBkey(),
] )
->where( [
"page_id" => $id,
] )
->caller( __METHOD__ )
->execute();
// Update *_from_namespace in links tables
$fromNamespaceTables = [
[ 'templatelinks', 'tl', [ 'tl_target_id' ] ],
[ 'imagelinks', 'il', [ 'il_to' ] ]
];
if ( $this->getConfig()->get( MainConfigNames::PageLinksSchemaMigrationStage ) & SCHEMA_COMPAT_WRITE_OLD ) {
$fromNamespaceTables[] = [ 'pagelinks', 'pl', [ 'pl_namespace', 'pl_title' ] ];
} else {
$fromNamespaceTables[] = [ 'pagelinks', 'pl', [ 'pl_target_id' ] ];
}
$updateRowsPerQuery = $this->getConfig()->get( MainConfigNames::UpdateRowsPerQuery );
foreach ( $fromNamespaceTables as [ $table, $fieldPrefix, $additionalPrimaryKeyFields ] ) {
$fromField = "{$fieldPrefix}_from";
$fromNamespaceField = "{$fieldPrefix}_from_namespace";
$res = $dbw->newSelectQueryBuilder()
->select( $additionalPrimaryKeyFields )
->from( $table )
->where( [ $fromField => $id ] )
->andWhere( $dbw->expr( $fromNamespaceField, '!=', $newLinkTarget->getNamespace() ) )
->caller( __METHOD__ )
->fetchResultSet();
if ( !$res ) {
continue;
}
$updateConds = [];
foreach ( $res as $row ) {
$updateConds[] = array_merge( [ $fromField => $id ], (array)$row );
}
$updateBatches = array_chunk( $updateConds, $updateRowsPerQuery );
foreach ( $updateBatches as $updateBatch ) {
$dbw->newUpdateQueryBuilder()
->update( $table )
->set( [ $fromNamespaceField => $newLinkTarget->getNamespace() ] )
->where( $dbw->factorConds( $updateBatch ) )
->caller( __METHOD__ )
->execute();
if ( count( $updateBatches ) > 1 ) {
$this->waitForReplication();
}
}
}
return true;
}
/**
* Determine if we can merge a page.
* We check if an inaccessible revision would become the latest and
* deny the merge if so -- it's theoretically possible to update the
* latest revision, but opens a can of worms -- search engine updates,
* recentchanges review, etc.
*
* @param int $id The page_id
* @param LinkTarget $linkTarget The new link target
* @param string &$logStatus This is set to the log status message on failure @phan-output-reference
* @return bool
*/
private function canMerge( $id, LinkTarget $linkTarget, &$logStatus ) {
$revisionLookup = $this->getServiceContainer()->getRevisionLookup();
$latestDest = $revisionLookup->getRevisionByTitle( $linkTarget, 0,
IDBAccessObject::READ_LATEST );
$latestSource = $revisionLookup->getRevisionByPageId( $id, 0,
IDBAccessObject::READ_LATEST );
if ( $latestSource->getTimestamp() > $latestDest->getTimestamp() ) {
$logStatus = 'cannot merge since source is later';
return false;
} else {
return true;
}
}
/**
* Merge page histories
*
* @param stdClass $row Page row
* @param Title $newTitle
* @return bool
*/
private function mergePage( $row, Title $newTitle ) {
$dbw = $this->getPrimaryDB();
$updateRowsPerQuery = $this->getConfig()->get( MainConfigNames::UpdateRowsPerQuery );
$id = $row->page_id;
// Construct the WikiPage object we will need later, while the
// page_id still exists. Note that this cannot use makeTitleSafe(),
// we are deliberately constructing an invalid title.
$sourceTitle = Title::makeTitle( $row->page_namespace, $row->page_title );
$sourceTitle->resetArticleID( $id );
$wikiPage = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $sourceTitle );
$wikiPage->loadPageData( IDBAccessObject::READ_LATEST );
$destId = $newTitle->getArticleID();
$this->beginTransaction( $dbw, __METHOD__ );
$revIds = $dbw->newSelectQueryBuilder()
->select( 'rev_id' )
->from( 'revision' )
->where( [ 'rev_page' => $id ] )
->caller( __METHOD__ )
->fetchFieldValues();
$updateBatches = array_chunk( array_map( 'intval', $revIds ), $updateRowsPerQuery );
foreach ( $updateBatches as $updateBatch ) {
$dbw->newUpdateQueryBuilder()
->update( 'revision' )
->set( [ 'rev_page' => $destId ] )
->where( [ 'rev_id' => $updateBatch ] )
->caller( __METHOD__ )
->execute();
if ( count( $updateBatches ) > 1 ) {
$this->waitForReplication();
}
}
$dbw->newDeleteQueryBuilder()
->deleteFrom( 'page' )
->where( [ 'page_id' => $id ] )
->caller( __METHOD__ )
->execute();
$this->commitTransaction( $dbw, __METHOD__ );
/* Call LinksDeletionUpdate to delete outgoing links from the old title,
* and update category counts.
*
* Calling external code with a fake broken Title is a fairly dubious
* idea. It's necessary because it's quite a lot of code to duplicate,
* but that also makes it fragile since it would be easy for someone to
* accidentally introduce an assumption of title validity to the code we
* are calling.
*/
DeferredUpdates::addUpdate( new LinksDeletionUpdate( $wikiPage ) );
DeferredUpdates::doUpdates();
return true;
}
}
// @codeCoverageIgnoreStart
$maintClass = NamespaceDupes::class;
require_once RUN_MAINTENANCE_IF_MAIN;
// @codeCoverageIgnoreEnd
|