MediaWiki  1.28.3
DifferenceEngine.php
Go to the documentation of this file.
1 <?php
25 define( 'MW_DIFF_VERSION', '1.11a' );
26 
39 
41  public $mOldid;
42 
44  public $mNewid;
45 
46  private $mOldTags;
47  private $mNewTags;
48 
50  public $mOldContent;
51 
53  public $mNewContent;
54 
56  protected $mDiffLang;
57 
59  public $mOldPage;
60 
62  public $mNewPage;
63 
65  public $mOldRev;
66 
68  public $mNewRev;
69 
71  private $mRevisionsIdsLoaded = false;
72 
74  public $mRevisionsLoaded = false;
75 
77  public $mTextLoaded = 0;
78 
80  public $mCacheHit = false;
81 
87  public $enableDebugComment = false;
88 
92  protected $mReducedLineNumbers = false;
93 
95  protected $mMarkPatrolledLink = null;
96 
98  protected $unhide = false;
99 
101  protected $mRefreshCache = false;
102 
114  public function __construct( $context = null, $old = 0, $new = 0, $rcid = 0,
115  $refreshCache = false, $unhide = false
116  ) {
117  if ( $context instanceof IContextSource ) {
118  $this->setContext( $context );
119  }
120 
121  wfDebug( "DifferenceEngine old '$old' new '$new' rcid '$rcid'\n" );
122 
123  $this->mOldid = $old;
124  $this->mNewid = $new;
125  $this->mRefreshCache = $refreshCache;
126  $this->unhide = $unhide;
127  }
128 
132  public function setReducedLineNumbers( $value = true ) {
133  $this->mReducedLineNumbers = $value;
134  }
135 
139  public function getDiffLang() {
140  if ( $this->mDiffLang === null ) {
141  # Default language in which the diff text is written.
142  $this->mDiffLang = $this->getTitle()->getPageLanguage();
143  }
144 
145  return $this->mDiffLang;
146  }
147 
151  public function wasCacheHit() {
152  return $this->mCacheHit;
153  }
154 
158  public function getOldid() {
159  $this->loadRevisionIds();
160 
161  return $this->mOldid;
162  }
163 
167  public function getNewid() {
168  $this->loadRevisionIds();
169 
170  return $this->mNewid;
171  }
172 
181  public function deletedLink( $id ) {
182  if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
183  $dbr = wfGetDB( DB_REPLICA );
184  $row = $dbr->selectRow( 'archive', '*',
185  [ 'ar_rev_id' => $id ],
186  __METHOD__ );
187  if ( $row ) {
189  $title = Title::makeTitleSafe( $row->ar_namespace, $row->ar_title );
190 
191  return SpecialPage::getTitleFor( 'Undelete' )->getFullURL( [
192  'target' => $title->getPrefixedText(),
193  'timestamp' => $rev->getTimestamp()
194  ] );
195  }
196  }
197 
198  return false;
199  }
200 
208  public function deletedIdMarker( $id ) {
209  $link = $this->deletedLink( $id );
210  if ( $link ) {
211  return "[$link $id]";
212  } else {
213  return $id;
214  }
215  }
216 
217  private function showMissingRevision() {
218  $out = $this->getOutput();
219 
220  $missing = [];
221  if ( $this->mOldRev === null ||
222  ( $this->mOldRev && $this->mOldContent === null )
223  ) {
224  $missing[] = $this->deletedIdMarker( $this->mOldid );
225  }
226  if ( $this->mNewRev === null ||
227  ( $this->mNewRev && $this->mNewContent === null )
228  ) {
229  $missing[] = $this->deletedIdMarker( $this->mNewid );
230  }
231 
232  $out->setPageTitle( $this->msg( 'errorpagetitle' ) );
233  $msg = $this->msg( 'difference-missing-revision' )
234  ->params( $this->getLanguage()->listToText( $missing ) )
235  ->numParams( count( $missing ) )
236  ->parseAsBlock();
237  $out->addHTML( $msg );
238  }
239 
240  public function showDiffPage( $diffOnly = false ) {
241  # Allow frames except in certain special cases
242  $out = $this->getOutput();
243  $out->allowClickjacking();
244  $out->setRobotPolicy( 'noindex,nofollow' );
245 
246  // Allow extensions to add any extra output here
247  Hooks::run( 'DifferenceEngineShowDiffPage', [ $out ] );
248 
249  if ( !$this->loadRevisionData() ) {
250  $this->showMissingRevision();
251 
252  return;
253  }
254 
255  $user = $this->getUser();
256  $permErrors = $this->mNewPage->getUserPermissionsErrors( 'read', $user );
257  if ( $this->mOldPage ) { # mOldPage might not be set, see below.
258  $permErrors = wfMergeErrorArrays( $permErrors,
259  $this->mOldPage->getUserPermissionsErrors( 'read', $user ) );
260  }
261  if ( count( $permErrors ) ) {
262  throw new PermissionsError( 'read', $permErrors );
263  }
264 
265  $rollback = '';
266 
267  $query = [];
268  # Carry over 'diffonly' param via navigation links
269  if ( $diffOnly != $user->getBoolOption( 'diffonly' ) ) {
270  $query['diffonly'] = $diffOnly;
271  }
272  # Cascade unhide param in links for easy deletion browsing
273  if ( $this->unhide ) {
274  $query['unhide'] = 1;
275  }
276 
277  # Check if one of the revisions is deleted/suppressed
278  $deleted = $suppressed = false;
279  $allowed = $this->mNewRev->userCan( Revision::DELETED_TEXT, $user );
280 
281  $revisionTools = [];
282 
283  # mOldRev is false if the difference engine is called with a "vague" query for
284  # a diff between a version V and its previous version V' AND the version V
285  # is the first version of that article. In that case, V' does not exist.
286  if ( $this->mOldRev === false ) {
287  $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
288  $samePage = true;
289  $oldHeader = '';
290  // Allow extensions to change the $oldHeader variable
291  Hooks::run( 'DifferenceEngineOldHeaderNoOldRev', [ &$oldHeader ] );
292  } else {
293  Hooks::run( 'DiffViewHeader', [ $this, $this->mOldRev, $this->mNewRev ] );
294 
295  if ( $this->mNewPage->equals( $this->mOldPage ) ) {
296  $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
297  $samePage = true;
298  } else {
299  $out->setPageTitle( $this->msg( 'difference-title-multipage',
300  $this->mOldPage->getPrefixedText(), $this->mNewPage->getPrefixedText() ) );
301  $out->addSubtitle( $this->msg( 'difference-multipage' ) );
302  $samePage = false;
303  }
304 
305  if ( $samePage && $this->mNewPage->quickUserCan( 'edit', $user ) ) {
306  if ( $this->mNewRev->isCurrent() && $this->mNewPage->userCan( 'rollback', $user ) ) {
307  $rollbackLink = Linker::generateRollback( $this->mNewRev, $this->getContext() );
308  if ( $rollbackLink ) {
309  $out->preventClickjacking();
310  $rollback = '&#160;&#160;&#160;' . $rollbackLink;
311  }
312  }
313 
314  if ( !$this->mOldRev->isDeleted( Revision::DELETED_TEXT ) &&
315  !$this->mNewRev->isDeleted( Revision::DELETED_TEXT )
316  ) {
317  $undoLink = Html::element( 'a', [
318  'href' => $this->mNewPage->getLocalURL( [
319  'action' => 'edit',
320  'undoafter' => $this->mOldid,
321  'undo' => $this->mNewid
322  ] ),
323  'title' => Linker::titleAttrib( 'undo' ),
324  ],
325  $this->msg( 'editundo' )->text()
326  );
327  $revisionTools['mw-diff-undo'] = $undoLink;
328  }
329  }
330 
331  # Make "previous revision link"
332  if ( $samePage && $this->mOldRev->getPrevious() ) {
333  $prevlink = Linker::linkKnown(
334  $this->mOldPage,
335  $this->msg( 'previousdiff' )->escaped(),
336  [ 'id' => 'differences-prevlink' ],
337  [ 'diff' => 'prev', 'oldid' => $this->mOldid ] + $query
338  );
339  } else {
340  $prevlink = '&#160;';
341  }
342 
343  if ( $this->mOldRev->isMinor() ) {
344  $oldminor = ChangesList::flag( 'minor' );
345  } else {
346  $oldminor = '';
347  }
348 
349  $ldel = $this->revisionDeleteLink( $this->mOldRev );
350  $oldRevisionHeader = $this->getRevisionHeader( $this->mOldRev, 'complete' );
351  $oldChangeTags = ChangeTags::formatSummaryRow( $this->mOldTags, 'diff', $this->getContext() );
352 
353  $oldHeader = '<div id="mw-diff-otitle1"><strong>' . $oldRevisionHeader . '</strong></div>' .
354  '<div id="mw-diff-otitle2">' .
355  Linker::revUserTools( $this->mOldRev, !$this->unhide ) . '</div>' .
356  '<div id="mw-diff-otitle3">' . $oldminor .
357  Linker::revComment( $this->mOldRev, !$diffOnly, !$this->unhide ) . $ldel . '</div>' .
358  '<div id="mw-diff-otitle5">' . $oldChangeTags[0] . '</div>' .
359  '<div id="mw-diff-otitle4">' . $prevlink . '</div>';
360 
361  // Allow extensions to change the $oldHeader variable
362  Hooks::run( 'DifferenceEngineOldHeader', [ $this, &$oldHeader, $prevlink, $oldminor,
363  $diffOnly, $ldel, $this->unhide ] );
364 
365  if ( $this->mOldRev->isDeleted( Revision::DELETED_TEXT ) ) {
366  $deleted = true; // old revisions text is hidden
367  if ( $this->mOldRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
368  $suppressed = true; // also suppressed
369  }
370  }
371 
372  # Check if this user can see the revisions
373  if ( !$this->mOldRev->userCan( Revision::DELETED_TEXT, $user ) ) {
374  $allowed = false;
375  }
376  }
377 
378  # Make "next revision link"
379  # Skip next link on the top revision
380  if ( $samePage && !$this->mNewRev->isCurrent() ) {
382  $this->mNewPage,
383  $this->msg( 'nextdiff' )->escaped(),
384  [ 'id' => 'differences-nextlink' ],
385  [ 'diff' => 'next', 'oldid' => $this->mNewid ] + $query
386  );
387  } else {
388  $nextlink = '&#160;';
389  }
390 
391  if ( $this->mNewRev->isMinor() ) {
392  $newminor = ChangesList::flag( 'minor' );
393  } else {
394  $newminor = '';
395  }
396 
397  # Handle RevisionDelete links...
398  $rdel = $this->revisionDeleteLink( $this->mNewRev );
399 
400  # Allow extensions to define their own revision tools
401  Hooks::run( 'DiffRevisionTools',
402  [ $this->mNewRev, &$revisionTools, $this->mOldRev, $user ] );
404  // Put each one in parentheses (poor man's button)
405  foreach ( $revisionTools as $key => $tool ) {
406  $toolClass = is_string( $key ) ? $key : 'mw-diff-tool';
407  $element = Html::rawElement(
408  'span',
409  [ 'class' => $toolClass ],
410  $this->msg( 'parentheses' )->rawParams( $tool )->escaped()
411  );
412  $formattedRevisionTools[] = $element;
413  }
414  $newRevisionHeader = $this->getRevisionHeader( $this->mNewRev, 'complete' ) .
415  ' ' . implode( ' ', $formattedRevisionTools );
416  $newChangeTags = ChangeTags::formatSummaryRow( $this->mNewTags, 'diff', $this->getContext() );
417 
418  $newHeader = '<div id="mw-diff-ntitle1"><strong>' . $newRevisionHeader . '</strong></div>' .
419  '<div id="mw-diff-ntitle2">' . Linker::revUserTools( $this->mNewRev, !$this->unhide ) .
420  " $rollback</div>" .
421  '<div id="mw-diff-ntitle3">' . $newminor .
422  Linker::revComment( $this->mNewRev, !$diffOnly, !$this->unhide ) . $rdel . '</div>' .
423  '<div id="mw-diff-ntitle5">' . $newChangeTags[0] . '</div>' .
424  '<div id="mw-diff-ntitle4">' . $nextlink . $this->markPatrolledLink() . '</div>';
425 
426  // Allow extensions to change the $newHeader variable
427  Hooks::run( 'DifferenceEngineNewHeader', [ $this, &$newHeader, $formattedRevisionTools,
428  $nextlink, $rollback, $newminor, $diffOnly, $rdel, $this->unhide ] );
429 
430  if ( $this->mNewRev->isDeleted( Revision::DELETED_TEXT ) ) {
431  $deleted = true; // new revisions text is hidden
432  if ( $this->mNewRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
433  $suppressed = true; // also suppressed
434  }
435  }
436 
437  # If the diff cannot be shown due to a deleted revision, then output
438  # the diff header and links to unhide (if available)...
439  if ( $deleted && ( !$this->unhide || !$allowed ) ) {
440  $this->showDiffStyle();
441  $multi = $this->getMultiNotice();
442  $out->addHTML( $this->addHeader( '', $oldHeader, $newHeader, $multi ) );
443  if ( !$allowed ) {
444  $msg = $suppressed ? 'rev-suppressed-no-diff' : 'rev-deleted-no-diff';
445  # Give explanation for why revision is not visible
446  $out->wrapWikiMsg( "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
447  [ $msg ] );
448  } else {
449  # Give explanation and add a link to view the diff...
450  $query = $this->getRequest()->appendQueryValue( 'unhide', '1' );
451  $link = $this->getTitle()->getFullURL( $query );
452  $msg = $suppressed ? 'rev-suppressed-unhide-diff' : 'rev-deleted-unhide-diff';
453  $out->wrapWikiMsg(
454  "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
455  [ $msg, $link ]
456  );
457  }
458  # Otherwise, output a regular diff...
459  } else {
460  # Add deletion notice if the user is viewing deleted content
461  $notice = '';
462  if ( $deleted ) {
463  $msg = $suppressed ? 'rev-suppressed-diff-view' : 'rev-deleted-diff-view';
464  $notice = "<div id='mw-$msg' class='mw-warning plainlinks'>\n" .
465  $this->msg( $msg )->parse() .
466  "</div>\n";
467  }
468  $this->showDiff( $oldHeader, $newHeader, $notice );
469  if ( !$diffOnly ) {
470  $this->renderNewRevision();
471  }
472  }
473  }
474 
484  protected function markPatrolledLink() {
485  if ( $this->mMarkPatrolledLink === null ) {
486  $linkInfo = $this->getMarkPatrolledLinkInfo();
487  // If false, there is no patrol link needed/allowed
488  if ( !$linkInfo ) {
489  $this->mMarkPatrolledLink = '';
490  } else {
491  $this->mMarkPatrolledLink = ' <span class="patrollink" data-mw="interface">[' .
493  $this->mNewPage,
494  $this->msg( 'markaspatrolleddiff' )->escaped(),
495  [],
496  [
497  'action' => 'markpatrolled',
498  'rcid' => $linkInfo['rcid'],
499  'token' => $linkInfo['token'],
500  ]
501  ) . ']</span>';
502  // Allow extensions to change the markpatrolled link
503  Hooks::run( 'DifferenceEngineMarkPatrolledLink', [ $this,
504  &$this->mMarkPatrolledLink, $linkInfo['rcid'], $linkInfo['token'] ] );
505  }
506  }
508  }
509 
517  protected function getMarkPatrolledLinkInfo() {
518  global $wgUseRCPatrol, $wgEnableAPI, $wgEnableWriteAPI;
519 
520  $user = $this->getUser();
521 
522  // Prepare a change patrol link, if applicable
523  if (
524  // Is patrolling enabled and the user allowed to?
525  $wgUseRCPatrol && $this->mNewPage->quickUserCan( 'patrol', $user ) &&
526  // Only do this if the revision isn't more than 6 hours older
527  // than the Max RC age (6h because the RC might not be cleaned out regularly)
528  RecentChange::isInRCLifespan( $this->mNewRev->getTimestamp(), 21600 )
529  ) {
530  // Look for an unpatrolled change corresponding to this diff
531  $db = wfGetDB( DB_REPLICA );
532  $change = RecentChange::newFromConds(
533  [
534  'rc_timestamp' => $db->timestamp( $this->mNewRev->getTimestamp() ),
535  'rc_this_oldid' => $this->mNewid,
536  'rc_patrolled' => 0
537  ],
538  __METHOD__
539  );
540 
541  if ( $change && !$change->getPerformer()->equals( $user ) ) {
542  $rcid = $change->getAttribute( 'rc_id' );
543  } else {
544  // None found or the page has been created by the current user.
545  // If the user could patrol this it already would be patrolled
546  $rcid = 0;
547  }
548 
549  // Allow extensions to possibly change the rcid here
550  // For example the rcid might be set to zero due to the user
551  // being the same as the performer of the change but an extension
552  // might still want to show it under certain conditions
553  Hooks::run( 'DifferenceEngineMarkPatrolledRCID', [ &$rcid, $this, $change, $user ] );
554 
555  // Build the link
556  if ( $rcid ) {
557  $this->getOutput()->preventClickjacking();
558  if ( $wgEnableAPI && $wgEnableWriteAPI
559  && $user->isAllowed( 'writeapi' )
560  ) {
561  $this->getOutput()->addModules( 'mediawiki.page.patrol.ajax' );
562  }
563 
564  $token = $user->getEditToken( $rcid );
565  return [
566  'rcid' => $rcid,
567  'token' => $token,
568  ];
569  }
570  }
571 
572  // No mark as patrolled link applicable
573  return false;
574  }
575 
581  protected function revisionDeleteLink( $rev ) {
582  $link = Linker::getRevDeleteLink( $this->getUser(), $rev, $rev->getTitle() );
583  if ( $link !== '' ) {
584  $link = '&#160;&#160;&#160;' . $link . ' ';
585  }
586 
587  return $link;
588  }
589 
593  public function renderNewRevision() {
594  $out = $this->getOutput();
595  $revHeader = $this->getRevisionHeader( $this->mNewRev );
596  # Add "current version as of X" title
597  $out->addHTML( "<hr class='diff-hr' id='mw-oldid' />
598  <h2 class='diff-currentversion-title'>{$revHeader}</h2>\n" );
599  # Page content may be handled by a hooked call instead...
600  # @codingStandardsIgnoreStart Ignoring long lines.
601  if ( Hooks::run( 'ArticleContentOnDiff', [ $this, $out ] ) ) {
602  $this->loadNewText();
603  $out->setRevisionId( $this->mNewid );
604  $out->setRevisionTimestamp( $this->mNewRev->getTimestamp() );
605  $out->setArticleFlag( true );
606 
607  // NOTE: only needed for B/C: custom rendering of JS/CSS via hook
608  if ( $this->mNewPage->isCssJsSubpage() || $this->mNewPage->isCssOrJsPage() ) {
609  // This needs to be synchronised with Article::showCssOrJsPage(), which sucks
610  // Give hooks a chance to customise the output
611  // @todo standardize this crap into one function
612  if ( ContentHandler::runLegacyHooks( 'ShowRawCssJs', [ $this->mNewContent, $this->mNewPage, $out ], '1.24' ) ) {
613  // NOTE: deprecated hook, B/C only
614  // use the content object's own rendering
615  $cnt = $this->mNewRev->getContent();
616  $po = $cnt ? $cnt->getParserOutput( $this->mNewRev->getTitle(), $this->mNewRev->getId() ) : null;
617  if ( $po ) {
618  $out->addParserOutputContent( $po );
619  }
620  }
621  } elseif ( !Hooks::run( 'ArticleContentViewCustom', [ $this->mNewContent, $this->mNewPage, $out ] ) ) {
622  // Handled by extension
623  } elseif ( !ContentHandler::runLegacyHooks(
624  'ArticleViewCustom',
625  [ $this->mNewContent, $this->mNewPage, $out ],
626  '1.21'
627  ) ) {
628  // NOTE: deprecated hook, B/C only
629  // Handled by extension
630  } else {
631  // Normal page
632  if ( $this->getTitle()->equals( $this->mNewPage ) ) {
633  // If the Title stored in the context is the same as the one
634  // of the new revision, we can use its associated WikiPage
635  // object.
636  $wikiPage = $this->getWikiPage();
637  } else {
638  // Otherwise we need to create our own WikiPage object
639  $wikiPage = WikiPage::factory( $this->mNewPage );
640  }
641 
642  $parserOutput = $this->getParserOutput( $wikiPage, $this->mNewRev );
643 
644  # WikiPage::getParserOutput() should not return false, but just in case
645  if ( $parserOutput ) {
646  // Allow extensions to change parser output here
647  if ( Hooks::run( 'DifferenceEngineRenderRevisionAddParserOutput', [ $this, $out, $parserOutput, $wikiPage ] ) ) {
648  $out->addParserOutput( $parserOutput );
649  }
650  }
651  }
652  }
653  # @codingStandardsIgnoreEnd
654 
655  // Allow extensions to optionally not show the final patrolled link
656  if ( Hooks::run( 'DifferenceEngineRenderRevisionShowFinalPatrolLink' ) ) {
657  # Add redundant patrol link on bottom...
658  $out->addHTML( $this->markPatrolledLink() );
659  }
660  }
661 
662  protected function getParserOutput( WikiPage $page, Revision $rev ) {
663  $parserOptions = $page->makeParserOptions( $this->getContext() );
664 
665  if ( !$rev->isCurrent() || !$rev->getTitle()->quickUserCan( 'edit', $this->getUser() ) ) {
666  $parserOptions->setEditSection( false );
667  }
668 
669  $parserOutput = $page->getParserOutput( $parserOptions, $rev->getId() );
670 
671  return $parserOutput;
672  }
673 
684  public function showDiff( $otitle, $ntitle, $notice = '' ) {
685  // Allow extensions to affect the output here
686  Hooks::run( 'DifferenceEngineShowDiff', [ $this ] );
687 
688  $diff = $this->getDiff( $otitle, $ntitle, $notice );
689  if ( $diff === false ) {
690  $this->showMissingRevision();
691 
692  return false;
693  } else {
694  $this->showDiffStyle();
695  $this->getOutput()->addHTML( $diff );
696 
697  return true;
698  }
699  }
700 
704  public function showDiffStyle() {
705  $this->getOutput()->addModuleStyles( 'mediawiki.diff.styles' );
706  }
707 
717  public function getDiff( $otitle, $ntitle, $notice = '' ) {
718  $body = $this->getDiffBody();
719  if ( $body === false ) {
720  return false;
721  }
722 
723  $multi = $this->getMultiNotice();
724  // Display a message when the diff is empty
725  if ( $body === '' ) {
726  $notice .= '<div class="mw-diff-empty">' .
727  $this->msg( 'diff-empty' )->parse() .
728  "</div>\n";
729  }
730 
731  return $this->addHeader( $body, $otitle, $ntitle, $multi, $notice );
732  }
733 
739  public function getDiffBody() {
740  $this->mCacheHit = true;
741  // Check if the diff should be hidden from this user
742  if ( !$this->loadRevisionData() ) {
743  return false;
744  } elseif ( $this->mOldRev &&
745  !$this->mOldRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
746  ) {
747  return false;
748  } elseif ( $this->mNewRev &&
749  !$this->mNewRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
750  ) {
751  return false;
752  }
753  // Short-circuit
754  if ( $this->mOldRev === false || ( $this->mOldRev && $this->mNewRev
755  && $this->mOldRev->getId() == $this->mNewRev->getId() )
756  ) {
757  if ( Hooks::run( 'DifferenceEngineShowEmptyOldContent', [ $this ] ) ) {
758  return '';
759  }
760  }
761  // Cacheable?
762  $key = false;
764  if ( $this->mOldid && $this->mNewid ) {
765  $key = $this->getDiffBodyCacheKey();
766 
767  // Try cache
768  if ( !$this->mRefreshCache ) {
769  $difftext = $cache->get( $key );
770  if ( $difftext ) {
771  wfIncrStats( 'diff_cache.hit' );
772  $difftext = $this->localiseLineNumbers( $difftext );
773  $difftext .= "\n<!-- diff cache key $key -->\n";
774 
775  return $difftext;
776  }
777  } // don't try to load but save the result
778  }
779  $this->mCacheHit = false;
780 
781  // Loadtext is permission safe, this just clears out the diff
782  if ( !$this->loadText() ) {
783  return false;
784  }
785 
786  $difftext = $this->generateContentDiffBody( $this->mOldContent, $this->mNewContent );
787 
788  // Avoid PHP 7.1 warning from passing $this by reference
789  $diffEngine = $this;
790 
791  // Save to cache for 7 days
792  if ( !Hooks::run( 'AbortDiffCache', [ &$diffEngine ] ) ) {
793  wfIncrStats( 'diff_cache.uncacheable' );
794  } elseif ( $key !== false && $difftext !== false ) {
795  wfIncrStats( 'diff_cache.miss' );
796  $cache->set( $key, $difftext, 7 * 86400 );
797  } else {
798  wfIncrStats( 'diff_cache.uncacheable' );
799  }
800  // Replace line numbers with the text in the user's language
801  if ( $difftext !== false ) {
802  $difftext = $this->localiseLineNumbers( $difftext );
803  }
804 
805  return $difftext;
806  }
807 
816  protected function getDiffBodyCacheKey() {
817  if ( !$this->mOldid || !$this->mNewid ) {
818  throw new MWException( 'mOldid and mNewid must be set to get diff cache key.' );
819  }
820 
821  return wfMemcKey( 'diff', 'version', self::DIFF_VERSION,
822  'oldid', $this->mOldid, 'newid', $this->mNewid );
823  }
824 
844  public function generateContentDiffBody( Content $old, Content $new ) {
845  if ( !( $old instanceof TextContent ) ) {
846  throw new MWException( "Diff not implemented for " . get_class( $old ) . "; " .
847  "override generateContentDiffBody to fix this." );
848  }
849 
850  if ( !( $new instanceof TextContent ) ) {
851  throw new MWException( "Diff not implemented for " . get_class( $new ) . "; "
852  . "override generateContentDiffBody to fix this." );
853  }
854 
855  $otext = $old->serialize();
856  $ntext = $new->serialize();
857 
858  return $this->generateTextDiffBody( $otext, $ntext );
859  }
860 
871  public function generateTextDiffBody( $otext, $ntext ) {
872  $diff = function() use ( $otext, $ntext ) {
873  $time = microtime( true );
874 
875  $result = $this->textDiff( $otext, $ntext );
876 
877  $time = intval( ( microtime( true ) - $time ) * 1000 );
878  $this->getStats()->timing( 'diff_time', $time );
879  // Log requests slower than 99th percentile
880  if ( $time > 100 && $this->mOldPage && $this->mNewPage ) {
881  wfDebugLog( 'diff',
882  "$time ms diff: {$this->mOldid} -> {$this->mNewid} {$this->mNewPage}" );
883  }
884 
885  return $result;
886  };
887 
888  $error = function( $status ) {
889  throw new FatalError( $status->getWikiText() );
890  };
891 
892  // Use PoolCounter if the diff looks like it can be expensive
893  if ( strlen( $otext ) + strlen( $ntext ) > 20000 ) {
894  $work = new PoolCounterWorkViaCallback( 'diff',
895  md5( $otext ) . md5( $ntext ),
896  [ 'doWork' => $diff, 'error' => $error ]
897  );
898  return $work->execute();
899  }
900 
901  return $diff();
902  }
903 
911  protected function textDiff( $otext, $ntext ) {
912  global $wgExternalDiffEngine, $wgContLang;
913 
914  $otext = str_replace( "\r\n", "\n", $otext );
915  $ntext = str_replace( "\r\n", "\n", $ntext );
916 
917  if ( $wgExternalDiffEngine == 'wikidiff' || $wgExternalDiffEngine == 'wikidiff3' ) {
918  wfDeprecated( "\$wgExternalDiffEngine = '{$wgExternalDiffEngine}'", '1.27' );
919  $wgExternalDiffEngine = false;
920  } elseif ( $wgExternalDiffEngine == 'wikidiff2' ) {
921  // Same as above, but with no deprecation warnings
922  $wgExternalDiffEngine = false;
923  } elseif ( !is_string( $wgExternalDiffEngine ) && $wgExternalDiffEngine !== false ) {
924  // And prevent people from shooting themselves in the foot...
925  wfWarn( '$wgExternalDiffEngine is set to a non-string value, forcing it to false' );
926  $wgExternalDiffEngine = false;
927  }
928 
929  if ( function_exists( 'wikidiff2_do_diff' ) && $wgExternalDiffEngine === false ) {
930  # Better external diff engine, the 2 may some day be dropped
931  # This one does the escaping and segmenting itself
932  $text = wikidiff2_do_diff( $otext, $ntext, 2 );
933  $text .= $this->debug( 'wikidiff2' );
934 
935  return $text;
936  } elseif ( $wgExternalDiffEngine !== false && is_executable( $wgExternalDiffEngine ) ) {
937  # Diff via the shell
938  $tmpDir = wfTempDir();
939  $tempName1 = tempnam( $tmpDir, 'diff_' );
940  $tempName2 = tempnam( $tmpDir, 'diff_' );
941 
942  $tempFile1 = fopen( $tempName1, "w" );
943  if ( !$tempFile1 ) {
944  return false;
945  }
946  $tempFile2 = fopen( $tempName2, "w" );
947  if ( !$tempFile2 ) {
948  return false;
949  }
950  fwrite( $tempFile1, $otext );
951  fwrite( $tempFile2, $ntext );
952  fclose( $tempFile1 );
953  fclose( $tempFile2 );
954  $cmd = wfEscapeShellArg( $wgExternalDiffEngine, $tempName1, $tempName2 );
955  $difftext = wfShellExec( $cmd );
956  $difftext .= $this->debug( "external $wgExternalDiffEngine" );
957  unlink( $tempName1 );
958  unlink( $tempName2 );
959 
960  return $difftext;
961  }
962 
963  # Native PHP diff
964  $ota = explode( "\n", $wgContLang->segmentForDiff( $otext ) );
965  $nta = explode( "\n", $wgContLang->segmentForDiff( $ntext ) );
966  $diffs = new Diff( $ota, $nta );
967  $formatter = new TableDiffFormatter();
968  $difftext = $wgContLang->unsegmentForDiff( $formatter->format( $diffs ) );
969 
970  return $difftext;
971  }
972 
981  protected function debug( $generator = "internal" ) {
982  global $wgShowHostnames;
983  if ( !$this->enableDebugComment ) {
984  return '';
985  }
986  $data = [ $generator ];
987  if ( $wgShowHostnames ) {
988  $data[] = wfHostname();
989  }
990  $data[] = wfTimestamp( TS_DB );
991 
992  return "<!-- diff generator: " .
993  implode( " ", array_map( "htmlspecialchars", $data ) ) .
994  " -->\n";
995  }
996 
1004  public function localiseLineNumbers( $text ) {
1005  return preg_replace_callback(
1006  '/<!--LINE (\d+)-->/',
1007  [ $this, 'localiseLineNumbersCb' ],
1008  $text
1009  );
1010  }
1011 
1012  public function localiseLineNumbersCb( $matches ) {
1013  if ( $matches[1] === '1' && $this->mReducedLineNumbers ) {
1014  return '';
1015  }
1016 
1017  return $this->msg( 'lineno' )->numParams( $matches[1] )->escaped();
1018  }
1019 
1025  public function getMultiNotice() {
1026  if ( !is_object( $this->mOldRev ) || !is_object( $this->mNewRev ) ) {
1027  return '';
1028  } elseif ( !$this->mOldPage->equals( $this->mNewPage ) ) {
1029  // Comparing two different pages? Count would be meaningless.
1030  return '';
1031  }
1032 
1033  if ( $this->mOldRev->getTimestamp() > $this->mNewRev->getTimestamp() ) {
1034  $oldRev = $this->mNewRev; // flip
1035  $newRev = $this->mOldRev; // flip
1036  } else { // normal case
1037  $oldRev = $this->mOldRev;
1038  $newRev = $this->mNewRev;
1039  }
1040 
1041  // Sanity: don't show the notice if too many rows must be scanned
1042  // @todo show some special message for that case
1043  $nEdits = $this->mNewPage->countRevisionsBetween( $oldRev, $newRev, 1000 );
1044  if ( $nEdits > 0 && $nEdits <= 1000 ) {
1045  $limit = 100; // use diff-multi-manyusers if too many users
1046  $users = $this->mNewPage->getAuthorsBetween( $oldRev, $newRev, $limit );
1047  $numUsers = count( $users );
1048 
1049  if ( $numUsers == 1 && $users[0] == $newRev->getUserText( Revision::RAW ) ) {
1050  $numUsers = 0; // special case to say "by the same user" instead of "by one other user"
1051  }
1052 
1053  return self::intermediateEditsMsg( $nEdits, $numUsers, $limit );
1054  }
1055 
1056  return ''; // nothing
1057  }
1058 
1068  public static function intermediateEditsMsg( $numEdits, $numUsers, $limit ) {
1069  if ( $numUsers === 0 ) {
1070  $msg = 'diff-multi-sameuser';
1071  } elseif ( $numUsers > $limit ) {
1072  $msg = 'diff-multi-manyusers';
1073  $numUsers = $limit;
1074  } else {
1075  $msg = 'diff-multi-otherusers';
1076  }
1077 
1078  return wfMessage( $msg )->numParams( $numEdits, $numUsers )->parse();
1079  }
1080 
1090  protected function getRevisionHeader( Revision $rev, $complete = '' ) {
1091  $lang = $this->getLanguage();
1092  $user = $this->getUser();
1093  $revtimestamp = $rev->getTimestamp();
1094  $timestamp = $lang->userTimeAndDate( $revtimestamp, $user );
1095  $dateofrev = $lang->userDate( $revtimestamp, $user );
1096  $timeofrev = $lang->userTime( $revtimestamp, $user );
1097 
1098  $header = $this->msg(
1099  $rev->isCurrent() ? 'currentrev-asof' : 'revisionasof',
1100  $timestamp,
1101  $dateofrev,
1102  $timeofrev
1103  )->escaped();
1104 
1105  if ( $complete !== 'complete' ) {
1106  return $header;
1107  }
1108 
1109  $title = $rev->getTitle();
1110 
1112  [ 'oldid' => $rev->getId() ] );
1113 
1114  if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
1115  $editQuery = [ 'action' => 'edit' ];
1116  if ( !$rev->isCurrent() ) {
1117  $editQuery['oldid'] = $rev->getId();
1118  }
1119 
1120  $key = $title->quickUserCan( 'edit', $user ) ? 'editold' : 'viewsourceold';
1121  $msg = $this->msg( $key )->escaped();
1122  $editLink = $this->msg( 'parentheses' )->rawParams(
1123  Linker::linkKnown( $title, $msg, [], $editQuery ) )->escaped();
1124  $header .= ' ' . Html::rawElement(
1125  'span',
1126  [ 'class' => 'mw-diff-edit' ],
1127  $editLink
1128  );
1129  if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
1131  'span',
1132  [ 'class' => 'history-deleted' ],
1133  $header
1134  );
1135  }
1136  } else {
1137  $header = Html::rawElement( 'span', [ 'class' => 'history-deleted' ], $header );
1138  }
1139 
1140  return $header;
1141  }
1142 
1155  public function addHeader( $diff, $otitle, $ntitle, $multi = '', $notice = '' ) {
1156  // shared.css sets diff in interface language/dir, but the actual content
1157  // is often in a different language, mostly the page content language/dir
1158  $header = Html::openElement( 'table', [
1159  'class' => [ 'diff', 'diff-contentalign-' . $this->getDiffLang()->alignStart() ],
1160  'data-mw' => 'interface',
1161  ] );
1162  $userLang = htmlspecialchars( $this->getLanguage()->getHtmlCode() );
1163 
1164  if ( !$diff && !$otitle ) {
1165  $header .= "
1166  <tr style='vertical-align: top;' lang='{$userLang}'>
1167  <td class='diff-ntitle'>{$ntitle}</td>
1168  </tr>";
1169  $multiColspan = 1;
1170  } else {
1171  if ( $diff ) { // Safari/Chrome show broken output if cols not used
1172  $header .= "
1173  <col class='diff-marker' />
1174  <col class='diff-content' />
1175  <col class='diff-marker' />
1176  <col class='diff-content' />";
1177  $colspan = 2;
1178  $multiColspan = 4;
1179  } else {
1180  $colspan = 1;
1181  $multiColspan = 2;
1182  }
1183  if ( $otitle || $ntitle ) {
1184  $header .= "
1185  <tr style='vertical-align: top;' lang='{$userLang}'>
1186  <td colspan='$colspan' class='diff-otitle'>{$otitle}</td>
1187  <td colspan='$colspan' class='diff-ntitle'>{$ntitle}</td>
1188  </tr>";
1189  }
1190  }
1191 
1192  if ( $multi != '' ) {
1193  $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;' " .
1194  "class='diff-multi' lang='{$userLang}'>{$multi}</td></tr>";
1195  }
1196  if ( $notice != '' ) {
1197  $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;' " .
1198  "lang='{$userLang}'>{$notice}</td></tr>";
1199  }
1200 
1201  return $header . $diff . "</table>";
1202  }
1203 
1210  public function setContent( Content $oldContent, Content $newContent ) {
1211  $this->mOldContent = $oldContent;
1212  $this->mNewContent = $newContent;
1213 
1214  $this->mTextLoaded = 2;
1215  $this->mRevisionsLoaded = true;
1216  }
1217 
1224  public function setTextLanguage( $lang ) {
1225  $this->mDiffLang = wfGetLangObj( $lang );
1226  }
1227 
1239  public function mapDiffPrevNext( $old, $new ) {
1240  if ( $new === 'prev' ) {
1241  // Show diff between revision $old and the previous one. Get previous one from DB.
1242  $newid = intval( $old );
1243  $oldid = $this->getTitle()->getPreviousRevisionID( $newid );
1244  } elseif ( $new === 'next' ) {
1245  // Show diff between revision $old and the next one. Get next one from DB.
1246  $oldid = intval( $old );
1247  $newid = $this->getTitle()->getNextRevisionID( $oldid );
1248  } else {
1249  $oldid = intval( $old );
1250  $newid = intval( $new );
1251  }
1252 
1253  return [ $oldid, $newid ];
1254  }
1255 
1259  private function loadRevisionIds() {
1260  if ( $this->mRevisionsIdsLoaded ) {
1261  return;
1262  }
1263 
1264  $this->mRevisionsIdsLoaded = true;
1265 
1266  $old = $this->mOldid;
1267  $new = $this->mNewid;
1268 
1269  list( $this->mOldid, $this->mNewid ) = self::mapDiffPrevNext( $old, $new );
1270  if ( $new === 'next' && $this->mNewid === false ) {
1271  # if no result, NewId points to the newest old revision. The only newer
1272  # revision is cur, which is "0".
1273  $this->mNewid = 0;
1274  }
1275 
1276  Hooks::run(
1277  'NewDifferenceEngine',
1278  [ $this->getTitle(), &$this->mOldid, &$this->mNewid, $old, $new ]
1279  );
1280  }
1281 
1294  public function loadRevisionData() {
1295  if ( $this->mRevisionsLoaded ) {
1296  return true;
1297  }
1298 
1299  // Whether it succeeds or fails, we don't want to try again
1300  $this->mRevisionsLoaded = true;
1301 
1302  $this->loadRevisionIds();
1303 
1304  // Load the new revision object
1305  if ( $this->mNewid ) {
1306  $this->mNewRev = Revision::newFromId( $this->mNewid );
1307  } else {
1308  $this->mNewRev = Revision::newFromTitle(
1309  $this->getTitle(),
1310  false,
1311  Revision::READ_NORMAL
1312  );
1313  }
1314 
1315  if ( !$this->mNewRev instanceof Revision ) {
1316  return false;
1317  }
1318 
1319  // Update the new revision ID in case it was 0 (makes life easier doing UI stuff)
1320  $this->mNewid = $this->mNewRev->getId();
1321  $this->mNewPage = $this->mNewRev->getTitle();
1322 
1323  // Load the old revision object
1324  $this->mOldRev = false;
1325  if ( $this->mOldid ) {
1326  $this->mOldRev = Revision::newFromId( $this->mOldid );
1327  } elseif ( $this->mOldid === 0 ) {
1328  $rev = $this->mNewRev->getPrevious();
1329  if ( $rev ) {
1330  $this->mOldid = $rev->getId();
1331  $this->mOldRev = $rev;
1332  } else {
1333  // No previous revision; mark to show as first-version only.
1334  $this->mOldid = false;
1335  $this->mOldRev = false;
1336  }
1337  } /* elseif ( $this->mOldid === false ) leave mOldRev false; */
1338 
1339  if ( is_null( $this->mOldRev ) ) {
1340  return false;
1341  }
1342 
1343  if ( $this->mOldRev ) {
1344  $this->mOldPage = $this->mOldRev->getTitle();
1345  }
1346 
1347  // Load tags information for both revisions
1348  $dbr = wfGetDB( DB_REPLICA );
1349  if ( $this->mOldid !== false ) {
1350  $this->mOldTags = $dbr->selectField(
1351  'tag_summary',
1352  'ts_tags',
1353  [ 'ts_rev_id' => $this->mOldid ],
1354  __METHOD__
1355  );
1356  } else {
1357  $this->mOldTags = false;
1358  }
1359  $this->mNewTags = $dbr->selectField(
1360  'tag_summary',
1361  'ts_tags',
1362  [ 'ts_rev_id' => $this->mNewid ],
1363  __METHOD__
1364  );
1365 
1366  return true;
1367  }
1368 
1374  public function loadText() {
1375  if ( $this->mTextLoaded == 2 ) {
1376  return true;
1377  }
1378 
1379  // Whether it succeeds or fails, we don't want to try again
1380  $this->mTextLoaded = 2;
1381 
1382  if ( !$this->loadRevisionData() ) {
1383  return false;
1384  }
1385 
1386  if ( $this->mOldRev ) {
1387  $this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1388  if ( $this->mOldContent === null ) {
1389  return false;
1390  }
1391  }
1392 
1393  if ( $this->mNewRev ) {
1394  $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1395  if ( $this->mNewContent === null ) {
1396  return false;
1397  }
1398  }
1399 
1400  return true;
1401  }
1402 
1408  public function loadNewText() {
1409  if ( $this->mTextLoaded >= 1 ) {
1410  return true;
1411  }
1412 
1413  $this->mTextLoaded = 1;
1414 
1415  if ( !$this->loadRevisionData() ) {
1416  return false;
1417  }
1418 
1419  $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1420 
1421  return true;
1422  }
1423 
1424 }
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:115
setContext(IContextSource $context)
Set the IContextSource object.
bool $mCacheHit
Was the diff fetched from cache?
getDiff($otitle, $ntitle, $notice= '')
Get complete diff table, including header.
const FOR_THIS_USER
Definition: Revision.php:93
makeParserOptions($context)
Get parser options suitable for rendering the primary article wikitext.
Definition: WikiPage.php:2060
getStats()
Get the Stats object.
$enableDebugComment
Set this to true to add debug info to the HTML output.
static getMainWANInstance()
Get the main WAN cache object.
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
Interface for objects which can provide a MediaWiki context on request.
static isInRCLifespan($timestamp, $tolerance=0)
Check whether the given timestamp is new enough to have a RC row with a given tolerance as the recent...
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:1550
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:806
getDiffBody()
Get the diff table body, without header.
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:1559
getLanguage()
Get the Language object.
serialize($format=null)
Convenience method for serializing this Content object.
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:2103
__construct($context=null, $old=0, $new=0, $rcid=0, $refreshCache=false, $unhide=false)
#@-
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static getTitleFor($name, $subpage=false, $fragment= '')
Get a localised Title object for a specified special page name If you don't need a full Title object...
Definition: SpecialPage.php:82
getTimestamp()
Definition: Revision.php:1194
localiseLineNumbers($text)
Replace line numbers with the text in the user's language.
static intermediateEditsMsg($numEdits, $numUsers, $limit)
Get a notice about how many intermediate edits and users there are.
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
static rawElement($element, $attribs=[], $contents= '')
Returns an HTML element in a string.
Definition: Html.php:209
wfHostname()
Fetch server name for use in error reporting etc.
if(!isset($args[0])) $lang
static newFromConds($conds, $fname=__METHOD__, $dbType=DB_REPLICA)
Find the first recent change matching some specific conditions.
getParserOutput(WikiPage $page, Revision $rev)
const MW_DIFF_VERSION
$value
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 false for true for descending in case the handler function wants to provide a converted Content object Note that $result getContentModel() must return $toModel. 'CustomEditor'$rcid is used in generating this variable which contains information about the new such as the revision s whether the revision was marked as a minor edit or etc which include things like revision author revision RevisionDelete link and more $formattedRevisionTools
Definition: hooks.txt:1160
getMarkPatrolledLinkInfo()
Returns an array of meta data needed to build a "mark as patrolled" link and adds the mediawiki...
wfShellExec($cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
also included in $newHeader if any $newminor
Definition: hooks.txt:1215
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
const DIFF_VERSION
Constant to indicate diff cache compatibility.
mapDiffPrevNext($old, $new)
Maps a revision pair definition as accepted by DifferenceEngine constructor to a pair of actual integ...
loadRevisionIds()
Load revision IDs.
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target...
Definition: Revision.php:128
IContextSource $context
getTitle()
Get the Title object.
showDiff($otitle, $ntitle, $notice= '')
Get the diff text, send it to the OutputPage object Returns false if the diff could not be generated...
showDiffPage($diffOnly=false)
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
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':DEPRECATED!Use HtmlPageLinkRendererBegin instead.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:1938
localiseLineNumbersCb($matches)
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:2893
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
getRequest()
Get the WebRequest object.
generateContentDiffBody(Content $old, Content $new)
Generate a diff, no caching.
MediaWiki default table style diff formatter.
wfDebugLog($logGroup, $text, $dest= 'all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
msg()
Get a Message object with context set Parameters are the same as wfMessage()
Convenience class for dealing with PoolCounters using callbacks.
isDeleted($field)
Definition: Revision.php:1015
static openElement($element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
Definition: Html.php:247
string $mMarkPatrolledLink
Link to action=markpatrolled.
Content object implementation for representing flat text.
Definition: TextContent.php:35
getTitle()
Returns the title of the page associated with this entry or null.
Definition: Revision.php:803
wfTempDir()
Tries to get the system directory for temporary files.
debug($generator="internal")
Generate a debug comment indicating diff generating time, server node, and generator backend...
wfMergeErrorArrays()
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
renderNewRevision()
Show the new revision of the page.
static formatSummaryRow($tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
Definition: ChangeTags.php:50
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 prev or next $refreshCache
Definition: hooks.txt:1559
static titleAttrib($name, $options=null, array $msgParams=[])
Given the id of an interface element, constructs the appropriate title attribute from the system mess...
Definition: Linker.php:2024
bool $mRefreshCache
Refresh the diff cache.
wfWarn($msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
either a unescaped string or a HtmlArmor object 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
if($limit) $timestamp
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 $parserOutput
Definition: hooks.txt:1050
getId()
Get revision ID.
Definition: Revision.php:729
bool $mRevisionsIdsLoaded
Have the revisions IDs been loaded.
deletedLink($id)
Look up a special:Undelete link to the given deleted revision id, as a workaround for being unable to...
it s the revision text itself In either if gzip is set
Definition: hooks.txt:2707
markPatrolledLink()
Build a link to mark a change as patrolled.
Base interface for content objects.
Definition: Content.php:34
Class representing a 'diff' between two sequences of strings.
getContext()
Get the base IContextSource object.
$cache
Definition: mcc.php:33
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
getMultiNotice()
If there are revisions between the ones being compared, return a note saying so.
userCan($field, User $user=null)
Determine if the current user is allowed to view a particular field of this revision, if it's marked as deleted.
Definition: Revision.php:1746
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:535
passed in as a query string parameter to the various URLs constructed here(i.e.$nextlink) $rdel also included in $oldHeader $oldminor
Definition: hooks.txt:1219
wfIncrStats($key, $count=1)
Increment a statistics counter.
Some information about database access in MediaWiki By Tim January Database layout For information about the MediaWiki database such as a description of the tables and their please see
Definition: database.txt:2
const DELETED_RESTRICTED
Definition: Revision.php:88
bool $unhide
Show rev_deleted content if allowed.
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:957
static linkKnown($target, $html=null, $customAttribs=[], $query=[], $options=[ 'known'])
Identical to link(), except $options defaults to 'known'.
Definition: Linker.php:255
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
addHeader($diff, $otitle, $ntitle, $multi= '', $notice= '')
Add the header to a diff body.
$header
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 false for true for descending in case the handler function wants to provide a converted Content object Note that $result getContentModel() must return $toModel. 'CustomEditor'$rcid is used in generating this variable which contains information about the new such as the revision s whether the revision was marked as a minor edit or etc which include things like revision author revision RevisionDelete link and more some of which may have been injected with the DiffRevisionTools hook $nextlink
Definition: hooks.txt:1160
textDiff($otext, $ntext)
Generates diff, to be wrapped internally in a logging/instrumentation.
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:1725
setContent(Content $oldContent, Content $newContent)
Use specified text instead of loading from the database.
const RAW
Definition: Revision.php:94
int $mTextLoaded
How many text blobs have been loaded, 0, 1 or 2?
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:246
getRevisionHeader(Revision $rev, $complete= '')
Get a header for a specified revision.
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 false for true for descending in case the handler function wants to provide a converted Content object Note that $result getContentModel() must return $toModel. 'CustomEditor'$rcid is used in generating this variable which contains information about the new such as the revision s whether the revision was marked as a minor edit or not
Definition: hooks.txt:1160
Exception class which takes an HTML error message, and does not produce a backtrace.
Definition: FatalError.php:28
const DELETED_TEXT
Definition: Revision.php:85
Class representing a MediaWiki article and history.
Definition: WikiPage.php:32
static newFromId($id, $flags=0)
Load a page revision from a given revision ID number.
Definition: Revision.php:110
setReducedLineNumbers($value=true)
deletedIdMarker($id)
Build a wikitext link toward a deleted revision, if viewable.
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
controlled by $wgMainCacheType controlled by $wgParserCacheType controlled by $wgMessageCacheType If you set CACHE_NONE to one of the three control default value for MediaWiki still create a but requests to it are no ops and we always fall through to the database If the cache daemon can t be it should also disable itself fairly smoothly By $wgMemc is used but when it is $parserMemc or $messageMemc this is mentioned below
Definition: memcached.txt:96
static generateRollback($rev, IContextSource $context=null, $options=[ 'verify'])
Generate a rollback link for a given revision.
Definition: Linker.php:1763
generateTextDiffBody($otext, $ntext)
Generate a diff, no caching.
bool $mRevisionsLoaded
Have the revisions been loaded.
Show an error when a user tries to do something they do not have the necessary permissions for...
setTextLanguage($lang)
Set the language in which the diff text is written (Defaults to page content 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:1050
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition: design.txt:56
showDiffStyle()
Add style sheets for diff display.
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:1050
static flag($flag, IContextSource $context=null)
Make an "" element for a given change flag.
bool $mReducedLineNumbers
If true, line X is not displayed when X is 1, for example to increase readability and conserve space ...
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
loadNewText()
Load the text of the new revision, not the old one.
also included in $newHeader $rollback
Definition: hooks.txt:1215
getParserOutput(ParserOptions $parserOptions, $oldid=null, $forceParse=false)
Get a ParserOutput for the given ParserOptions and revision ID.
Definition: WikiPage.php:1085
getDiffBodyCacheKey()
Returns the cache key for diff body text or content.
wfMemcKey()
Make a cache key for the local wiki.
const DB_REPLICA
Definition: defines.php:22
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging a wrapping ErrorException $suppressed
Definition: hooks.txt:2106
static newFromArchiveRow($row, $overrides=[])
Make a fake revision object from an archive table row.
Definition: Revision.php:183
static revUserTools($rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
Definition: Linker.php:1141
getWikiPage()
Get the WikiPage object.
static element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:229
loadRevisionData()
Load revision metadata for the specified articles.
getUser()
Get the User object.
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition: hooks.txt:1753
const TS_DB
MySQL DATETIME (YYYY-MM-DD HH:MM:SS)
Definition: defines.php:16
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:2495
static runLegacyHooks($event, $args=[], $deprecatedVersion=null)
Call a legacy hook that uses text instead of Content objects.
wfGetLangObj($langcode=false)
Return a Language object from $langcode.
loadText()
Load the text of the revisions, as well as revision data.
$matches
getOutput()
Get the OutputPage object.