MediaWiki  1.27.2
SpecialUndelete.php
Go to the documentation of this file.
1 <?php
29 class PageArchive {
31  protected $title;
32 
34  protected $fileStatus;
35 
37  protected $revisionStatus;
38 
40  protected $config;
41 
42  function __construct( $title, Config $config = null ) {
43  if ( is_null( $title ) ) {
44  throw new MWException( __METHOD__ . ' given a null title.' );
45  }
46  $this->title = $title;
47  if ( $config === null ) {
48  wfDebug( __METHOD__ . ' did not have a Config object passed to it' );
49  $config = ConfigFactory::getDefaultInstance()->makeConfig( 'main' );
50  }
51  $this->config = $config;
52  }
53 
54  public function doesWrites() {
55  return true;
56  }
57 
65  public static function listAllPages() {
66  $dbr = wfGetDB( DB_SLAVE );
67 
68  return self::listPages( $dbr, '' );
69  }
70 
79  public static function listPagesByPrefix( $prefix ) {
80  $dbr = wfGetDB( DB_SLAVE );
81 
82  $title = Title::newFromText( $prefix );
83  if ( $title ) {
84  $ns = $title->getNamespace();
85  $prefix = $title->getDBkey();
86  } else {
87  // Prolly won't work too good
88  // @todo handle bare namespace names cleanly?
89  $ns = 0;
90  }
91 
92  $conds = [
93  'ar_namespace' => $ns,
94  'ar_title' . $dbr->buildLike( $prefix, $dbr->anyString() ),
95  ];
96 
97  return self::listPages( $dbr, $conds );
98  }
99 
105  protected static function listPages( $dbr, $condition ) {
106  return $dbr->select(
107  [ 'archive' ],
108  [
109  'ar_namespace',
110  'ar_title',
111  'count' => 'COUNT(*)'
112  ],
113  $condition,
114  __METHOD__,
115  [
116  'GROUP BY' => [ 'ar_namespace', 'ar_title' ],
117  'ORDER BY' => [ 'ar_namespace', 'ar_title' ],
118  'LIMIT' => 100,
119  ]
120  );
121  }
122 
129  function listRevisions() {
130  $dbr = wfGetDB( DB_SLAVE );
131 
132  $tables = [ 'archive' ];
133 
134  $fields = [
135  'ar_minor_edit', 'ar_timestamp', 'ar_user', 'ar_user_text',
136  'ar_comment', 'ar_len', 'ar_deleted', 'ar_rev_id', 'ar_sha1',
137  ];
138 
139  if ( $this->config->get( 'ContentHandlerUseDB' ) ) {
140  $fields[] = 'ar_content_format';
141  $fields[] = 'ar_content_model';
142  }
143 
144  $conds = [ 'ar_namespace' => $this->title->getNamespace(),
145  'ar_title' => $this->title->getDBkey() ];
146 
147  $options = [ 'ORDER BY' => 'ar_timestamp DESC' ];
148 
149  $join_conds = [];
150 
152  $tables,
153  $fields,
154  $conds,
155  $join_conds,
156  $options,
157  ''
158  );
159 
160  return $dbr->select( $tables,
161  $fields,
162  $conds,
163  __METHOD__,
164  $options,
165  $join_conds
166  );
167  }
168 
177  function listFiles() {
178  if ( $this->title->getNamespace() != NS_FILE ) {
179  return null;
180  }
181 
182  $dbr = wfGetDB( DB_SLAVE );
183  return $dbr->select(
184  'filearchive',
186  [ 'fa_name' => $this->title->getDBkey() ],
187  __METHOD__,
188  [ 'ORDER BY' => 'fa_timestamp DESC' ]
189  );
190  }
191 
199  function getRevision( $timestamp ) {
200  $dbr = wfGetDB( DB_SLAVE );
201 
202  $fields = [
203  'ar_rev_id',
204  'ar_text',
205  'ar_comment',
206  'ar_user',
207  'ar_user_text',
208  'ar_timestamp',
209  'ar_minor_edit',
210  'ar_flags',
211  'ar_text_id',
212  'ar_deleted',
213  'ar_len',
214  'ar_sha1',
215  ];
216 
217  if ( $this->config->get( 'ContentHandlerUseDB' ) ) {
218  $fields[] = 'ar_content_format';
219  $fields[] = 'ar_content_model';
220  }
221 
222  $row = $dbr->selectRow( 'archive',
223  $fields,
224  [ 'ar_namespace' => $this->title->getNamespace(),
225  'ar_title' => $this->title->getDBkey(),
226  'ar_timestamp' => $dbr->timestamp( $timestamp ) ],
227  __METHOD__ );
228 
229  if ( $row ) {
230  return Revision::newFromArchiveRow( $row, [ 'title' => $this->title ] );
231  }
232 
233  return null;
234  }
235 
247  $dbr = wfGetDB( DB_SLAVE );
248 
249  // Check the previous deleted revision...
250  $row = $dbr->selectRow( 'archive',
251  'ar_timestamp',
252  [ 'ar_namespace' => $this->title->getNamespace(),
253  'ar_title' => $this->title->getDBkey(),
254  'ar_timestamp < ' .
255  $dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ],
256  __METHOD__,
257  [
258  'ORDER BY' => 'ar_timestamp DESC',
259  'LIMIT' => 1 ] );
260  $prevDeleted = $row ? wfTimestamp( TS_MW, $row->ar_timestamp ) : false;
261 
262  $row = $dbr->selectRow( [ 'page', 'revision' ],
263  [ 'rev_id', 'rev_timestamp' ],
264  [
265  'page_namespace' => $this->title->getNamespace(),
266  'page_title' => $this->title->getDBkey(),
267  'page_id = rev_page',
268  'rev_timestamp < ' .
269  $dbr->addQuotes( $dbr->timestamp( $timestamp ) ) ],
270  __METHOD__,
271  [
272  'ORDER BY' => 'rev_timestamp DESC',
273  'LIMIT' => 1 ] );
274  $prevLive = $row ? wfTimestamp( TS_MW, $row->rev_timestamp ) : false;
275  $prevLiveId = $row ? intval( $row->rev_id ) : null;
276 
277  if ( $prevLive && $prevLive > $prevDeleted ) {
278  // Most prior revision was live
279  return Revision::newFromId( $prevLiveId );
280  } elseif ( $prevDeleted ) {
281  // Most prior revision was deleted
282  return $this->getRevision( $prevDeleted );
283  }
284 
285  // No prior revision on this page.
286  return null;
287  }
288 
295  function getTextFromRow( $row ) {
296  if ( is_null( $row->ar_text_id ) ) {
297  // An old row from MediaWiki 1.4 or previous.
298  // Text is embedded in this row in classic compression format.
299  return Revision::getRevisionText( $row, 'ar_' );
300  }
301 
302  // New-style: keyed to the text storage backend.
303  $dbr = wfGetDB( DB_SLAVE );
304  $text = $dbr->selectRow( 'text',
305  [ 'old_text', 'old_flags' ],
306  [ 'old_id' => $row->ar_text_id ],
307  __METHOD__ );
308 
309  return Revision::getRevisionText( $text );
310  }
311 
320  function getLastRevisionText() {
321  $dbr = wfGetDB( DB_SLAVE );
322  $row = $dbr->selectRow( 'archive',
323  [ 'ar_text', 'ar_flags', 'ar_text_id' ],
324  [ 'ar_namespace' => $this->title->getNamespace(),
325  'ar_title' => $this->title->getDBkey() ],
326  __METHOD__,
327  [ 'ORDER BY' => 'ar_timestamp DESC' ] );
328 
329  if ( $row ) {
330  return $this->getTextFromRow( $row );
331  }
332 
333  return null;
334  }
335 
341  function isDeleted() {
342  $dbr = wfGetDB( DB_SLAVE );
343  $n = $dbr->selectField( 'archive', 'COUNT(ar_title)',
344  [ 'ar_namespace' => $this->title->getNamespace(),
345  'ar_title' => $this->title->getDBkey() ],
346  __METHOD__
347  );
348 
349  return ( $n > 0 );
350  }
351 
368  function undelete( $timestamps, $comment = '', $fileVersions = [],
369  $unsuppress = false, User $user = null, $tags = null
370  ) {
371  // If both the set of text revisions and file revisions are empty,
372  // restore everything. Otherwise, just restore the requested items.
373  $restoreAll = empty( $timestamps ) && empty( $fileVersions );
374 
375  $restoreText = $restoreAll || !empty( $timestamps );
376  $restoreFiles = $restoreAll || !empty( $fileVersions );
377 
378  if ( $restoreFiles && $this->title->getNamespace() == NS_FILE ) {
379  $img = wfLocalFile( $this->title );
380  $img->load( File::READ_LATEST );
381  $this->fileStatus = $img->restore( $fileVersions, $unsuppress );
382  if ( !$this->fileStatus->isOK() ) {
383  return false;
384  }
385  $filesRestored = $this->fileStatus->successCount;
386  } else {
387  $filesRestored = 0;
388  }
389 
390  if ( $restoreText ) {
391  $this->revisionStatus = $this->undeleteRevisions( $timestamps, $unsuppress, $comment );
392  if ( !$this->revisionStatus->isOK() ) {
393  return false;
394  }
395 
396  $textRestored = $this->revisionStatus->getValue();
397  } else {
398  $textRestored = 0;
399  }
400 
401  // Touch the log!
402 
403  if ( $textRestored && $filesRestored ) {
404  $reason = wfMessage( 'undeletedrevisions-files' )
405  ->numParams( $textRestored, $filesRestored )->inContentLanguage()->text();
406  } elseif ( $textRestored ) {
407  $reason = wfMessage( 'undeletedrevisions' )->numParams( $textRestored )
408  ->inContentLanguage()->text();
409  } elseif ( $filesRestored ) {
410  $reason = wfMessage( 'undeletedfiles' )->numParams( $filesRestored )
411  ->inContentLanguage()->text();
412  } else {
413  wfDebug( "Undelete: nothing undeleted...\n" );
414 
415  return false;
416  }
417 
418  if ( trim( $comment ) != '' ) {
419  $reason .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $comment;
420  }
421 
422  if ( $user === null ) {
423  global $wgUser;
424  $user = $wgUser;
425  }
426 
427  $logEntry = new ManualLogEntry( 'delete', 'restore' );
428  $logEntry->setPerformer( $user );
429  $logEntry->setTarget( $this->title );
430  $logEntry->setComment( $reason );
431  $logEntry->setTags( $tags );
432 
433  Hooks::run( 'ArticleUndeleteLogEntry', [ $this, &$logEntry, $user ] );
434 
435  $logid = $logEntry->insert();
436  $logEntry->publish( $logid );
437 
438  return [ $textRestored, $filesRestored, $reason ];
439  }
440 
453  private function undeleteRevisions( $timestamps, $unsuppress = false, $comment = '' ) {
454  if ( wfReadOnly() ) {
455  throw new ReadOnlyError();
456  }
457 
458  $restoreAll = empty( $timestamps );
459  $dbw = wfGetDB( DB_MASTER );
460 
461  # Does this page already exist? We'll have to update it...
462  $article = WikiPage::factory( $this->title );
463  # Load latest data for the current page (bug 31179)
464  $article->loadPageData( 'fromdbmaster' );
465  $oldcountable = $article->isCountable();
466 
467  $page = $dbw->selectRow( 'page',
468  [ 'page_id', 'page_latest' ],
469  [ 'page_namespace' => $this->title->getNamespace(),
470  'page_title' => $this->title->getDBkey() ],
471  __METHOD__,
472  [ 'FOR UPDATE' ] // lock page
473  );
474 
475  if ( $page ) {
476  $makepage = false;
477  # Page already exists. Import the history, and if necessary
478  # we'll update the latest revision field in the record.
479 
480  $previousRevId = $page->page_latest;
481 
482  # Get the time span of this page
483  $previousTimestamp = $dbw->selectField( 'revision', 'rev_timestamp',
484  [ 'rev_id' => $previousRevId ],
485  __METHOD__ );
486 
487  if ( $previousTimestamp === false ) {
488  wfDebug( __METHOD__ . ": existing page refers to a page_latest that does not exist\n" );
489 
490  $status = Status::newGood( 0 );
491  $status->warning( 'undeleterevision-missing' );
492 
493  return $status;
494  }
495  } else {
496  # Have to create a new article...
497  $makepage = true;
498  $previousRevId = 0;
499  $previousTimestamp = 0;
500  }
501 
502  $oldWhere = [
503  'ar_namespace' => $this->title->getNamespace(),
504  'ar_title' => $this->title->getDBkey(),
505  ];
506  if ( !$restoreAll ) {
507  $oldWhere['ar_timestamp'] = array_map( [ &$dbw, 'timestamp' ], $timestamps );
508  }
509 
510  $fields = [
511  'ar_rev_id',
512  'ar_text',
513  'ar_comment',
514  'ar_user',
515  'ar_user_text',
516  'ar_timestamp',
517  'ar_minor_edit',
518  'ar_flags',
519  'ar_text_id',
520  'ar_deleted',
521  'ar_page_id',
522  'ar_len',
523  'ar_sha1'
524  ];
525 
526  if ( $this->config->get( 'ContentHandlerUseDB' ) ) {
527  $fields[] = 'ar_content_format';
528  $fields[] = 'ar_content_model';
529  }
530 
534  $result = $dbw->select( 'archive',
535  $fields,
536  $oldWhere,
537  __METHOD__,
538  /* options */ [ 'ORDER BY' => 'ar_timestamp' ]
539  );
540 
541  $rev_count = $result->numRows();
542  if ( !$rev_count ) {
543  wfDebug( __METHOD__ . ": no revisions to restore\n" );
544 
545  $status = Status::newGood( 0 );
546  $status->warning( "undelete-no-results" );
547 
548  return $status;
549  }
550 
551  $result->seek( $rev_count - 1 ); // move to last
552  $row = $result->fetchObject(); // get newest archived rev
553  $oldPageId = (int)$row->ar_page_id; // pass this to ArticleUndelete hook
554  $result->seek( 0 ); // move back
555 
556  // grab the content to check consistency with global state before restoring the page.
557  $revision = Revision::newFromArchiveRow( $row,
558  [
559  'title' => $article->getTitle(), // used to derive default content model
560  ]
561  );
562  $user = User::newFromName( $revision->getUserText( Revision::RAW ), false );
563  $content = $revision->getContent( Revision::RAW );
564 
565  // NOTE: article ID may not be known yet. prepareSave() should not modify the database.
566  $status = $content->prepareSave( $article, 0, -1, $user );
567 
568  if ( !$status->isOK() ) {
569  return $status;
570  }
571 
572  if ( $makepage ) {
573  // Check the state of the newest to-be version...
574  if ( !$unsuppress && ( $row->ar_deleted & Revision::DELETED_TEXT ) ) {
575  return Status::newFatal( "undeleterevdel" );
576  }
577  // Safe to insert now...
578  $newid = $article->insertOn( $dbw, $row->ar_page_id );
579  if ( $newid === false ) {
580  // The old ID is reserved; let's pick another
581  $newid = $article->insertOn( $dbw );
582  }
583  $pageId = $newid;
584  } else {
585  // Check if a deleted revision will become the current revision...
586  if ( $row->ar_timestamp > $previousTimestamp ) {
587  // Check the state of the newest to-be version...
588  if ( !$unsuppress && ( $row->ar_deleted & Revision::DELETED_TEXT ) ) {
589  return Status::newFatal( "undeleterevdel" );
590  }
591  }
592 
593  $newid = false;
594  $pageId = $article->getId();
595  }
596 
597  $revision = null;
598  $restored = 0;
599 
600  foreach ( $result as $row ) {
601  // Check for key dupes due to needed archive integrity.
602  if ( $row->ar_rev_id ) {
603  $exists = $dbw->selectField( 'revision', '1',
604  [ 'rev_id' => $row->ar_rev_id ], __METHOD__ );
605  if ( $exists ) {
606  continue; // don't throw DB errors
607  }
608  }
609  // Insert one revision at a time...maintaining deletion status
610  // unless we are specifically removing all restrictions...
611  $revision = Revision::newFromArchiveRow( $row,
612  [
613  'page' => $pageId,
614  'title' => $this->title,
615  'deleted' => $unsuppress ? 0 : $row->ar_deleted
616  ] );
617 
618  $revision->insertOn( $dbw );
619  $restored++;
620 
621  Hooks::run( 'ArticleRevisionUndeleted', [ &$this->title, $revision, $row->ar_page_id ] );
622  }
623  # Now that it's safely stored, take it out of the archive
624  $dbw->delete( 'archive',
625  $oldWhere,
626  __METHOD__ );
627 
628  // Was anything restored at all?
629  if ( $restored == 0 ) {
630  return Status::newGood( 0 );
631  }
632 
633  $created = (bool)$newid;
634 
635  // Attach the latest revision to the page...
636  $wasnew = $article->updateIfNewerOn( $dbw, $revision, $previousRevId );
637  if ( $created || $wasnew ) {
638  // Update site stats, link tables, etc
639  $article->doEditUpdates(
640  $revision,
641  User::newFromName( $revision->getUserText( Revision::RAW ), false ),
642  [
643  'created' => $created,
644  'oldcountable' => $oldcountable,
645  'restored' => true
646  ]
647  );
648  }
649 
650  Hooks::run( 'ArticleUndelete', [ &$this->title, $created, $comment, $oldPageId ] );
651 
652  if ( $this->title->getNamespace() == NS_FILE ) {
653  DeferredUpdates::addUpdate( new HTMLCacheUpdate( $this->title, 'imagelinks' ) );
654  }
655 
656  return Status::newGood( $restored );
657  }
658 
662  function getFileStatus() {
663  return $this->fileStatus;
664  }
665 
669  function getRevisionStatus() {
670  return $this->revisionStatus;
671  }
672 }
673 
681  private $mAction;
682  private $mTarget;
683  private $mTimestamp;
684  private $mRestore;
685  private $mRevdel;
686  private $mInvert;
687  private $mFilename;
689  private $mAllowed;
690  private $mCanView;
691  private $mComment;
692  private $mToken;
693 
695  private $mTargetObj;
696 
697  function __construct() {
698  parent::__construct( 'Undelete', 'deletedhistory' );
699  }
700 
701  public function doesWrites() {
702  return true;
703  }
704 
705  function loadRequest( $par ) {
706  $request = $this->getRequest();
707  $user = $this->getUser();
708 
709  $this->mAction = $request->getVal( 'action' );
710  if ( $par !== null && $par !== '' ) {
711  $this->mTarget = $par;
712  } else {
713  $this->mTarget = $request->getVal( 'target' );
714  }
715 
716  $this->mTargetObj = null;
717 
718  if ( $this->mTarget !== null && $this->mTarget !== '' ) {
719  $this->mTargetObj = Title::newFromText( $this->mTarget );
720  }
721 
722  $this->mSearchPrefix = $request->getText( 'prefix' );
723  $time = $request->getVal( 'timestamp' );
724  $this->mTimestamp = $time ? wfTimestamp( TS_MW, $time ) : '';
725  $this->mFilename = $request->getVal( 'file' );
726 
727  $posted = $request->wasPosted() &&
728  $user->matchEditToken( $request->getVal( 'wpEditToken' ) );
729  $this->mRestore = $request->getCheck( 'restore' ) && $posted;
730  $this->mRevdel = $request->getCheck( 'revdel' ) && $posted;
731  $this->mInvert = $request->getCheck( 'invert' ) && $posted;
732  $this->mPreview = $request->getCheck( 'preview' ) && $posted;
733  $this->mDiff = $request->getCheck( 'diff' );
734  $this->mDiffOnly = $request->getBool( 'diffonly', $this->getUser()->getOption( 'diffonly' ) );
735  $this->mComment = $request->getText( 'wpComment' );
736  $this->mUnsuppress = $request->getVal( 'wpUnsuppress' ) && $user->isAllowed( 'suppressrevision' );
737  $this->mToken = $request->getVal( 'token' );
738 
739  if ( $this->isAllowed( 'undelete' ) && !$user->isBlocked() ) {
740  $this->mAllowed = true; // user can restore
741  $this->mCanView = true; // user can view content
742  } elseif ( $this->isAllowed( 'deletedtext' ) ) {
743  $this->mAllowed = false; // user cannot restore
744  $this->mCanView = true; // user can view content
745  $this->mRestore = false;
746  } else { // user can only view the list of revisions
747  $this->mAllowed = false;
748  $this->mCanView = false;
749  $this->mTimestamp = '';
750  $this->mRestore = false;
751  }
752 
753  if ( $this->mRestore || $this->mInvert ) {
754  $timestamps = [];
755  $this->mFileVersions = [];
756  foreach ( $request->getValues() as $key => $val ) {
757  $matches = [];
758  if ( preg_match( '/^ts(\d{14})$/', $key, $matches ) ) {
759  array_push( $timestamps, $matches[1] );
760  }
761 
762  if ( preg_match( '/^fileid(\d+)$/', $key, $matches ) ) {
763  $this->mFileVersions[] = intval( $matches[1] );
764  }
765  }
766  rsort( $timestamps );
767  $this->mTargetTimestamp = $timestamps;
768  }
769  }
770 
779  protected function isAllowed( $permission, User $user = null ) {
780  $user = $user ?: $this->getUser();
781  if ( $this->mTargetObj !== null ) {
782  return $this->mTargetObj->userCan( $permission, $user );
783  } else {
784  return $user->isAllowed( $permission );
785  }
786  }
787 
788  function userCanExecute( User $user ) {
789  return $this->isAllowed( $this->mRestriction, $user );
790  }
791 
792  function execute( $par ) {
793  $this->useTransactionalTimeLimit();
794 
795  $user = $this->getUser();
796 
797  $this->setHeaders();
798  $this->outputHeader();
799 
800  $this->loadRequest( $par );
801  $this->checkPermissions(); // Needs to be after mTargetObj is set
802 
803  $out = $this->getOutput();
804 
805  if ( is_null( $this->mTargetObj ) ) {
806  $out->addWikiMsg( 'undelete-header' );
807 
808  # Not all users can just browse every deleted page from the list
809  if ( $user->isAllowed( 'browsearchive' ) ) {
810  $this->showSearchForm();
811  }
812 
813  return;
814  }
815 
816  $this->addHelpLink( 'Help:Undelete' );
817  if ( $this->mAllowed ) {
818  $out->setPageTitle( $this->msg( 'undeletepage' ) );
819  } else {
820  $out->setPageTitle( $this->msg( 'viewdeletedpage' ) );
821  }
822 
823  $this->getSkin()->setRelevantTitle( $this->mTargetObj );
824 
825  if ( $this->mTimestamp !== '' ) {
826  $this->showRevision( $this->mTimestamp );
827  } elseif ( $this->mFilename !== null && $this->mTargetObj->inNamespace( NS_FILE ) ) {
828  $file = new ArchivedFile( $this->mTargetObj, '', $this->mFilename );
829  // Check if user is allowed to see this file
830  if ( !$file->exists() ) {
831  $out->addWikiMsg( 'filedelete-nofile', $this->mFilename );
832  } elseif ( !$file->userCan( File::DELETED_FILE, $user ) ) {
833  if ( $file->isDeleted( File::DELETED_RESTRICTED ) ) {
834  throw new PermissionsError( 'suppressrevision' );
835  } else {
836  throw new PermissionsError( 'deletedtext' );
837  }
838  } elseif ( !$user->matchEditToken( $this->mToken, $this->mFilename ) ) {
839  $this->showFileConfirmationForm( $this->mFilename );
840  } else {
841  $this->showFile( $this->mFilename );
842  }
843  } elseif ( $this->mAction === "submit" ) {
844  if ( $this->mRestore ) {
845  $this->undelete();
846  } elseif ( $this->mRevdel ) {
847  $this->redirectToRevDel();
848  }
849 
850  } else {
851  $this->showHistory();
852  }
853  }
854 
859  private function redirectToRevDel() {
860  $archive = new PageArchive( $this->mTargetObj );
861 
862  $revisions = [];
863 
864  foreach ( $this->getRequest()->getValues() as $key => $val ) {
865  $matches = [];
866  if ( preg_match( "/^ts(\d{14})$/", $key, $matches ) ) {
867  $revisions[ $archive->getRevision( $matches[1] )->getId() ] = 1;
868  }
869  }
870  $query = [
871  "type" => "revision",
872  "ids" => $revisions,
873  "target" => $this->mTargetObj->getPrefixedText()
874  ];
875  $url = SpecialPage::getTitleFor( "RevisionDelete" )->getFullURL( $query );
876  $this->getOutput()->redirect( $url );
877  }
878 
879  function showSearchForm() {
880  $out = $this->getOutput();
881  $out->setPageTitle( $this->msg( 'undelete-search-title' ) );
882  $out->addHTML(
883  Xml::openElement( 'form', [ 'method' => 'get', 'action' => wfScript() ] ) .
884  Xml::fieldset( $this->msg( 'undelete-search-box' )->text() ) .
885  Html::hidden( 'title', $this->getPageTitle()->getPrefixedDBkey() ) .
887  'label',
888  [ 'for' => 'prefix' ],
889  $this->msg( 'undelete-search-prefix' )->parse()
890  ) .
891  Xml::input(
892  'prefix',
893  20,
894  $this->mSearchPrefix,
895  [ 'id' => 'prefix', 'autofocus' => '' ]
896  ) . ' ' .
897  Xml::submitButton( $this->msg( 'undelete-search-submit' )->text() ) .
898  Xml::closeElement( 'fieldset' ) .
899  Xml::closeElement( 'form' )
900  );
901 
902  # List undeletable articles
903  if ( $this->mSearchPrefix ) {
904  $result = PageArchive::listPagesByPrefix( $this->mSearchPrefix );
905  $this->showList( $result );
906  }
907  }
908 
915  private function showList( $result ) {
916  $out = $this->getOutput();
917 
918  if ( $result->numRows() == 0 ) {
919  $out->addWikiMsg( 'undelete-no-results' );
920 
921  return false;
922  }
923 
924  $out->addWikiMsg( 'undeletepagetext', $this->getLanguage()->formatNum( $result->numRows() ) );
925 
926  $undelete = $this->getPageTitle();
927  $out->addHTML( "<ul>\n" );
928  foreach ( $result as $row ) {
929  $title = Title::makeTitleSafe( $row->ar_namespace, $row->ar_title );
930  if ( $title !== null ) {
931  $item = Linker::linkKnown(
932  $undelete,
933  htmlspecialchars( $title->getPrefixedText() ),
934  [],
935  [ 'target' => $title->getPrefixedText() ]
936  );
937  } else {
938  // The title is no longer valid, show as text
939  $item = Html::element(
940  'span',
941  [ 'class' => 'mw-invalidtitle' ],
943  $this->getContext(),
944  $row->ar_namespace,
945  $row->ar_title
946  )
947  );
948  }
949  $revs = $this->msg( 'undeleterevisions' )->numParams( $row->count )->parse();
950  $out->addHTML( "<li>{$item} ({$revs})</li>\n" );
951  }
952  $result->free();
953  $out->addHTML( "</ul>\n" );
954 
955  return true;
956  }
957 
958  private function showRevision( $timestamp ) {
959  if ( !preg_match( '/[0-9]{14}/', $timestamp ) ) {
960  return;
961  }
962 
963  $archive = new PageArchive( $this->mTargetObj, $this->getConfig() );
964  if ( !Hooks::run( 'UndeleteForm::showRevision', [ &$archive, $this->mTargetObj ] ) ) {
965  return;
966  }
967  $rev = $archive->getRevision( $timestamp );
968 
969  $out = $this->getOutput();
970  $user = $this->getUser();
971 
972  if ( !$rev ) {
973  $out->addWikiMsg( 'undeleterevision-missing' );
974 
975  return;
976  }
977 
978  if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
979  if ( !$rev->userCan( Revision::DELETED_TEXT, $user ) ) {
980  $out->wrapWikiMsg(
981  "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
982  $rev->isDeleted( Revision::DELETED_RESTRICTED ) ?
983  'rev-suppressed-text-permission' : 'rev-deleted-text-permission'
984  );
985 
986  return;
987  }
988 
989  $out->wrapWikiMsg(
990  "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
991  $rev->isDeleted( Revision::DELETED_RESTRICTED ) ?
992  'rev-suppressed-text-view' : 'rev-deleted-text-view'
993  );
994  $out->addHTML( '<br />' );
995  // and we are allowed to see...
996  }
997 
998  if ( $this->mDiff ) {
999  $previousRev = $archive->getPreviousRevision( $timestamp );
1000  if ( $previousRev ) {
1001  $this->showDiff( $previousRev, $rev );
1002  if ( $this->mDiffOnly ) {
1003  return;
1004  }
1005 
1006  $out->addHTML( '<hr />' );
1007  } else {
1008  $out->addWikiMsg( 'undelete-nodiff' );
1009  }
1010  }
1011 
1013  $this->getPageTitle( $this->mTargetObj->getPrefixedDBkey() ),
1014  htmlspecialchars( $this->mTargetObj->getPrefixedText() )
1015  );
1016 
1017  $lang = $this->getLanguage();
1018 
1019  // date and time are separate parameters to facilitate localisation.
1020  // $time is kept for backward compat reasons.
1021  $time = $lang->userTimeAndDate( $timestamp, $user );
1022  $d = $lang->userDate( $timestamp, $user );
1023  $t = $lang->userTime( $timestamp, $user );
1024  $userLink = Linker::revUserTools( $rev );
1025 
1026  $content = $rev->getContent( Revision::FOR_THIS_USER, $user );
1027 
1028  $isText = ( $content instanceof TextContent );
1029 
1030  if ( $this->mPreview || $isText ) {
1031  $openDiv = '<div id="mw-undelete-revision" class="mw-warning">';
1032  } else {
1033  $openDiv = '<div id="mw-undelete-revision">';
1034  }
1035  $out->addHTML( $openDiv );
1036 
1037  // Revision delete links
1038  if ( !$this->mDiff ) {
1039  $revdel = Linker::getRevDeleteLink( $user, $rev, $this->mTargetObj );
1040  if ( $revdel ) {
1041  $out->addHTML( "$revdel " );
1042  }
1043  }
1044 
1045  $out->addHTML( $this->msg( 'undelete-revision' )->rawParams( $link )->params(
1046  $time )->rawParams( $userLink )->params( $d, $t )->parse() . '</div>' );
1047 
1048  if ( !Hooks::run( 'UndeleteShowRevision', [ $this->mTargetObj, $rev ] ) ) {
1049  return;
1050  }
1051 
1052  if ( ( $this->mPreview || !$isText ) && $content ) {
1053  // NOTE: non-text content has no source view, so always use rendered preview
1054 
1055  // Hide [edit]s
1056  $popts = $out->parserOptions();
1057  $popts->setEditSection( false );
1058 
1059  $pout = $content->getParserOutput( $this->mTargetObj, $rev->getId(), $popts, true );
1060  $out->addParserOutput( $pout );
1061  }
1062 
1063  if ( $isText ) {
1064  // source view for textual content
1065  $sourceView = Xml::element(
1066  'textarea',
1067  [
1068  'readonly' => 'readonly',
1069  'cols' => $user->getIntOption( 'cols' ),
1070  'rows' => $user->getIntOption( 'rows' )
1071  ],
1072  $content->getNativeData() . "\n"
1073  );
1074 
1075  $previewButton = Xml::element( 'input', [
1076  'type' => 'submit',
1077  'name' => 'preview',
1078  'value' => $this->msg( 'showpreview' )->text()
1079  ] );
1080  } else {
1081  $sourceView = '';
1082  $previewButton = '';
1083  }
1084 
1085  $diffButton = Xml::element( 'input', [
1086  'name' => 'diff',
1087  'type' => 'submit',
1088  'value' => $this->msg( 'showdiff' )->text() ] );
1089 
1090  $out->addHTML(
1091  $sourceView .
1092  Xml::openElement( 'div', [
1093  'style' => 'clear: both' ] ) .
1094  Xml::openElement( 'form', [
1095  'method' => 'post',
1096  'action' => $this->getPageTitle()->getLocalURL( [ 'action' => 'submit' ] ) ] ) .
1097  Xml::element( 'input', [
1098  'type' => 'hidden',
1099  'name' => 'target',
1100  'value' => $this->mTargetObj->getPrefixedDBkey() ] ) .
1101  Xml::element( 'input', [
1102  'type' => 'hidden',
1103  'name' => 'timestamp',
1104  'value' => $timestamp ] ) .
1105  Xml::element( 'input', [
1106  'type' => 'hidden',
1107  'name' => 'wpEditToken',
1108  'value' => $user->getEditToken() ] ) .
1109  $previewButton .
1110  $diffButton .
1111  Xml::closeElement( 'form' ) .
1112  Xml::closeElement( 'div' )
1113  );
1114  }
1115 
1124  function showDiff( $previousRev, $currentRev ) {
1125  $diffContext = clone $this->getContext();
1126  $diffContext->setTitle( $currentRev->getTitle() );
1127  $diffContext->setWikiPage( WikiPage::factory( $currentRev->getTitle() ) );
1128 
1129  $diffEngine = $currentRev->getContentHandler()->createDifferenceEngine( $diffContext );
1130  $diffEngine->showDiffStyle();
1131 
1132  $formattedDiff = $diffEngine->generateContentDiffBody(
1133  $previousRev->getContent( Revision::FOR_THIS_USER, $this->getUser() ),
1134  $currentRev->getContent( Revision::FOR_THIS_USER, $this->getUser() )
1135  );
1136 
1137  $formattedDiff = $diffEngine->addHeader(
1138  $formattedDiff,
1139  $this->diffHeader( $previousRev, 'o' ),
1140  $this->diffHeader( $currentRev, 'n' )
1141  );
1142 
1143  $this->getOutput()->addHTML( "<div>$formattedDiff</div>\n" );
1144  }
1145 
1151  private function diffHeader( $rev, $prefix ) {
1152  $isDeleted = !( $rev->getId() && $rev->getTitle() );
1153  if ( $isDeleted ) {
1155  $targetPage = $this->getPageTitle();
1156  $targetQuery = [
1157  'target' => $this->mTargetObj->getPrefixedText(),
1158  'timestamp' => wfTimestamp( TS_MW, $rev->getTimestamp() )
1159  ];
1160  } else {
1162  $targetPage = $rev->getTitle();
1163  $targetQuery = [ 'oldid' => $rev->getId() ];
1164  }
1165 
1166  // Add show/hide deletion links if available
1167  $user = $this->getUser();
1168  $lang = $this->getLanguage();
1169  $rdel = Linker::getRevDeleteLink( $user, $rev, $this->mTargetObj );
1170 
1171  if ( $rdel ) {
1172  $rdel = " $rdel";
1173  }
1174 
1175  $minor = $rev->isMinor() ? ChangesList::flag( 'minor' ) : '';
1176 
1177  $tags = wfGetDB( DB_SLAVE )->selectField(
1178  'tag_summary',
1179  'ts_tags',
1180  [ 'ts_rev_id' => $rev->getId() ],
1181  __METHOD__
1182  );
1183  $tagSummary = ChangeTags::formatSummaryRow( $tags, 'deleteddiff', $this->getContext() );
1184 
1185  // FIXME This is reimplementing DifferenceEngine#getRevisionHeader
1186  // and partially #showDiffPage, but worse
1187  return '<div id="mw-diff-' . $prefix . 'title1"><strong>' .
1188  Linker::link(
1189  $targetPage,
1190  $this->msg(
1191  'revisionasof',
1192  $lang->userTimeAndDate( $rev->getTimestamp(), $user ),
1193  $lang->userDate( $rev->getTimestamp(), $user ),
1194  $lang->userTime( $rev->getTimestamp(), $user )
1195  )->escaped(),
1196  [],
1197  $targetQuery
1198  ) .
1199  '</strong></div>' .
1200  '<div id="mw-diff-' . $prefix . 'title2">' .
1201  Linker::revUserTools( $rev ) . '<br />' .
1202  '</div>' .
1203  '<div id="mw-diff-' . $prefix . 'title3">' .
1204  $minor . Linker::revComment( $rev ) . $rdel . '<br />' .
1205  '</div>' .
1206  '<div id="mw-diff-' . $prefix . 'title5">' .
1207  $tagSummary[0] . '<br />' .
1208  '</div>';
1209  }
1210 
1215  private function showFileConfirmationForm( $key ) {
1216  $out = $this->getOutput();
1217  $lang = $this->getLanguage();
1218  $user = $this->getUser();
1219  $file = new ArchivedFile( $this->mTargetObj, '', $this->mFilename );
1220  $out->addWikiMsg( 'undelete-show-file-confirm',
1221  $this->mTargetObj->getText(),
1222  $lang->userDate( $file->getTimestamp(), $user ),
1223  $lang->userTime( $file->getTimestamp(), $user ) );
1224  $out->addHTML(
1225  Xml::openElement( 'form', [
1226  'method' => 'POST',
1227  'action' => $this->getPageTitle()->getLocalURL( [
1228  'target' => $this->mTarget,
1229  'file' => $key,
1230  'token' => $user->getEditToken( $key ),
1231  ] ),
1232  ]
1233  ) .
1234  Xml::submitButton( $this->msg( 'undelete-show-file-submit' )->text() ) .
1235  '</form>'
1236  );
1237  }
1238 
1243  private function showFile( $key ) {
1244  $this->getOutput()->disable();
1245 
1246  # We mustn't allow the output to be CDN cached, otherwise
1247  # if an admin previews a deleted image, and it's cached, then
1248  # a user without appropriate permissions can toddle off and
1249  # nab the image, and CDN will serve it
1250  $response = $this->getRequest()->response();
1251  $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1252  $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
1253  $response->header( 'Pragma: no-cache' );
1254 
1255  $repo = RepoGroup::singleton()->getLocalRepo();
1256  $path = $repo->getZonePath( 'deleted' ) . '/' . $repo->getDeletedHashPath( $key ) . $key;
1257  $repo->streamFile( $path );
1258  }
1259 
1260  protected function showHistory() {
1261  $this->checkReadOnly();
1262 
1263  $out = $this->getOutput();
1264  if ( $this->mAllowed ) {
1265  $out->addModules( 'mediawiki.special.undelete' );
1266  }
1267  $out->wrapWikiMsg(
1268  "<div class='mw-undelete-pagetitle'>\n$1\n</div>\n",
1269  [ 'undeletepagetitle', wfEscapeWikiText( $this->mTargetObj->getPrefixedText() ) ]
1270  );
1271 
1272  $archive = new PageArchive( $this->mTargetObj, $this->getConfig() );
1273  Hooks::run( 'UndeleteForm::showHistory', [ &$archive, $this->mTargetObj ] );
1274  /*
1275  $text = $archive->getLastRevisionText();
1276  if( is_null( $text ) ) {
1277  $out->addWikiMsg( 'nohistory' );
1278  return;
1279  }
1280  */
1281  $out->addHTML( '<div class="mw-undelete-history">' );
1282  if ( $this->mAllowed ) {
1283  $out->addWikiMsg( 'undeletehistory' );
1284  $out->addWikiMsg( 'undeleterevdel' );
1285  } else {
1286  $out->addWikiMsg( 'undeletehistorynoadmin' );
1287  }
1288  $out->addHTML( '</div>' );
1289 
1290  # List all stored revisions
1291  $revisions = $archive->listRevisions();
1292  $files = $archive->listFiles();
1293 
1294  $haveRevisions = $revisions && $revisions->numRows() > 0;
1295  $haveFiles = $files && $files->numRows() > 0;
1296 
1297  # Batch existence check on user and talk pages
1298  if ( $haveRevisions ) {
1299  $batch = new LinkBatch();
1300  foreach ( $revisions as $row ) {
1301  $batch->addObj( Title::makeTitleSafe( NS_USER, $row->ar_user_text ) );
1302  $batch->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->ar_user_text ) );
1303  }
1304  $batch->execute();
1305  $revisions->seek( 0 );
1306  }
1307  if ( $haveFiles ) {
1308  $batch = new LinkBatch();
1309  foreach ( $files as $row ) {
1310  $batch->addObj( Title::makeTitleSafe( NS_USER, $row->fa_user_text ) );
1311  $batch->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->fa_user_text ) );
1312  }
1313  $batch->execute();
1314  $files->seek( 0 );
1315  }
1316 
1317  if ( $this->mAllowed ) {
1318  $action = $this->getPageTitle()->getLocalURL( [ 'action' => 'submit' ] );
1319  # Start the form here
1320  $top = Xml::openElement(
1321  'form',
1322  [ 'method' => 'post', 'action' => $action, 'id' => 'undelete' ]
1323  );
1324  $out->addHTML( $top );
1325  }
1326 
1327  # Show relevant lines from the deletion log:
1328  $deleteLogPage = new LogPage( 'delete' );
1329  $out->addHTML( Xml::element( 'h2', null, $deleteLogPage->getName()->text() ) . "\n" );
1330  LogEventsList::showLogExtract( $out, 'delete', $this->mTargetObj );
1331  # Show relevant lines from the suppression log:
1332  $suppressLogPage = new LogPage( 'suppress' );
1333  if ( $this->getUser()->isAllowed( 'suppressionlog' ) ) {
1334  $out->addHTML( Xml::element( 'h2', null, $suppressLogPage->getName()->text() ) . "\n" );
1335  LogEventsList::showLogExtract( $out, 'suppress', $this->mTargetObj );
1336  }
1337 
1338  if ( $this->mAllowed && ( $haveRevisions || $haveFiles ) ) {
1339  # Format the user-visible controls (comment field, submission button)
1340  # in a nice little table
1341  if ( $this->getUser()->isAllowed( 'suppressrevision' ) ) {
1342  $unsuppressBox =
1343  "<tr>
1344  <td>&#160;</td>
1345  <td class='mw-input'>" .
1346  Xml::checkLabel( $this->msg( 'revdelete-unsuppress' )->text(),
1347  'wpUnsuppress', 'mw-undelete-unsuppress', $this->mUnsuppress ) .
1348  "</td>
1349  </tr>";
1350  } else {
1351  $unsuppressBox = '';
1352  }
1353 
1354  $table = Xml::fieldset( $this->msg( 'undelete-fieldset-title' )->text() ) .
1355  Xml::openElement( 'table', [ 'id' => 'mw-undelete-table' ] ) .
1356  "<tr>
1357  <td colspan='2' class='mw-undelete-extrahelp'>" .
1358  $this->msg( 'undeleteextrahelp' )->parseAsBlock() .
1359  "</td>
1360  </tr>
1361  <tr>
1362  <td class='mw-label'>" .
1363  Xml::label( $this->msg( 'undeletecomment' )->text(), 'wpComment' ) .
1364  "</td>
1365  <td class='mw-input'>" .
1366  Xml::input(
1367  'wpComment',
1368  50,
1369  $this->mComment,
1370  [ 'id' => 'wpComment', 'autofocus' => '' ]
1371  ) .
1372  "</td>
1373  </tr>
1374  <tr>
1375  <td>&#160;</td>
1376  <td class='mw-submit'>" .
1378  $this->msg( 'undeletebtn' )->text(),
1379  [ 'name' => 'restore', 'id' => 'mw-undelete-submit' ]
1380  ) . ' ' .
1382  $this->msg( 'undeleteinvert' )->text(),
1383  [ 'name' => 'invert', 'id' => 'mw-undelete-invert' ]
1384  ) .
1385  "</td>
1386  </tr>" .
1387  $unsuppressBox .
1388  Xml::closeElement( 'table' ) .
1389  Xml::closeElement( 'fieldset' );
1390 
1391  $out->addHTML( $table );
1392  }
1393 
1394  $out->addHTML( Xml::element( 'h2', null, $this->msg( 'history' )->text() ) . "\n" );
1395 
1396  if ( $haveRevisions ) {
1397  # Show the page's stored (deleted) history
1398 
1399  if ( $this->getUser()->isAllowed( 'deleterevision' ) ) {
1400  $out->addHTML( Html::element(
1401  'button',
1402  [
1403  'name' => 'revdel',
1404  'type' => 'submit',
1405  'class' => 'deleterevision-log-submit mw-log-deleterevision-button'
1406  ],
1407  $this->msg( 'showhideselectedversions' )->text()
1408  ) . "\n" );
1409  }
1410 
1411  $out->addHTML( '<ul>' );
1412  $remaining = $revisions->numRows();
1413  $earliestLiveTime = $this->mTargetObj->getEarliestRevTime();
1414 
1415  foreach ( $revisions as $row ) {
1416  $remaining--;
1417  $out->addHTML( $this->formatRevisionRow( $row, $earliestLiveTime, $remaining ) );
1418  }
1419  $revisions->free();
1420  $out->addHTML( '</ul>' );
1421  } else {
1422  $out->addWikiMsg( 'nohistory' );
1423  }
1424 
1425  if ( $haveFiles ) {
1426  $out->addHTML( Xml::element( 'h2', null, $this->msg( 'filehist' )->text() ) . "\n" );
1427  $out->addHTML( '<ul>' );
1428  foreach ( $files as $row ) {
1429  $out->addHTML( $this->formatFileRow( $row ) );
1430  }
1431  $files->free();
1432  $out->addHTML( '</ul>' );
1433  }
1434 
1435  if ( $this->mAllowed ) {
1436  # Slip in the hidden controls here
1437  $misc = Html::hidden( 'target', $this->mTarget );
1438  $misc .= Html::hidden( 'wpEditToken', $this->getUser()->getEditToken() );
1439  $misc .= Xml::closeElement( 'form' );
1440  $out->addHTML( $misc );
1441  }
1442 
1443  return true;
1444  }
1445 
1446  protected function formatRevisionRow( $row, $earliestLiveTime, $remaining ) {
1448  [
1449  'title' => $this->mTargetObj
1450  ] );
1451 
1452  $revTextSize = '';
1453  $ts = wfTimestamp( TS_MW, $row->ar_timestamp );
1454  // Build checkboxen...
1455  if ( $this->mAllowed ) {
1456  if ( $this->mInvert ) {
1457  if ( in_array( $ts, $this->mTargetTimestamp ) ) {
1458  $checkBox = Xml::check( "ts$ts" );
1459  } else {
1460  $checkBox = Xml::check( "ts$ts", true );
1461  }
1462  } else {
1463  $checkBox = Xml::check( "ts$ts" );
1464  }
1465  } else {
1466  $checkBox = '';
1467  }
1468 
1469  // Build page & diff links...
1470  $user = $this->getUser();
1471  if ( $this->mCanView ) {
1472  $titleObj = $this->getPageTitle();
1473  # Last link
1474  if ( !$rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
1475  $pageLink = htmlspecialchars( $this->getLanguage()->userTimeAndDate( $ts, $user ) );
1476  $last = $this->msg( 'diff' )->escaped();
1477  } elseif ( $remaining > 0 || ( $earliestLiveTime && $ts > $earliestLiveTime ) ) {
1478  $pageLink = $this->getPageLink( $rev, $titleObj, $ts );
1480  $titleObj,
1481  $this->msg( 'diff' )->escaped(),
1482  [],
1483  [
1484  'target' => $this->mTargetObj->getPrefixedText(),
1485  'timestamp' => $ts,
1486  'diff' => 'prev'
1487  ]
1488  );
1489  } else {
1490  $pageLink = $this->getPageLink( $rev, $titleObj, $ts );
1491  $last = $this->msg( 'diff' )->escaped();
1492  }
1493  } else {
1494  $pageLink = htmlspecialchars( $this->getLanguage()->userTimeAndDate( $ts, $user ) );
1495  $last = $this->msg( 'diff' )->escaped();
1496  }
1497 
1498  // User links
1499  $userLink = Linker::revUserTools( $rev );
1500 
1501  // Minor edit
1502  $minor = $rev->isMinor() ? ChangesList::flag( 'minor' ) : '';
1503 
1504  // Revision text size
1505  $size = $row->ar_len;
1506  if ( !is_null( $size ) ) {
1507  $revTextSize = Linker::formatRevisionSize( $size );
1508  }
1509 
1510  // Edit summary
1512 
1513  // Tags
1514  $attribs = [];
1515  list( $tagSummary, $classes ) = ChangeTags::formatSummaryRow(
1516  $row->ts_tags,
1517  'deletedhistory',
1518  $this->getContext()
1519  );
1520  if ( $classes ) {
1521  $attribs['class'] = implode( ' ', $classes );
1522  }
1523 
1524  $revisionRow = $this->msg( 'undelete-revision-row2' )
1525  ->rawParams(
1526  $checkBox,
1527  $last,
1528  $pageLink,
1529  $userLink,
1530  $minor,
1531  $revTextSize,
1532  $comment,
1533  $tagSummary
1534  )
1535  ->escaped();
1536 
1537  return Xml::tags( 'li', $attribs, $revisionRow ) . "\n";
1538  }
1539 
1540  private function formatFileRow( $row ) {
1541  $file = ArchivedFile::newFromRow( $row );
1542  $ts = wfTimestamp( TS_MW, $row->fa_timestamp );
1543  $user = $this->getUser();
1544 
1545  $checkBox = '';
1546  if ( $this->mCanView && $row->fa_storage_key ) {
1547  if ( $this->mAllowed ) {
1548  $checkBox = Xml::check( 'fileid' . $row->fa_id );
1549  }
1550  $key = urlencode( $row->fa_storage_key );
1551  $pageLink = $this->getFileLink( $file, $this->getPageTitle(), $ts, $key );
1552  } else {
1553  $pageLink = $this->getLanguage()->userTimeAndDate( $ts, $user );
1554  }
1555  $userLink = $this->getFileUser( $file );
1556  $data = $this->msg( 'widthheight' )->numParams( $row->fa_width, $row->fa_height )->text();
1557  $bytes = $this->msg( 'parentheses' )
1558  ->rawParams( $this->msg( 'nbytes' )->numParams( $row->fa_size )->text() )
1559  ->plain();
1560  $data = htmlspecialchars( $data . ' ' . $bytes );
1561  $comment = $this->getFileComment( $file );
1562 
1563  // Add show/hide deletion links if available
1564  $canHide = $this->isAllowed( 'deleterevision' );
1565  if ( $canHide || ( $file->getVisibility() && $this->isAllowed( 'deletedhistory' ) ) ) {
1566  if ( !$file->userCan( File::DELETED_RESTRICTED, $user ) ) {
1567  // Revision was hidden from sysops
1568  $revdlink = Linker::revDeleteLinkDisabled( $canHide );
1569  } else {
1570  $query = [
1571  'type' => 'filearchive',
1572  'target' => $this->mTargetObj->getPrefixedDBkey(),
1573  'ids' => $row->fa_id
1574  ];
1575  $revdlink = Linker::revDeleteLink( $query,
1576  $file->isDeleted( File::DELETED_RESTRICTED ), $canHide );
1577  }
1578  } else {
1579  $revdlink = '';
1580  }
1581 
1582  return "<li>$checkBox $revdlink $pageLink . . $userLink $data $comment</li>\n";
1583  }
1584 
1593  function getPageLink( $rev, $titleObj, $ts ) {
1594  $user = $this->getUser();
1595  $time = $this->getLanguage()->userTimeAndDate( $ts, $user );
1596 
1597  if ( !$rev->userCan( Revision::DELETED_TEXT, $user ) ) {
1598  return '<span class="history-deleted">' . $time . '</span>';
1599  }
1600 
1602  $titleObj,
1603  htmlspecialchars( $time ),
1604  [],
1605  [
1606  'target' => $this->mTargetObj->getPrefixedText(),
1607  'timestamp' => $ts
1608  ]
1609  );
1610 
1611  if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
1612  $link = '<span class="history-deleted">' . $link . '</span>';
1613  }
1614 
1615  return $link;
1616  }
1617 
1628  function getFileLink( $file, $titleObj, $ts, $key ) {
1629  $user = $this->getUser();
1630  $time = $this->getLanguage()->userTimeAndDate( $ts, $user );
1631 
1632  if ( !$file->userCan( File::DELETED_FILE, $user ) ) {
1633  return '<span class="history-deleted">' . $time . '</span>';
1634  }
1635 
1637  $titleObj,
1638  htmlspecialchars( $time ),
1639  [],
1640  [
1641  'target' => $this->mTargetObj->getPrefixedText(),
1642  'file' => $key,
1643  'token' => $user->getEditToken( $key )
1644  ]
1645  );
1646 
1647  if ( $file->isDeleted( File::DELETED_FILE ) ) {
1648  $link = '<span class="history-deleted">' . $link . '</span>';
1649  }
1650 
1651  return $link;
1652  }
1653 
1660  function getFileUser( $file ) {
1661  if ( !$file->userCan( File::DELETED_USER, $this->getUser() ) ) {
1662  return '<span class="history-deleted">' .
1663  $this->msg( 'rev-deleted-user' )->escaped() .
1664  '</span>';
1665  }
1666 
1667  $link = Linker::userLink( $file->getRawUser(), $file->getRawUserText() ) .
1668  Linker::userToolLinks( $file->getRawUser(), $file->getRawUserText() );
1669 
1670  if ( $file->isDeleted( File::DELETED_USER ) ) {
1671  $link = '<span class="history-deleted">' . $link . '</span>';
1672  }
1673 
1674  return $link;
1675  }
1676 
1683  function getFileComment( $file ) {
1684  if ( !$file->userCan( File::DELETED_COMMENT, $this->getUser() ) ) {
1685  return '<span class="history-deleted"><span class="comment">' .
1686  $this->msg( 'rev-deleted-comment' )->escaped() . '</span></span>';
1687  }
1688 
1689  $link = Linker::commentBlock( $file->getRawDescription() );
1690 
1691  if ( $file->isDeleted( File::DELETED_COMMENT ) ) {
1692  $link = '<span class="history-deleted">' . $link . '</span>';
1693  }
1694 
1695  return $link;
1696  }
1697 
1698  function undelete() {
1699  if ( $this->getConfig()->get( 'UploadMaintenance' )
1700  && $this->mTargetObj->getNamespace() == NS_FILE
1701  ) {
1702  throw new ErrorPageError( 'undelete-error', 'filedelete-maintenance' );
1703  }
1704 
1705  $this->checkReadOnly();
1706 
1707  $out = $this->getOutput();
1708  $archive = new PageArchive( $this->mTargetObj, $this->getConfig() );
1709  Hooks::run( 'UndeleteForm::undelete', [ &$archive, $this->mTargetObj ] );
1710  $ok = $archive->undelete(
1711  $this->mTargetTimestamp,
1712  $this->mComment,
1713  $this->mFileVersions,
1714  $this->mUnsuppress,
1715  $this->getUser()
1716  );
1717 
1718  if ( is_array( $ok ) ) {
1719  if ( $ok[1] ) { // Undeleted file count
1720  Hooks::run( 'FileUndeleteComplete', [
1721  $this->mTargetObj, $this->mFileVersions,
1722  $this->getUser(), $this->mComment ] );
1723  }
1724 
1725  $link = Linker::linkKnown( $this->mTargetObj );
1726  $out->addHTML( $this->msg( 'undeletedpage' )->rawParams( $link )->parse() );
1727  } else {
1728  $out->setPageTitle( $this->msg( 'undelete-error' ) );
1729  }
1730 
1731  // Show revision undeletion warnings and errors
1732  $status = $archive->getRevisionStatus();
1733  if ( $status && !$status->isGood() ) {
1734  $out->addWikiText( '<div class="error">' .
1735  $status->getWikiText(
1736  'cannotundelete',
1737  'cannotundelete'
1738  ) . '</div>'
1739  );
1740  }
1741 
1742  // Show file undeletion warnings and errors
1743  $status = $archive->getFileStatus();
1744  if ( $status && !$status->isGood() ) {
1745  $out->addWikiText( '<div class="error">' .
1746  $status->getWikiText(
1747  'undelete-error-short',
1748  'undelete-error-long'
1749  ) . '</div>'
1750  );
1751  }
1752  }
1753 
1762  public function prefixSearchSubpages( $search, $limit, $offset ) {
1763  return $this->prefixSearchString( $search, $limit, $offset );
1764  }
1765 
1766  protected function getGroupName() {
1767  return 'pagetools';
1768  }
1769 }
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
Definition: User.php:568
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:99
getTextFromRow($row)
Get the text from an archive row containing ar_text, ar_flags and ar_text_id.
const FOR_THIS_USER
Definition: Revision.php:84
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it...
Definition: Linker.php:1656
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:762
const DELETED_COMMENT
Definition: File.php:53
static getRevisionText($row, $prefix= 'old_', $wiki=false)
Get revision text associated with an old or archive row $row is usually an object from wfFetchRow()...
Definition: Revision.php:1231
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1418
getFileComment($file)
Fetch file upload comment if it's available to this user.
static linkKnown($target, $html=null, $customAttribs=[], $query=[], $options=[ 'known', 'noclasses'])
Identical to link(), except $options defaults to 'known'.
Definition: Linker.php:264
magic word the default is to use $key to get the and $key value or $key value text $key value html to format the value $key
Definition: hooks.txt:2321
getContext()
Gets the context this SpecialPage is executed in.
wfScript($script= 'index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
static getRevDeleteLink(User $user, Revision $rev, Title $title)
Get a revision-deletion link, or disabled link, or nothing, depending on user permissions & the setti...
Definition: Linker.php:2256
showDiff($previousRev, $currentRev)
Build a diff display between this and the previous either deleted or non-deleted edit.
static element($element, $attribs=null, $contents= '', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
Definition: Xml.php:39
Show an error when the wiki is locked/read-only and the user tries to do something that requires writ...
static getTitleFor($name, $subpage=false, $fragment= '')
Get a localised Title object for a specified special page name.
Definition: SpecialPage.php:75
diffHeader($rev, $prefix)
static rawElement($element, $attribs=[], $contents= '')
Returns an HTML element in a string.
Definition: Html.php:210
if(!isset($args[0])) $lang
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
static formatRevisionSize($size)
Definition: Linker.php:1678
static hidden($name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
Definition: Html.php:759
$comment
showFile($key)
Show a deleted file version requested by the visitor.
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function array $article
Definition: hooks.txt:78
static input($name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
Definition: Xml.php:275
$files
getPreviousRevision($timestamp)
Return the most-previous revision, either live or deleted, against the deleted revision given by time...
msg()
Wrapper around wfMessage that sets the current context.
getOutput()
Get the OutputPage being used for this instance.
static check($name, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox.
Definition: Xml.php:324
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:277
this hook is for auditing only $response
Definition: hooks.txt:762
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
static newFatal($message)
Factory function for fatal errors.
Definition: Status.php:89
wfLocalFile($title)
Get an object referring to a locally registered file.
listRevisions()
List the revisions of the given page.
static submitButton($value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
Definition: Xml.php:460
addHelpLink($to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist & $tables
Definition: hooks.txt:965
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition: hooks.txt:1612
static label($label, $id, $attribs=[])
Convenience function to build an HTML form label.
Definition: Xml.php:359
Status $revisionStatus
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
static showLogExtract(&$out, $types=[], $page= '', $user= '', $param=[])
Show log extract.
const DELETED_FILE
Definition: File.php:52
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1796
outputHeader($summaryMessageKey= '')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
the value to return A Title object or null for latest to be modified or replaced by the hook handler or if authentication is not possible after cache objects are set for highlighting & $link
Definition: hooks.txt:2581
showList($result)
Generic list of deleted pages.
$batch
Definition: linkcache.txt:23
Class to simplify the use of log pages.
Definition: LogPage.php:32
formatRevisionRow($row, $earliestLiveTime, $remaining)
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:31
$last
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
showFileConfirmationForm($key)
Show a form confirming whether a tokenless user really wants to see a file.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1798
static fieldset($legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
Definition: Xml.php:578
static closeElement($element)
Shortcut to close an XML element.
Definition: Xml.php:118
redirectToRevDel()
Convert submitted form data to format expected by RevisionDelete and redirect the request...
Class representing a row of the 'filearchive' table.
Parent class for all special pages.
Definition: SpecialPage.php:36
undelete($timestamps, $comment= '', $fileVersions=[], $unsuppress=false, User $user=null, $tags=null)
Restore the given (or all) text and file revisions for the page.
static listPages($dbr, $condition)
listFiles()
List the deleted file revisions for this page, if it's a file page.
Content object implementation for representing flat text.
Definition: TextContent.php:35
wfEscapeWikiText($text)
Escapes the given text so that it may be output using addWikiText() without any linking, formatting, etc.
wfReadOnly()
Check whether the wiki is in read-only mode.
getPageLink($rev, $titleObj, $ts)
Fetch revision text link if it's available to all users.
isAllowed($permission, User $user=null)
Checks whether a user is allowed the permission for the specific title if one is set.
Status $fileStatus
static formatSummaryRow($tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
Definition: ChangeTags.php:45
An error page which can definitely be safely rendered using the OutputPage.
Class to invalidate the HTML cache of all the pages linking to a given title.
getDBkey()
Get the main part with underscores.
Definition: Title.php:911
if($limit) $timestamp
static selectFields()
Fields in the filearchive table.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1004
getFileUser($file)
Fetch file's user id if it's available to this user.
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
isDeleted()
Quick check if any archived revisions are present for the page.
static openElement($element, $attribs=null)
This opens an XML element.
Definition: Xml.php:109
getFileLink($file, $titleObj, $ts, $key)
Fetch image view link if it's available to all users.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"&lt
static revDeleteLinkDisabled($delete=true)
Creates a dead (show/hide) link for deleting revisions/log entries.
Definition: Linker.php:2318
getSkin()
Shortcut to get the skin being used for this instance.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes! ...
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:548
title
const DELETED_RESTRICTED
Definition: Revision.php:79
const DB_SLAVE
Definition: Defines.php:46
static listAllPages()
List all deleted pages recorded in the archive table.
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
static addUpdate(DeferrableUpdate $update, $type=self::POSTSEND)
Add an update to the deferred list.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
getNamespace()
Get the namespace index, i.e.
Definition: Title.php:934
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
const NS_FILE
Definition: Defines.php:75
static newFromRow($row)
Loads a file object from the filearchive table.
prefixSearchSubpages($search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition: hooks.txt:1584
const RAW
Definition: Revision.php:85
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
static link($target, $html=null, $customAttribs=[], $query=[], $options=[])
This function returns an HTML link to the given target.
Definition: Linker.php:195
const DELETED_USER
Definition: File.php:54
const DELETED_TEXT
Definition: Revision.php:76
const DELETED_RESTRICTED
Definition: File.php:55
static modifyDisplayQuery(&$tables, &$fields, &$conds, &$join_conds, &$options, $filter_tag=false)
Applies all tags-related changes to a query.
Definition: ChangeTags.php:615
static getDefaultInstance()
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
static newFromId($id, $flags=0)
Load a page revision from a given revision ID number.
Definition: Revision.php:99
static userLink($userId, $userName, $altUserName=false)
Make user link (or user contributions for unregistered users)
Definition: Linker.php:1102
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
static tags($element, $attribs=null, $contents)
Same as Xml::element(), but does not escape contents.
Definition: Xml.php:131
Special page allowing users with the appropriate permissions to view and restore deleted content...
Class for creating log entries manually, to inject them into the database.
Definition: LogEntry.php:394
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2418
userCanExecute(User $user)
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
getLastRevisionText()
Fetch (and decompress if necessary) the stored text of the most recently edited deleted revision of t...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition: hooks.txt:1004
getUser()
Shortcut to get the User executing this instance.
getConfig()
Shortcut to get main config object.
Show an error when a user tries to do something they do not have the necessary permissions for...
Used to show archived pages and eventually restore them.
static userToolLinks($userId, $userText, $redContribsWhenNoEdits=false, $flags=0, $edits=null)
Generate standard user tool links (talk, contributions, block link, etc.)
Definition: Linker.php:1133
getLanguage()
Shortcut to get user's language.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1004
getRevision($timestamp)
Return a Revision object containing data for the deleted revision.
showRevision($timestamp)
static listPagesByPrefix($prefix)
List deleted pages recorded in the archive table matching the given title prefix. ...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1004
static flag($flag, IContextSource $context=null)
Make an "" element for a given change flag.
static checkLabel($label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
Definition: Xml.php:420
const DB_MASTER
Definition: Defines.php:47
static getInvalidTitleDescription(IContextSource $context, $namespace, $title)
Get a message saying that an invalid title was encountered.
Definition: Linker.php:432
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
getRequest()
Get the WebRequest being used for this instance.
static commentBlock($comment, $title=null, $local=false, $wikiId=null)
Wrap a comment in standard punctuation and formatting if it's non-empty, otherwise return empty strin...
Definition: Linker.php:1632
undeleteRevisions($timestamps, $unsuppress=false, $comment= '')
This is the meaty bit – restores archived revisions of the given page to the cur/old tables...
prefixSearchString($search, $limit, $offset)
Perform a regular substring search for prefixSearchSubpages.
static newFromArchiveRow($row, $overrides=[])
Make a fake revision object from an archive table row.
Definition: Revision.php:172
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
const NS_USER_TALK
Definition: Defines.php:72
static revUserTools($rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
Definition: Linker.php:1252
static element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:230
static revDeleteLink($query=[], $restricted=false, $delete=true)
Creates a (show/hide) link for deleting revisions/log entries.
Definition: Linker.php:2297
__construct($title, Config $config=null)
static newGood($value=null)
Factory function for good results.
Definition: Status.php:101
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition: hooks.txt:1798
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2338
getPageTitle($subpage=false)
Get a self-referential title object.
$wgUser
Definition: Setup.php:794
$matches