* Use local context instead of global variables
[lhc/web/wiklou.git] / includes / specials / SpecialUndelete.php
1 <?php
2 /**
3 * Implements Special:Undelete
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * Used to show archived pages and eventually restore them.
26 *
27 * @ingroup SpecialPage
28 */
29 class PageArchive {
30
31 /**
32 * @var Title
33 */
34 protected $title;
35 var $fileStatus;
36
37 function __construct( $title ) {
38 if( is_null( $title ) ) {
39 throw new MWException( __METHOD__ . ' given a null title.' );
40 }
41 $this->title = $title;
42 }
43
44 /**
45 * List all deleted pages recorded in the archive table. Returns result
46 * wrapper with (ar_namespace, ar_title, count) fields, ordered by page
47 * namespace/title.
48 *
49 * @return ResultWrapper
50 */
51 public static function listAllPages() {
52 $dbr = wfGetDB( DB_SLAVE );
53 return self::listPages( $dbr, '' );
54 }
55
56 /**
57 * List deleted pages recorded in the archive table matching the
58 * given title prefix.
59 * Returns result wrapper with (ar_namespace, ar_title, count) fields.
60 *
61 * @param $prefix String: title prefix
62 * @return ResultWrapper
63 */
64 public static function listPagesByPrefix( $prefix ) {
65 global $wgUser;
66 $dbr = wfGetDB( DB_SLAVE );
67
68 $title = Title::newFromText( $prefix );
69 if( $title ) {
70 $ns = $title->getNamespace();
71 $prefix = $title->getDBkey();
72 } else {
73 // Prolly won't work too good
74 // @todo handle bare namespace names cleanly?
75 $ns = 0;
76 }
77 $conds = array(
78 'ar_namespace' => $ns,
79 'ar_title' . $dbr->buildLike( $prefix, $dbr->anyString() ),
80 );
81
82 // bug 19725
83 $suppressedText = REVISION::DELETED_TEXT | REVISION::DELETED_RESTRICTED;
84 if( !$wgUser->isAllowed( 'suppressrevision' ) ) {
85 $conds[] = $dbr->bitAnd('ar_deleted', $suppressedText ) .
86 ' != ' . $suppressedText;
87 }
88 return self::listPages( $dbr, $conds );
89 }
90
91 /**
92 * @param $dbr DatabaseBase
93 * @param $condition
94 * @return bool|ResultWrapper
95 */
96 protected static function listPages( $dbr, $condition ) {
97 return $dbr->resultObject(
98 $dbr->select(
99 array( 'archive' ),
100 array(
101 'ar_namespace',
102 'ar_title',
103 'COUNT(*) AS count'
104 ),
105 $condition,
106 __METHOD__,
107 array(
108 'GROUP BY' => 'ar_namespace,ar_title',
109 'ORDER BY' => 'ar_namespace,ar_title',
110 'LIMIT' => 100,
111 )
112 )
113 );
114 }
115
116 /**
117 * List the revisions of the given page. Returns result wrapper with
118 * (ar_minor_edit, ar_timestamp, ar_user, ar_user_text, ar_comment) fields.
119 *
120 * @return ResultWrapper
121 */
122 function listRevisions() {
123 $dbr = wfGetDB( DB_SLAVE );
124 $res = $dbr->select( 'archive',
125 array(
126 'ar_minor_edit', 'ar_timestamp', 'ar_user', 'ar_user_text',
127 'ar_comment', 'ar_len', 'ar_deleted', 'ar_rev_id'
128 ),
129 array( 'ar_namespace' => $this->title->getNamespace(),
130 'ar_title' => $this->title->getDBkey() ),
131 'PageArchive::listRevisions',
132 array( 'ORDER BY' => 'ar_timestamp DESC' ) );
133 $ret = $dbr->resultObject( $res );
134 return $ret;
135 }
136
137 /**
138 * List the deleted file revisions for this page, if it's a file page.
139 * Returns a result wrapper with various filearchive fields, or null
140 * if not a file page.
141 *
142 * @return ResultWrapper
143 * @todo Does this belong in Image for fuller encapsulation?
144 */
145 function listFiles() {
146 if( $this->title->getNamespace() == NS_FILE ) {
147 $dbr = wfGetDB( DB_SLAVE );
148 $res = $dbr->select( 'filearchive',
149 array(
150 'fa_id',
151 'fa_name',
152 'fa_archive_name',
153 'fa_storage_key',
154 'fa_storage_group',
155 'fa_size',
156 'fa_width',
157 'fa_height',
158 'fa_bits',
159 'fa_metadata',
160 'fa_media_type',
161 'fa_major_mime',
162 'fa_minor_mime',
163 'fa_description',
164 'fa_user',
165 'fa_user_text',
166 'fa_timestamp',
167 'fa_deleted' ),
168 array( 'fa_name' => $this->title->getDBkey() ),
169 __METHOD__,
170 array( 'ORDER BY' => 'fa_timestamp DESC' ) );
171 $ret = $dbr->resultObject( $res );
172 return $ret;
173 }
174 return null;
175 }
176
177 /**
178 * Return a Revision object containing data for the deleted revision.
179 * Note that the result *may* or *may not* have a null page ID.
180 *
181 * @param $timestamp String
182 * @return Revision
183 */
184 function getRevision( $timestamp ) {
185 $dbr = wfGetDB( DB_SLAVE );
186 $row = $dbr->selectRow( 'archive',
187 array(
188 'ar_rev_id',
189 'ar_text',
190 'ar_comment',
191 'ar_user',
192 'ar_user_text',
193 'ar_timestamp',
194 'ar_minor_edit',
195 'ar_flags',
196 'ar_text_id',
197 'ar_deleted',
198 'ar_len' ),
199 array( 'ar_namespace' => $this->title->getNamespace(),
200 'ar_title' => $this->title->getDBkey(),
201 'ar_timestamp' => $dbr->timestamp( $timestamp ) ),
202 __METHOD__ );
203 if( $row ) {
204 return Revision::newFromArchiveRow( $row, array( 'page' => $this->title->getArticleId() ) );
205 } else {
206 return null;
207 }
208 }
209
210 /**
211 * Return the most-previous revision, either live or deleted, against
212 * the deleted revision given by timestamp.
213 *
214 * May produce unexpected results in case of history merges or other
215 * unusual time issues.
216 *
217 * @param $timestamp String
218 * @return Revision or null
219 */
220 function getPreviousRevision( $timestamp ) {
221 $dbr = wfGetDB( DB_SLAVE );
222
223 // Check the previous deleted revision...
224 $row = $dbr->selectRow( 'archive',
225 'ar_timestamp',
226 array( 'ar_namespace' => $this->title->getNamespace(),
227 'ar_title' => $this->title->getDBkey(),
228 'ar_timestamp < ' .
229 $dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ),
230 __METHOD__,
231 array(
232 'ORDER BY' => 'ar_timestamp DESC',
233 'LIMIT' => 1 ) );
234 $prevDeleted = $row ? wfTimestamp( TS_MW, $row->ar_timestamp ) : false;
235
236 $row = $dbr->selectRow( array( 'page', 'revision' ),
237 array( 'rev_id', 'rev_timestamp' ),
238 array(
239 'page_namespace' => $this->title->getNamespace(),
240 'page_title' => $this->title->getDBkey(),
241 'page_id = rev_page',
242 'rev_timestamp < ' .
243 $dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ),
244 __METHOD__,
245 array(
246 'ORDER BY' => 'rev_timestamp DESC',
247 'LIMIT' => 1 ) );
248 $prevLive = $row ? wfTimestamp( TS_MW, $row->rev_timestamp ) : false;
249 $prevLiveId = $row ? intval( $row->rev_id ) : null;
250
251 if( $prevLive && $prevLive > $prevDeleted ) {
252 // Most prior revision was live
253 return Revision::newFromId( $prevLiveId );
254 } elseif( $prevDeleted ) {
255 // Most prior revision was deleted
256 return $this->getRevision( $prevDeleted );
257 } else {
258 // No prior revision on this page.
259 return null;
260 }
261 }
262
263 /**
264 * Get the text from an archive row containing ar_text, ar_flags and ar_text_id
265 *
266 * @param $row Object: database row
267 * @return Revision
268 */
269 function getTextFromRow( $row ) {
270 if( is_null( $row->ar_text_id ) ) {
271 // An old row from MediaWiki 1.4 or previous.
272 // Text is embedded in this row in classic compression format.
273 return Revision::getRevisionText( $row, 'ar_' );
274 } else {
275 // New-style: keyed to the text storage backend.
276 $dbr = wfGetDB( DB_SLAVE );
277 $text = $dbr->selectRow( 'text',
278 array( 'old_text', 'old_flags' ),
279 array( 'old_id' => $row->ar_text_id ),
280 __METHOD__ );
281 return Revision::getRevisionText( $text );
282 }
283 }
284
285 /**
286 * Fetch (and decompress if necessary) the stored text of the most
287 * recently edited deleted revision of the page.
288 *
289 * If there are no archived revisions for the page, returns NULL.
290 *
291 * @return String
292 */
293 function getLastRevisionText() {
294 $dbr = wfGetDB( DB_SLAVE );
295 $row = $dbr->selectRow( 'archive',
296 array( 'ar_text', 'ar_flags', 'ar_text_id' ),
297 array( 'ar_namespace' => $this->title->getNamespace(),
298 'ar_title' => $this->title->getDBkey() ),
299 __METHOD__,
300 array( 'ORDER BY' => 'ar_timestamp DESC' ) );
301 if( $row ) {
302 return $this->getTextFromRow( $row );
303 } else {
304 return null;
305 }
306 }
307
308 /**
309 * Quick check if any archived revisions are present for the page.
310 *
311 * @return Boolean
312 */
313 function isDeleted() {
314 $dbr = wfGetDB( DB_SLAVE );
315 $n = $dbr->selectField( 'archive', 'COUNT(ar_title)',
316 array( 'ar_namespace' => $this->title->getNamespace(),
317 'ar_title' => $this->title->getDBkey() ) );
318 return ( $n > 0 );
319 }
320
321 /**
322 * Restore the given (or all) text and file revisions for the page.
323 * Once restored, the items will be removed from the archive tables.
324 * The deletion log will be updated with an undeletion notice.
325 *
326 * @param $timestamps Array: pass an empty array to restore all revisions, otherwise list the ones to undelete.
327 * @param $comment String
328 * @param $fileVersions Array
329 * @param $unsuppress Boolean
330 *
331 * @return array(number of file revisions restored, number of image revisions restored, log message)
332 * on success, false on failure
333 */
334 function undelete( $timestamps, $comment = '', $fileVersions = array(), $unsuppress = false ) {
335 // If both the set of text revisions and file revisions are empty,
336 // restore everything. Otherwise, just restore the requested items.
337 $restoreAll = empty( $timestamps ) && empty( $fileVersions );
338
339 $restoreText = $restoreAll || !empty( $timestamps );
340 $restoreFiles = $restoreAll || !empty( $fileVersions );
341
342 if( $restoreFiles && $this->title->getNamespace() == NS_FILE ) {
343 $img = wfLocalFile( $this->title );
344 $this->fileStatus = $img->restore( $fileVersions, $unsuppress );
345 if ( !$this->fileStatus->isOk() ) {
346 return false;
347 }
348 $filesRestored = $this->fileStatus->successCount;
349 } else {
350 $filesRestored = 0;
351 }
352
353 if( $restoreText ) {
354 $textRestored = $this->undeleteRevisions( $timestamps, $unsuppress, $comment );
355 if( $textRestored === false ) { // It must be one of UNDELETE_*
356 return false;
357 }
358 } else {
359 $textRestored = 0;
360 }
361
362 // Touch the log!
363 global $wgContLang;
364 $log = new LogPage( 'delete' );
365
366 if( $textRestored && $filesRestored ) {
367 $reason = wfMsgExt( 'undeletedrevisions-files', array( 'content', 'parsemag' ),
368 $wgContLang->formatNum( $textRestored ),
369 $wgContLang->formatNum( $filesRestored ) );
370 } elseif( $textRestored ) {
371 $reason = wfMsgExt( 'undeletedrevisions', array( 'content', 'parsemag' ),
372 $wgContLang->formatNum( $textRestored ) );
373 } elseif( $filesRestored ) {
374 $reason = wfMsgExt( 'undeletedfiles', array( 'content', 'parsemag' ),
375 $wgContLang->formatNum( $filesRestored ) );
376 } else {
377 wfDebug( "Undelete: nothing undeleted...\n" );
378 return false;
379 }
380
381 if( trim( $comment ) != '' ) {
382 $reason .= wfMsgForContent( 'colon-separator' ) . $comment;
383 }
384 $log->addEntry( 'restore', $this->title, $reason );
385
386 return array( $textRestored, $filesRestored, $reason );
387 }
388
389 /**
390 * This is the meaty bit -- restores archived revisions of the given page
391 * to the cur/old tables. If the page currently exists, all revisions will
392 * be stuffed into old, otherwise the most recent will go into cur.
393 *
394 * @param $timestamps Array: pass an empty array to restore all revisions, otherwise list the ones to undelete.
395 * @param $comment String
396 * @param $unsuppress Boolean: remove all ar_deleted/fa_deleted restrictions of seletected revs
397 *
398 * @return Mixed: number of revisions restored or false on failure
399 */
400 private function undeleteRevisions( $timestamps, $unsuppress = false, $comment = '' ) {
401 if ( wfReadOnly() ) {
402 return false;
403 }
404 $restoreAll = empty( $timestamps );
405
406 $dbw = wfGetDB( DB_MASTER );
407
408 # Does this page already exist? We'll have to update it...
409 $article = new Article( $this->title );
410 $options = 'FOR UPDATE'; // lock page
411 $page = $dbw->selectRow( 'page',
412 array( 'page_id', 'page_latest' ),
413 array( 'page_namespace' => $this->title->getNamespace(),
414 'page_title' => $this->title->getDBkey() ),
415 __METHOD__,
416 $options
417 );
418 if( $page ) {
419 $makepage = false;
420 # Page already exists. Import the history, and if necessary
421 # we'll update the latest revision field in the record.
422 $newid = 0;
423 $pageId = $page->page_id;
424 $previousRevId = $page->page_latest;
425 # Get the time span of this page
426 $previousTimestamp = $dbw->selectField( 'revision', 'rev_timestamp',
427 array( 'rev_id' => $previousRevId ),
428 __METHOD__ );
429 if( $previousTimestamp === false ) {
430 wfDebug( __METHOD__.": existing page refers to a page_latest that does not exist\n" );
431 return 0;
432 }
433 } else {
434 # Have to create a new article...
435 $makepage = true;
436 $previousRevId = 0;
437 $previousTimestamp = 0;
438 }
439
440 if( $restoreAll ) {
441 $oldones = '1 = 1'; # All revisions...
442 } else {
443 $oldts = implode( ',',
444 array_map( array( &$dbw, 'addQuotes' ),
445 array_map( array( &$dbw, 'timestamp' ),
446 $timestamps ) ) );
447
448 $oldones = "ar_timestamp IN ( {$oldts} )";
449 }
450
451 /**
452 * Select each archived revision...
453 */
454 $result = $dbw->select( 'archive',
455 /* fields */ array(
456 'ar_rev_id',
457 'ar_text',
458 'ar_comment',
459 'ar_user',
460 'ar_user_text',
461 'ar_timestamp',
462 'ar_minor_edit',
463 'ar_flags',
464 'ar_text_id',
465 'ar_deleted',
466 'ar_page_id',
467 'ar_len' ),
468 /* WHERE */ array(
469 'ar_namespace' => $this->title->getNamespace(),
470 'ar_title' => $this->title->getDBkey(),
471 $oldones ),
472 __METHOD__,
473 /* options */ array( 'ORDER BY' => 'ar_timestamp' )
474 );
475 $ret = $dbw->resultObject( $result );
476 $rev_count = $dbw->numRows( $result );
477 if( !$rev_count ) {
478 wfDebug( __METHOD__ . ": no revisions to restore\n" );
479 return false; // ???
480 }
481
482 $ret->seek( $rev_count - 1 ); // move to last
483 $row = $ret->fetchObject(); // get newest archived rev
484 $ret->seek( 0 ); // move back
485
486 if( $makepage ) {
487 // Check the state of the newest to-be version...
488 if( !$unsuppress && ( $row->ar_deleted & Revision::DELETED_TEXT ) ) {
489 return false; // we can't leave the current revision like this!
490 }
491 // Safe to insert now...
492 $newid = $article->insertOn( $dbw );
493 $pageId = $newid;
494 } else {
495 // Check if a deleted revision will become the current revision...
496 if( $row->ar_timestamp > $previousTimestamp ) {
497 // Check the state of the newest to-be version...
498 if( !$unsuppress && ( $row->ar_deleted & Revision::DELETED_TEXT ) ) {
499 return false; // we can't leave the current revision like this!
500 }
501 }
502 }
503
504 $revision = null;
505 $restored = 0;
506
507 foreach ( $ret as $row ) {
508 // Check for key dupes due to shitty archive integrity.
509 if( $row->ar_rev_id ) {
510 $exists = $dbw->selectField( 'revision', '1',
511 array( 'rev_id' => $row->ar_rev_id ), __METHOD__ );
512 if( $exists ) {
513 continue; // don't throw DB errors
514 }
515 }
516 // Insert one revision at a time...maintaining deletion status
517 // unless we are specifically removing all restrictions...
518 $revision = Revision::newFromArchiveRow( $row,
519 array(
520 'page' => $pageId,
521 'deleted' => $unsuppress ? 0 : $row->ar_deleted
522 ) );
523
524 $revision->insertOn( $dbw );
525 $restored++;
526
527 wfRunHooks( 'ArticleRevisionUndeleted', array( &$this->title, $revision, $row->ar_page_id ) );
528 }
529 # Now that it's safely stored, take it out of the archive
530 $dbw->delete( 'archive',
531 /* WHERE */ array(
532 'ar_namespace' => $this->title->getNamespace(),
533 'ar_title' => $this->title->getDBkey(),
534 $oldones ),
535 __METHOD__ );
536
537 // Was anything restored at all?
538 if ( $restored == 0 ) {
539 return 0;
540 }
541
542 $created = (bool)$newid;
543 $oldcountable = $article->isCountable();
544
545 // Attach the latest revision to the page...
546 $wasnew = $article->updateIfNewerOn( $dbw, $revision, $previousRevId );
547 if ( $created || $wasnew ) {
548 // Update site stats, link tables, etc
549 $user = User::newFromName( $revision->getRawUserText(), false );
550 $article->doEditUpdates( $revision, $user, array( 'created' => $created, 'oldcountable' => $oldcountable ) );
551 }
552
553 wfRunHooks( 'ArticleUndelete', array( &$this->title, $created, $comment ) );
554
555 if( $this->title->getNamespace() == NS_FILE ) {
556 $update = new HTMLCacheUpdate( $this->title, 'imagelinks' );
557 $update->doUpdate();
558 }
559
560 return $restored;
561 }
562
563 /**
564 * @return Status
565 */
566 function getFileStatus() { return $this->fileStatus; }
567 }
568
569 /**
570 * Special page allowing users with the appropriate permissions to view
571 * and restore deleted content.
572 *
573 * @ingroup SpecialPage
574 */
575 class SpecialUndelete extends SpecialPage {
576 var $mAction, $mTarget, $mTimestamp, $mRestore, $mInvert, $mFilename;
577 var $mTargetTimestamp, $mAllowed, $mCanView, $mComment, $mToken;
578
579 /**
580 * @var Title
581 */
582 var $mTargetObj;
583
584 function __construct() {
585 parent::__construct( 'Undelete', 'deletedhistory' );
586 }
587
588 function loadRequest() {
589 $request = $this->getRequest();
590 $user = $this->getUser();
591
592 $this->mAction = $request->getVal( 'action' );
593 $this->mTarget = $request->getVal( 'target' );
594 $this->mSearchPrefix = $request->getText( 'prefix' );
595 $time = $request->getVal( 'timestamp' );
596 $this->mTimestamp = $time ? wfTimestamp( TS_MW, $time ) : '';
597 $this->mFilename = $request->getVal( 'file' );
598
599 $posted = $request->wasPosted() &&
600 $user->matchEditToken( $request->getVal( 'wpEditToken' ) );
601 $this->mRestore = $request->getCheck( 'restore' ) && $posted;
602 $this->mInvert = $request->getCheck( 'invert' ) && $posted;
603 $this->mPreview = $request->getCheck( 'preview' ) && $posted;
604 $this->mDiff = $request->getCheck( 'diff' );
605 $this->mComment = $request->getText( 'wpComment' );
606 $this->mUnsuppress = $request->getVal( 'wpUnsuppress' ) && $user->isAllowed( 'suppressrevision' );
607 $this->mToken = $request->getVal( 'token' );
608
609 if ( $user->isAllowed( 'undelete' ) && !$user->isBlocked() ) {
610 $this->mAllowed = true; // user can restore
611 $this->mCanView = true; // user can view content
612 } elseif ( $user->isAllowed( 'deletedtext' ) ) {
613 $this->mAllowed = false; // user cannot restore
614 $this->mCanView = true; // user can view content
615 } else { // user can only view the list of revisions
616 $this->mAllowed = false;
617 $this->mCanView = false;
618 $this->mTimestamp = '';
619 $this->mRestore = false;
620 }
621
622 if( $this->mRestore || $this->mInvert ) {
623 $timestamps = array();
624 $this->mFileVersions = array();
625 foreach( $request->getValues() as $key => $val ) {
626 $matches = array();
627 if( preg_match( '/^ts(\d{14})$/', $key, $matches ) ) {
628 array_push( $timestamps, $matches[1] );
629 }
630
631 if( preg_match( '/^fileid(\d+)$/', $key, $matches ) ) {
632 $this->mFileVersions[] = intval( $matches[1] );
633 }
634 }
635 rsort( $timestamps );
636 $this->mTargetTimestamp = $timestamps;
637 }
638 }
639
640 function execute( $par ) {
641 $this->setHeaders();
642 if ( !$this->userCanExecute( $this->getUser() ) ) {
643 $this->displayRestrictionError();
644 return;
645 }
646 $this->outputHeader();
647
648 $this->loadRequest();
649
650 $out = $this->getOutput();
651
652 if ( $this->mAllowed ) {
653 $out->setPageTitle( wfMsg( 'undeletepage' ) );
654 } else {
655 $out->setPageTitle( wfMsg( 'viewdeletedpage' ) );
656 }
657
658 if( $par != '' ) {
659 $this->mTarget = $par;
660 }
661 if ( $this->mTarget !== '' ) {
662 $this->mTargetObj = Title::newFromURL( $this->mTarget );
663 $this->getSkin()->setRelevantTitle( $this->mTargetObj );
664 } else {
665 $this->mTargetObj = null;
666 }
667
668 if( is_null( $this->mTargetObj ) ) {
669 # Not all users can just browse every deleted page from the list
670 if( $this->getUser()->isAllowed( 'browsearchive' ) ) {
671 $this->showSearchForm();
672
673 # List undeletable articles
674 if( $this->mSearchPrefix ) {
675 $result = PageArchive::listPagesByPrefix( $this->mSearchPrefix );
676 $this->showList( $result );
677 }
678 } else {
679 $out->addWikiMsg( 'undelete-header' );
680 }
681 return;
682 }
683 if( $this->mTimestamp !== '' ) {
684 return $this->showRevision( $this->mTimestamp );
685 }
686 if( $this->mFilename !== null ) {
687 $file = new ArchivedFile( $this->mTargetObj, '', $this->mFilename );
688 // Check if user is allowed to see this file
689 if ( !$file->exists() ) {
690 $out->addWikiMsg( 'filedelete-nofile', $this->mFilename );
691 return;
692 } elseif( !$file->userCan( File::DELETED_FILE ) ) {
693 if( $file->isDeleted( File::DELETED_RESTRICTED ) ) {
694 $out->permissionRequired( 'suppressrevision' );
695 } else {
696 $out->permissionRequired( 'deletedtext' );
697 }
698 return false;
699 } elseif ( !$this->getUser()->matchEditToken( $this->mToken, $this->mFilename ) ) {
700 $this->showFileConfirmationForm( $this->mFilename );
701 return false;
702 } else {
703 return $this->showFile( $this->mFilename );
704 }
705 }
706 if( $this->mRestore && $this->mAction == 'submit' ) {
707 global $wgUploadMaintenance;
708 if( $wgUploadMaintenance && $this->mTargetObj && $this->mTargetObj->getNamespace() == NS_FILE ) {
709 $out->wrapWikiMsg( "<div class='error'>\n$1\n</div>\n", array( 'filedelete-maintenance' ) );
710 return;
711 }
712 return $this->undelete();
713 }
714 if( $this->mInvert && $this->mAction == 'submit' ) {
715 return $this->showHistory();
716 }
717 return $this->showHistory();
718 }
719
720 function showSearchForm() {
721 global $wgScript;
722
723 $this->getOutput()->addWikiMsg( 'undelete-header' );
724
725 $this->getOutput()->addHTML(
726 Xml::openElement( 'form', array(
727 'method' => 'get',
728 'action' => $wgScript ) ) .
729 Xml::fieldset( wfMsg( 'undelete-search-box' ) ) .
730 Html::hidden( 'title',
731 $this->getTitle()->getPrefixedDbKey() ) .
732 Xml::inputLabel( wfMsg( 'undelete-search-prefix' ),
733 'prefix', 'prefix', 20,
734 $this->mSearchPrefix ) . ' ' .
735 Xml::submitButton( wfMsg( 'undelete-search-submit' ) ) .
736 Xml::closeElement( 'fieldset' ) .
737 Xml::closeElement( 'form' )
738 );
739 }
740
741 /**
742 * Generic list of deleted pages
743 *
744 * @param $result ResultWrapper
745 * @return bool
746 */
747 private function showList( $result ) {
748 $out = $this->getOutput();
749
750 if( $result->numRows() == 0 ) {
751 $out->addWikiMsg( 'undelete-no-results' );
752 return;
753 }
754
755 $out->addWikiMsg( 'undeletepagetext', $this->getLang()->formatNum( $result->numRows() ) );
756
757 $undelete = $this->getTitle();
758 $out->addHTML( "<ul>\n" );
759 foreach ( $result as $row ) {
760 $title = Title::makeTitleSafe( $row->ar_namespace, $row->ar_title );
761 $link = Linker::linkKnown(
762 $undelete,
763 htmlspecialchars( $title->getPrefixedText() ),
764 array(),
765 array( 'target' => $title->getPrefixedText() )
766 );
767 $revs = wfMsgExt( 'undeleterevisions',
768 array( 'parseinline' ),
769 $this->getLang()->formatNum( $row->count ) );
770 $out->addHTML( "<li>{$link} ({$revs})</li>\n" );
771 }
772 $result->free();
773 $out->addHTML( "</ul>\n" );
774
775 return true;
776 }
777
778 private function showRevision( $timestamp ) {
779 $out = $this->getOutput();
780
781 if( !preg_match( '/[0-9]{14}/', $timestamp ) ) {
782 return 0;
783 }
784
785 $archive = new PageArchive( $this->mTargetObj );
786 wfRunHooks( 'UndeleteForm::showRevision', array( &$archive, $this->mTargetObj ) );
787 $rev = $archive->getRevision( $timestamp );
788
789 if( !$rev ) {
790 $out->addWikiMsg( 'undeleterevision-missing' );
791 return;
792 }
793
794 if( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
795 if( !$rev->userCan( Revision::DELETED_TEXT ) ) {
796 $out->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n", 'rev-deleted-text-permission' );
797 return;
798 } else {
799 $out->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n", 'rev-deleted-text-view' );
800 $out->addHTML( '<br />' );
801 // and we are allowed to see...
802 }
803 }
804
805 $out->setPageTitle( wfMsg( 'undeletepage' ) );
806
807 if( $this->mDiff ) {
808 $previousRev = $archive->getPreviousRevision( $timestamp );
809 if( $previousRev ) {
810 $this->showDiff( $previousRev, $rev );
811 if( $this->getUser()->getOption( 'diffonly' ) ) {
812 return;
813 } else {
814 $out->addHTML( '<hr />' );
815 }
816 } else {
817 $out->addWikiMsg( 'undelete-nodiff' );
818 }
819 }
820
821 $link = Linker::linkKnown(
822 $this->getTitle( $this->mTargetObj->getPrefixedDBkey() ),
823 htmlspecialchars( $this->mTargetObj->getPrefixedText() )
824 );
825
826 // date and time are separate parameters to facilitate localisation.
827 // $time is kept for backward compat reasons.
828 $time = $this->getLang()->timeAndDate( $timestamp, true );
829 $d = $this->getLang()->date( $timestamp, true );
830 $t = $this->getLang()->time( $timestamp, true );
831 $user = Linker::revUserTools( $rev );
832
833 if( $this->mPreview ) {
834 $openDiv = '<div id="mw-undelete-revision" class="mw-warning">';
835 } else {
836 $openDiv = '<div id="mw-undelete-revision">';
837 }
838 $out->addHTML( $openDiv );
839
840 // Revision delete links
841 if ( !$this->mDiff ) {
842 $revdel = $this->revDeleteLink( $rev );
843 if ( $revdel ) {
844 $out->addHTML( $revdel );
845 }
846 }
847
848 $out->addHTML( wfMessage( 'undelete-revision' )->rawParams( $link )->params(
849 $time )->rawParams( $user )->params( $d, $t )->parse() . '</div>' );
850 wfRunHooks( 'UndeleteShowRevision', array( $this->mTargetObj, $rev ) );
851
852 if( $this->mPreview ) {
853 // Hide [edit]s
854 $popts = $out->parserOptions();
855 $popts->setEditSection( false );
856 $out->parserOptions( $popts );
857 $out->addWikiTextTitleTidy( $rev->getText( Revision::FOR_THIS_USER ), $this->mTargetObj, true );
858 }
859
860 $out->addHTML(
861 Xml::element( 'textarea', array(
862 'readonly' => 'readonly',
863 'cols' => intval( $this->getUser()->getOption( 'cols' ) ),
864 'rows' => intval( $this->getUser()->getOption( 'rows' ) ) ),
865 $rev->getText( Revision::FOR_THIS_USER ) . "\n" ) .
866 Xml::openElement( 'div' ) .
867 Xml::openElement( 'form', array(
868 'method' => 'post',
869 'action' => $this->getTitle()->getLocalURL( array( 'action' => 'submit' ) ) ) ) .
870 Xml::element( 'input', array(
871 'type' => 'hidden',
872 'name' => 'target',
873 'value' => $this->mTargetObj->getPrefixedDbKey() ) ) .
874 Xml::element( 'input', array(
875 'type' => 'hidden',
876 'name' => 'timestamp',
877 'value' => $timestamp ) ) .
878 Xml::element( 'input', array(
879 'type' => 'hidden',
880 'name' => 'wpEditToken',
881 'value' => $this->getUser()->editToken() ) ) .
882 Xml::element( 'input', array(
883 'type' => 'submit',
884 'name' => 'preview',
885 'value' => wfMsg( 'showpreview' ) ) ) .
886 Xml::element( 'input', array(
887 'name' => 'diff',
888 'type' => 'submit',
889 'value' => wfMsg( 'showdiff' ) ) ) .
890 Xml::closeElement( 'form' ) .
891 Xml::closeElement( 'div' ) );
892 }
893
894 /**
895 * Get a revision-deletion link, or disabled link, or nothing, depending
896 * on user permissions & the settings on the revision.
897 *
898 * Will use forward-compatible revision ID in the Special:RevDelete link
899 * if possible, otherwise the timestamp-based ID which may break after
900 * undeletion.
901 *
902 * @param Revision $rev
903 * @return string HTML fragment
904 */
905 function revDeleteLink( $rev ) {
906 $canHide = $this->getUser()->isAllowed( 'deleterevision' );
907 if( $canHide || ( $rev->getVisibility() && $this->getUser()->isAllowed( 'deletedhistory' ) ) ) {
908 if( !$rev->userCan( Revision::DELETED_RESTRICTED ) ) {
909 $revdlink = Linker::revDeleteLinkDisabled( $canHide ); // revision was hidden from sysops
910 } else {
911 if ( $rev->getId() ) {
912 // RevDelete links using revision ID are stable across
913 // page deletion and undeletion; use when possible.
914 $query = array(
915 'type' => 'revision',
916 'target' => $this->mTargetObj->getPrefixedDBkey(),
917 'ids' => $rev->getId()
918 );
919 } else {
920 // Older deleted entries didn't save a revision ID.
921 // We have to refer to these by timestamp, ick!
922 $query = array(
923 'type' => 'archive',
924 'target' => $this->mTargetObj->getPrefixedDBkey(),
925 'ids' => $rev->getTimestamp()
926 );
927 }
928 return Linker::revDeleteLink( $query,
929 $rev->isDeleted( File::DELETED_RESTRICTED ), $canHide );
930 }
931 } else {
932 return '';
933 }
934 }
935
936 /**
937 * Build a diff display between this and the previous either deleted
938 * or non-deleted edit.
939 *
940 * @param $previousRev Revision
941 * @param $currentRev Revision
942 * @return String: HTML
943 */
944 function showDiff( $previousRev, $currentRev ) {
945 $diffEngine = new DifferenceEngine( $previousRev->getTitle() );
946 $diffEngine->showDiffStyle();
947 $this->getOutput()->addHTML(
948 "<div>" .
949 "<table border='0' width='98%' cellpadding='0' cellspacing='4' class='diff'>" .
950 "<col class='diff-marker' />" .
951 "<col class='diff-content' />" .
952 "<col class='diff-marker' />" .
953 "<col class='diff-content' />" .
954 "<tr>" .
955 "<td colspan='2' width='50%' align='center' class='diff-otitle'>" .
956 $this->diffHeader( $previousRev, 'o' ) .
957 "</td>\n" .
958 "<td colspan='2' width='50%' align='center' class='diff-ntitle'>" .
959 $this->diffHeader( $currentRev, 'n' ) .
960 "</td>\n" .
961 "</tr>" .
962 $diffEngine->generateDiffBody(
963 $previousRev->getText(), $currentRev->getText() ) .
964 "</table>" .
965 "</div>\n"
966 );
967 }
968
969 /**
970 * @param $rev Revision
971 * @param $prefix
972 * @return string
973 */
974 private function diffHeader( $rev, $prefix ) {
975 $isDeleted = !( $rev->getId() && $rev->getTitle() );
976 if( $isDeleted ) {
977 /// @todo FIXME: $rev->getTitle() is null for deleted revs...?
978 $targetPage = $this->getTitle();
979 $targetQuery = array(
980 'target' => $this->mTargetObj->getPrefixedText(),
981 'timestamp' => wfTimestamp( TS_MW, $rev->getTimestamp() )
982 );
983 } else {
984 /// @todo FIXME: getId() may return non-zero for deleted revs...
985 $targetPage = $rev->getTitle();
986 $targetQuery = array( 'oldid' => $rev->getId() );
987 }
988 // Add show/hide deletion links if available
989 $del = $this->revDeleteLink( $rev );
990 return
991 '<div id="mw-diff-' . $prefix . 'title1"><strong>' .
992 Linker::link(
993 $targetPage,
994 wfMsgExt(
995 'revisionasof',
996 array( 'escape' ),
997 $this->getLang()->timeanddate( $rev->getTimestamp(), true ),
998 $this->getLang()->date( $rev->getTimestamp(), true ),
999 $this->getLang()->time( $rev->getTimestamp(), true )
1000 ),
1001 array(),
1002 $targetQuery
1003 ) .
1004 '</strong></div>' .
1005 '<div id="mw-diff-'.$prefix.'title2">' .
1006 Linker::revUserTools( $rev ) . '<br />' .
1007 '</div>' .
1008 '<div id="mw-diff-'.$prefix.'title3">' .
1009 Linker::revComment( $rev ) . $del . '<br />' .
1010 '</div>';
1011 }
1012
1013 /**
1014 * Show a form confirming whether a tokenless user really wants to see a file
1015 */
1016 private function showFileConfirmationForm( $key ) {
1017 $file = new ArchivedFile( $this->mTargetObj, '', $this->mFilename );
1018 $this->getOutput()->addWikiMsg( 'undelete-show-file-confirm',
1019 $this->mTargetObj->getText(),
1020 $this->getLang()->date( $file->getTimestamp() ),
1021 $this->getLang()->time( $file->getTimestamp() ) );
1022 $this->getOutput()->addHTML(
1023 Xml::openElement( 'form', array(
1024 'method' => 'POST',
1025 'action' => $this->getTitle()->getLocalURL(
1026 'target=' . urlencode( $this->mTarget ) .
1027 '&file=' . urlencode( $key ) .
1028 '&token=' . urlencode( $this->getUser()->editToken( $key ) ) )
1029 )
1030 ) .
1031 Xml::submitButton( wfMsg( 'undelete-show-file-submit' ) ) .
1032 '</form>'
1033 );
1034 }
1035
1036 /**
1037 * Show a deleted file version requested by the visitor.
1038 */
1039 private function showFile( $key ) {
1040 $this->getOutput()->disable();
1041
1042 # We mustn't allow the output to be Squid cached, otherwise
1043 # if an admin previews a deleted image, and it's cached, then
1044 # a user without appropriate permissions can toddle off and
1045 # nab the image, and Squid will serve it
1046 $response = $this->getRequest()->response();
1047 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1048 $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
1049 $response->header( 'Pragma: no-cache' );
1050
1051 global $IP;
1052 require_once( "$IP/includes/StreamFile.php" );
1053 $repo = RepoGroup::singleton()->getLocalRepo();
1054 $path = $repo->getZonePath( 'deleted' ) . '/' . $repo->getDeletedHashPath( $key ) . $key;
1055 wfStreamFile( $path );
1056 }
1057
1058 private function showHistory() {
1059 $out = $this->getOutput();
1060 if( $this->mAllowed ) {
1061 $out->addModules( 'mediawiki.special.undelete' );
1062 $out->setPageTitle( wfMsg( 'undeletepage' ) );
1063 } else {
1064 $out->setPageTitle( wfMsg( 'viewdeletedpage' ) );
1065 }
1066 $out->wrapWikiMsg(
1067 "<div class='mw-undelete-pagetitle'>\n$1\n</div>\n",
1068 array( 'undeletepagetitle', $this->mTargetObj->getPrefixedText() )
1069 );
1070
1071 $archive = new PageArchive( $this->mTargetObj );
1072 wfRunHooks( 'UndeleteForm::showHistory', array( &$archive, $this->mTargetObj ) );
1073 /*
1074 $text = $archive->getLastRevisionText();
1075 if( is_null( $text ) ) {
1076 $out->addWikiMsg( 'nohistory' );
1077 return;
1078 }
1079 */
1080 $out->addHTML( '<div class="mw-undelete-history">' );
1081 if ( $this->mAllowed ) {
1082 $out->addWikiMsg( 'undeletehistory' );
1083 $out->addWikiMsg( 'undeleterevdel' );
1084 } else {
1085 $out->addWikiMsg( 'undeletehistorynoadmin' );
1086 }
1087 $out->addHTML( '</div>' );
1088
1089 # List all stored revisions
1090 $revisions = $archive->listRevisions();
1091 $files = $archive->listFiles();
1092
1093 $haveRevisions = $revisions && $revisions->numRows() > 0;
1094 $haveFiles = $files && $files->numRows() > 0;
1095
1096 # Batch existence check on user and talk pages
1097 if( $haveRevisions ) {
1098 $batch = new LinkBatch();
1099 foreach ( $revisions as $row ) {
1100 $batch->addObj( Title::makeTitleSafe( NS_USER, $row->ar_user_text ) );
1101 $batch->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->ar_user_text ) );
1102 }
1103 $batch->execute();
1104 $revisions->seek( 0 );
1105 }
1106 if( $haveFiles ) {
1107 $batch = new LinkBatch();
1108 foreach ( $files as $row ) {
1109 $batch->addObj( Title::makeTitleSafe( NS_USER, $row->fa_user_text ) );
1110 $batch->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->fa_user_text ) );
1111 }
1112 $batch->execute();
1113 $files->seek( 0 );
1114 }
1115
1116 if ( $this->mAllowed ) {
1117 $action = $this->getTitle()->getLocalURL( array( 'action' => 'submit' ) );
1118 # Start the form here
1119 $top = Xml::openElement( 'form', array( 'method' => 'post', 'action' => $action, 'id' => 'undelete' ) );
1120 $out->addHTML( $top );
1121 }
1122
1123 # Show relevant lines from the deletion log:
1124 $out->addHTML( Xml::element( 'h2', null, LogPage::logName( 'delete' ) ) . "\n" );
1125 LogEventsList::showLogExtract( $out, 'delete', $this->mTargetObj->getPrefixedText() );
1126 # Show relevant lines from the suppression log:
1127 if( $this->getUser()->isAllowed( 'suppressionlog' ) ) {
1128 $out->addHTML( Xml::element( 'h2', null, LogPage::logName( 'suppress' ) ) . "\n" );
1129 LogEventsList::showLogExtract( $out, 'suppress', $this->mTargetObj->getPrefixedText() );
1130 }
1131
1132 if( $this->mAllowed && ( $haveRevisions || $haveFiles ) ) {
1133 # Format the user-visible controls (comment field, submission button)
1134 # in a nice little table
1135 if( $this->getUser()->isAllowed( 'suppressrevision' ) ) {
1136 $unsuppressBox =
1137 "<tr>
1138 <td>&#160;</td>
1139 <td class='mw-input'>" .
1140 Xml::checkLabel( wfMsg( 'revdelete-unsuppress' ), 'wpUnsuppress',
1141 'mw-undelete-unsuppress', $this->mUnsuppress ).
1142 "</td>
1143 </tr>";
1144 } else {
1145 $unsuppressBox = '';
1146 }
1147 $table =
1148 Xml::fieldset( wfMsg( 'undelete-fieldset-title' ) ) .
1149 Xml::openElement( 'table', array( 'id' => 'mw-undelete-table' ) ) .
1150 "<tr>
1151 <td colspan='2' class='mw-undelete-extrahelp'>" .
1152 wfMsgExt( 'undeleteextrahelp', 'parse' ) .
1153 "</td>
1154 </tr>
1155 <tr>
1156 <td class='mw-label'>" .
1157 Xml::label( wfMsg( 'undeletecomment' ), 'wpComment' ) .
1158 "</td>
1159 <td class='mw-input'>" .
1160 Xml::input( 'wpComment', 50, $this->mComment, array( 'id' => 'wpComment' ) ) .
1161 "</td>
1162 </tr>
1163 <tr>
1164 <td>&#160;</td>
1165 <td class='mw-submit'>" .
1166 Xml::submitButton( wfMsg( 'undeletebtn' ), array( 'name' => 'restore', 'id' => 'mw-undelete-submit' ) ) . ' ' .
1167 Xml::submitButton( wfMsg( 'undeleteinvert' ), array( 'name' => 'invert', 'id' => 'mw-undelete-invert' ) ) .
1168 "</td>
1169 </tr>" .
1170 $unsuppressBox .
1171 Xml::closeElement( 'table' ) .
1172 Xml::closeElement( 'fieldset' );
1173
1174 $out->addHTML( $table );
1175 }
1176
1177 $out->addHTML( Xml::element( 'h2', null, wfMsg( 'history' ) ) . "\n" );
1178
1179 if( $haveRevisions ) {
1180 # The page's stored (deleted) history:
1181 $out->addHTML( '<ul>' );
1182 $remaining = $revisions->numRows();
1183 $earliestLiveTime = $this->mTargetObj->getEarliestRevTime();
1184
1185 foreach ( $revisions as $row ) {
1186 $remaining--;
1187 $out->addHTML( $this->formatRevisionRow( $row, $earliestLiveTime, $remaining ) );
1188 }
1189 $revisions->free();
1190 $out->addHTML( '</ul>' );
1191 } else {
1192 $out->addWikiMsg( 'nohistory' );
1193 }
1194
1195 if( $haveFiles ) {
1196 $out->addHTML( Xml::element( 'h2', null, wfMsg( 'filehist' ) ) . "\n" );
1197 $out->addHTML( '<ul>' );
1198 foreach ( $files as $row ) {
1199 $out->addHTML( $this->formatFileRow( $row ) );
1200 }
1201 $files->free();
1202 $out->addHTML( '</ul>' );
1203 }
1204
1205 if ( $this->mAllowed ) {
1206 # Slip in the hidden controls here
1207 $misc = Html::hidden( 'target', $this->mTarget );
1208 $misc .= Html::hidden( 'wpEditToken', $this->getUser()->editToken() );
1209 $misc .= Xml::closeElement( 'form' );
1210 $out->addHTML( $misc );
1211 }
1212
1213 return true;
1214 }
1215
1216 private function formatRevisionRow( $row, $earliestLiveTime, $remaining ) {
1217 $rev = Revision::newFromArchiveRow( $row,
1218 array( 'page' => $this->mTargetObj->getArticleId() ) );
1219 $stxt = '';
1220 $ts = wfTimestamp( TS_MW, $row->ar_timestamp );
1221 // Build checkboxen...
1222 if( $this->mAllowed ) {
1223 if( $this->mInvert ) {
1224 if( in_array( $ts, $this->mTargetTimestamp ) ) {
1225 $checkBox = Xml::check( "ts$ts" );
1226 } else {
1227 $checkBox = Xml::check( "ts$ts", true );
1228 }
1229 } else {
1230 $checkBox = Xml::check( "ts$ts" );
1231 }
1232 } else {
1233 $checkBox = '';
1234 }
1235 // Build page & diff links...
1236 if( $this->mCanView ) {
1237 $titleObj = $this->getTitle();
1238 # Last link
1239 if( !$rev->userCan( Revision::DELETED_TEXT ) ) {
1240 $pageLink = htmlspecialchars( $this->getLang()->timeanddate( $ts, true ) );
1241 $last = wfMsgHtml( 'diff' );
1242 } elseif( $remaining > 0 || ( $earliestLiveTime && $ts > $earliestLiveTime ) ) {
1243 $pageLink = $this->getPageLink( $rev, $titleObj, $ts );
1244 $last = Linker::linkKnown(
1245 $titleObj,
1246 wfMsgHtml( 'diff' ),
1247 array(),
1248 array(
1249 'target' => $this->mTargetObj->getPrefixedText(),
1250 'timestamp' => $ts,
1251 'diff' => 'prev'
1252 )
1253 );
1254 } else {
1255 $pageLink = $this->getPageLink( $rev, $titleObj, $ts );
1256 $last = wfMsgHtml( 'diff' );
1257 }
1258 } else {
1259 $pageLink = htmlspecialchars( $this->getLang()->timeanddate( $ts, true ) );
1260 $last = wfMsgHtml( 'diff' );
1261 }
1262 // User links
1263 $userLink = Linker::revUserTools( $rev );
1264 // Revision text size
1265 $size = $row->ar_len;
1266 if( !is_null( $size ) ) {
1267 $stxt = Linker::formatRevisionSize( $size );
1268 }
1269 // Edit summary
1270 $comment = Linker::revComment( $rev );
1271 // Revision delete links
1272 $revdlink = $this->revDeleteLink( $rev );
1273 return "<li>$checkBox $revdlink ($last) $pageLink . . $userLink $stxt $comment</li>";
1274 }
1275
1276 private function formatFileRow( $row ) {
1277 $file = ArchivedFile::newFromRow( $row );
1278
1279 $ts = wfTimestamp( TS_MW, $row->fa_timestamp );
1280 if( $this->mAllowed && $row->fa_storage_key ) {
1281 $checkBox = Xml::check( 'fileid' . $row->fa_id );
1282 $key = urlencode( $row->fa_storage_key );
1283 $pageLink = $this->getFileLink( $file, $this->getTitle(), $ts, $key );
1284 } else {
1285 $checkBox = '';
1286 $pageLink = $this->getLang()->timeanddate( $ts, true );
1287 }
1288 $userLink = $this->getFileUser( $file );
1289 $data =
1290 wfMsg( 'widthheight',
1291 $this->getLang()->formatNum( $row->fa_width ),
1292 $this->getLang()->formatNum( $row->fa_height ) ) .
1293 ' (' .
1294 wfMsg( 'nbytes', $this->getLang()->formatNum( $row->fa_size ) ) .
1295 ')';
1296 $data = htmlspecialchars( $data );
1297 $comment = $this->getFileComment( $file );
1298 // Add show/hide deletion links if available
1299 $canHide = $this->getUser()->isAllowed( 'deleterevision' );
1300 if( $canHide || ( $file->getVisibility() && $this->getUser()->isAllowed( 'deletedhistory' ) ) ) {
1301 if( !$file->userCan( File::DELETED_RESTRICTED ) ) {
1302 $revdlink = Linker::revDeleteLinkDisabled( $canHide ); // revision was hidden from sysops
1303 } else {
1304 $query = array(
1305 'type' => 'filearchive',
1306 'target' => $this->mTargetObj->getPrefixedDBkey(),
1307 'ids' => $row->fa_id
1308 );
1309 $revdlink = Linker::revDeleteLink( $query,
1310 $file->isDeleted( File::DELETED_RESTRICTED ), $canHide );
1311 }
1312 } else {
1313 $revdlink = '';
1314 }
1315 return "<li>$checkBox $revdlink $pageLink . . $userLink $data $comment</li>\n";
1316 }
1317
1318 /**
1319 * Fetch revision text link if it's available to all users
1320 *
1321 * @param $rev Revision
1322 * @return string
1323 */
1324 function getPageLink( $rev, $titleObj, $ts ) {
1325 $time = htmlspecialchars( $this->getLang()->timeanddate( $ts, true ) );
1326
1327 if( !$rev->userCan( Revision::DELETED_TEXT ) ) {
1328 return '<span class="history-deleted">' . $time . '</span>';
1329 } else {
1330 $link = Linker::linkKnown(
1331 $titleObj,
1332 $time,
1333 array(),
1334 array(
1335 'target' => $this->mTargetObj->getPrefixedText(),
1336 'timestamp' => $ts
1337 )
1338 );
1339 if( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
1340 $link = '<span class="history-deleted">' . $link . '</span>';
1341 }
1342 return $link;
1343 }
1344 }
1345
1346 /**
1347 * Fetch image view link if it's available to all users
1348 *
1349 * @param $file File
1350 * @return String: HTML fragment
1351 */
1352 function getFileLink( $file, $titleObj, $ts, $key ) {
1353 if( !$file->userCan( File::DELETED_FILE ) ) {
1354 return '<span class="history-deleted">' . $this->getLang()->timeanddate( $ts, true ) . '</span>';
1355 } else {
1356 $link = Linker::linkKnown(
1357 $titleObj,
1358 $this->getLang()->timeanddate( $ts, true ),
1359 array(),
1360 array(
1361 'target' => $this->mTargetObj->getPrefixedText(),
1362 'file' => $key,
1363 'token' => $this->getUser()->editToken( $key )
1364 )
1365 );
1366 if( $file->isDeleted( File::DELETED_FILE ) ) {
1367 $link = '<span class="history-deleted">' . $link . '</span>';
1368 }
1369 return $link;
1370 }
1371 }
1372
1373 /**
1374 * Fetch file's user id if it's available to this user
1375 *
1376 * @param $file File
1377 * @return String: HTML fragment
1378 */
1379 function getFileUser( $file ) {
1380 if( !$file->userCan( File::DELETED_USER ) ) {
1381 return '<span class="history-deleted">' . wfMsgHtml( 'rev-deleted-user' ) . '</span>';
1382 } else {
1383 $link = Linker::userLink( $file->getRawUser(), $file->getRawUserText() ) .
1384 Linker::userToolLinks( $file->getRawUser(), $file->getRawUserText() );
1385 if( $file->isDeleted( File::DELETED_USER ) ) {
1386 $link = '<span class="history-deleted">' . $link . '</span>';
1387 }
1388 return $link;
1389 }
1390 }
1391
1392 /**
1393 * Fetch file upload comment if it's available to this user
1394 *
1395 * @param $file File
1396 * @return String: HTML fragment
1397 */
1398 function getFileComment( $file ) {
1399 if( !$file->userCan( File::DELETED_COMMENT ) ) {
1400 return '<span class="history-deleted"><span class="comment">' .
1401 wfMsgHtml( 'rev-deleted-comment' ) . '</span></span>';
1402 } else {
1403 $link = Linker::commentBlock( $file->getRawDescription() );
1404 if( $file->isDeleted( File::DELETED_COMMENT ) ) {
1405 $link = '<span class="history-deleted">' . $link . '</span>';
1406 }
1407 return $link;
1408 }
1409 }
1410
1411 function undelete() {
1412 if ( wfReadOnly() ) {
1413 throw new ReadOnlyError;
1414 }
1415
1416 if( !is_null( $this->mTargetObj ) ) {
1417 $archive = new PageArchive( $this->mTargetObj );
1418 wfRunHooks( 'UndeleteForm::undelete', array( &$archive, $this->mTargetObj ) );
1419 $ok = $archive->undelete(
1420 $this->mTargetTimestamp,
1421 $this->mComment,
1422 $this->mFileVersions,
1423 $this->mUnsuppress );
1424
1425 if( is_array( $ok ) ) {
1426 if ( $ok[1] ) { // Undeleted file count
1427 wfRunHooks( 'FileUndeleteComplete', array(
1428 $this->mTargetObj, $this->mFileVersions,
1429 $this->getUser(), $this->mComment ) );
1430 }
1431
1432 $link = Linker::linkKnown( $this->mTargetObj );
1433 $this->getOutput()->addHTML( wfMessage( 'undeletedpage' )->rawParams( $link )->parse() );
1434 } else {
1435 $this->getOutput()->showFatalError( wfMsg( 'cannotundelete' ) );
1436 $this->getOutput()->addWikiMsg( 'undeleterevdel' );
1437 }
1438
1439 // Show file deletion warnings and errors
1440 $status = $archive->getFileStatus();
1441 if( $status && !$status->isGood() ) {
1442 $this->getOutput()->addWikiText( $status->getWikiText( 'undelete-error-short', 'undelete-error-long' ) );
1443 }
1444 } else {
1445 $this->getOutput()->showFatalError( wfMsg( 'cannotundelete' ) );
1446 }
1447 return false;
1448 }
1449 }