MediaWiki  master
DifferenceEngine.php
Go to the documentation of this file.
1 <?php
24 // Deprecated, use class constant instead
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_SLAVE );
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 
242  # Allow frames except in certain special cases
243  $out = $this->getOutput();
244  $out->allowClickjacking();
245  $out->setRobotPolicy( 'noindex,nofollow' );
246 
247  if ( !$this->loadRevisionData() ) {
248  $this->showMissingRevision();
249 
250  return;
251  }
252 
253  $user = $this->getUser();
254  $permErrors = $this->mNewPage->getUserPermissionsErrors( 'read', $user );
255  if ( $this->mOldPage ) { # mOldPage might not be set, see below.
256  $permErrors = wfMergeErrorArrays( $permErrors,
257  $this->mOldPage->getUserPermissionsErrors( 'read', $user ) );
258  }
259  if ( count( $permErrors ) ) {
260  throw new PermissionsError( 'read', $permErrors );
261  }
262 
263  $rollback = '';
264 
265  $query = [];
266  # Carry over 'diffonly' param via navigation links
267  if ( $diffOnly != $user->getBoolOption( 'diffonly' ) ) {
268  $query['diffonly'] = $diffOnly;
269  }
270  # Cascade unhide param in links for easy deletion browsing
271  if ( $this->unhide ) {
272  $query['unhide'] = 1;
273  }
274 
275  # Check if one of the revisions is deleted/suppressed
276  $deleted = $suppressed = false;
277  $allowed = $this->mNewRev->userCan( Revision::DELETED_TEXT, $user );
278 
279  $revisionTools = [];
280 
281  # mOldRev is false if the difference engine is called with a "vague" query for
282  # a diff between a version V and its previous version V' AND the version V
283  # is the first version of that article. In that case, V' does not exist.
284  if ( $this->mOldRev === false ) {
285  $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
286  $samePage = true;
287  $oldHeader = '';
288  } else {
289  Hooks::run( 'DiffViewHeader', [ $this, $this->mOldRev, $this->mNewRev ] );
290 
291  if ( $this->mNewPage->equals( $this->mOldPage ) ) {
292  $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
293  $samePage = true;
294  } else {
295  $out->setPageTitle( $this->msg( 'difference-title-multipage',
296  $this->mOldPage->getPrefixedText(), $this->mNewPage->getPrefixedText() ) );
297  $out->addSubtitle( $this->msg( 'difference-multipage' ) );
298  $samePage = false;
299  }
300 
301  if ( $samePage && $this->mNewPage->quickUserCan( 'edit', $user ) ) {
302  if ( $this->mNewRev->isCurrent() && $this->mNewPage->userCan( 'rollback', $user ) ) {
303  $rollbackLink = Linker::generateRollback( $this->mNewRev, $this->getContext() );
304  if ( $rollbackLink ) {
305  $out->preventClickjacking();
306  $rollback = '&#160;&#160;&#160;' . $rollbackLink;
307  }
308  }
309 
310  if ( !$this->mOldRev->isDeleted( Revision::DELETED_TEXT ) &&
311  !$this->mNewRev->isDeleted( Revision::DELETED_TEXT )
312  ) {
313  $undoLink = Html::element( 'a', [
314  'href' => $this->mNewPage->getLocalURL( [
315  'action' => 'edit',
316  'undoafter' => $this->mOldid,
317  'undo' => $this->mNewid
318  ] ),
319  'title' => Linker::titleAttrib( 'undo' ),
320  ],
321  $this->msg( 'editundo' )->text()
322  );
323  $revisionTools['mw-diff-undo'] = $undoLink;
324  }
325  }
326 
327  # Make "previous revision link"
328  if ( $samePage && $this->mOldRev->getPrevious() ) {
329  $prevlink = Linker::linkKnown(
330  $this->mOldPage,
331  $this->msg( 'previousdiff' )->escaped(),
332  [ 'id' => 'differences-prevlink' ],
333  [ 'diff' => 'prev', 'oldid' => $this->mOldid ] + $query
334  );
335  } else {
336  $prevlink = '&#160;';
337  }
338 
339  if ( $this->mOldRev->isMinor() ) {
340  $oldminor = ChangesList::flag( 'minor' );
341  } else {
342  $oldminor = '';
343  }
344 
345  $ldel = $this->revisionDeleteLink( $this->mOldRev );
346  $oldRevisionHeader = $this->getRevisionHeader( $this->mOldRev, 'complete' );
347  $oldChangeTags = ChangeTags::formatSummaryRow( $this->mOldTags, 'diff', $this->getContext() );
348 
349  $oldHeader = '<div id="mw-diff-otitle1"><strong>' . $oldRevisionHeader . '</strong></div>' .
350  '<div id="mw-diff-otitle2">' .
351  Linker::revUserTools( $this->mOldRev, !$this->unhide ) . '</div>' .
352  '<div id="mw-diff-otitle3">' . $oldminor .
353  Linker::revComment( $this->mOldRev, !$diffOnly, !$this->unhide ) . $ldel . '</div>' .
354  '<div id="mw-diff-otitle5">' . $oldChangeTags[0] . '</div>' .
355  '<div id="mw-diff-otitle4">' . $prevlink . '</div>';
356 
357  if ( $this->mOldRev->isDeleted( Revision::DELETED_TEXT ) ) {
358  $deleted = true; // old revisions text is hidden
359  if ( $this->mOldRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
360  $suppressed = true; // also suppressed
361  }
362  }
363 
364  # Check if this user can see the revisions
365  if ( !$this->mOldRev->userCan( Revision::DELETED_TEXT, $user ) ) {
366  $allowed = false;
367  }
368  }
369 
370  # Make "next revision link"
371  # Skip next link on the top revision
372  if ( $samePage && !$this->mNewRev->isCurrent() ) {
373  $nextlink = Linker::linkKnown(
374  $this->mNewPage,
375  $this->msg( 'nextdiff' )->escaped(),
376  [ 'id' => 'differences-nextlink' ],
377  [ 'diff' => 'next', 'oldid' => $this->mNewid ] + $query
378  );
379  } else {
380  $nextlink = '&#160;';
381  }
382 
383  if ( $this->mNewRev->isMinor() ) {
384  $newminor = ChangesList::flag( 'minor' );
385  } else {
386  $newminor = '';
387  }
388 
389  # Handle RevisionDelete links...
390  $rdel = $this->revisionDeleteLink( $this->mNewRev );
391 
392  # Allow extensions to define their own revision tools
393  Hooks::run( 'DiffRevisionTools',
394  [ $this->mNewRev, &$revisionTools, $this->mOldRev, $user ] );
395  $formattedRevisionTools = [];
396  // Put each one in parentheses (poor man's button)
397  foreach ( $revisionTools as $key => $tool ) {
398  $toolClass = is_string( $key ) ? $key : 'mw-diff-tool';
399  $element = Html::rawElement(
400  'span',
401  [ 'class' => $toolClass ],
402  $this->msg( 'parentheses' )->rawParams( $tool )->escaped()
403  );
404  $formattedRevisionTools[] = $element;
405  }
406  $newRevisionHeader = $this->getRevisionHeader( $this->mNewRev, 'complete' ) .
407  ' ' . implode( ' ', $formattedRevisionTools );
408  $newChangeTags = ChangeTags::formatSummaryRow( $this->mNewTags, 'diff', $this->getContext() );
409 
410  $newHeader = '<div id="mw-diff-ntitle1"><strong>' . $newRevisionHeader . '</strong></div>' .
411  '<div id="mw-diff-ntitle2">' . Linker::revUserTools( $this->mNewRev, !$this->unhide ) .
412  " $rollback</div>" .
413  '<div id="mw-diff-ntitle3">' . $newminor .
414  Linker::revComment( $this->mNewRev, !$diffOnly, !$this->unhide ) . $rdel . '</div>' .
415  '<div id="mw-diff-ntitle5">' . $newChangeTags[0] . '</div>' .
416  '<div id="mw-diff-ntitle4">' . $nextlink . $this->markPatrolledLink() . '</div>';
417 
418  if ( $this->mNewRev->isDeleted( Revision::DELETED_TEXT ) ) {
419  $deleted = true; // new revisions text is hidden
420  if ( $this->mNewRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
421  $suppressed = true; // also suppressed
422  }
423  }
424 
425  # If the diff cannot be shown due to a deleted revision, then output
426  # the diff header and links to unhide (if available)...
427  if ( $deleted && ( !$this->unhide || !$allowed ) ) {
428  $this->showDiffStyle();
429  $multi = $this->getMultiNotice();
430  $out->addHTML( $this->addHeader( '', $oldHeader, $newHeader, $multi ) );
431  if ( !$allowed ) {
432  $msg = $suppressed ? 'rev-suppressed-no-diff' : 'rev-deleted-no-diff';
433  # Give explanation for why revision is not visible
434  $out->wrapWikiMsg( "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
435  [ $msg ] );
436  } else {
437  # Give explanation and add a link to view the diff...
438  $query = $this->getRequest()->appendQueryValue( 'unhide', '1' );
439  $link = $this->getTitle()->getFullURL( $query );
440  $msg = $suppressed ? 'rev-suppressed-unhide-diff' : 'rev-deleted-unhide-diff';
441  $out->wrapWikiMsg(
442  "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
443  [ $msg, $link ]
444  );
445  }
446  # Otherwise, output a regular diff...
447  } else {
448  # Add deletion notice if the user is viewing deleted content
449  $notice = '';
450  if ( $deleted ) {
451  $msg = $suppressed ? 'rev-suppressed-diff-view' : 'rev-deleted-diff-view';
452  $notice = "<div id='mw-$msg' class='mw-warning plainlinks'>\n" .
453  $this->msg( $msg )->parse() .
454  "</div>\n";
455  }
456  $this->showDiff( $oldHeader, $newHeader, $notice );
457  if ( !$diffOnly ) {
458  $this->renderNewRevision();
459  }
460  }
461  }
462 
472  protected function markPatrolledLink() {
473  if ( $this->mMarkPatrolledLink === null ) {
474  $linkInfo = $this->getMarkPatrolledLinkInfo();
475  // If false, there is no patrol link needed/allowed
476  if ( !$linkInfo ) {
477  $this->mMarkPatrolledLink = '';
478  } else {
479  $this->mMarkPatrolledLink = ' <span class="patrollink" data-mw="interface">[' .
481  $this->mNewPage,
482  $this->msg( 'markaspatrolleddiff' )->escaped(),
483  [],
484  [
485  'action' => 'markpatrolled',
486  'rcid' => $linkInfo['rcid'],
487  'token' => $linkInfo['token'],
488  ]
489  ) . ']</span>';
490  }
491  }
493  }
494 
502  protected function getMarkPatrolledLinkInfo() {
504 
505  $user = $this->getUser();
506 
507  // Prepare a change patrol link, if applicable
508  if (
509  // Is patrolling enabled and the user allowed to?
510  $wgUseRCPatrol && $this->mNewPage->quickUserCan( 'patrol', $user ) &&
511  // Only do this if the revision isn't more than 6 hours older
512  // than the Max RC age (6h because the RC might not be cleaned out regularly)
513  RecentChange::isInRCLifespan( $this->mNewRev->getTimestamp(), 21600 )
514  ) {
515  // Look for an unpatrolled change corresponding to this diff
516  $db = wfGetDB( DB_SLAVE );
517  $change = RecentChange::newFromConds(
518  [
519  'rc_timestamp' => $db->timestamp( $this->mNewRev->getTimestamp() ),
520  'rc_this_oldid' => $this->mNewid,
521  'rc_patrolled' => 0
522  ],
523  __METHOD__
524  );
525 
526  if ( $change && !$change->getPerformer()->equals( $user ) ) {
527  $rcid = $change->getAttribute( 'rc_id' );
528  } else {
529  // None found or the page has been created by the current user.
530  // If the user could patrol this it already would be patrolled
531  $rcid = 0;
532  }
533  // Build the link
534  if ( $rcid ) {
535  $this->getOutput()->preventClickjacking();
536  if ( $wgEnableAPI && $wgEnableWriteAPI
537  && $user->isAllowed( 'writeapi' )
538  ) {
539  $this->getOutput()->addModules( 'mediawiki.page.patrol.ajax' );
540  }
541 
542  $token = $user->getEditToken( $rcid );
543  return [
544  'rcid' => $rcid,
545  'token' => $token,
546  ];
547  }
548  }
549 
550  // No mark as patrolled link applicable
551  return false;
552  }
553 
559  protected function revisionDeleteLink( $rev ) {
560  $link = Linker::getRevDeleteLink( $this->getUser(), $rev, $rev->getTitle() );
561  if ( $link !== '' ) {
562  $link = '&#160;&#160;&#160;' . $link . ' ';
563  }
564 
565  return $link;
566  }
567 
571  public function renderNewRevision() {
572  $out = $this->getOutput();
573  $revHeader = $this->getRevisionHeader( $this->mNewRev );
574  # Add "current version as of X" title
575  $out->addHTML( "<hr class='diff-hr' id='mw-oldid' />
576  <h2 class='diff-currentversion-title'>{$revHeader}</h2>\n" );
577  # Page content may be handled by a hooked call instead...
578  # @codingStandardsIgnoreStart Ignoring long lines.
579  if ( Hooks::run( 'ArticleContentOnDiff', [ $this, $out ] ) ) {
580  $this->loadNewText();
581  $out->setRevisionId( $this->mNewid );
582  $out->setRevisionTimestamp( $this->mNewRev->getTimestamp() );
583  $out->setArticleFlag( true );
584 
585  // NOTE: only needed for B/C: custom rendering of JS/CSS via hook
586  if ( $this->mNewPage->isCssJsSubpage() || $this->mNewPage->isCssOrJsPage() ) {
587  // This needs to be synchronised with Article::showCssOrJsPage(), which sucks
588  // Give hooks a chance to customise the output
589  // @todo standardize this crap into one function
590  if ( ContentHandler::runLegacyHooks( 'ShowRawCssJs', [ $this->mNewContent, $this->mNewPage, $out ] ) ) {
591  // NOTE: deprecated hook, B/C only
592  // use the content object's own rendering
593  $cnt = $this->mNewRev->getContent();
594  $po = $cnt ? $cnt->getParserOutput( $this->mNewRev->getTitle(), $this->mNewRev->getId() ) : null;
595  if ( $po ) {
596  $out->addParserOutputContent( $po );
597  }
598  }
599  } elseif ( !Hooks::run( 'ArticleContentViewCustom', [ $this->mNewContent, $this->mNewPage, $out ] ) ) {
600  // Handled by extension
601  } elseif ( !ContentHandler::runLegacyHooks( 'ArticleViewCustom', [ $this->mNewContent, $this->mNewPage, $out ] ) ) {
602  // NOTE: deprecated hook, B/C only
603  // Handled by extension
604  } else {
605  // Normal page
606  if ( $this->getTitle()->equals( $this->mNewPage ) ) {
607  // If the Title stored in the context is the same as the one
608  // of the new revision, we can use its associated WikiPage
609  // object.
610  $wikiPage = $this->getWikiPage();
611  } else {
612  // Otherwise we need to create our own WikiPage object
613  $wikiPage = WikiPage::factory( $this->mNewPage );
614  }
615 
616  $parserOutput = $this->getParserOutput( $wikiPage, $this->mNewRev );
617 
618  # WikiPage::getParserOutput() should not return false, but just in case
619  if ( $parserOutput ) {
620  $out->addParserOutput( $parserOutput );
621  }
622  }
623  }
624  # @codingStandardsIgnoreEnd
625 
626  # Add redundant patrol link on bottom...
627  $out->addHTML( $this->markPatrolledLink() );
628 
629  }
630 
631  protected function getParserOutput( WikiPage $page, Revision $rev ) {
632  $parserOptions = $page->makeParserOptions( $this->getContext() );
633 
634  if ( !$rev->isCurrent() || !$rev->getTitle()->quickUserCan( 'edit', $this->getUser() ) ) {
635  $parserOptions->setEditSection( false );
636  }
637 
638  $parserOutput = $page->getParserOutput( $parserOptions, $rev->getId() );
639 
640  return $parserOutput;
641  }
642 
653  public function showDiff( $otitle, $ntitle, $notice = '' ) {
654  $diff = $this->getDiff( $otitle, $ntitle, $notice );
655  if ( $diff === false ) {
656  $this->showMissingRevision();
657 
658  return false;
659  } else {
660  $this->showDiffStyle();
661  $this->getOutput()->addHTML( $diff );
662 
663  return true;
664  }
665  }
666 
670  public function showDiffStyle() {
671  $this->getOutput()->addModuleStyles( 'mediawiki.action.history.diff' );
672  }
673 
683  public function getDiff( $otitle, $ntitle, $notice = '' ) {
684  $body = $this->getDiffBody();
685  if ( $body === false ) {
686  return false;
687  }
688 
689  $multi = $this->getMultiNotice();
690  // Display a message when the diff is empty
691  if ( $body === '' ) {
692  $notice .= '<div class="mw-diff-empty">' .
693  $this->msg( 'diff-empty' )->parse() .
694  "</div>\n";
695  }
696 
697  return $this->addHeader( $body, $otitle, $ntitle, $multi, $notice );
698  }
699 
705  public function getDiffBody() {
706  $this->mCacheHit = true;
707  // Check if the diff should be hidden from this user
708  if ( !$this->loadRevisionData() ) {
709  return false;
710  } elseif ( $this->mOldRev &&
711  !$this->mOldRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
712  ) {
713  return false;
714  } elseif ( $this->mNewRev &&
715  !$this->mNewRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
716  ) {
717  return false;
718  }
719  // Short-circuit
720  if ( $this->mOldRev === false || ( $this->mOldRev && $this->mNewRev
721  && $this->mOldRev->getId() == $this->mNewRev->getId() )
722  ) {
723  return '';
724  }
725  // Cacheable?
726  $key = false;
728  if ( $this->mOldid && $this->mNewid ) {
729  $key = $this->getDiffBodyCacheKey();
730 
731  // Try cache
732  if ( !$this->mRefreshCache ) {
733  $difftext = $cache->get( $key );
734  if ( $difftext ) {
735  wfIncrStats( 'diff_cache.hit' );
736  $difftext = $this->localiseLineNumbers( $difftext );
737  $difftext .= "\n<!-- diff cache key $key -->\n";
738 
739  return $difftext;
740  }
741  } // don't try to load but save the result
742  }
743  $this->mCacheHit = false;
744 
745  // Loadtext is permission safe, this just clears out the diff
746  if ( !$this->loadText() ) {
747  return false;
748  }
749 
750  $difftext = $this->generateContentDiffBody( $this->mOldContent, $this->mNewContent );
751 
752  // Save to cache for 7 days
753  if ( !Hooks::run( 'AbortDiffCache', [ &$this ] ) ) {
754  wfIncrStats( 'diff_cache.uncacheable' );
755  } elseif ( $key !== false && $difftext !== false ) {
756  wfIncrStats( 'diff_cache.miss' );
757  $cache->set( $key, $difftext, 7 * 86400 );
758  } else {
759  wfIncrStats( 'diff_cache.uncacheable' );
760  }
761  // Replace line numbers with the text in the user's language
762  if ( $difftext !== false ) {
763  $difftext = $this->localiseLineNumbers( $difftext );
764  }
765 
766  return $difftext;
767  }
768 
777  protected function getDiffBodyCacheKey() {
778  if ( !$this->mOldid || !$this->mNewid ) {
779  throw new MWException( 'mOldid and mNewid must be set to get diff cache key.' );
780  }
781 
782  return wfMemcKey( 'diff', 'version', self::DIFF_VERSION,
783  'oldid', $this->mOldid, 'newid', $this->mNewid );
784  }
785 
805  public function generateContentDiffBody( Content $old, Content $new ) {
806  if ( !( $old instanceof TextContent ) ) {
807  throw new MWException( "Diff not implemented for " . get_class( $old ) . "; " .
808  "override generateContentDiffBody to fix this." );
809  }
810 
811  if ( !( $new instanceof TextContent ) ) {
812  throw new MWException( "Diff not implemented for " . get_class( $new ) . "; "
813  . "override generateContentDiffBody to fix this." );
814  }
815 
816  $otext = $old->serialize();
817  $ntext = $new->serialize();
818 
819  return $this->generateTextDiffBody( $otext, $ntext );
820  }
821 
831  public function generateDiffBody( $otext, $ntext ) {
832  ContentHandler::deprecated( __METHOD__, "1.21" );
833 
834  return $this->generateTextDiffBody( $otext, $ntext );
835  }
836 
847  public function generateTextDiffBody( $otext, $ntext ) {
848  $diff = function() use ( $otext, $ntext ) {
849  $time = microtime( true );
850 
851  $result = $this->textDiff( $otext, $ntext );
852 
853  $time = intval( ( microtime( true ) - $time ) * 1000 );
854  $this->getStats()->timing( 'diff_time', $time );
855  // Log requests slower than 99th percentile
856  if ( $time > 100 && $this->mOldPage && $this->mNewPage ) {
857  wfDebugLog( 'diff',
858  "$time ms diff: {$this->mOldid} -> {$this->mNewid} {$this->mNewPage}" );
859  }
860 
861  return $result;
862  };
863 
864  $error = function( $status ) {
865  throw new FatalError( $status->getWikiText() );
866  };
867 
868  // Use PoolCounter if the diff looks like it can be expensive
869  if ( strlen( $otext ) + strlen( $ntext ) > 20000 ) {
870  $work = new PoolCounterWorkViaCallback( 'diff',
871  md5( $otext ) . md5( $ntext ),
872  [ 'doWork' => $diff, 'error' => $error ]
873  );
874  return $work->execute();
875  }
876 
877  return $diff();
878  }
879 
887  protected function textDiff( $otext, $ntext ) {
889 
890  $otext = str_replace( "\r\n", "\n", $otext );
891  $ntext = str_replace( "\r\n", "\n", $ntext );
892 
893  if ( $wgExternalDiffEngine == 'wikidiff' || $wgExternalDiffEngine == 'wikidiff3' ) {
894  wfDeprecated( "\$wgExternalDiffEngine = '{$wgExternalDiffEngine}'", '1.27' );
895  $wgExternalDiffEngine = false;
896  } elseif ( $wgExternalDiffEngine == 'wikidiff2' ) {
897  // Same as above, but with no deprecation warnings
898  $wgExternalDiffEngine = false;
899  } elseif ( !is_string( $wgExternalDiffEngine ) && $wgExternalDiffEngine !== false ) {
900  // And prevent people from shooting themselves in the foot...
901  wfWarn( '$wgExternalDiffEngine is set to a non-string value, forcing it to false' );
902  $wgExternalDiffEngine = false;
903  }
904 
905  if ( function_exists( 'wikidiff2_do_diff' ) && $wgExternalDiffEngine === false ) {
906  # Better external diff engine, the 2 may some day be dropped
907  # This one does the escaping and segmenting itself
908  $text = wikidiff2_do_diff( $otext, $ntext, 2 );
909  $text .= $this->debug( 'wikidiff2' );
910 
911  return $text;
912  } elseif ( $wgExternalDiffEngine !== false && is_executable( $wgExternalDiffEngine ) ) {
913  # Diff via the shell
914  $tmpDir = wfTempDir();
915  $tempName1 = tempnam( $tmpDir, 'diff_' );
916  $tempName2 = tempnam( $tmpDir, 'diff_' );
917 
918  $tempFile1 = fopen( $tempName1, "w" );
919  if ( !$tempFile1 ) {
920  return false;
921  }
922  $tempFile2 = fopen( $tempName2, "w" );
923  if ( !$tempFile2 ) {
924  return false;
925  }
926  fwrite( $tempFile1, $otext );
927  fwrite( $tempFile2, $ntext );
928  fclose( $tempFile1 );
929  fclose( $tempFile2 );
930  $cmd = wfEscapeShellArg( $wgExternalDiffEngine, $tempName1, $tempName2 );
931  $difftext = wfShellExec( $cmd );
932  $difftext .= $this->debug( "external $wgExternalDiffEngine" );
933  unlink( $tempName1 );
934  unlink( $tempName2 );
935 
936  return $difftext;
937  }
938 
939  # Native PHP diff
940  $ota = explode( "\n", $wgContLang->segmentForDiff( $otext ) );
941  $nta = explode( "\n", $wgContLang->segmentForDiff( $ntext ) );
942  $diffs = new Diff( $ota, $nta );
943  $formatter = new TableDiffFormatter();
944  $difftext = $wgContLang->unsegmentForDiff( $formatter->format( $diffs ) );
945 
946  return $difftext;
947  }
948 
957  protected function debug( $generator = "internal" ) {
959  if ( !$this->enableDebugComment ) {
960  return '';
961  }
962  $data = [ $generator ];
963  if ( $wgShowHostnames ) {
964  $data[] = wfHostname();
965  }
966  $data[] = wfTimestamp( TS_DB );
967 
968  return "<!-- diff generator: " .
969  implode( " ", array_map( "htmlspecialchars", $data ) ) .
970  " -->\n";
971  }
972 
980  public function localiseLineNumbers( $text ) {
981  return preg_replace_callback(
982  '/<!--LINE (\d+)-->/',
983  [ &$this, 'localiseLineNumbersCb' ],
984  $text
985  );
986  }
987 
988  public function localiseLineNumbersCb( $matches ) {
989  if ( $matches[1] === '1' && $this->mReducedLineNumbers ) {
990  return '';
991  }
992 
993  return $this->msg( 'lineno' )->numParams( $matches[1] )->escaped();
994  }
995 
1001  public function getMultiNotice() {
1002  if ( !is_object( $this->mOldRev ) || !is_object( $this->mNewRev ) ) {
1003  return '';
1004  } elseif ( !$this->mOldPage->equals( $this->mNewPage ) ) {
1005  // Comparing two different pages? Count would be meaningless.
1006  return '';
1007  }
1008 
1009  if ( $this->mOldRev->getTimestamp() > $this->mNewRev->getTimestamp() ) {
1010  $oldRev = $this->mNewRev; // flip
1011  $newRev = $this->mOldRev; // flip
1012  } else { // normal case
1013  $oldRev = $this->mOldRev;
1014  $newRev = $this->mNewRev;
1015  }
1016 
1017  // Sanity: don't show the notice if too many rows must be scanned
1018  // @todo show some special message for that case
1019  $nEdits = $this->mNewPage->countRevisionsBetween( $oldRev, $newRev, 1000 );
1020  if ( $nEdits > 0 && $nEdits <= 1000 ) {
1021  $limit = 100; // use diff-multi-manyusers if too many users
1022  $users = $this->mNewPage->getAuthorsBetween( $oldRev, $newRev, $limit );
1023  $numUsers = count( $users );
1024 
1025  if ( $numUsers == 1 && $users[0] == $newRev->getUserText( Revision::RAW ) ) {
1026  $numUsers = 0; // special case to say "by the same user" instead of "by one other user"
1027  }
1028 
1029  return self::intermediateEditsMsg( $nEdits, $numUsers, $limit );
1030  }
1031 
1032  return ''; // nothing
1033  }
1034 
1044  public static function intermediateEditsMsg( $numEdits, $numUsers, $limit ) {
1045  if ( $numUsers === 0 ) {
1046  $msg = 'diff-multi-sameuser';
1047  } elseif ( $numUsers > $limit ) {
1048  $msg = 'diff-multi-manyusers';
1049  $numUsers = $limit;
1050  } else {
1051  $msg = 'diff-multi-otherusers';
1052  }
1053 
1054  return wfMessage( $msg )->numParams( $numEdits, $numUsers )->parse();
1055  }
1056 
1066  protected function getRevisionHeader( Revision $rev, $complete = '' ) {
1067  $lang = $this->getLanguage();
1068  $user = $this->getUser();
1069  $revtimestamp = $rev->getTimestamp();
1070  $timestamp = $lang->userTimeAndDate( $revtimestamp, $user );
1071  $dateofrev = $lang->userDate( $revtimestamp, $user );
1072  $timeofrev = $lang->userTime( $revtimestamp, $user );
1073 
1074  $header = $this->msg(
1075  $rev->isCurrent() ? 'currentrev-asof' : 'revisionasof',
1076  $timestamp,
1077  $dateofrev,
1078  $timeofrev
1079  )->escaped();
1080 
1081  if ( $complete !== 'complete' ) {
1082  return $header;
1083  }
1084 
1085  $title = $rev->getTitle();
1086 
1087  $header = Linker::linkKnown( $title, $header, [],
1088  [ 'oldid' => $rev->getId() ] );
1089 
1090  if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
1091  $editQuery = [ 'action' => 'edit' ];
1092  if ( !$rev->isCurrent() ) {
1093  $editQuery['oldid'] = $rev->getId();
1094  }
1095 
1096  $key = $title->quickUserCan( 'edit', $user ) ? 'editold' : 'viewsourceold';
1097  $msg = $this->msg( $key )->escaped();
1098  $editLink = $this->msg( 'parentheses' )->rawParams(
1099  Linker::linkKnown( $title, $msg, [], $editQuery ) )->escaped();
1100  $header .= ' ' . Html::rawElement(
1101  'span',
1102  [ 'class' => 'mw-diff-edit' ],
1103  $editLink
1104  );
1105  if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
1106  $header = Html::rawElement(
1107  'span',
1108  [ 'class' => 'history-deleted' ],
1109  $header
1110  );
1111  }
1112  } else {
1113  $header = Html::rawElement( 'span', [ 'class' => 'history-deleted' ], $header );
1114  }
1115 
1116  return $header;
1117  }
1118 
1131  public function addHeader( $diff, $otitle, $ntitle, $multi = '', $notice = '' ) {
1132  // shared.css sets diff in interface language/dir, but the actual content
1133  // is often in a different language, mostly the page content language/dir
1134  $header = Html::openElement( 'table', [
1135  'class' => [ 'diff', 'diff-contentalign-' . $this->getDiffLang()->alignStart() ],
1136  'data-mw' => 'interface',
1137  ] );
1138  $userLang = htmlspecialchars( $this->getLanguage()->getHtmlCode() );
1139 
1140  if ( !$diff && !$otitle ) {
1141  $header .= "
1142  <tr style='vertical-align: top;' lang='{$userLang}'>
1143  <td class='diff-ntitle'>{$ntitle}</td>
1144  </tr>";
1145  $multiColspan = 1;
1146  } else {
1147  if ( $diff ) { // Safari/Chrome show broken output if cols not used
1148  $header .= "
1149  <col class='diff-marker' />
1150  <col class='diff-content' />
1151  <col class='diff-marker' />
1152  <col class='diff-content' />";
1153  $colspan = 2;
1154  $multiColspan = 4;
1155  } else {
1156  $colspan = 1;
1157  $multiColspan = 2;
1158  }
1159  if ( $otitle || $ntitle ) {
1160  $header .= "
1161  <tr style='vertical-align: top;' lang='{$userLang}'>
1162  <td colspan='$colspan' class='diff-otitle'>{$otitle}</td>
1163  <td colspan='$colspan' class='diff-ntitle'>{$ntitle}</td>
1164  </tr>";
1165  }
1166  }
1167 
1168  if ( $multi != '' ) {
1169  $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;' " .
1170  "class='diff-multi' lang='{$userLang}'>{$multi}</td></tr>";
1171  }
1172  if ( $notice != '' ) {
1173  $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;' " .
1174  "lang='{$userLang}'>{$notice}</td></tr>";
1175  }
1176 
1177  return $header . $diff . "</table>";
1178  }
1179 
1186  public function setContent( Content $oldContent, Content $newContent ) {
1187  $this->mOldContent = $oldContent;
1188  $this->mNewContent = $newContent;
1189 
1190  $this->mTextLoaded = 2;
1191  $this->mRevisionsLoaded = true;
1192  }
1193 
1200  public function setTextLanguage( $lang ) {
1201  $this->mDiffLang = wfGetLangObj( $lang );
1202  }
1203 
1215  public function mapDiffPrevNext( $old, $new ) {
1216  if ( $new === 'prev' ) {
1217  // Show diff between revision $old and the previous one. Get previous one from DB.
1218  $newid = intval( $old );
1219  $oldid = $this->getTitle()->getPreviousRevisionID( $newid );
1220  } elseif ( $new === 'next' ) {
1221  // Show diff between revision $old and the next one. Get next one from DB.
1222  $oldid = intval( $old );
1223  $newid = $this->getTitle()->getNextRevisionID( $oldid );
1224  } else {
1225  $oldid = intval( $old );
1226  $newid = intval( $new );
1227  }
1228 
1229  return [ $oldid, $newid ];
1230  }
1231 
1235  private function loadRevisionIds() {
1236  if ( $this->mRevisionsIdsLoaded ) {
1237  return;
1238  }
1239 
1240  $this->mRevisionsIdsLoaded = true;
1241 
1242  $old = $this->mOldid;
1243  $new = $this->mNewid;
1244 
1245  list( $this->mOldid, $this->mNewid ) = self::mapDiffPrevNext( $old, $new );
1246  if ( $new === 'next' && $this->mNewid === false ) {
1247  # if no result, NewId points to the newest old revision. The only newer
1248  # revision is cur, which is "0".
1249  $this->mNewid = 0;
1250  }
1251 
1252  Hooks::run(
1253  'NewDifferenceEngine',
1254  [ $this->getTitle(), &$this->mOldid, &$this->mNewid, $old, $new ]
1255  );
1256  }
1257 
1270  public function loadRevisionData() {
1271  if ( $this->mRevisionsLoaded ) {
1272  return true;
1273  }
1274 
1275  // Whether it succeeds or fails, we don't want to try again
1276  $this->mRevisionsLoaded = true;
1277 
1278  $this->loadRevisionIds();
1279 
1280  // Load the new revision object
1281  if ( $this->mNewid ) {
1282  $this->mNewRev = Revision::newFromId( $this->mNewid );
1283  } else {
1284  $this->mNewRev = Revision::newFromTitle(
1285  $this->getTitle(),
1286  false,
1288  );
1289  }
1290 
1291  if ( !$this->mNewRev instanceof Revision ) {
1292  return false;
1293  }
1294 
1295  // Update the new revision ID in case it was 0 (makes life easier doing UI stuff)
1296  $this->mNewid = $this->mNewRev->getId();
1297  $this->mNewPage = $this->mNewRev->getTitle();
1298 
1299  // Load the old revision object
1300  $this->mOldRev = false;
1301  if ( $this->mOldid ) {
1302  $this->mOldRev = Revision::newFromId( $this->mOldid );
1303  } elseif ( $this->mOldid === 0 ) {
1304  $rev = $this->mNewRev->getPrevious();
1305  if ( $rev ) {
1306  $this->mOldid = $rev->getId();
1307  $this->mOldRev = $rev;
1308  } else {
1309  // No previous revision; mark to show as first-version only.
1310  $this->mOldid = false;
1311  $this->mOldRev = false;
1312  }
1313  } /* elseif ( $this->mOldid === false ) leave mOldRev false; */
1314 
1315  if ( is_null( $this->mOldRev ) ) {
1316  return false;
1317  }
1318 
1319  if ( $this->mOldRev ) {
1320  $this->mOldPage = $this->mOldRev->getTitle();
1321  }
1322 
1323  // Load tags information for both revisions
1324  $dbr = wfGetDB( DB_SLAVE );
1325  if ( $this->mOldid !== false ) {
1326  $this->mOldTags = $dbr->selectField(
1327  'tag_summary',
1328  'ts_tags',
1329  [ 'ts_rev_id' => $this->mOldid ],
1330  __METHOD__
1331  );
1332  } else {
1333  $this->mOldTags = false;
1334  }
1335  $this->mNewTags = $dbr->selectField(
1336  'tag_summary',
1337  'ts_tags',
1338  [ 'ts_rev_id' => $this->mNewid ],
1339  __METHOD__
1340  );
1341 
1342  return true;
1343  }
1344 
1350  public function loadText() {
1351  if ( $this->mTextLoaded == 2 ) {
1352  return true;
1353  }
1354 
1355  // Whether it succeeds or fails, we don't want to try again
1356  $this->mTextLoaded = 2;
1357 
1358  if ( !$this->loadRevisionData() ) {
1359  return false;
1360  }
1361 
1362  if ( $this->mOldRev ) {
1363  $this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1364  if ( $this->mOldContent === null ) {
1365  return false;
1366  }
1367  }
1368 
1369  if ( $this->mNewRev ) {
1370  $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1371  if ( $this->mNewContent === null ) {
1372  return false;
1373  }
1374  }
1375 
1376  return true;
1377  }
1378 
1384  public function loadNewText() {
1385  if ( $this->mTextLoaded >= 1 ) {
1386  return true;
1387  }
1388 
1389  $this->mTextLoaded = 1;
1390 
1391  if ( !$this->loadRevisionData() ) {
1392  return false;
1393  }
1394 
1395  $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1396 
1397  return true;
1398  }
1399 
1400 }
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:101
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:84
makeParserOptions($context)
Get parser options suitable for rendering the primary article wikitext.
Definition: WikiPage.php:1982
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:1551
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:776
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:1435
getLanguage()
Get the Language object.
serialize($format=null)
Convenience method for serializing this Content object.
$wgEnableAPI
Enable the MediaWiki API for convenient access to machine-readable data via api.php.
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:2159
getParserOutput(ParserOptions $parserOptions, $oldid=null)
Get a ParserOutput for the given ParserOptions and revision ID.
Definition: WikiPage.php:1051
__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.
Definition: SpecialPage.php:80
getTimestamp()
Definition: Revision.php:1169
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:210
wfHostname()
Fetch server name for use in error reporting etc.
if(!isset($args[0])) $lang
$wgEnableWriteAPI
Allow the API to be used to perform write operations (page edits, rollback, etc.) when an authorised ...
getParserOutput(WikiPage $page, Revision $rev)
const MW_DIFF_VERSION
$value
getMarkPatrolledLinkInfo()
Returns an array of meta data needed to build a "mark as patrolled" link and adds the mediawiki...
generateDiffBody($otext, $ntext)
Generate a diff, no caching.
wfShellExec($cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
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:117
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...
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition: hooks.txt:1629
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:1814
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:2621
localiseLineNumbersCb($matches)
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:996
static openElement($element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
Definition: Html.php:248
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:790
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:45
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:1435
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:2080
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.
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:1020
getId()
Get revision ID.
Definition: Revision.php:716
bool $mRevisionsIdsLoaded
Have the revisions IDs been loaded.
$wgExternalDiffEngine
Name of the external diff engine to use.
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:2588
markPatrolledLink()
Build a link to mark a change as patrolled.
MediaWiki exception.
Definition: MWException.php:26
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:1708
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:527
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:79
const DB_SLAVE
Definition: Defines.php:46
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 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 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
bool $unhide
Show rev_deleted content if allowed.
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead.&$feedLinks conditions will AND in the final query as a Content object as a Content object $title
Definition: hooks.txt:312
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
$wgUseRCPatrol
Use RC Patrolling to check for vandalism (from recent changes and watchlists) New pages and new files...
addHeader($diff, $otitle, $ntitle, $multi= '', $notice= '')
Add the header to a diff body.
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:1601
setContent(Content $oldContent, Content $newContent)
Use specified text instead of loading from the database.
const RAW
Definition: Revision.php:85
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
const TS_DB
MySQL DATETIME (YYYY-MM-DD HH:MM:SS)
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
getRevisionHeader(Revision $rev, $complete= '')
Get a header for a specified revision.
Exception class which takes an HTML error message, and does not produce a backtrace.
Definition: FatalError.php:28
const DELETED_TEXT
Definition: Revision.php:76
Class representing a MediaWiki article and history.
Definition: WikiPage.php:31
static newFromId($id, $flags=0)
Load a page revision from a given revision ID number.
Definition: Revision.php:99
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:1762
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:1020
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 and supporting JS 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:1020
static flag($flag, IContextSource $context=null)
Make an "<abbr>" 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()
Windows-compatible version of escapeshellarg() Windows doesn't recognise single-quotes in the shell...
loadNewText()
Load the text of the new revision, not the old one.
getDiffBodyCacheKey()
Returns the cache key for diff body text or content.
wfMemcKey()
Make a cache key for the local wiki.
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:1980
static newFromArchiveRow($row, $overrides=[])
Make a fake revision object from an archive table row.
Definition: Revision.php:172
static revUserTools($rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
Definition: Linker.php:1142
getWikiPage()
Get the WikiPage object.
static element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:230
loadRevisionData()
Load revision metadata for the specified articles.
getUser()
Get the User object.
static newFromConds($conds, $fname=__METHOD__, $dbType=DB_SLAVE)
Find the first recent change matching some specific conditions.
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:2376
wfGetLangObj($langcode=false)
Return a Language object from $langcode.
loadText()
Load the text of the revisions, as well as revision data.
$matches
$wgShowHostnames
Expose backend server host names through the API and various HTML comments.
getOutput()
Get the OutputPage object.