3 * Implements Special:Undelete
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * Used to show archived pages and eventually restore them.
27 * @ingroup SpecialPage
34 protected $fileStatus;
37 protected $revisionStatus;
42 function __construct( $title, Config
$config = null ) {
43 if ( is_null( $title ) ) {
44 throw new MWException( __METHOD__
. ' given a null title.' );
46 $this->title
= $title;
47 if ( $config === null ) {
48 wfDebug( __METHOD__
. ' did not have a Config object passed to it' );
49 $config = ConfigFactory
::getDefaultInstance()->makeConfig( 'main' );
51 $this->config
= $config;
54 public function doesWrites() {
59 * List all deleted pages recorded in the archive table. Returns result
60 * wrapper with (ar_namespace, ar_title, count) fields, ordered by page
63 * @return ResultWrapper
65 public static function listAllPages() {
66 $dbr = wfGetDB( DB_SLAVE
);
68 return self
::listPages( $dbr, '' );
72 * List deleted pages recorded in the archive table matching the
74 * Returns result wrapper with (ar_namespace, ar_title, count) fields.
76 * @param string $prefix Title prefix
77 * @return ResultWrapper
79 public static function listPagesByPrefix( $prefix ) {
80 $dbr = wfGetDB( DB_SLAVE
);
82 $title = Title
::newFromText( $prefix );
84 $ns = $title->getNamespace();
85 $prefix = $title->getDBkey();
87 // Prolly won't work too good
88 // @todo handle bare namespace names cleanly?
93 'ar_namespace' => $ns,
94 'ar_title' . $dbr->buildLike( $prefix, $dbr->anyString() ),
97 return self
::listPages( $dbr, $conds );
101 * @param IDatabase $dbr
102 * @param string|array $condition
103 * @return bool|ResultWrapper
105 protected static function listPages( $dbr, $condition ) {
111 'count' => 'COUNT(*)'
116 'GROUP BY' => [ 'ar_namespace', 'ar_title' ],
117 'ORDER BY' => [ 'ar_namespace', 'ar_title' ],
124 * List the revisions of the given page. Returns result wrapper with
125 * (ar_minor_edit, ar_timestamp, ar_user, ar_user_text, ar_comment) fields.
127 * @return ResultWrapper
129 function listRevisions() {
130 $dbr = wfGetDB( DB_SLAVE
);
132 $tables = [ 'archive' ];
135 'ar_minor_edit', 'ar_timestamp', 'ar_user', 'ar_user_text',
136 'ar_comment', 'ar_len', 'ar_deleted', 'ar_rev_id', 'ar_sha1',
139 if ( $this->config
->get( 'ContentHandlerUseDB' ) ) {
140 $fields[] = 'ar_content_format';
141 $fields[] = 'ar_content_model';
144 $conds = [ 'ar_namespace' => $this->title
->getNamespace(),
145 'ar_title' => $this->title
->getDBkey() ];
147 $options = [ 'ORDER BY' => 'ar_timestamp DESC' ];
151 ChangeTags
::modifyDisplayQuery(
160 return $dbr->select( $tables,
170 * List the deleted file revisions for this page, if it's a file page.
171 * Returns a result wrapper with various filearchive fields, or null
172 * if not a file page.
174 * @return ResultWrapper
175 * @todo Does this belong in Image for fuller encapsulation?
177 function listFiles() {
178 if ( $this->title
->getNamespace() != NS_FILE
) {
182 $dbr = wfGetDB( DB_SLAVE
);
185 ArchivedFile
::selectFields(),
186 [ 'fa_name' => $this->title
->getDBkey() ],
188 [ 'ORDER BY' => 'fa_timestamp DESC' ]
193 * Return a Revision object containing data for the deleted revision.
194 * Note that the result *may* or *may not* have a null page ID.
196 * @param string $timestamp
197 * @return Revision|null
199 function getRevision( $timestamp ) {
200 $dbr = wfGetDB( DB_SLAVE
);
217 if ( $this->config
->get( 'ContentHandlerUseDB' ) ) {
218 $fields[] = 'ar_content_format';
219 $fields[] = 'ar_content_model';
222 $row = $dbr->selectRow( 'archive',
224 [ 'ar_namespace' => $this->title
->getNamespace(),
225 'ar_title' => $this->title
->getDBkey(),
226 'ar_timestamp' => $dbr->timestamp( $timestamp ) ],
230 return Revision
::newFromArchiveRow( $row, [ 'title' => $this->title
] );
237 * Return the most-previous revision, either live or deleted, against
238 * the deleted revision given by timestamp.
240 * May produce unexpected results in case of history merges or other
241 * unusual time issues.
243 * @param string $timestamp
244 * @return Revision|null Null when there is no previous revision
246 function getPreviousRevision( $timestamp ) {
247 $dbr = wfGetDB( DB_SLAVE
);
249 // Check the previous deleted revision...
250 $row = $dbr->selectRow( 'archive',
252 [ 'ar_namespace' => $this->title
->getNamespace(),
253 'ar_title' => $this->title
->getDBkey(),
255 $dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ],
258 'ORDER BY' => 'ar_timestamp DESC',
260 $prevDeleted = $row ?
wfTimestamp( TS_MW
, $row->ar_timestamp
) : false;
262 $row = $dbr->selectRow( [ 'page', 'revision' ],
263 [ 'rev_id', 'rev_timestamp' ],
265 'page_namespace' => $this->title
->getNamespace(),
266 'page_title' => $this->title
->getDBkey(),
267 'page_id = rev_page',
269 $dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ],
272 'ORDER BY' => 'rev_timestamp DESC',
274 $prevLive = $row ?
wfTimestamp( TS_MW
, $row->rev_timestamp
) : false;
275 $prevLiveId = $row ?
intval( $row->rev_id
) : null;
277 if ( $prevLive && $prevLive > $prevDeleted ) {
278 // Most prior revision was live
279 return Revision
::newFromId( $prevLiveId );
280 } elseif ( $prevDeleted ) {
281 // Most prior revision was deleted
282 return $this->getRevision( $prevDeleted );
285 // No prior revision on this page.
290 * Get the text from an archive row containing ar_text, ar_flags and ar_text_id
292 * @param object $row Database row
295 function getTextFromRow( $row ) {
296 if ( is_null( $row->ar_text_id
) ) {
297 // An old row from MediaWiki 1.4 or previous.
298 // Text is embedded in this row in classic compression format.
299 return Revision
::getRevisionText( $row, 'ar_' );
302 // New-style: keyed to the text storage backend.
303 $dbr = wfGetDB( DB_SLAVE
);
304 $text = $dbr->selectRow( 'text',
305 [ 'old_text', 'old_flags' ],
306 [ 'old_id' => $row->ar_text_id
],
309 return Revision
::getRevisionText( $text );
313 * Fetch (and decompress if necessary) the stored text of the most
314 * recently edited deleted revision of the page.
316 * If there are no archived revisions for the page, returns NULL.
318 * @return string|null
320 function getLastRevisionText() {
321 $dbr = wfGetDB( DB_SLAVE
);
322 $row = $dbr->selectRow( 'archive',
323 [ 'ar_text', 'ar_flags', 'ar_text_id' ],
324 [ 'ar_namespace' => $this->title
->getNamespace(),
325 'ar_title' => $this->title
->getDBkey() ],
327 [ 'ORDER BY' => 'ar_timestamp DESC' ] );
330 return $this->getTextFromRow( $row );
337 * Quick check if any archived revisions are present for the page.
341 function isDeleted() {
342 $dbr = wfGetDB( DB_SLAVE
);
343 $n = $dbr->selectField( 'archive', 'COUNT(ar_title)',
344 [ 'ar_namespace' => $this->title
->getNamespace(),
345 'ar_title' => $this->title
->getDBkey() ],
353 * Restore the given (or all) text and file revisions for the page.
354 * Once restored, the items will be removed from the archive tables.
355 * The deletion log will be updated with an undeletion notice.
357 * @param array $timestamps Pass an empty array to restore all revisions,
358 * otherwise list the ones to undelete.
359 * @param string $comment
360 * @param array $fileVersions
361 * @param bool $unsuppress
362 * @param User $user User performing the action, or null to use $wgUser
363 * @param string|string[] $tags Change tags to add to log entry
364 * ($user should be able to add the specified tags before this is called)
365 * @return array(number of file revisions restored, number of image revisions
366 * restored, log message) on success, false on failure.
368 function undelete( $timestamps, $comment = '', $fileVersions = [],
369 $unsuppress = false, User
$user = null, $tags = null
371 // If both the set of text revisions and file revisions are empty,
372 // restore everything. Otherwise, just restore the requested items.
373 $restoreAll = empty( $timestamps ) && empty( $fileVersions );
375 $restoreText = $restoreAll ||
!empty( $timestamps );
376 $restoreFiles = $restoreAll ||
!empty( $fileVersions );
378 if ( $restoreFiles && $this->title
->getNamespace() == NS_FILE
) {
379 $img = wfLocalFile( $this->title
);
380 $img->load( File
::READ_LATEST
);
381 $this->fileStatus
= $img->restore( $fileVersions, $unsuppress );
382 if ( !$this->fileStatus
->isOK() ) {
385 $filesRestored = $this->fileStatus
->successCount
;
390 if ( $restoreText ) {
391 $this->revisionStatus
= $this->undeleteRevisions( $timestamps, $unsuppress, $comment );
392 if ( !$this->revisionStatus
->isOK() ) {
396 $textRestored = $this->revisionStatus
->getValue();
403 if ( $textRestored && $filesRestored ) {
404 $reason = wfMessage( 'undeletedrevisions-files' )
405 ->numParams( $textRestored, $filesRestored )->inContentLanguage()->text();
406 } elseif ( $textRestored ) {
407 $reason = wfMessage( 'undeletedrevisions' )->numParams( $textRestored )
408 ->inContentLanguage()->text();
409 } elseif ( $filesRestored ) {
410 $reason = wfMessage( 'undeletedfiles' )->numParams( $filesRestored )
411 ->inContentLanguage()->text();
413 wfDebug( "Undelete: nothing undeleted...\n" );
418 if ( trim( $comment ) != '' ) {
419 $reason .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $comment;
422 if ( $user === null ) {
427 $logEntry = new ManualLogEntry( 'delete', 'restore' );
428 $logEntry->setPerformer( $user );
429 $logEntry->setTarget( $this->title
);
430 $logEntry->setComment( $reason );
431 $logEntry->setTags( $tags );
433 Hooks
::run( 'ArticleUndeleteLogEntry', [ $this, &$logEntry, $user ] );
435 $logid = $logEntry->insert();
436 $logEntry->publish( $logid );
438 return [ $textRestored, $filesRestored, $reason ];
442 * This is the meaty bit -- restores archived revisions of the given page
443 * to the cur/old tables. If the page currently exists, all revisions will
444 * be stuffed into old, otherwise the most recent will go into cur.
446 * @param array $timestamps Pass an empty array to restore all revisions,
447 * otherwise list the ones to undelete.
448 * @param bool $unsuppress Remove all ar_deleted/fa_deleted restrictions of seletected revs
449 * @param string $comment
450 * @throws ReadOnlyError
451 * @return Status Status object containing the number of revisions restored on success
453 private function undeleteRevisions( $timestamps, $unsuppress = false, $comment = '' ) {
454 if ( wfReadOnly() ) {
455 throw new ReadOnlyError();
458 $restoreAll = empty( $timestamps );
459 $dbw = wfGetDB( DB_MASTER
);
461 # Does this page already exist? We'll have to update it...
462 $article = WikiPage
::factory( $this->title
);
463 # Load latest data for the current page (bug 31179)
464 $article->loadPageData( 'fromdbmaster' );
465 $oldcountable = $article->isCountable();
467 $page = $dbw->selectRow( 'page',
468 [ 'page_id', 'page_latest' ],
469 [ 'page_namespace' => $this->title
->getNamespace(),
470 'page_title' => $this->title
->getDBkey() ],
472 [ 'FOR UPDATE' ] // lock page
477 # Page already exists. Import the history, and if necessary
478 # we'll update the latest revision field in the record.
480 $previousRevId = $page->page_latest
;
482 # Get the time span of this page
483 $previousTimestamp = $dbw->selectField( 'revision', 'rev_timestamp',
484 [ 'rev_id' => $previousRevId ],
487 if ( $previousTimestamp === false ) {
488 wfDebug( __METHOD__
. ": existing page refers to a page_latest that does not exist\n" );
490 $status = Status
::newGood( 0 );
491 $status->warning( 'undeleterevision-missing' );
496 # Have to create a new article...
499 $previousTimestamp = 0;
503 'ar_namespace' => $this->title
->getNamespace(),
504 'ar_title' => $this->title
->getDBkey(),
506 if ( !$restoreAll ) {
507 $oldWhere['ar_timestamp'] = array_map( [ &$dbw, 'timestamp' ], $timestamps );
526 if ( $this->config
->get( 'ContentHandlerUseDB' ) ) {
527 $fields[] = 'ar_content_format';
528 $fields[] = 'ar_content_model';
532 * Select each archived revision...
534 $result = $dbw->select( 'archive',
538 /* options */ [ 'ORDER BY' => 'ar_timestamp' ]
541 $rev_count = $result->numRows();
543 wfDebug( __METHOD__
. ": no revisions to restore\n" );
545 $status = Status
::newGood( 0 );
546 $status->warning( "undelete-no-results" );
551 $result->seek( $rev_count - 1 ); // move to last
552 $row = $result->fetchObject(); // get newest archived rev
553 $oldPageId = (int)$row->ar_page_id
; // pass this to ArticleUndelete hook
554 $result->seek( 0 ); // move back
556 // grab the content to check consistency with global state before restoring the page.
557 $revision = Revision
::newFromArchiveRow( $row,
559 'title' => $article->getTitle(), // used to derive default content model
562 $user = User
::newFromName( $revision->getUserText( Revision
::RAW
), false );
563 $content = $revision->getContent( Revision
::RAW
);
565 // NOTE: article ID may not be known yet. prepareSave() should not modify the database.
566 $status = $content->prepareSave( $article, 0, -1, $user );
568 if ( !$status->isOK() ) {
573 // Check the state of the newest to-be version...
574 if ( !$unsuppress && ( $row->ar_deleted
& Revision
::DELETED_TEXT
) ) {
575 return Status
::newFatal( "undeleterevdel" );
577 // Safe to insert now...
578 $newid = $article->insertOn( $dbw, $row->ar_page_id
);
579 if ( $newid === false ) {
580 // The old ID is reserved; let's pick another
581 $newid = $article->insertOn( $dbw );
585 // Check if a deleted revision will become the current revision...
586 if ( $row->ar_timestamp
> $previousTimestamp ) {
587 // Check the state of the newest to-be version...
588 if ( !$unsuppress && ( $row->ar_deleted
& Revision
::DELETED_TEXT
) ) {
589 return Status
::newFatal( "undeleterevdel" );
594 $pageId = $article->getId();
600 foreach ( $result as $row ) {
601 // Check for key dupes due to needed archive integrity.
602 if ( $row->ar_rev_id
) {
603 $exists = $dbw->selectField( 'revision', '1',
604 [ 'rev_id' => $row->ar_rev_id
], __METHOD__
);
606 continue; // don't throw DB errors
609 // Insert one revision at a time...maintaining deletion status
610 // unless we are specifically removing all restrictions...
611 $revision = Revision
::newFromArchiveRow( $row,
614 'title' => $this->title
,
615 'deleted' => $unsuppress ?
0 : $row->ar_deleted
618 $revision->insertOn( $dbw );
621 Hooks
::run( 'ArticleRevisionUndeleted', [ &$this->title
, $revision, $row->ar_page_id
] );
623 # Now that it's safely stored, take it out of the archive
624 $dbw->delete( 'archive',
628 // Was anything restored at all?
629 if ( $restored == 0 ) {
630 return Status
::newGood( 0 );
633 $created = (bool)$newid;
635 // Attach the latest revision to the page...
636 $wasnew = $article->updateIfNewerOn( $dbw, $revision, $previousRevId );
637 if ( $created ||
$wasnew ) {
638 // Update site stats, link tables, etc
639 $article->doEditUpdates(
641 User
::newFromName( $revision->getUserText( Revision
::RAW
), false ),
643 'created' => $created,
644 'oldcountable' => $oldcountable,
650 Hooks
::run( 'ArticleUndelete', [ &$this->title
, $created, $comment, $oldPageId ] );
652 if ( $this->title
->getNamespace() == NS_FILE
) {
653 DeferredUpdates
::addUpdate( new HTMLCacheUpdate( $this->title
, 'imagelinks' ) );
656 return Status
::newGood( $restored );
662 function getFileStatus() {
663 return $this->fileStatus
;
669 function getRevisionStatus() {
670 return $this->revisionStatus
;
675 * Special page allowing users with the appropriate permissions to view
676 * and restore deleted content.
678 * @ingroup SpecialPage
680 class SpecialUndelete
extends SpecialPage
{
688 private $mTargetTimestamp;
697 function __construct() {
698 parent
::__construct( 'Undelete', 'deletedhistory' );
701 public function doesWrites() {
705 function loadRequest( $par ) {
706 $request = $this->getRequest();
707 $user = $this->getUser();
709 $this->mAction
= $request->getVal( 'action' );
710 if ( $par !== null && $par !== '' ) {
711 $this->mTarget
= $par;
713 $this->mTarget
= $request->getVal( 'target' );
716 $this->mTargetObj
= null;
718 if ( $this->mTarget
!== null && $this->mTarget
!== '' ) {
719 $this->mTargetObj
= Title
::newFromText( $this->mTarget
);
722 $this->mSearchPrefix
= $request->getText( 'prefix' );
723 $time = $request->getVal( 'timestamp' );
724 $this->mTimestamp
= $time ?
wfTimestamp( TS_MW
, $time ) : '';
725 $this->mFilename
= $request->getVal( 'file' );
727 $posted = $request->wasPosted() &&
728 $user->matchEditToken( $request->getVal( 'wpEditToken' ) );
729 $this->mRestore
= $request->getCheck( 'restore' ) && $posted;
730 $this->mRevdel
= $request->getCheck( 'revdel' ) && $posted;
731 $this->mInvert
= $request->getCheck( 'invert' ) && $posted;
732 $this->mPreview
= $request->getCheck( 'preview' ) && $posted;
733 $this->mDiff
= $request->getCheck( 'diff' );
734 $this->mDiffOnly
= $request->getBool( 'diffonly', $this->getUser()->getOption( 'diffonly' ) );
735 $this->mComment
= $request->getText( 'wpComment' );
736 $this->mUnsuppress
= $request->getVal( 'wpUnsuppress' ) && $user->isAllowed( 'suppressrevision' );
737 $this->mToken
= $request->getVal( 'token' );
739 if ( $this->isAllowed( 'undelete' ) && !$user->isBlocked() ) {
740 $this->mAllowed
= true; // user can restore
741 $this->mCanView
= true; // user can view content
742 } elseif ( $this->isAllowed( 'deletedtext' ) ) {
743 $this->mAllowed
= false; // user cannot restore
744 $this->mCanView
= true; // user can view content
745 $this->mRestore
= false;
746 } else { // user can only view the list of revisions
747 $this->mAllowed
= false;
748 $this->mCanView
= false;
749 $this->mTimestamp
= '';
750 $this->mRestore
= false;
753 if ( $this->mRestore ||
$this->mInvert
) {
755 $this->mFileVersions
= [];
756 foreach ( $request->getValues() as $key => $val ) {
758 if ( preg_match( '/^ts(\d{14})$/', $key, $matches ) ) {
759 array_push( $timestamps, $matches[1] );
762 if ( preg_match( '/^fileid(\d+)$/', $key, $matches ) ) {
763 $this->mFileVersions
[] = intval( $matches[1] );
766 rsort( $timestamps );
767 $this->mTargetTimestamp
= $timestamps;
772 * Checks whether a user is allowed the permission for the
773 * specific title if one is set.
775 * @param string $permission
779 protected function isAllowed( $permission, User
$user = null ) {
780 $user = $user ?
: $this->getUser();
781 if ( $this->mTargetObj
!== null ) {
782 return $this->mTargetObj
->userCan( $permission, $user );
784 return $user->isAllowed( $permission );
788 function userCanExecute( User
$user ) {
789 return $this->isAllowed( $this->mRestriction
, $user );
792 function execute( $par ) {
793 $this->useTransactionalTimeLimit();
795 $user = $this->getUser();
798 $this->outputHeader();
800 $this->loadRequest( $par );
801 $this->checkPermissions(); // Needs to be after mTargetObj is set
803 $out = $this->getOutput();
805 if ( is_null( $this->mTargetObj
) ) {
806 $out->addWikiMsg( 'undelete-header' );
808 # Not all users can just browse every deleted page from the list
809 if ( $user->isAllowed( 'browsearchive' ) ) {
810 $this->showSearchForm();
816 $this->addHelpLink( 'Help:Undelete' );
817 if ( $this->mAllowed
) {
818 $out->setPageTitle( $this->msg( 'undeletepage' ) );
820 $out->setPageTitle( $this->msg( 'viewdeletedpage' ) );
823 $this->getSkin()->setRelevantTitle( $this->mTargetObj
);
825 if ( $this->mTimestamp
!== '' ) {
826 $this->showRevision( $this->mTimestamp
);
827 } elseif ( $this->mFilename
!== null && $this->mTargetObj
->inNamespace( NS_FILE
) ) {
828 $file = new ArchivedFile( $this->mTargetObj
, '', $this->mFilename
);
829 // Check if user is allowed to see this file
830 if ( !$file->exists() ) {
831 $out->addWikiMsg( 'filedelete-nofile', $this->mFilename
);
832 } elseif ( !$file->userCan( File
::DELETED_FILE
, $user ) ) {
833 if ( $file->isDeleted( File
::DELETED_RESTRICTED
) ) {
834 throw new PermissionsError( 'suppressrevision' );
836 throw new PermissionsError( 'deletedtext' );
838 } elseif ( !$user->matchEditToken( $this->mToken
, $this->mFilename
) ) {
839 $this->showFileConfirmationForm( $this->mFilename
);
841 $this->showFile( $this->mFilename
);
843 } elseif ( $this->mAction
=== "submit" ) {
844 if ( $this->mRestore
) {
846 } elseif ( $this->mRevdel
) {
847 $this->redirectToRevDel();
851 $this->showHistory();
856 * Convert submitted form data to format expected by RevisionDelete and
857 * redirect the request
859 private function redirectToRevDel() {
860 $archive = new PageArchive( $this->mTargetObj
);
864 foreach ( $this->getRequest()->getValues() as $key => $val ) {
866 if ( preg_match( "/^ts(\d{14})$/", $key, $matches ) ) {
867 $revisions[ $archive->getRevision( $matches[1] )->getId() ] = 1;
871 "type" => "revision",
873 "target" => $this->mTargetObj
->getPrefixedText()
875 $url = SpecialPage
::getTitleFor( 'Revisiondelete' )->getFullURL( $query );
876 $this->getOutput()->redirect( $url );
879 function showSearchForm() {
880 $out = $this->getOutput();
881 $out->setPageTitle( $this->msg( 'undelete-search-title' ) );
883 Xml
::openElement( 'form', [ 'method' => 'get', 'action' => wfScript() ] ) .
884 Xml
::fieldset( $this->msg( 'undelete-search-box' )->text() ) .
885 Html
::hidden( 'title', $this->getPageTitle()->getPrefixedDBkey() ) .
888 [ 'for' => 'prefix' ],
889 $this->msg( 'undelete-search-prefix' )->parse()
894 $this->mSearchPrefix
,
895 [ 'id' => 'prefix', 'autofocus' => '' ]
897 Xml
::submitButton( $this->msg( 'undelete-search-submit' )->text() ) .
898 Xml
::closeElement( 'fieldset' ) .
899 Xml
::closeElement( 'form' )
902 # List undeletable articles
903 if ( $this->mSearchPrefix
) {
904 $result = PageArchive
::listPagesByPrefix( $this->mSearchPrefix
);
905 $this->showList( $result );
910 * Generic list of deleted pages
912 * @param ResultWrapper $result
915 private function showList( $result ) {
916 $out = $this->getOutput();
918 if ( $result->numRows() == 0 ) {
919 $out->addWikiMsg( 'undelete-no-results' );
924 $out->addWikiMsg( 'undeletepagetext', $this->getLanguage()->formatNum( $result->numRows() ) );
926 $undelete = $this->getPageTitle();
927 $out->addHTML( "<ul>\n" );
928 foreach ( $result as $row ) {
929 $title = Title
::makeTitleSafe( $row->ar_namespace
, $row->ar_title
);
930 if ( $title !== null ) {
931 $item = Linker
::linkKnown(
933 htmlspecialchars( $title->getPrefixedText() ),
935 [ 'target' => $title->getPrefixedText() ]
938 // The title is no longer valid, show as text
939 $item = Html
::element(
941 [ 'class' => 'mw-invalidtitle' ],
942 Linker
::getInvalidTitleDescription(
949 $revs = $this->msg( 'undeleterevisions' )->numParams( $row->count
)->parse();
950 $out->addHTML( "<li>{$item} ({$revs})</li>\n" );
953 $out->addHTML( "</ul>\n" );
958 private function showRevision( $timestamp ) {
959 if ( !preg_match( '/[0-9]{14}/', $timestamp ) ) {
963 $archive = new PageArchive( $this->mTargetObj
, $this->getConfig() );
964 if ( !Hooks
::run( 'UndeleteForm::showRevision', [ &$archive, $this->mTargetObj
] ) ) {
967 $rev = $archive->getRevision( $timestamp );
969 $out = $this->getOutput();
970 $user = $this->getUser();
973 $out->addWikiMsg( 'undeleterevision-missing' );
978 if ( $rev->isDeleted( Revision
::DELETED_TEXT
) ) {
979 if ( !$rev->userCan( Revision
::DELETED_TEXT
, $user ) ) {
981 "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
982 $rev->isDeleted( Revision
::DELETED_RESTRICTED
) ?
983 'rev-suppressed-text-permission' : 'rev-deleted-text-permission'
990 "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
991 $rev->isDeleted( Revision
::DELETED_RESTRICTED
) ?
992 'rev-suppressed-text-view' : 'rev-deleted-text-view'
994 $out->addHTML( '<br />' );
995 // and we are allowed to see...
998 if ( $this->mDiff
) {
999 $previousRev = $archive->getPreviousRevision( $timestamp );
1000 if ( $previousRev ) {
1001 $this->showDiff( $previousRev, $rev );
1002 if ( $this->mDiffOnly
) {
1006 $out->addHTML( '<hr />' );
1008 $out->addWikiMsg( 'undelete-nodiff' );
1012 $link = Linker
::linkKnown(
1013 $this->getPageTitle( $this->mTargetObj
->getPrefixedDBkey() ),
1014 htmlspecialchars( $this->mTargetObj
->getPrefixedText() )
1017 $lang = $this->getLanguage();
1019 // date and time are separate parameters to facilitate localisation.
1020 // $time is kept for backward compat reasons.
1021 $time = $lang->userTimeAndDate( $timestamp, $user );
1022 $d = $lang->userDate( $timestamp, $user );
1023 $t = $lang->userTime( $timestamp, $user );
1024 $userLink = Linker
::revUserTools( $rev );
1026 $content = $rev->getContent( Revision
::FOR_THIS_USER
, $user );
1028 $isText = ( $content instanceof TextContent
);
1030 if ( $this->mPreview ||
$isText ) {
1031 $openDiv = '<div id="mw-undelete-revision" class="mw-warning">';
1033 $openDiv = '<div id="mw-undelete-revision">';
1035 $out->addHTML( $openDiv );
1037 // Revision delete links
1038 if ( !$this->mDiff
) {
1039 $revdel = Linker
::getRevDeleteLink( $user, $rev, $this->mTargetObj
);
1041 $out->addHTML( "$revdel " );
1045 $out->addHTML( $this->msg( 'undelete-revision' )->rawParams( $link )->params(
1046 $time )->rawParams( $userLink )->params( $d, $t )->parse() . '</div>' );
1048 if ( !Hooks
::run( 'UndeleteShowRevision', [ $this->mTargetObj
, $rev ] ) ) {
1052 if ( ( $this->mPreview ||
!$isText ) && $content ) {
1053 // NOTE: non-text content has no source view, so always use rendered preview
1056 $popts = $out->parserOptions();
1057 $popts->setEditSection( false );
1059 $pout = $content->getParserOutput( $this->mTargetObj
, $rev->getId(), $popts, true );
1060 $out->addParserOutput( $pout );
1064 // source view for textual content
1065 $sourceView = Xml
::element(
1068 'readonly' => 'readonly',
1069 'cols' => $user->getIntOption( 'cols' ),
1070 'rows' => $user->getIntOption( 'rows' )
1072 $content->getNativeData() . "\n"
1075 $previewButton = Xml
::element( 'input', [
1077 'name' => 'preview',
1078 'value' => $this->msg( 'showpreview' )->text()
1082 $previewButton = '';
1085 $diffButton = Xml
::element( 'input', [
1088 'value' => $this->msg( 'showdiff' )->text() ] );
1092 Xml
::openElement( 'div', [
1093 'style' => 'clear: both' ] ) .
1094 Xml
::openElement( 'form', [
1096 'action' => $this->getPageTitle()->getLocalURL( [ 'action' => 'submit' ] ) ] ) .
1097 Xml
::element( 'input', [
1100 'value' => $this->mTargetObj
->getPrefixedDBkey() ] ) .
1101 Xml
::element( 'input', [
1103 'name' => 'timestamp',
1104 'value' => $timestamp ] ) .
1105 Xml
::element( 'input', [
1107 'name' => 'wpEditToken',
1108 'value' => $user->getEditToken() ] ) .
1111 Xml
::closeElement( 'form' ) .
1112 Xml
::closeElement( 'div' )
1117 * Build a diff display between this and the previous either deleted
1118 * or non-deleted edit.
1120 * @param Revision $previousRev
1121 * @param Revision $currentRev
1122 * @return string HTML
1124 function showDiff( $previousRev, $currentRev ) {
1125 $diffContext = clone $this->getContext();
1126 $diffContext->setTitle( $currentRev->getTitle() );
1127 $diffContext->setWikiPage( WikiPage
::factory( $currentRev->getTitle() ) );
1129 $diffEngine = $currentRev->getContentHandler()->createDifferenceEngine( $diffContext );
1130 $diffEngine->showDiffStyle();
1132 $formattedDiff = $diffEngine->generateContentDiffBody(
1133 $previousRev->getContent( Revision
::FOR_THIS_USER
, $this->getUser() ),
1134 $currentRev->getContent( Revision
::FOR_THIS_USER
, $this->getUser() )
1137 $formattedDiff = $diffEngine->addHeader(
1139 $this->diffHeader( $previousRev, 'o' ),
1140 $this->diffHeader( $currentRev, 'n' )
1143 $this->getOutput()->addHTML( "<div>$formattedDiff</div>\n" );
1147 * @param Revision $rev
1148 * @param string $prefix
1151 private function diffHeader( $rev, $prefix ) {
1152 $isDeleted = !( $rev->getId() && $rev->getTitle() );
1154 /// @todo FIXME: $rev->getTitle() is null for deleted revs...?
1155 $targetPage = $this->getPageTitle();
1157 'target' => $this->mTargetObj
->getPrefixedText(),
1158 'timestamp' => wfTimestamp( TS_MW
, $rev->getTimestamp() )
1161 /// @todo FIXME: getId() may return non-zero for deleted revs...
1162 $targetPage = $rev->getTitle();
1163 $targetQuery = [ 'oldid' => $rev->getId() ];
1166 // Add show/hide deletion links if available
1167 $user = $this->getUser();
1168 $lang = $this->getLanguage();
1169 $rdel = Linker
::getRevDeleteLink( $user, $rev, $this->mTargetObj
);
1175 $minor = $rev->isMinor() ? ChangesList
::flag( 'minor' ) : '';
1177 $tags = wfGetDB( DB_SLAVE
)->selectField(
1180 [ 'ts_rev_id' => $rev->getId() ],
1183 $tagSummary = ChangeTags
::formatSummaryRow( $tags, 'deleteddiff', $this->getContext() );
1185 // FIXME This is reimplementing DifferenceEngine#getRevisionHeader
1186 // and partially #showDiffPage, but worse
1187 return '<div id="mw-diff-' . $prefix . 'title1"><strong>' .
1192 $lang->userTimeAndDate( $rev->getTimestamp(), $user ),
1193 $lang->userDate( $rev->getTimestamp(), $user ),
1194 $lang->userTime( $rev->getTimestamp(), $user )
1200 '<div id="mw-diff-' . $prefix . 'title2">' .
1201 Linker
::revUserTools( $rev ) . '<br />' .
1203 '<div id="mw-diff-' . $prefix . 'title3">' .
1204 $minor . Linker
::revComment( $rev ) . $rdel . '<br />' .
1206 '<div id="mw-diff-' . $prefix . 'title5">' .
1207 $tagSummary[0] . '<br />' .
1212 * Show a form confirming whether a tokenless user really wants to see a file
1213 * @param string $key
1215 private function showFileConfirmationForm( $key ) {
1216 $out = $this->getOutput();
1217 $lang = $this->getLanguage();
1218 $user = $this->getUser();
1219 $file = new ArchivedFile( $this->mTargetObj
, '', $this->mFilename
);
1220 $out->addWikiMsg( 'undelete-show-file-confirm',
1221 $this->mTargetObj
->getText(),
1222 $lang->userDate( $file->getTimestamp(), $user ),
1223 $lang->userTime( $file->getTimestamp(), $user ) );
1225 Xml
::openElement( 'form', [
1227 'action' => $this->getPageTitle()->getLocalURL( [
1228 'target' => $this->mTarget
,
1230 'token' => $user->getEditToken( $key ),
1234 Xml
::submitButton( $this->msg( 'undelete-show-file-submit' )->text() ) .
1240 * Show a deleted file version requested by the visitor.
1241 * @param string $key
1243 private function showFile( $key ) {
1244 $this->getOutput()->disable();
1246 # We mustn't allow the output to be CDN cached, otherwise
1247 # if an admin previews a deleted image, and it's cached, then
1248 # a user without appropriate permissions can toddle off and
1249 # nab the image, and CDN will serve it
1250 $response = $this->getRequest()->response();
1251 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1252 $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
1253 $response->header( 'Pragma: no-cache' );
1255 $repo = RepoGroup
::singleton()->getLocalRepo();
1256 $path = $repo->getZonePath( 'deleted' ) . '/' . $repo->getDeletedHashPath( $key ) . $key;
1257 $repo->streamFile( $path );
1260 protected function showHistory() {
1261 $this->checkReadOnly();
1263 $out = $this->getOutput();
1264 if ( $this->mAllowed
) {
1265 $out->addModules( 'mediawiki.special.undelete' );
1268 "<div class='mw-undelete-pagetitle'>\n$1\n</div>\n",
1269 [ 'undeletepagetitle', wfEscapeWikiText( $this->mTargetObj
->getPrefixedText() ) ]
1272 $archive = new PageArchive( $this->mTargetObj
, $this->getConfig() );
1273 Hooks
::run( 'UndeleteForm::showHistory', [ &$archive, $this->mTargetObj
] );
1275 $text = $archive->getLastRevisionText();
1276 if( is_null( $text ) ) {
1277 $out->addWikiMsg( 'nohistory' );
1281 $out->addHTML( '<div class="mw-undelete-history">' );
1282 if ( $this->mAllowed
) {
1283 $out->addWikiMsg( 'undeletehistory' );
1284 $out->addWikiMsg( 'undeleterevdel' );
1286 $out->addWikiMsg( 'undeletehistorynoadmin' );
1288 $out->addHTML( '</div>' );
1290 # List all stored revisions
1291 $revisions = $archive->listRevisions();
1292 $files = $archive->listFiles();
1294 $haveRevisions = $revisions && $revisions->numRows() > 0;
1295 $haveFiles = $files && $files->numRows() > 0;
1297 # Batch existence check on user and talk pages
1298 if ( $haveRevisions ) {
1299 $batch = new LinkBatch();
1300 foreach ( $revisions as $row ) {
1301 $batch->addObj( Title
::makeTitleSafe( NS_USER
, $row->ar_user_text
) );
1302 $batch->addObj( Title
::makeTitleSafe( NS_USER_TALK
, $row->ar_user_text
) );
1305 $revisions->seek( 0 );
1308 $batch = new LinkBatch();
1309 foreach ( $files as $row ) {
1310 $batch->addObj( Title
::makeTitleSafe( NS_USER
, $row->fa_user_text
) );
1311 $batch->addObj( Title
::makeTitleSafe( NS_USER_TALK
, $row->fa_user_text
) );
1317 if ( $this->mAllowed
) {
1318 $action = $this->getPageTitle()->getLocalURL( [ 'action' => 'submit' ] );
1319 # Start the form here
1320 $top = Xml
::openElement(
1322 [ 'method' => 'post', 'action' => $action, 'id' => 'undelete' ]
1324 $out->addHTML( $top );
1327 # Show relevant lines from the deletion log:
1328 $deleteLogPage = new LogPage( 'delete' );
1329 $out->addHTML( Xml
::element( 'h2', null, $deleteLogPage->getName()->text() ) . "\n" );
1330 LogEventsList
::showLogExtract( $out, 'delete', $this->mTargetObj
);
1331 # Show relevant lines from the suppression log:
1332 $suppressLogPage = new LogPage( 'suppress' );
1333 if ( $this->getUser()->isAllowed( 'suppressionlog' ) ) {
1334 $out->addHTML( Xml
::element( 'h2', null, $suppressLogPage->getName()->text() ) . "\n" );
1335 LogEventsList
::showLogExtract( $out, 'suppress', $this->mTargetObj
);
1338 if ( $this->mAllowed
&& ( $haveRevisions ||
$haveFiles ) ) {
1339 # Format the user-visible controls (comment field, submission button)
1340 # in a nice little table
1341 if ( $this->getUser()->isAllowed( 'suppressrevision' ) ) {
1345 <td class='mw-input'>" .
1346 Xml
::checkLabel( $this->msg( 'revdelete-unsuppress' )->text(),
1347 'wpUnsuppress', 'mw-undelete-unsuppress', $this->mUnsuppress
) .
1351 $unsuppressBox = '';
1354 $table = Xml
::fieldset( $this->msg( 'undelete-fieldset-title' )->text() ) .
1355 Xml
::openElement( 'table', [ 'id' => 'mw-undelete-table' ] ) .
1357 <td colspan='2' class='mw-undelete-extrahelp'>" .
1358 $this->msg( 'undeleteextrahelp' )->parseAsBlock() .
1362 <td class='mw-label'>" .
1363 Xml
::label( $this->msg( 'undeletecomment' )->text(), 'wpComment' ) .
1365 <td class='mw-input'>" .
1370 [ 'id' => 'wpComment', 'autofocus' => '' ]
1376 <td class='mw-submit'>" .
1378 $this->msg( 'undeletebtn' )->text(),
1379 [ 'name' => 'restore', 'id' => 'mw-undelete-submit' ]
1382 $this->msg( 'undeleteinvert' )->text(),
1383 [ 'name' => 'invert', 'id' => 'mw-undelete-invert' ]
1388 Xml
::closeElement( 'table' ) .
1389 Xml
::closeElement( 'fieldset' );
1391 $out->addHTML( $table );
1394 $out->addHTML( Xml
::element( 'h2', null, $this->msg( 'history' )->text() ) . "\n" );
1396 if ( $haveRevisions ) {
1397 # Show the page's stored (deleted) history
1399 if ( $this->getUser()->isAllowed( 'deleterevision' ) ) {
1400 $out->addHTML( Html
::element(
1405 'class' => 'deleterevision-log-submit mw-log-deleterevision-button'
1407 $this->msg( 'showhideselectedversions' )->text()
1411 $out->addHTML( '<ul>' );
1412 $remaining = $revisions->numRows();
1413 $earliestLiveTime = $this->mTargetObj
->getEarliestRevTime();
1415 foreach ( $revisions as $row ) {
1417 $out->addHTML( $this->formatRevisionRow( $row, $earliestLiveTime, $remaining ) );
1420 $out->addHTML( '</ul>' );
1422 $out->addWikiMsg( 'nohistory' );
1426 $out->addHTML( Xml
::element( 'h2', null, $this->msg( 'filehist' )->text() ) . "\n" );
1427 $out->addHTML( '<ul>' );
1428 foreach ( $files as $row ) {
1429 $out->addHTML( $this->formatFileRow( $row ) );
1432 $out->addHTML( '</ul>' );
1435 if ( $this->mAllowed
) {
1436 # Slip in the hidden controls here
1437 $misc = Html
::hidden( 'target', $this->mTarget
);
1438 $misc .= Html
::hidden( 'wpEditToken', $this->getUser()->getEditToken() );
1439 $misc .= Xml
::closeElement( 'form' );
1440 $out->addHTML( $misc );
1446 protected function formatRevisionRow( $row, $earliestLiveTime, $remaining ) {
1447 $rev = Revision
::newFromArchiveRow( $row,
1449 'title' => $this->mTargetObj
1453 $ts = wfTimestamp( TS_MW
, $row->ar_timestamp
);
1454 // Build checkboxen...
1455 if ( $this->mAllowed
) {
1456 if ( $this->mInvert
) {
1457 if ( in_array( $ts, $this->mTargetTimestamp
) ) {
1458 $checkBox = Xml
::check( "ts$ts" );
1460 $checkBox = Xml
::check( "ts$ts", true );
1463 $checkBox = Xml
::check( "ts$ts" );
1469 // Build page & diff links...
1470 $user = $this->getUser();
1471 if ( $this->mCanView
) {
1472 $titleObj = $this->getPageTitle();
1474 if ( !$rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
1475 $pageLink = htmlspecialchars( $this->getLanguage()->userTimeAndDate( $ts, $user ) );
1476 $last = $this->msg( 'diff' )->escaped();
1477 } elseif ( $remaining > 0 ||
( $earliestLiveTime && $ts > $earliestLiveTime ) ) {
1478 $pageLink = $this->getPageLink( $rev, $titleObj, $ts );
1479 $last = Linker
::linkKnown(
1481 $this->msg( 'diff' )->escaped(),
1484 'target' => $this->mTargetObj
->getPrefixedText(),
1490 $pageLink = $this->getPageLink( $rev, $titleObj, $ts );
1491 $last = $this->msg( 'diff' )->escaped();
1494 $pageLink = htmlspecialchars( $this->getLanguage()->userTimeAndDate( $ts, $user ) );
1495 $last = $this->msg( 'diff' )->escaped();
1499 $userLink = Linker
::revUserTools( $rev );
1502 $minor = $rev->isMinor() ? ChangesList
::flag( 'minor' ) : '';
1504 // Revision text size
1505 $size = $row->ar_len
;
1506 if ( !is_null( $size ) ) {
1507 $revTextSize = Linker
::formatRevisionSize( $size );
1511 $comment = Linker
::revComment( $rev );
1515 list( $tagSummary, $classes ) = ChangeTags
::formatSummaryRow(
1521 $attribs['class'] = implode( ' ', $classes );
1524 $revisionRow = $this->msg( 'undelete-revision-row2' )
1537 return Xml
::tags( 'li', $attribs, $revisionRow ) . "\n";
1540 private function formatFileRow( $row ) {
1541 $file = ArchivedFile
::newFromRow( $row );
1542 $ts = wfTimestamp( TS_MW
, $row->fa_timestamp
);
1543 $user = $this->getUser();
1546 if ( $this->mCanView
&& $row->fa_storage_key
) {
1547 if ( $this->mAllowed
) {
1548 $checkBox = Xml
::check( 'fileid' . $row->fa_id
);
1550 $key = urlencode( $row->fa_storage_key
);
1551 $pageLink = $this->getFileLink( $file, $this->getPageTitle(), $ts, $key );
1553 $pageLink = $this->getLanguage()->userTimeAndDate( $ts, $user );
1555 $userLink = $this->getFileUser( $file );
1556 $data = $this->msg( 'widthheight' )->numParams( $row->fa_width
, $row->fa_height
)->text();
1557 $bytes = $this->msg( 'parentheses' )
1558 ->rawParams( $this->msg( 'nbytes' )->numParams( $row->fa_size
)->text() )
1560 $data = htmlspecialchars( $data . ' ' . $bytes );
1561 $comment = $this->getFileComment( $file );
1563 // Add show/hide deletion links if available
1564 $canHide = $this->isAllowed( 'deleterevision' );
1565 if ( $canHide ||
( $file->getVisibility() && $this->isAllowed( 'deletedhistory' ) ) ) {
1566 if ( !$file->userCan( File
::DELETED_RESTRICTED
, $user ) ) {
1567 // Revision was hidden from sysops
1568 $revdlink = Linker
::revDeleteLinkDisabled( $canHide );
1571 'type' => 'filearchive',
1572 'target' => $this->mTargetObj
->getPrefixedDBkey(),
1573 'ids' => $row->fa_id
1575 $revdlink = Linker
::revDeleteLink( $query,
1576 $file->isDeleted( File
::DELETED_RESTRICTED
), $canHide );
1582 return "<li>$checkBox $revdlink $pageLink . . $userLink $data $comment</li>\n";
1586 * Fetch revision text link if it's available to all users
1588 * @param Revision $rev
1589 * @param Title $titleObj
1590 * @param string $ts Timestamp
1593 function getPageLink( $rev, $titleObj, $ts ) {
1594 $user = $this->getUser();
1595 $time = $this->getLanguage()->userTimeAndDate( $ts, $user );
1597 if ( !$rev->userCan( Revision
::DELETED_TEXT
, $user ) ) {
1598 return '<span class="history-deleted">' . $time . '</span>';
1601 $link = Linker
::linkKnown(
1603 htmlspecialchars( $time ),
1606 'target' => $this->mTargetObj
->getPrefixedText(),
1611 if ( $rev->isDeleted( Revision
::DELETED_TEXT
) ) {
1612 $link = '<span class="history-deleted">' . $link . '</span>';
1619 * Fetch image view link if it's available to all users
1621 * @param File|ArchivedFile $file
1622 * @param Title $titleObj
1623 * @param string $ts A timestamp
1624 * @param string $key A storage key
1626 * @return string HTML fragment
1628 function getFileLink( $file, $titleObj, $ts, $key ) {
1629 $user = $this->getUser();
1630 $time = $this->getLanguage()->userTimeAndDate( $ts, $user );
1632 if ( !$file->userCan( File
::DELETED_FILE
, $user ) ) {
1633 return '<span class="history-deleted">' . $time . '</span>';
1636 $link = Linker
::linkKnown(
1638 htmlspecialchars( $time ),
1641 'target' => $this->mTargetObj
->getPrefixedText(),
1643 'token' => $user->getEditToken( $key )
1647 if ( $file->isDeleted( File
::DELETED_FILE
) ) {
1648 $link = '<span class="history-deleted">' . $link . '</span>';
1655 * Fetch file's user id if it's available to this user
1657 * @param File|ArchivedFile $file
1658 * @return string HTML fragment
1660 function getFileUser( $file ) {
1661 if ( !$file->userCan( File
::DELETED_USER
, $this->getUser() ) ) {
1662 return '<span class="history-deleted">' .
1663 $this->msg( 'rev-deleted-user' )->escaped() .
1667 $link = Linker
::userLink( $file->getRawUser(), $file->getRawUserText() ) .
1668 Linker
::userToolLinks( $file->getRawUser(), $file->getRawUserText() );
1670 if ( $file->isDeleted( File
::DELETED_USER
) ) {
1671 $link = '<span class="history-deleted">' . $link . '</span>';
1678 * Fetch file upload comment if it's available to this user
1680 * @param File|ArchivedFile $file
1681 * @return string HTML fragment
1683 function getFileComment( $file ) {
1684 if ( !$file->userCan( File
::DELETED_COMMENT
, $this->getUser() ) ) {
1685 return '<span class="history-deleted"><span class="comment">' .
1686 $this->msg( 'rev-deleted-comment' )->escaped() . '</span></span>';
1689 $link = Linker
::commentBlock( $file->getRawDescription() );
1691 if ( $file->isDeleted( File
::DELETED_COMMENT
) ) {
1692 $link = '<span class="history-deleted">' . $link . '</span>';
1698 function undelete() {
1699 if ( $this->getConfig()->get( 'UploadMaintenance' )
1700 && $this->mTargetObj
->getNamespace() == NS_FILE
1702 throw new ErrorPageError( 'undelete-error', 'filedelete-maintenance' );
1705 $this->checkReadOnly();
1707 $out = $this->getOutput();
1708 $archive = new PageArchive( $this->mTargetObj
, $this->getConfig() );
1709 Hooks
::run( 'UndeleteForm::undelete', [ &$archive, $this->mTargetObj
] );
1710 $ok = $archive->undelete(
1711 $this->mTargetTimestamp
,
1713 $this->mFileVersions
,
1718 if ( is_array( $ok ) ) {
1719 if ( $ok[1] ) { // Undeleted file count
1720 Hooks
::run( 'FileUndeleteComplete', [
1721 $this->mTargetObj
, $this->mFileVersions
,
1722 $this->getUser(), $this->mComment
] );
1725 $link = Linker
::linkKnown( $this->mTargetObj
);
1726 $out->addHTML( $this->msg( 'undeletedpage' )->rawParams( $link )->parse() );
1728 $out->setPageTitle( $this->msg( 'undelete-error' ) );
1731 // Show revision undeletion warnings and errors
1732 $status = $archive->getRevisionStatus();
1733 if ( $status && !$status->isGood() ) {
1734 $out->addWikiText( '<div class="error">' .
1735 $status->getWikiText(
1742 // Show file undeletion warnings and errors
1743 $status = $archive->getFileStatus();
1744 if ( $status && !$status->isGood() ) {
1745 $out->addWikiText( '<div class="error">' .
1746 $status->getWikiText(
1747 'undelete-error-short',
1748 'undelete-error-long'
1755 * Return an array of subpages beginning with $search that this special page will accept.
1757 * @param string $search Prefix to search for
1758 * @param int $limit Maximum number of results to return (usually 10)
1759 * @param int $offset Number of results to skip (usually 0)
1760 * @return string[] Matching subpages
1762 public function prefixSearchSubpages( $search, $limit, $offset ) {
1763 return $this->prefixSearchString( $search, $limit, $offset );
1766 protected function getGroupName() {