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