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 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
|
<?php
/**
* 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
*/
use MediaWiki\HookContainer\ProtectedHookAccessorTrait;
use MediaWiki\MediaWikiServices;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\Revision\RevisionStore;
use Wikimedia\Assert\Assert;
use Wikimedia\Rdbms\IDatabase;
use Wikimedia\Rdbms\IResultWrapper;
/**
* Used to show archived pages and eventually restore them.
*/
class PageArchive {
use ProtectedHookAccessorTrait;
/** @var Title */
protected $title;
/** @var Status */
protected $fileStatus;
/** @var Status */
protected $revisionStatus;
/** @var Config */
protected $config;
public function __construct( $title, Config $config = null ) {
if ( $title === null ) {
throw new MWException( __METHOD__ . ' given a null title.' );
}
$this->title = $title;
if ( $config === null ) {
wfDebug( __METHOD__ . ' did not have a Config object passed to it' );
$config = MediaWikiServices::getInstance()->getMainConfig();
}
$this->config = $config;
}
/**
* @return RevisionStore
*/
private function getRevisionStore() {
// TODO: Refactor: delete()/undelete() should live in a PageStore service;
// Methods in PageArchive and RevisionStore that deal with archive revisions
// should move into an ArchiveStore service (but could still be implemented
// together with RevisionStore).
return MediaWikiServices::getInstance()->getRevisionStore();
}
public function doesWrites() {
return true;
}
/**
* List deleted pages recorded in the archive matching the
* given term, using search engine archive.
* Returns result wrapper with (ar_namespace, ar_title, count) fields.
*
* @param string $term Search term
* @return IResultWrapper
*/
public static function listPagesBySearch( $term ) {
$title = Title::newFromText( $term );
if ( $title ) {
$ns = $title->getNamespace();
$termMain = $title->getText();
$termDb = $title->getDBkey();
} else {
// Prolly won't work too good
// @todo handle bare namespace names cleanly?
$ns = 0;
$termMain = $termDb = $term;
}
// Try search engine first
$engine = MediaWikiServices::getInstance()->newSearchEngine();
$engine->setLimitOffset( 100 );
$engine->setNamespaces( [ $ns ] );
$results = $engine->searchArchiveTitle( $termMain );
if ( !$results->isOK() ) {
$results = [];
} else {
$results = $results->getValue();
}
if ( !$results ) {
// Fall back to regular prefix search
return self::listPagesByPrefix( $term );
}
$dbr = wfGetDB( DB_REPLICA );
$condTitles = array_unique( array_map( function ( Title $t ) {
return $t->getDBkey();
}, $results ) );
$conds = [
'ar_namespace' => $ns,
$dbr->makeList( [ 'ar_title' => $condTitles ], LIST_OR ) . " OR ar_title " .
$dbr->buildLike( $termDb, $dbr->anyString() )
];
return self::listPages( $dbr, $conds );
}
/**
* List deleted pages recorded in the archive table matching the
* given title prefix.
* Returns result wrapper with (ar_namespace, ar_title, count) fields.
*
* @param string $prefix Title prefix
* @return IResultWrapper
*/
public static function listPagesByPrefix( $prefix ) {
$dbr = wfGetDB( DB_REPLICA );
$title = Title::newFromText( $prefix );
if ( $title ) {
$ns = $title->getNamespace();
$prefix = $title->getDBkey();
} else {
// Prolly won't work too good
// @todo handle bare namespace names cleanly?
$ns = 0;
}
$conds = [
'ar_namespace' => $ns,
'ar_title' . $dbr->buildLike( $prefix, $dbr->anyString() ),
];
return self::listPages( $dbr, $conds );
}
/**
* @param IDatabase $dbr
* @param string|array $condition
* @return bool|IResultWrapper
*/
protected static function listPages( $dbr, $condition ) {
return $dbr->select(
[ 'archive' ],
[
'ar_namespace',
'ar_title',
'count' => 'COUNT(*)'
],
$condition,
__METHOD__,
[
'GROUP BY' => [ 'ar_namespace', 'ar_title' ],
'ORDER BY' => [ 'ar_namespace', 'ar_title' ],
'LIMIT' => 100,
]
);
}
/**
* List the revisions of the given page. Returns result wrapper with
* various archive table fields.
*
* @return IResultWrapper
*/
public function listRevisions() {
$revisionStore = $this->getRevisionStore();
$queryInfo = $revisionStore->getArchiveQueryInfo();
$conds = [
'ar_namespace' => $this->title->getNamespace(),
'ar_title' => $this->title->getDBkey(),
];
// NOTE: ordering by ar_timestamp and ar_id, to remove ambiguity.
// XXX: Ideally, we would be ordering by ar_timestamp and ar_rev_id, but since we
// don't have an index on ar_rev_id, that causes a file sort.
$options = [ 'ORDER BY' => [ 'ar_timestamp DESC', 'ar_id DESC' ] ];
ChangeTags::modifyDisplayQuery(
$queryInfo['tables'],
$queryInfo['fields'],
$conds,
$queryInfo['joins'],
$options,
''
);
$dbr = wfGetDB( DB_REPLICA );
return $dbr->select(
$queryInfo['tables'],
$queryInfo['fields'],
$conds,
__METHOD__,
$options,
$queryInfo['joins']
);
}
/**
* List the deleted file revisions for this page, if it's a file page.
* Returns a result wrapper with various filearchive fields, or null
* if not a file page.
*
* @return IResultWrapper
* @todo Does this belong in Image for fuller encapsulation?
*/
public function listFiles() {
if ( $this->title->getNamespace() != NS_FILE ) {
return null;
}
$dbr = wfGetDB( DB_REPLICA );
$fileQuery = ArchivedFile::getQueryInfo();
return $dbr->select(
$fileQuery['tables'],
$fileQuery['fields'],
[ 'fa_name' => $this->title->getDBkey() ],
__METHOD__,
[ 'ORDER BY' => 'fa_timestamp DESC' ],
$fileQuery['joins']
);
}
/**
* Return a Revision object containing data for the deleted revision.
*
* @deprecated since 1.32 (soft), 1.35 (hard)
* Use getArchivedRevisionRecord() instead if a revision id is available
*
* @param string $timestamp
* @return Revision|null
*/
public function getRevision( $timestamp ) {
wfDeprecated( __METHOD__, '1.32' );
$revRecord = $this->getRevisionRecordByTimestamp( $timestamp );
return $revRecord ? new Revision( $revRecord ) : null;
}
/**
* Return a RevisionRecord object containing data for the deleted revision.
*
* @internal only for use in SpecialUndelete
*
* @param string $timestamp
* @return RevisionRecord|null
*/
public function getRevisionRecordByTimestamp( $timestamp ) {
$dbr = wfGetDB( DB_REPLICA );
$rec = $this->getRevisionByConditions(
[ 'ar_timestamp' => $dbr->timestamp( $timestamp ) ]
);
return $rec;
}
/**
* Return the archived revision with the given ID.
*
* @deprecated since 1.35, use getArchivedRevisionRecord instead
*
* @param int $revId
* @return Revision|null
*/
public function getArchivedRevision( $revId ) {
wfDeprecated( __METHOD__, '1.35' );
// Protect against code switching from getRevision() passing in a timestamp.
Assert::parameterType( 'integer', $revId, '$revId' );
$revRecord = $this->getArchivedRevisionRecord( $revId );
return $revRecord ? new Revision( $revRecord ) : null;
}
/**
* Return the archived revision with the given ID.
*
* @since 1.35
*
* @param int $revId
* @return RevisionRecord|null
*/
public function getArchivedRevisionRecord( int $revId ) {
return $this->getRevisionByConditions( [ 'ar_rev_id' => $revId ] );
}
/**
* @param array $conditions
* @param array $options
*
* @return RevisionRecord|null
*/
private function getRevisionByConditions( array $conditions, array $options = [] ) {
$dbr = wfGetDB( DB_REPLICA );
$arQuery = $this->getRevisionStore()->getArchiveQueryInfo();
$conditions += [
'ar_namespace' => $this->title->getNamespace(),
'ar_title' => $this->title->getDBkey(),
];
$row = $dbr->selectRow(
$arQuery['tables'],
$arQuery['fields'],
$conditions,
__METHOD__,
$options,
$arQuery['joins']
);
if ( $row ) {
return $this->getRevisionStore()->newRevisionFromArchiveRow( $row, 0, $this->title );
}
return null;
}
/**
* Return the most-previous revision, either live or deleted, against
* the deleted revision given by timestamp.
*
* May produce unexpected results in case of history merges or other
* unusual time issues.
*
* @deprecated since 1.35, use getPreviousRevisionRecord
*
* @param string $timestamp
* @return Revision|null Null when there is no previous revision
*/
public function getPreviousRevision( $timestamp ) {
wfDeprecated( __METHOD__, '1.35' );
$revRecord = $this->getPreviousRevisionRecord( $timestamp );
$rev = $revRecord ? new Revision( $revRecord ) : null;
return $rev;
}
/**
* Return the most-previous revision, either live or deleted, against
* the deleted revision given by timestamp.
*
* May produce unexpected results in case of history merges or other
* unusual time issues.
*
* @since 1.35
*
* @param string $timestamp
* @return RevisionRecord|null Null when there is no previous revision
*/
public function getPreviousRevisionRecord( string $timestamp ) {
$dbr = wfGetDB( DB_REPLICA );
// Check the previous deleted revision...
$row = $dbr->selectRow( 'archive',
[ 'ar_rev_id', 'ar_timestamp' ],
[ 'ar_namespace' => $this->title->getNamespace(),
'ar_title' => $this->title->getDBkey(),
'ar_timestamp < ' .
$dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ],
__METHOD__,
[
'ORDER BY' => 'ar_timestamp DESC',
'LIMIT' => 1 ] );
$prevDeleted = $row ? wfTimestamp( TS_MW, $row->ar_timestamp ) : false;
$prevDeletedId = $row ? intval( $row->ar_rev_id ) : null;
$row = $dbr->selectRow( [ 'page', 'revision' ],
[ 'rev_id', 'rev_timestamp' ],
[
'page_namespace' => $this->title->getNamespace(),
'page_title' => $this->title->getDBkey(),
'page_id = rev_page',
'rev_timestamp < ' .
$dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ],
__METHOD__,
[
'ORDER BY' => 'rev_timestamp DESC',
'LIMIT' => 1 ] );
$prevLive = $row ? wfTimestamp( TS_MW, $row->rev_timestamp ) : false;
$prevLiveId = $row ? intval( $row->rev_id ) : null;
if ( $prevLive && $prevLive > $prevDeleted ) {
// Most prior revision was live
$rec = $this->getRevisionStore()->getRevisionById( $prevLiveId );
} elseif ( $prevDeleted ) {
// Most prior revision was deleted
$rec = $this->getArchivedRevisionRecord( $prevDeletedId );
} else {
$rec = null;
}
return $rec;
}
/**
* Returns the ID of the latest deleted revision.
*
* @return int|false The revision's ID, or false if there is no deleted revision.
*/
public function getLastRevisionId() {
$dbr = wfGetDB( DB_REPLICA );
$revId = $dbr->selectField(
'archive',
'ar_rev_id',
[ 'ar_namespace' => $this->title->getNamespace(),
'ar_title' => $this->title->getDBkey() ],
__METHOD__,
[ 'ORDER BY' => [ 'ar_timestamp DESC', 'ar_id DESC' ] ]
);
return $revId ? intval( $revId ) : false;
}
/**
* Quick check if any archived revisions are present for the page.
* This says nothing about whether the page currently exists in the page table or not.
*
* @return bool
*/
public function isDeleted() {
$dbr = wfGetDB( DB_REPLICA );
$row = $dbr->selectRow(
[ 'archive' ],
'1', // We don't care about the value. Allow the database to optimize.
[ 'ar_namespace' => $this->title->getNamespace(),
'ar_title' => $this->title->getDBkey() ],
__METHOD__
);
return (bool)$row;
}
/**
* Restore the given (or all) text and file revisions for the page.
* Once restored, the items will be removed from the archive tables.
* The deletion log will be updated with an undeletion notice.
*
* Within ::undeleteAsUser, this also sets Status objects, $this->fileStatus and
* $this->revisionStatus (depending what operations are attempted).
*
* @deprecated since 1.35, use ::undeleteAsUser
*
* @param array $timestamps Pass an empty array to restore all revisions,
* otherwise list the ones to undelete.
* @param string $comment
* @param array $fileVersions
* @param bool $unsuppress
* @param User|null $user User performing the action, or null to use $wgUser
* @param string|string[]|null $tags Change tags to add to log entry
* ($user should be able to add the specified tags before this is called)
* @return array|bool [ number of file revisions restored, number of image revisions
* restored, log message ] on success, false on failure.
*/
public function undelete( $timestamps, $comment = '', $fileVersions = [],
$unsuppress = false, User $user = null, $tags = null
) {
wfDeprecated( __METHOD__, '1.35' );
if ( $user === null ) {
global $wgUser;
$user = $wgUser;
}
$result = $this->undeleteAsUser(
$timestamps,
$user,
$comment,
$fileVersions,
$unsuppress,
$tags
);
return $result;
}
/**
* Restore the given (or all) text and file revisions for the page.
* Once restored, the items will be removed from the archive tables.
* The deletion log will be updated with an undeletion notice.
*
* This also sets Status objects, $this->fileStatus and $this->revisionStatus
* (depending what operations are attempted).
*
* @since 1.35
*
* @param array $timestamps Pass an empty array to restore all revisions,
* otherwise list the ones to undelete.
* @param User $user
* @param string $comment
* @param array $fileVersions
* @param bool $unsuppress
* @param string|string[]|null $tags Change tags to add to log entry
* ($user should be able to add the specified tags before this is called)
* @return array|bool [ number of file revisions restored, number of image revisions
* restored, log message ] on success, false on failure.
*/
public function undeleteAsUser(
$timestamps,
User $user,
$comment = '',
$fileVersions = [],
$unsuppress = false,
$tags = null
) {
// If both the set of text revisions and file revisions are empty,
// restore everything. Otherwise, just restore the requested items.
$restoreAll = empty( $timestamps ) && empty( $fileVersions );
$restoreText = $restoreAll || !empty( $timestamps );
$restoreFiles = $restoreAll || !empty( $fileVersions );
if ( $restoreFiles && $this->title->getNamespace() == NS_FILE ) {
/** @var LocalFile $img */
$img = MediaWikiServices::getInstance()->getRepoGroup()->getLocalRepo()
->newFile( $this->title );
$img->load( File::READ_LATEST );
$this->fileStatus = $img->restore( $fileVersions, $unsuppress );
if ( !$this->fileStatus->isOK() ) {
return false;
}
$filesRestored = $this->fileStatus->successCount;
} else {
$filesRestored = 0;
}
if ( $restoreText ) {
$this->revisionStatus = $this->undeleteRevisions( $timestamps, $unsuppress, $comment );
if ( !$this->revisionStatus->isOK() ) {
return false;
}
$textRestored = $this->revisionStatus->getValue();
} else {
$textRestored = 0;
}
// Touch the log!
if ( !$textRestored && !$filesRestored ) {
wfDebug( "Undelete: nothing undeleted..." );
return false;
}
$logEntry = new ManualLogEntry( 'delete', 'restore' );
$logEntry->setPerformer( $user );
$logEntry->setTarget( $this->title );
$logEntry->setComment( $comment );
$logEntry->addTags( $tags );
$logEntry->setParameters( [
':assoc:count' => [
'revisions' => $textRestored,
'files' => $filesRestored,
],
] );
$this->getHookRunner()->onArticleUndeleteLogEntry( $this, $logEntry, $user );
$logid = $logEntry->insert();
$logEntry->publish( $logid );
return [ $textRestored, $filesRestored, $comment ];
}
/**
* This is the meaty bit -- It restores archived revisions of the given page
* to the revision table.
*
* @param array $timestamps Pass an empty array to restore all revisions,
* otherwise list the ones to undelete.
* @param bool $unsuppress Remove all ar_deleted/fa_deleted restrictions of seletected revs
* @param string $comment
* @throws ReadOnlyError
* @return Status Status object containing the number of revisions restored on success
*/
private function undeleteRevisions( $timestamps, $unsuppress = false, $comment = '' ) {
if ( wfReadOnly() ) {
throw new ReadOnlyError();
}
$dbw = wfGetDB( DB_MASTER );
$dbw->startAtomic( __METHOD__ );
$restoreAll = empty( $timestamps );
# Does this page already exist? We'll have to update it...
$article = WikiPage::factory( $this->title );
# Load latest data for the current page (T33179)
$article->loadPageData( 'fromdbmaster' );
$oldcountable = $article->isCountable();
$page = $dbw->selectRow( 'page',
[ 'page_id', 'page_latest' ],
[ 'page_namespace' => $this->title->getNamespace(),
'page_title' => $this->title->getDBkey() ],
__METHOD__,
[ 'FOR UPDATE' ] // lock page
);
if ( $page ) {
$makepage = false;
# Page already exists. Import the history, and if necessary
# we'll update the latest revision field in the record.
# Get the time span of this page
$previousTimestamp = $dbw->selectField( 'revision', 'rev_timestamp',
[ 'rev_id' => $page->page_latest ],
__METHOD__ );
if ( $previousTimestamp === false ) {
wfDebug( __METHOD__ . ": existing page refers to a page_latest that does not exist" );
$status = Status::newGood( 0 );
$status->warning( 'undeleterevision-missing' );
$dbw->endAtomic( __METHOD__ );
return $status;
}
} else {
# Have to create a new article...
$makepage = true;
$previousTimestamp = 0;
}
$oldWhere = [
'ar_namespace' => $this->title->getNamespace(),
'ar_title' => $this->title->getDBkey(),
];
if ( !$restoreAll ) {
$oldWhere['ar_timestamp'] = array_map( [ &$dbw, 'timestamp' ], $timestamps );
}
$revisionStore = $this->getRevisionStore();
$queryInfo = $revisionStore->getArchiveQueryInfo();
$queryInfo['tables'][] = 'revision';
$queryInfo['fields'][] = 'rev_id';
$queryInfo['joins']['revision'] = [ 'LEFT JOIN', 'ar_rev_id=rev_id' ];
/**
* Select each archived revision...
*/
$result = $dbw->select(
$queryInfo['tables'],
$queryInfo['fields'],
$oldWhere,
__METHOD__,
/* options */
[ 'ORDER BY' => 'ar_timestamp' ],
$queryInfo['joins']
);
$rev_count = $result->numRows();
if ( !$rev_count ) {
wfDebug( __METHOD__ . ": no revisions to restore" );
$status = Status::newGood( 0 );
$status->warning( "undelete-no-results" );
$dbw->endAtomic( __METHOD__ );
return $status;
}
// We use ar_id because there can be duplicate ar_rev_id even for the same
// page. In this case, we may be able to restore the first one.
$restoreFailedArIds = [];
// Map rev_id to the ar_id that is allowed to use it. When checking later,
// if it doesn't match, the current ar_id can not be restored.
// Value can be an ar_id or -1 (-1 means no ar_id can use it, since the
// rev_id is taken before we even start the restore).
$allowedRevIdToArIdMap = [];
$latestRestorableRow = null;
foreach ( $result as $row ) {
if ( $row->ar_rev_id ) {
// rev_id is taken even before we start restoring.
if ( $row->ar_rev_id === $row->rev_id ) {
$restoreFailedArIds[] = $row->ar_id;
$allowedRevIdToArIdMap[$row->ar_rev_id] = -1;
} else {
// rev_id is not taken yet in the DB, but it might be taken
// by a prior revision in the same restore operation. If
// not, we need to reserve it.
if ( isset( $allowedRevIdToArIdMap[$row->ar_rev_id] ) ) {
$restoreFailedArIds[] = $row->ar_id;
} else {
$allowedRevIdToArIdMap[$row->ar_rev_id] = $row->ar_id;
$latestRestorableRow = $row;
}
}
} else {
// If ar_rev_id is null, there can't be a collision, and a
// rev_id will be chosen automatically.
$latestRestorableRow = $row;
}
}
$result->seek( 0 ); // move back
$oldPageId = 0;
if ( $latestRestorableRow !== null ) {
$oldPageId = (int)$latestRestorableRow->ar_page_id; // pass this to ArticleUndelete hook
// Grab the content to check consistency with global state before restoring the page.
// XXX: The only current use case is Wikibase, which tries to enforce uniqueness of
// certain things across all pages. There may be a better way to do that.
$revision = $revisionStore->newRevisionFromArchiveRow(
$latestRestorableRow,
0,
$this->title
);
// TODO: use User::newFromUserIdentity from If610c68f4912e
// TODO: The User isn't used for anything in prepareSave()! We should drop it.
$user = User::newFromName( $revision->getUser( RevisionRecord::RAW )->getName(), false );
foreach ( $revision->getSlotRoles() as $role ) {
$content = $revision->getContent( $role, RevisionRecord::RAW );
// NOTE: article ID may not be known yet. prepareSave() should not modify the database.
$status = $content->prepareSave( $article, 0, -1, $user );
if ( !$status->isOK() ) {
$dbw->endAtomic( __METHOD__ );
return $status;
}
}
}
$newid = false; // newly created page ID
$restored = 0; // number of revisions restored
/** @var RevisionRecord|null $revision */
$revision = null;
$restoredPages = [];
// If there are no restorable revisions, we can skip most of the steps.
if ( $latestRestorableRow === null ) {
$failedRevisionCount = $rev_count;
} else {
if ( $makepage ) {
// Check the state of the newest to-be version...
if ( !$unsuppress
&& ( $latestRestorableRow->ar_deleted & RevisionRecord::DELETED_TEXT )
) {
$dbw->endAtomic( __METHOD__ );
return Status::newFatal( "undeleterevdel" );
}
// Safe to insert now...
$newid = $article->insertOn( $dbw, $latestRestorableRow->ar_page_id );
if ( $newid === false ) {
// The old ID is reserved; let's pick another
$newid = $article->insertOn( $dbw );
}
$pageId = $newid;
} else {
// Check if a deleted revision will become the current revision...
if ( $latestRestorableRow->ar_timestamp > $previousTimestamp ) {
// Check the state of the newest to-be version...
if ( !$unsuppress
&& ( $latestRestorableRow->ar_deleted & RevisionRecord::DELETED_TEXT )
) {
$dbw->endAtomic( __METHOD__ );
return Status::newFatal( "undeleterevdel" );
}
}
$newid = false;
$pageId = $article->getId();
}
foreach ( $result as $row ) {
// Check for key dupes due to needed archive integrity.
if ( $row->ar_rev_id && $allowedRevIdToArIdMap[$row->ar_rev_id] !== $row->ar_id ) {
continue;
}
// Insert one revision at a time...maintaining deletion status
// unless we are specifically removing all restrictions...
$revision = $revisionStore->newRevisionFromArchiveRow(
$row,
0,
$this->title,
[
'page_id' => $pageId,
'deleted' => $unsuppress ? 0 : $row->ar_deleted
]
);
// This will also copy the revision to ip_changes if it was an IP edit.
$revisionStore->insertRevisionOn( $revision, $dbw );
$restored++;
$hookRunner = $this->getHookRunner();
$hookRunner->onRevisionUndeleted( $revision, $row->ar_page_id );
// Hook is hard deprecated since 1.35
if ( $this->getHookContainer()->isRegistered( 'ArticleRevisionUndeleted' ) ) {
// Only create the Revision object if it is needed
$legacyRevision = new Revision( $revision );
$hookRunner->onArticleRevisionUndeleted(
$this->title,
$legacyRevision,
$row->ar_page_id
);
}
$restoredPages[$row->ar_page_id] = true;
}
// Now that it's safely stored, take it out of the archive
// Don't delete rows that we failed to restore
$toDeleteConds = $oldWhere;
$failedRevisionCount = count( $restoreFailedArIds );
if ( $failedRevisionCount > 0 ) {
$toDeleteConds[] = 'ar_id NOT IN ( ' . $dbw->makeList( $restoreFailedArIds ) . ' )';
}
$dbw->delete( 'archive',
$toDeleteConds,
__METHOD__ );
}
$status = Status::newGood( $restored );
if ( $failedRevisionCount > 0 ) {
$status->warning(
wfMessage( 'undeleterevision-duplicate-revid', $failedRevisionCount ) );
}
// Was anything restored at all?
if ( $restored ) {
$created = (bool)$newid;
$latestRevId = $article->getLatest();
if ( $latestRevId ) {
// If not found (false), cast to 0 so that the page is updated
// Just to be on the safe side, even though it should always be found
$latestRevTimestamp = (int)$revisionStore->getTimestampFromId(
$latestRevId,
RevisionStore::READ_LATEST
);
} else {
$latestRevTimestamp = 0;
}
if ( $revision->getTimestamp() > $latestRevTimestamp ) {
// Attach the latest revision to the page...
// XXX: updateRevisionOn should probably move into a PageStore service.
$wasnew = $article->updateRevisionOn(
$dbw,
$revision,
$latestRevId
);
} else {
$wasnew = false;
}
if ( $created || $wasnew ) {
// Update site stats, link tables, etc
// TODO: use DerivedPageDataUpdater from If610c68f4912e!
$article->doEditUpdates(
$revision,
User::newFromName( $revision->getUser( RevisionRecord::RAW )->getName(), false ),
[
'created' => $created,
'oldcountable' => $oldcountable,
'restored' => true
]
);
}
$this->getHookRunner()->onArticleUndelete(
$this->title, $created, $comment, $oldPageId, $restoredPages );
if ( $this->title->getNamespace() == NS_FILE ) {
$job = HTMLCacheUpdateJob::newForBacklinks(
$this->title,
'imagelinks',
[ 'causeAction' => 'file-restore' ]
);
JobQueueGroup::singleton()->lazyPush( $job );
}
}
$dbw->endAtomic( __METHOD__ );
return $status;
}
/**
* @return Status
*/
public function getFileStatus() {
return $this->fileStatus;
}
/**
* @return Status
*/
public function getRevisionStatus() {
return $this->revisionStatus;
}
}
|