Merge "Add dropSequence to postgres"
[lhc/web/wiklou.git] / includes / page / PageArchive.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21 use MediaWiki\MediaWikiServices;
22 use Wikimedia\Rdbms\ResultWrapper;
23 use Wikimedia\Rdbms\IDatabase;
24
25 /**
26 * Used to show archived pages and eventually restore them.
27 */
28 class PageArchive {
29 /** @var Title */
30 protected $title;
31
32 /** @var Status */
33 protected $fileStatus;
34
35 /** @var Status */
36 protected $revisionStatus;
37
38 /** @var Config */
39 protected $config;
40
41 public function __construct( $title, Config $config = null ) {
42 if ( is_null( $title ) ) {
43 throw new MWException( __METHOD__ . ' given a null title.' );
44 }
45 $this->title = $title;
46 if ( $config === null ) {
47 wfDebug( __METHOD__ . ' did not have a Config object passed to it' );
48 $config = MediaWikiServices::getInstance()->getMainConfig();
49 }
50 $this->config = $config;
51 }
52
53 public function doesWrites() {
54 return true;
55 }
56
57 /**
58 * List all deleted pages recorded in the archive table. Returns result
59 * wrapper with (ar_namespace, ar_title, count) fields, ordered by page
60 * namespace/title.
61 *
62 * @return ResultWrapper
63 */
64 public static function listAllPages() {
65 $dbr = wfGetDB( DB_REPLICA );
66
67 return self::listPages( $dbr, '' );
68 }
69
70 /**
71 * List deleted pages recorded in the archive matching the
72 * given term, using search engine archive.
73 * Returns result wrapper with (ar_namespace, ar_title, count) fields.
74 *
75 * @param string $term Search term
76 * @return ResultWrapper
77 */
78 public static function listPagesBySearch( $term ) {
79 $title = Title::newFromText( $term );
80 if ( $title ) {
81 $ns = $title->getNamespace();
82 $termMain = $title->getText();
83 $termDb = $title->getDBkey();
84 } else {
85 // Prolly won't work too good
86 // @todo handle bare namespace names cleanly?
87 $ns = 0;
88 $termMain = $termDb = $term;
89 }
90
91 // Try search engine first
92 $engine = MediaWikiServices::getInstance()->newSearchEngine();
93 $engine->setLimitOffset( 100 );
94 $engine->setNamespaces( [ $ns ] );
95 $results = $engine->searchArchiveTitle( $termMain );
96 if ( !$results->isOK() ) {
97 $results = [];
98 } else {
99 $results = $results->getValue();
100 }
101
102 if ( !$results ) {
103 // Fall back to regular prefix search
104 return self::listPagesByPrefix( $term );
105 }
106
107 $dbr = wfGetDB( DB_REPLICA );
108 $condTitles = array_unique( array_map( function ( Title $t ) {
109 return $t->getDBkey();
110 }, $results ) );
111 $conds = [
112 'ar_namespace' => $ns,
113 $dbr->makeList( [ 'ar_title' => $condTitles ], LIST_OR ) . " OR ar_title " .
114 $dbr->buildLike( $termDb, $dbr->anyString() )
115 ];
116
117 return self::listPages( $dbr, $conds );
118 }
119
120 /**
121 * List deleted pages recorded in the archive table matching the
122 * given title prefix.
123 * Returns result wrapper with (ar_namespace, ar_title, count) fields.
124 *
125 * @param string $prefix Title prefix
126 * @return ResultWrapper
127 */
128 public static function listPagesByPrefix( $prefix ) {
129 $dbr = wfGetDB( DB_REPLICA );
130
131 $title = Title::newFromText( $prefix );
132 if ( $title ) {
133 $ns = $title->getNamespace();
134 $prefix = $title->getDBkey();
135 } else {
136 // Prolly won't work too good
137 // @todo handle bare namespace names cleanly?
138 $ns = 0;
139 }
140
141 $conds = [
142 'ar_namespace' => $ns,
143 'ar_title' . $dbr->buildLike( $prefix, $dbr->anyString() ),
144 ];
145
146 return self::listPages( $dbr, $conds );
147 }
148
149 /**
150 * @param IDatabase $dbr
151 * @param string|array $condition
152 * @return bool|ResultWrapper
153 */
154 protected static function listPages( $dbr, $condition ) {
155 return $dbr->select(
156 [ 'archive' ],
157 [
158 'ar_namespace',
159 'ar_title',
160 'count' => 'COUNT(*)'
161 ],
162 $condition,
163 __METHOD__,
164 [
165 'GROUP BY' => [ 'ar_namespace', 'ar_title' ],
166 'ORDER BY' => [ 'ar_namespace', 'ar_title' ],
167 'LIMIT' => 100,
168 ]
169 );
170 }
171
172 /**
173 * List the revisions of the given page. Returns result wrapper with
174 * various archive table fields.
175 *
176 * @return ResultWrapper
177 */
178 public function listRevisions() {
179 $dbr = wfGetDB( DB_REPLICA );
180 $commentQuery = CommentStore::newKey( 'ar_comment' )->getJoin();
181
182 $tables = [ 'archive' ] + $commentQuery['tables'];
183
184 $fields = [
185 'ar_minor_edit', 'ar_timestamp', 'ar_user', 'ar_user_text',
186 'ar_len', 'ar_deleted', 'ar_rev_id', 'ar_sha1',
187 'ar_page_id'
188 ] + $commentQuery['fields'];
189
190 if ( $this->config->get( 'ContentHandlerUseDB' ) ) {
191 $fields[] = 'ar_content_format';
192 $fields[] = 'ar_content_model';
193 }
194
195 $conds = [ 'ar_namespace' => $this->title->getNamespace(),
196 'ar_title' => $this->title->getDBkey() ];
197
198 $options = [ 'ORDER BY' => 'ar_timestamp DESC' ];
199
200 $join_conds = [] + $commentQuery['joins'];
201
202 ChangeTags::modifyDisplayQuery(
203 $tables,
204 $fields,
205 $conds,
206 $join_conds,
207 $options,
208 ''
209 );
210
211 return $dbr->select( $tables,
212 $fields,
213 $conds,
214 __METHOD__,
215 $options,
216 $join_conds
217 );
218 }
219
220 /**
221 * List the deleted file revisions for this page, if it's a file page.
222 * Returns a result wrapper with various filearchive fields, or null
223 * if not a file page.
224 *
225 * @return ResultWrapper
226 * @todo Does this belong in Image for fuller encapsulation?
227 */
228 public function listFiles() {
229 if ( $this->title->getNamespace() != NS_FILE ) {
230 return null;
231 }
232
233 $dbr = wfGetDB( DB_REPLICA );
234 $fileQuery = ArchivedFile::getQueryInfo();
235 return $dbr->select(
236 $fileQuery['tables'],
237 $fileQuery['fields'],
238 [ 'fa_name' => $this->title->getDBkey() ],
239 __METHOD__,
240 [ 'ORDER BY' => 'fa_timestamp DESC' ],
241 $fileQuery['joins']
242 );
243 }
244
245 /**
246 * Return a Revision object containing data for the deleted revision.
247 * Note that the result *may* or *may not* have a null page ID.
248 *
249 * @param string $timestamp
250 * @return Revision|null
251 */
252 public function getRevision( $timestamp ) {
253 $dbr = wfGetDB( DB_REPLICA );
254 $arQuery = Revision::getArchiveQueryInfo();
255
256 $row = $dbr->selectRow(
257 $arQuery['tables'],
258 $arQuery['fields'],
259 [
260 'ar_namespace' => $this->title->getNamespace(),
261 'ar_title' => $this->title->getDBkey(),
262 'ar_timestamp' => $dbr->timestamp( $timestamp )
263 ],
264 __METHOD__,
265 [],
266 $arQuery['joins']
267 );
268
269 if ( $row ) {
270 return Revision::newFromArchiveRow( $row, [ 'title' => $this->title ] );
271 }
272
273 return null;
274 }
275
276 /**
277 * Return the most-previous revision, either live or deleted, against
278 * the deleted revision given by timestamp.
279 *
280 * May produce unexpected results in case of history merges or other
281 * unusual time issues.
282 *
283 * @param string $timestamp
284 * @return Revision|null Null when there is no previous revision
285 */
286 public function getPreviousRevision( $timestamp ) {
287 $dbr = wfGetDB( DB_REPLICA );
288
289 // Check the previous deleted revision...
290 $row = $dbr->selectRow( 'archive',
291 'ar_timestamp',
292 [ 'ar_namespace' => $this->title->getNamespace(),
293 'ar_title' => $this->title->getDBkey(),
294 'ar_timestamp < ' .
295 $dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ],
296 __METHOD__,
297 [
298 'ORDER BY' => 'ar_timestamp DESC',
299 'LIMIT' => 1 ] );
300 $prevDeleted = $row ? wfTimestamp( TS_MW, $row->ar_timestamp ) : false;
301
302 $row = $dbr->selectRow( [ 'page', 'revision' ],
303 [ 'rev_id', 'rev_timestamp' ],
304 [
305 'page_namespace' => $this->title->getNamespace(),
306 'page_title' => $this->title->getDBkey(),
307 'page_id = rev_page',
308 'rev_timestamp < ' .
309 $dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ],
310 __METHOD__,
311 [
312 'ORDER BY' => 'rev_timestamp DESC',
313 'LIMIT' => 1 ] );
314 $prevLive = $row ? wfTimestamp( TS_MW, $row->rev_timestamp ) : false;
315 $prevLiveId = $row ? intval( $row->rev_id ) : null;
316
317 if ( $prevLive && $prevLive > $prevDeleted ) {
318 // Most prior revision was live
319 return Revision::newFromId( $prevLiveId );
320 } elseif ( $prevDeleted ) {
321 // Most prior revision was deleted
322 return $this->getRevision( $prevDeleted );
323 }
324
325 // No prior revision on this page.
326 return null;
327 }
328
329 /**
330 * Get the text from an archive row containing ar_text, ar_flags and ar_text_id
331 *
332 * @param object $row Database row
333 * @return string
334 */
335 public function getTextFromRow( $row ) {
336 if ( is_null( $row->ar_text_id ) ) {
337 // An old row from MediaWiki 1.4 or previous.
338 // Text is embedded in this row in classic compression format.
339 return Revision::getRevisionText( $row, 'ar_' );
340 }
341
342 // New-style: keyed to the text storage backend.
343 $dbr = wfGetDB( DB_REPLICA );
344 $text = $dbr->selectRow( 'text',
345 [ 'old_text', 'old_flags' ],
346 [ 'old_id' => $row->ar_text_id ],
347 __METHOD__ );
348
349 return Revision::getRevisionText( $text );
350 }
351
352 /**
353 * Fetch (and decompress if necessary) the stored text of the most
354 * recently edited deleted revision of the page.
355 *
356 * If there are no archived revisions for the page, returns NULL.
357 *
358 * @return string|null
359 */
360 public function getLastRevisionText() {
361 $dbr = wfGetDB( DB_REPLICA );
362 $row = $dbr->selectRow( 'archive',
363 [ 'ar_text', 'ar_flags', 'ar_text_id' ],
364 [ 'ar_namespace' => $this->title->getNamespace(),
365 'ar_title' => $this->title->getDBkey() ],
366 __METHOD__,
367 [ 'ORDER BY' => 'ar_timestamp DESC' ] );
368
369 if ( $row ) {
370 return $this->getTextFromRow( $row );
371 }
372
373 return null;
374 }
375
376 /**
377 * Quick check if any archived revisions are present for the page.
378 *
379 * @return bool
380 */
381 public function isDeleted() {
382 $dbr = wfGetDB( DB_REPLICA );
383 $n = $dbr->selectField( 'archive', 'COUNT(ar_title)',
384 [ 'ar_namespace' => $this->title->getNamespace(),
385 'ar_title' => $this->title->getDBkey() ],
386 __METHOD__
387 );
388
389 return ( $n > 0 );
390 }
391
392 /**
393 * Restore the given (or all) text and file revisions for the page.
394 * Once restored, the items will be removed from the archive tables.
395 * The deletion log will be updated with an undeletion notice.
396 *
397 * This also sets Status objects, $this->fileStatus and $this->revisionStatus
398 * (depending what operations are attempted).
399 *
400 * @param array $timestamps Pass an empty array to restore all revisions,
401 * otherwise list the ones to undelete.
402 * @param string $comment
403 * @param array $fileVersions
404 * @param bool $unsuppress
405 * @param User $user User performing the action, or null to use $wgUser
406 * @param string|string[] $tags Change tags to add to log entry
407 * ($user should be able to add the specified tags before this is called)
408 * @return array|bool array(number of file revisions restored, number of image revisions
409 * restored, log message) on success, false on failure.
410 */
411 public function undelete( $timestamps, $comment = '', $fileVersions = [],
412 $unsuppress = false, User $user = null, $tags = null
413 ) {
414 // If both the set of text revisions and file revisions are empty,
415 // restore everything. Otherwise, just restore the requested items.
416 $restoreAll = empty( $timestamps ) && empty( $fileVersions );
417
418 $restoreText = $restoreAll || !empty( $timestamps );
419 $restoreFiles = $restoreAll || !empty( $fileVersions );
420
421 if ( $restoreFiles && $this->title->getNamespace() == NS_FILE ) {
422 $img = wfLocalFile( $this->title );
423 $img->load( File::READ_LATEST );
424 $this->fileStatus = $img->restore( $fileVersions, $unsuppress );
425 if ( !$this->fileStatus->isOK() ) {
426 return false;
427 }
428 $filesRestored = $this->fileStatus->successCount;
429 } else {
430 $filesRestored = 0;
431 }
432
433 if ( $restoreText ) {
434 $this->revisionStatus = $this->undeleteRevisions( $timestamps, $unsuppress, $comment );
435 if ( !$this->revisionStatus->isOK() ) {
436 return false;
437 }
438
439 $textRestored = $this->revisionStatus->getValue();
440 } else {
441 $textRestored = 0;
442 }
443
444 // Touch the log!
445
446 if ( !$textRestored && !$filesRestored ) {
447 wfDebug( "Undelete: nothing undeleted...\n" );
448
449 return false;
450 }
451
452 if ( $user === null ) {
453 global $wgUser;
454 $user = $wgUser;
455 }
456
457 $logEntry = new ManualLogEntry( 'delete', 'restore' );
458 $logEntry->setPerformer( $user );
459 $logEntry->setTarget( $this->title );
460 $logEntry->setComment( $comment );
461 $logEntry->setTags( $tags );
462 $logEntry->setParameters( [
463 ':assoc:count' => [
464 'revisions' => $textRestored,
465 'files' => $filesRestored,
466 ],
467 ] );
468
469 Hooks::run( 'ArticleUndeleteLogEntry', [ $this, &$logEntry, $user ] );
470
471 $logid = $logEntry->insert();
472 $logEntry->publish( $logid );
473
474 return [ $textRestored, $filesRestored, $comment ];
475 }
476
477 /**
478 * This is the meaty bit -- It restores archived revisions of the given page
479 * to the revision table.
480 *
481 * @param array $timestamps Pass an empty array to restore all revisions,
482 * otherwise list the ones to undelete.
483 * @param bool $unsuppress Remove all ar_deleted/fa_deleted restrictions of seletected revs
484 * @param string $comment
485 * @throws ReadOnlyError
486 * @return Status Status object containing the number of revisions restored on success
487 */
488 private function undeleteRevisions( $timestamps, $unsuppress = false, $comment = '' ) {
489 if ( wfReadOnly() ) {
490 throw new ReadOnlyError();
491 }
492
493 $dbw = wfGetDB( DB_MASTER );
494 $dbw->startAtomic( __METHOD__ );
495
496 $restoreAll = empty( $timestamps );
497
498 # Does this page already exist? We'll have to update it...
499 $article = WikiPage::factory( $this->title );
500 # Load latest data for the current page (T33179)
501 $article->loadPageData( 'fromdbmaster' );
502 $oldcountable = $article->isCountable();
503
504 $page = $dbw->selectRow( 'page',
505 [ 'page_id', 'page_latest' ],
506 [ 'page_namespace' => $this->title->getNamespace(),
507 'page_title' => $this->title->getDBkey() ],
508 __METHOD__,
509 [ 'FOR UPDATE' ] // lock page
510 );
511
512 if ( $page ) {
513 $makepage = false;
514 # Page already exists. Import the history, and if necessary
515 # we'll update the latest revision field in the record.
516
517 # Get the time span of this page
518 $previousTimestamp = $dbw->selectField( 'revision', 'rev_timestamp',
519 [ 'rev_id' => $page->page_latest ],
520 __METHOD__ );
521
522 if ( $previousTimestamp === false ) {
523 wfDebug( __METHOD__ . ": existing page refers to a page_latest that does not exist\n" );
524
525 $status = Status::newGood( 0 );
526 $status->warning( 'undeleterevision-missing' );
527 $dbw->endAtomic( __METHOD__ );
528
529 return $status;
530 }
531 } else {
532 # Have to create a new article...
533 $makepage = true;
534 $previousTimestamp = 0;
535 }
536
537 $oldWhere = [
538 'ar_namespace' => $this->title->getNamespace(),
539 'ar_title' => $this->title->getDBkey(),
540 ];
541 if ( !$restoreAll ) {
542 $oldWhere['ar_timestamp'] = array_map( [ &$dbw, 'timestamp' ], $timestamps );
543 }
544
545 $commentQuery = CommentStore::newKey( 'ar_comment' )->getJoin();
546
547 $tables = [ 'archive', 'revision' ] + $commentQuery['tables'];
548
549 $fields = [
550 'ar_id',
551 'ar_rev_id',
552 'rev_id',
553 'ar_text',
554 'ar_user',
555 'ar_user_text',
556 'ar_timestamp',
557 'ar_minor_edit',
558 'ar_flags',
559 'ar_text_id',
560 'ar_deleted',
561 'ar_page_id',
562 'ar_len',
563 'ar_sha1'
564 ] + $commentQuery['fields'];
565
566 if ( $this->config->get( 'ContentHandlerUseDB' ) ) {
567 $fields[] = 'ar_content_format';
568 $fields[] = 'ar_content_model';
569 }
570
571 $join_conds = [
572 'revision' => [ 'LEFT JOIN', 'ar_rev_id=rev_id' ],
573 ] + $commentQuery['joins'];
574
575 /**
576 * Select each archived revision...
577 */
578 $result = $dbw->select(
579 $tables,
580 $fields,
581 $oldWhere,
582 __METHOD__,
583 /* options */
584 [ 'ORDER BY' => 'ar_timestamp' ],
585 $join_conds
586 );
587
588 $rev_count = $result->numRows();
589 if ( !$rev_count ) {
590 wfDebug( __METHOD__ . ": no revisions to restore\n" );
591
592 $status = Status::newGood( 0 );
593 $status->warning( "undelete-no-results" );
594 $dbw->endAtomic( __METHOD__ );
595
596 return $status;
597 }
598
599 // We use ar_id because there can be duplicate ar_rev_id even for the same
600 // page. In this case, we may be able to restore the first one.
601 $restoreFailedArIds = [];
602
603 // Map rev_id to the ar_id that is allowed to use it. When checking later,
604 // if it doesn't match, the current ar_id can not be restored.
605
606 // Value can be an ar_id or -1 (-1 means no ar_id can use it, since the
607 // rev_id is taken before we even start the restore).
608 $allowedRevIdToArIdMap = [];
609
610 $latestRestorableRow = null;
611
612 foreach ( $result as $row ) {
613 if ( $row->ar_rev_id ) {
614 // rev_id is taken even before we start restoring.
615 if ( $row->ar_rev_id === $row->rev_id ) {
616 $restoreFailedArIds[] = $row->ar_id;
617 $allowedRevIdToArIdMap[$row->ar_rev_id] = -1;
618 } else {
619 // rev_id is not taken yet in the DB, but it might be taken
620 // by a prior revision in the same restore operation. If
621 // not, we need to reserve it.
622 if ( isset( $allowedRevIdToArIdMap[$row->ar_rev_id] ) ) {
623 $restoreFailedArIds[] = $row->ar_id;
624 } else {
625 $allowedRevIdToArIdMap[$row->ar_rev_id] = $row->ar_id;
626 $latestRestorableRow = $row;
627 }
628 }
629 } else {
630 // If ar_rev_id is null, there can't be a collision, and a
631 // rev_id will be chosen automatically.
632 $latestRestorableRow = $row;
633 }
634 }
635
636 $result->seek( 0 ); // move back
637
638 $oldPageId = 0;
639 if ( $latestRestorableRow !== null ) {
640 $oldPageId = (int)$latestRestorableRow->ar_page_id; // pass this to ArticleUndelete hook
641
642 // grab the content to check consistency with global state before restoring the page.
643 $revision = Revision::newFromArchiveRow( $latestRestorableRow,
644 [
645 'title' => $article->getTitle(), // used to derive default content model
646 ]
647 );
648 $user = User::newFromName( $revision->getUserText( Revision::RAW ), false );
649 $content = $revision->getContent( Revision::RAW );
650
651 // NOTE: article ID may not be known yet. prepareSave() should not modify the database.
652 $status = $content->prepareSave( $article, 0, -1, $user );
653 if ( !$status->isOK() ) {
654 $dbw->endAtomic( __METHOD__ );
655
656 return $status;
657 }
658 }
659
660 $newid = false; // newly created page ID
661 $restored = 0; // number of revisions restored
662 /** @var Revision $revision */
663 $revision = null;
664 $restoredPages = [];
665 // If there are no restorable revisions, we can skip most of the steps.
666 if ( $latestRestorableRow === null ) {
667 $failedRevisionCount = $rev_count;
668 } else {
669 if ( $makepage ) {
670 // Check the state of the newest to-be version...
671 if ( !$unsuppress
672 && ( $latestRestorableRow->ar_deleted & Revision::DELETED_TEXT )
673 ) {
674 $dbw->endAtomic( __METHOD__ );
675
676 return Status::newFatal( "undeleterevdel" );
677 }
678 // Safe to insert now...
679 $newid = $article->insertOn( $dbw, $latestRestorableRow->ar_page_id );
680 if ( $newid === false ) {
681 // The old ID is reserved; let's pick another
682 $newid = $article->insertOn( $dbw );
683 }
684 $pageId = $newid;
685 } else {
686 // Check if a deleted revision will become the current revision...
687 if ( $latestRestorableRow->ar_timestamp > $previousTimestamp ) {
688 // Check the state of the newest to-be version...
689 if ( !$unsuppress
690 && ( $latestRestorableRow->ar_deleted & Revision::DELETED_TEXT )
691 ) {
692 $dbw->endAtomic( __METHOD__ );
693
694 return Status::newFatal( "undeleterevdel" );
695 }
696 }
697
698 $newid = false;
699 $pageId = $article->getId();
700 }
701
702 foreach ( $result as $row ) {
703 // Check for key dupes due to needed archive integrity.
704 if ( $row->ar_rev_id && $allowedRevIdToArIdMap[$row->ar_rev_id] !== $row->ar_id ) {
705 continue;
706 }
707 // Insert one revision at a time...maintaining deletion status
708 // unless we are specifically removing all restrictions...
709 $revision = Revision::newFromArchiveRow( $row,
710 [
711 'page' => $pageId,
712 'title' => $this->title,
713 'deleted' => $unsuppress ? 0 : $row->ar_deleted
714 ] );
715
716 // This will also copy the revision to ip_changes if it was an IP edit.
717 $revision->insertOn( $dbw );
718
719 $restored++;
720
721 Hooks::run( 'ArticleRevisionUndeleted',
722 [ &$this->title, $revision, $row->ar_page_id ] );
723 $restoredPages[$row->ar_page_id] = true;
724 }
725
726 // Now that it's safely stored, take it out of the archive
727 // Don't delete rows that we failed to restore
728 $toDeleteConds = $oldWhere;
729 $failedRevisionCount = count( $restoreFailedArIds );
730 if ( $failedRevisionCount > 0 ) {
731 $toDeleteConds[] = 'ar_id NOT IN ( ' . $dbw->makeList( $restoreFailedArIds ) . ' )';
732 }
733
734 $dbw->delete( 'archive',
735 $toDeleteConds,
736 __METHOD__ );
737 }
738
739 $status = Status::newGood( $restored );
740
741 if ( $failedRevisionCount > 0 ) {
742 $status->warning(
743 wfMessage( 'undeleterevision-duplicate-revid', $failedRevisionCount ) );
744 }
745
746 // Was anything restored at all?
747 if ( $restored ) {
748 $created = (bool)$newid;
749 // Attach the latest revision to the page...
750 $wasnew = $article->updateIfNewerOn( $dbw, $revision );
751 if ( $created || $wasnew ) {
752 // Update site stats, link tables, etc
753 $article->doEditUpdates(
754 $revision,
755 User::newFromName( $revision->getUserText( Revision::RAW ), false ),
756 [
757 'created' => $created,
758 'oldcountable' => $oldcountable,
759 'restored' => true
760 ]
761 );
762 }
763
764 Hooks::run( 'ArticleUndelete',
765 [ &$this->title, $created, $comment, $oldPageId, $restoredPages ] );
766 if ( $this->title->getNamespace() == NS_FILE ) {
767 DeferredUpdates::addUpdate(
768 new HTMLCacheUpdate( $this->title, 'imagelinks', 'file-restore' )
769 );
770 }
771 }
772
773 $dbw->endAtomic( __METHOD__ );
774
775 return $status;
776 }
777
778 /**
779 * @return Status
780 */
781 public function getFileStatus() {
782 return $this->fileStatus;
783 }
784
785 /**
786 * @return Status
787 */
788 public function getRevisionStatus() {
789 return $this->revisionStatus;
790 }
791 }