MediaWiki  1.27.3
DifferenceEngine.php
Go to the documentation of this file.
1 <?php
30 define( 'MW_DIFF_VERSION', '1.11a' );
31 
37 
39  public $mOldid;
40 
42  public $mNewid;
43 
44  private $mOldTags;
45  private $mNewTags;
46 
48  public $mOldContent;
49 
51  public $mNewContent;
52 
54  protected $mDiffLang;
55 
57  public $mOldPage;
58 
60  public $mNewPage;
61 
63  public $mOldRev;
64 
66  public $mNewRev;
67 
69  private $mRevisionsIdsLoaded = false;
70 
72  public $mRevisionsLoaded = false;
73 
75  public $mTextLoaded = 0;
76 
78  public $mCacheHit = false;
79 
85  public $enableDebugComment = false;
86 
90  protected $mReducedLineNumbers = false;
91 
93  protected $mMarkPatrolledLink = null;
94 
96  protected $unhide = false;
97 
99  protected $mRefreshCache = false;
100 
112  public function __construct( $context = null, $old = 0, $new = 0, $rcid = 0,
113  $refreshCache = false, $unhide = false
114  ) {
115  if ( $context instanceof IContextSource ) {
116  $this->setContext( $context );
117  }
118 
119  wfDebug( "DifferenceEngine old '$old' new '$new' rcid '$rcid'\n" );
120 
121  $this->mOldid = $old;
122  $this->mNewid = $new;
123  $this->mRefreshCache = $refreshCache;
124  $this->unhide = $unhide;
125  }
126 
130  public function setReducedLineNumbers( $value = true ) {
131  $this->mReducedLineNumbers = $value;
132  }
133 
137  public function getDiffLang() {
138  if ( $this->mDiffLang === null ) {
139  # Default language in which the diff text is written.
140  $this->mDiffLang = $this->getTitle()->getPageLanguage();
141  }
142 
143  return $this->mDiffLang;
144  }
145 
149  public function wasCacheHit() {
150  return $this->mCacheHit;
151  }
152 
156  public function getOldid() {
157  $this->loadRevisionIds();
158 
159  return $this->mOldid;
160  }
161 
165  public function getNewid() {
166  $this->loadRevisionIds();
167 
168  return $this->mNewid;
169  }
170 
179  public function deletedLink( $id ) {
180  if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
181  $dbr = wfGetDB( DB_SLAVE );
182  $row = $dbr->selectRow( 'archive', '*',
183  [ 'ar_rev_id' => $id ],
184  __METHOD__ );
185  if ( $row ) {
187  $title = Title::makeTitleSafe( $row->ar_namespace, $row->ar_title );
188 
189  return SpecialPage::getTitleFor( 'Undelete' )->getFullURL( [
190  'target' => $title->getPrefixedText(),
191  'timestamp' => $rev->getTimestamp()
192  ] );
193  }
194  }
195 
196  return false;
197  }
198 
206  public function deletedIdMarker( $id ) {
207  $link = $this->deletedLink( $id );
208  if ( $link ) {
209  return "[$link $id]";
210  } else {
211  return $id;
212  }
213  }
214 
215  private function showMissingRevision() {
216  $out = $this->getOutput();
217 
218  $missing = [];
219  if ( $this->mOldRev === null ||
220  ( $this->mOldRev && $this->mOldContent === null )
221  ) {
222  $missing[] = $this->deletedIdMarker( $this->mOldid );
223  }
224  if ( $this->mNewRev === null ||
225  ( $this->mNewRev && $this->mNewContent === null )
226  ) {
227  $missing[] = $this->deletedIdMarker( $this->mNewid );
228  }
229 
230  $out->setPageTitle( $this->msg( 'errorpagetitle' ) );
231  $msg = $this->msg( 'difference-missing-revision' )
232  ->params( $this->getLanguage()->listToText( $missing ) )
233  ->numParams( count( $missing ) )
234  ->parseAsBlock();
235  $out->addHTML( $msg );
236  }
237 
238  public function showDiffPage( $diffOnly = false ) {
239 
240  # Allow frames except in certain special cases
241  $out = $this->getOutput();
242  $out->allowClickjacking();
243  $out->setRobotPolicy( 'noindex,nofollow' );
244 
245  if ( !$this->loadRevisionData() ) {
246  $this->showMissingRevision();
247 
248  return;
249  }
250 
251  $user = $this->getUser();
252  $permErrors = $this->mNewPage->getUserPermissionsErrors( 'read', $user );
253  if ( $this->mOldPage ) { # mOldPage might not be set, see below.
254  $permErrors = wfMergeErrorArrays( $permErrors,
255  $this->mOldPage->getUserPermissionsErrors( 'read', $user ) );
256  }
257  if ( count( $permErrors ) ) {
258  throw new PermissionsError( 'read', $permErrors );
259  }
260 
261  $rollback = '';
262 
263  $query = [];
264  # Carry over 'diffonly' param via navigation links
265  if ( $diffOnly != $user->getBoolOption( 'diffonly' ) ) {
266  $query['diffonly'] = $diffOnly;
267  }
268  # Cascade unhide param in links for easy deletion browsing
269  if ( $this->unhide ) {
270  $query['unhide'] = 1;
271  }
272 
273  # Check if one of the revisions is deleted/suppressed
274  $deleted = $suppressed = false;
275  $allowed = $this->mNewRev->userCan( Revision::DELETED_TEXT, $user );
276 
277  $revisionTools = [];
278 
279  # mOldRev is false if the difference engine is called with a "vague" query for
280  # a diff between a version V and its previous version V' AND the version V
281  # is the first version of that article. In that case, V' does not exist.
282  if ( $this->mOldRev === false ) {
283  $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
284  $samePage = true;
285  $oldHeader = '';
286  } else {
287  Hooks::run( 'DiffViewHeader', [ $this, $this->mOldRev, $this->mNewRev ] );
288 
289  if ( $this->mNewPage->equals( $this->mOldPage ) ) {
290  $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
291  $samePage = true;
292  } else {
293  $out->setPageTitle( $this->msg( 'difference-title-multipage',
294  $this->mOldPage->getPrefixedText(), $this->mNewPage->getPrefixedText() ) );
295  $out->addSubtitle( $this->msg( 'difference-multipage' ) );
296  $samePage = false;
297  }
298 
299  if ( $samePage && $this->mNewPage->quickUserCan( 'edit', $user ) ) {
300  if ( $this->mNewRev->isCurrent() && $this->mNewPage->userCan( 'rollback', $user ) ) {
301  $rollbackLink = Linker::generateRollback( $this->mNewRev, $this->getContext() );
302  if ( $rollbackLink ) {
303  $out->preventClickjacking();
304  $rollback = '&#160;&#160;&#160;' . $rollbackLink;
305  }
306  }
307 
308  if ( !$this->mOldRev->isDeleted( Revision::DELETED_TEXT ) &&
309  !$this->mNewRev->isDeleted( Revision::DELETED_TEXT )
310  ) {
311  $undoLink = Html::element( 'a', [
312  'href' => $this->mNewPage->getLocalURL( [
313  'action' => 'edit',
314  'undoafter' => $this->mOldid,
315  'undo' => $this->mNewid
316  ] ),
317  'title' => Linker::titleAttrib( 'undo' ),
318  ],
319  $this->msg( 'editundo' )->text()
320  );
321  $revisionTools['mw-diff-undo'] = $undoLink;
322  }
323  }
324 
325  # Make "previous revision link"
326  if ( $samePage && $this->mOldRev->getPrevious() ) {
327  $prevlink = Linker::linkKnown(
328  $this->mOldPage,
329  $this->msg( 'previousdiff' )->escaped(),
330  [ 'id' => 'differences-prevlink' ],
331  [ 'diff' => 'prev', 'oldid' => $this->mOldid ] + $query
332  );
333  } else {
334  $prevlink = '&#160;';
335  }
336 
337  if ( $this->mOldRev->isMinor() ) {
338  $oldminor = ChangesList::flag( 'minor' );
339  } else {
340  $oldminor = '';
341  }
342 
343  $ldel = $this->revisionDeleteLink( $this->mOldRev );
344  $oldRevisionHeader = $this->getRevisionHeader( $this->mOldRev, 'complete' );
345  $oldChangeTags = ChangeTags::formatSummaryRow( $this->mOldTags, 'diff', $this->getContext() );
346 
347  $oldHeader = '<div id="mw-diff-otitle1"><strong>' . $oldRevisionHeader . '</strong></div>' .
348  '<div id="mw-diff-otitle2">' .
349  Linker::revUserTools( $this->mOldRev, !$this->unhide ) . '</div>' .
350  '<div id="mw-diff-otitle3">' . $oldminor .
351  Linker::revComment( $this->mOldRev, !$diffOnly, !$this->unhide ) . $ldel . '</div>' .
352  '<div id="mw-diff-otitle5">' . $oldChangeTags[0] . '</div>' .
353  '<div id="mw-diff-otitle4">' . $prevlink . '</div>';
354 
355  if ( $this->mOldRev->isDeleted( Revision::DELETED_TEXT ) ) {
356  $deleted = true; // old revisions text is hidden
357  if ( $this->mOldRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
358  $suppressed = true; // also suppressed
359  }
360  }
361 
362  # Check if this user can see the revisions
363  if ( !$this->mOldRev->userCan( Revision::DELETED_TEXT, $user ) ) {
364  $allowed = false;
365  }
366  }
367 
368  # Make "next revision link"
369  # Skip next link on the top revision
370  if ( $samePage && !$this->mNewRev->isCurrent() ) {
371  $nextlink = Linker::linkKnown(
372  $this->mNewPage,
373  $this->msg( 'nextdiff' )->escaped(),
374  [ 'id' => 'differences-nextlink' ],
375  [ 'diff' => 'next', 'oldid' => $this->mNewid ] + $query
376  );
377  } else {
378  $nextlink = '&#160;';
379  }
380 
381  if ( $this->mNewRev->isMinor() ) {
382  $newminor = ChangesList::flag( 'minor' );
383  } else {
384  $newminor = '';
385  }
386 
387  # Handle RevisionDelete links...
388  $rdel = $this->revisionDeleteLink( $this->mNewRev );
389 
390  # Allow extensions to define their own revision tools
391  Hooks::run( 'DiffRevisionTools',
392  [ $this->mNewRev, &$revisionTools, $this->mOldRev, $user ] );
393  $formattedRevisionTools = [];
394  // Put each one in parentheses (poor man's button)
395  foreach ( $revisionTools as $key => $tool ) {
396  $toolClass = is_string( $key ) ? $key : 'mw-diff-tool';
397  $element = Html::rawElement(
398  'span',
399  [ 'class' => $toolClass ],
400  $this->msg( 'parentheses' )->rawParams( $tool )->escaped()
401  );
402  $formattedRevisionTools[] = $element;
403  }
404  $newRevisionHeader = $this->getRevisionHeader( $this->mNewRev, 'complete' ) .
405  ' ' . implode( ' ', $formattedRevisionTools );
406  $newChangeTags = ChangeTags::formatSummaryRow( $this->mNewTags, 'diff', $this->getContext() );
407 
408  $newHeader = '<div id="mw-diff-ntitle1"><strong>' . $newRevisionHeader . '</strong></div>' .
409  '<div id="mw-diff-ntitle2">' . Linker::revUserTools( $this->mNewRev, !$this->unhide ) .
410  " $rollback</div>" .
411  '<div id="mw-diff-ntitle3">' . $newminor .
412  Linker::revComment( $this->mNewRev, !$diffOnly, !$this->unhide ) . $rdel . '</div>' .
413  '<div id="mw-diff-ntitle5">' . $newChangeTags[0] . '</div>' .
414  '<div id="mw-diff-ntitle4">' . $nextlink . $this->markPatrolledLink() . '</div>';
415 
416  if ( $this->mNewRev->isDeleted( Revision::DELETED_TEXT ) ) {
417  $deleted = true; // new revisions text is hidden
418  if ( $this->mNewRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
419  $suppressed = true; // also suppressed
420  }
421  }
422 
423  # If the diff cannot be shown due to a deleted revision, then output
424  # the diff header and links to unhide (if available)...
425  if ( $deleted && ( !$this->unhide || !$allowed ) ) {
426  $this->showDiffStyle();
427  $multi = $this->getMultiNotice();
428  $out->addHTML( $this->addHeader( '', $oldHeader, $newHeader, $multi ) );
429  if ( !$allowed ) {
430  $msg = $suppressed ? 'rev-suppressed-no-diff' : 'rev-deleted-no-diff';
431  # Give explanation for why revision is not visible
432  $out->wrapWikiMsg( "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
433  [ $msg ] );
434  } else {
435  # Give explanation and add a link to view the diff...
436  $query = $this->getRequest()->appendQueryValue( 'unhide', '1' );
437  $link = $this->getTitle()->getFullURL( $query );
438  $msg = $suppressed ? 'rev-suppressed-unhide-diff' : 'rev-deleted-unhide-diff';
439  $out->wrapWikiMsg(
440  "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
441  [ $msg, $link ]
442  );
443  }
444  # Otherwise, output a regular diff...
445  } else {
446  # Add deletion notice if the user is viewing deleted content
447  $notice = '';
448  if ( $deleted ) {
449  $msg = $suppressed ? 'rev-suppressed-diff-view' : 'rev-deleted-diff-view';
450  $notice = "<div id='mw-$msg' class='mw-warning plainlinks'>\n" .
451  $this->msg( $msg )->parse() .
452  "</div>\n";
453  }
454  $this->showDiff( $oldHeader, $newHeader, $notice );
455  if ( !$diffOnly ) {
456  $this->renderNewRevision();
457  }
458  }
459  }
460 
470  protected function markPatrolledLink() {
471  if ( $this->mMarkPatrolledLink === null ) {
472  $linkInfo = $this->getMarkPatrolledLinkInfo();
473  // If false, there is no patrol link needed/allowed
474  if ( !$linkInfo ) {
475  $this->mMarkPatrolledLink = '';
476  } else {
477  $this->mMarkPatrolledLink = ' <span class="patrollink" data-mw="interface">[' .
479  $this->mNewPage,
480  $this->msg( 'markaspatrolleddiff' )->escaped(),
481  [],
482  [
483  'action' => 'markpatrolled',
484  'rcid' => $linkInfo['rcid'],
485  'token' => $linkInfo['token'],
486  ]
487  ) . ']</span>';
488  }
489  }
491  }
492 
500  protected function getMarkPatrolledLinkInfo() {
501  global $wgUseRCPatrol, $wgEnableAPI, $wgEnableWriteAPI;
502 
503  $user = $this->getUser();
504 
505  // Prepare a change patrol link, if applicable
506  if (
507  // Is patrolling enabled and the user allowed to?
508  $wgUseRCPatrol && $this->mNewPage->quickUserCan( 'patrol', $user ) &&
509  // Only do this if the revision isn't more than 6 hours older
510  // than the Max RC age (6h because the RC might not be cleaned out regularly)
511  RecentChange::isInRCLifespan( $this->mNewRev->getTimestamp(), 21600 )
512  ) {
513  // Look for an unpatrolled change corresponding to this diff
514  $db = wfGetDB( DB_SLAVE );
515  $change = RecentChange::newFromConds(
516  [
517  'rc_timestamp' => $db->timestamp( $this->mNewRev->getTimestamp() ),
518  'rc_this_oldid' => $this->mNewid,
519  'rc_patrolled' => 0
520  ],
521  __METHOD__
522  );
523 
524  if ( $change && !$change->getPerformer()->equals( $user ) ) {
525  $rcid = $change->getAttribute( 'rc_id' );
526  } else {
527  // None found or the page has been created by the current user.
528  // If the user could patrol this it already would be patrolled
529  $rcid = 0;
530  }
531  // Build the link
532  if ( $rcid ) {
533  $this->getOutput()->preventClickjacking();
534  if ( $wgEnableAPI && $wgEnableWriteAPI
535  && $user->isAllowed( 'writeapi' )
536  ) {
537  $this->getOutput()->addModules( 'mediawiki.page.patrol.ajax' );
538  }
539 
540  $token = $user->getEditToken( $rcid );
541  return [
542  'rcid' => $rcid,
543  'token' => $token,
544  ];
545  }
546  }
547 
548  // No mark as patrolled link applicable
549  return false;
550  }
551 
557  protected function revisionDeleteLink( $rev ) {
558  $link = Linker::getRevDeleteLink( $this->getUser(), $rev, $rev->getTitle() );
559  if ( $link !== '' ) {
560  $link = '&#160;&#160;&#160;' . $link . ' ';
561  }
562 
563  return $link;
564  }
565 
569  public function renderNewRevision() {
570  $out = $this->getOutput();
571  $revHeader = $this->getRevisionHeader( $this->mNewRev );
572  # Add "current version as of X" title
573  $out->addHTML( "<hr class='diff-hr' id='mw-oldid' />
574  <h2 class='diff-currentversion-title'>{$revHeader}</h2>\n" );
575  # Page content may be handled by a hooked call instead...
576  # @codingStandardsIgnoreStart Ignoring long lines.
577  if ( Hooks::run( 'ArticleContentOnDiff', [ $this, $out ] ) ) {
578  $this->loadNewText();
579  $out->setRevisionId( $this->mNewid );
580  $out->setRevisionTimestamp( $this->mNewRev->getTimestamp() );
581  $out->setArticleFlag( true );
582 
583  // NOTE: only needed for B/C: custom rendering of JS/CSS via hook
584  if ( $this->mNewPage->isCssJsSubpage() || $this->mNewPage->isCssOrJsPage() ) {
585  // This needs to be synchronised with Article::showCssOrJsPage(), which sucks
586  // Give hooks a chance to customise the output
587  // @todo standardize this crap into one function
588  if ( ContentHandler::runLegacyHooks( 'ShowRawCssJs', [ $this->mNewContent, $this->mNewPage, $out ] ) ) {
589  // NOTE: deprecated hook, B/C only
590  // use the content object's own rendering
591  $cnt = $this->mNewRev->getContent();
592  $po = $cnt ? $cnt->getParserOutput( $this->mNewRev->getTitle(), $this->mNewRev->getId() ) : null;
593  if ( $po ) {
594  $out->addParserOutputContent( $po );
595  }
596  }
597  } elseif ( !Hooks::run( 'ArticleContentViewCustom', [ $this->mNewContent, $this->mNewPage, $out ] ) ) {
598  // Handled by extension
599  } elseif ( !ContentHandler::runLegacyHooks( 'ArticleViewCustom', [ $this->mNewContent, $this->mNewPage, $out ] ) ) {
600  // NOTE: deprecated hook, B/C only
601  // Handled by extension
602  } else {
603  // Normal page
604  if ( $this->getTitle()->equals( $this->mNewPage ) ) {
605  // If the Title stored in the context is the same as the one
606  // of the new revision, we can use its associated WikiPage
607  // object.
608  $wikiPage = $this->getWikiPage();
609  } else {
610  // Otherwise we need to create our own WikiPage object
611  $wikiPage = WikiPage::factory( $this->mNewPage );
612  }
613 
614  $parserOutput = $this->getParserOutput( $wikiPage, $this->mNewRev );
615 
616  # WikiPage::getParserOutput() should not return false, but just in case
617  if ( $parserOutput ) {
618  $out->addParserOutput( $parserOutput );
619  }
620  }
621  }
622  # @codingStandardsIgnoreEnd
623 
624  # Add redundant patrol link on bottom...
625  $out->addHTML( $this->markPatrolledLink() );
626 
627  }
628 
629  protected function getParserOutput( WikiPage $page, Revision $rev ) {
630  $parserOptions = $page->makeParserOptions( $this->getContext() );
631 
632  if ( !$rev->isCurrent() || !$rev->getTitle()->quickUserCan( 'edit', $this->getUser() ) ) {
633  $parserOptions->setEditSection( false );
634  }
635 
636  $parserOutput = $page->getParserOutput( $parserOptions, $rev->getId() );
637 
638  return $parserOutput;
639  }
640 
651  public function showDiff( $otitle, $ntitle, $notice = '' ) {
652  $diff = $this->getDiff( $otitle, $ntitle, $notice );
653  if ( $diff === false ) {
654  $this->showMissingRevision();
655 
656  return false;
657  } else {
658  $this->showDiffStyle();
659  $this->getOutput()->addHTML( $diff );
660 
661  return true;
662  }
663  }
664 
668  public function showDiffStyle() {
669  $this->getOutput()->addModuleStyles( 'mediawiki.action.history.diff' );
670  }
671 
681  public function getDiff( $otitle, $ntitle, $notice = '' ) {
682  $body = $this->getDiffBody();
683  if ( $body === false ) {
684  return false;
685  }
686 
687  $multi = $this->getMultiNotice();
688  // Display a message when the diff is empty
689  if ( $body === '' ) {
690  $notice .= '<div class="mw-diff-empty">' .
691  $this->msg( 'diff-empty' )->parse() .
692  "</div>\n";
693  }
694 
695  return $this->addHeader( $body, $otitle, $ntitle, $multi, $notice );
696  }
697 
703  public function getDiffBody() {
704  $this->mCacheHit = true;
705  // Check if the diff should be hidden from this user
706  if ( !$this->loadRevisionData() ) {
707  return false;
708  } elseif ( $this->mOldRev &&
709  !$this->mOldRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
710  ) {
711  return false;
712  } elseif ( $this->mNewRev &&
713  !$this->mNewRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
714  ) {
715  return false;
716  }
717  // Short-circuit
718  if ( $this->mOldRev === false || ( $this->mOldRev && $this->mNewRev
719  && $this->mOldRev->getId() == $this->mNewRev->getId() )
720  ) {
721  return '';
722  }
723  // Cacheable?
724  $key = false;
726  if ( $this->mOldid && $this->mNewid ) {
727  $key = $this->getDiffBodyCacheKey();
728 
729  // Try cache
730  if ( !$this->mRefreshCache ) {
731  $difftext = $cache->get( $key );
732  if ( $difftext ) {
733  wfIncrStats( 'diff_cache.hit' );
734  $difftext = $this->localiseLineNumbers( $difftext );
735  $difftext .= "\n<!-- diff cache key $key -->\n";
736 
737  return $difftext;
738  }
739  } // don't try to load but save the result
740  }
741  $this->mCacheHit = false;
742 
743  // Loadtext is permission safe, this just clears out the diff
744  if ( !$this->loadText() ) {
745  return false;
746  }
747 
748  $difftext = $this->generateContentDiffBody( $this->mOldContent, $this->mNewContent );
749 
750  // Avoid PHP 7.1 warning from passing $this by reference
751  $diffEngine = $this;
752 
753  // Save to cache for 7 days
754  if ( !Hooks::run( 'AbortDiffCache', [ &$diffEngine ] ) ) {
755  wfIncrStats( 'diff_cache.uncacheable' );
756  } elseif ( $key !== false && $difftext !== false ) {
757  wfIncrStats( 'diff_cache.miss' );
758  $cache->set( $key, $difftext, 7 * 86400 );
759  } else {
760  wfIncrStats( 'diff_cache.uncacheable' );
761  }
762  // Replace line numbers with the text in the user's language
763  if ( $difftext !== false ) {
764  $difftext = $this->localiseLineNumbers( $difftext );
765  }
766 
767  return $difftext;
768  }
769 
778  protected function getDiffBodyCacheKey() {
779  if ( !$this->mOldid || !$this->mNewid ) {
780  throw new MWException( 'mOldid and mNewid must be set to get diff cache key.' );
781  }
782 
783  return wfMemcKey( 'diff', 'version', MW_DIFF_VERSION,
784  'oldid', $this->mOldid, 'newid', $this->mNewid );
785  }
786 
806  public function generateContentDiffBody( Content $old, Content $new ) {
807  if ( !( $old instanceof TextContent ) ) {
808  throw new MWException( "Diff not implemented for " . get_class( $old ) . "; " .
809  "override generateContentDiffBody to fix this." );
810  }
811 
812  if ( !( $new instanceof TextContent ) ) {
813  throw new MWException( "Diff not implemented for " . get_class( $new ) . "; "
814  . "override generateContentDiffBody to fix this." );
815  }
816 
817  $otext = $old->serialize();
818  $ntext = $new->serialize();
819 
820  return $this->generateTextDiffBody( $otext, $ntext );
821  }
822 
832  public function generateDiffBody( $otext, $ntext ) {
833  ContentHandler::deprecated( __METHOD__, "1.21" );
834 
835  return $this->generateTextDiffBody( $otext, $ntext );
836  }
837 
848  public function generateTextDiffBody( $otext, $ntext ) {
849  $diff = function() use ( $otext, $ntext ) {
850  $time = microtime( true );
851 
852  $result = $this->textDiff( $otext, $ntext );
853 
854  $time = intval( ( microtime( true ) - $time ) * 1000 );
855  $this->getStats()->timing( 'diff_time', $time );
856  // Log requests slower than 99th percentile
857  if ( $time > 100 && $this->mOldPage && $this->mNewPage ) {
858  wfDebugLog( 'diff',
859  "$time ms diff: {$this->mOldid} -> {$this->mNewid} {$this->mNewPage}" );
860  }
861 
862  return $result;
863  };
864 
865  $error = function( $status ) {
866  throw new FatalError( $status->getWikiText() );
867  };
868 
869  // Use PoolCounter if the diff looks like it can be expensive
870  if ( strlen( $otext ) + strlen( $ntext ) > 20000 ) {
871  $work = new PoolCounterWorkViaCallback( 'diff',
872  md5( $otext ) . md5( $ntext ),
873  [ 'doWork' => $diff, 'error' => $error ]
874  );
875  return $work->execute();
876  }
877 
878  return $diff();
879  }
880 
888  protected function textDiff( $otext, $ntext ) {
889  global $wgExternalDiffEngine, $wgContLang;
890 
891  $otext = str_replace( "\r\n", "\n", $otext );
892  $ntext = str_replace( "\r\n", "\n", $ntext );
893 
894  if ( $wgExternalDiffEngine == 'wikidiff' || $wgExternalDiffEngine == 'wikidiff3' ) {
895  wfDeprecated( "\$wgExternalDiffEngine = '{$wgExternalDiffEngine}'", '1.27' );
896  $wgExternalDiffEngine = false;
897  } elseif ( $wgExternalDiffEngine == 'wikidiff2' ) {
898  // Same as above, but with no deprecation warnings
899  $wgExternalDiffEngine = false;
900  } elseif ( !is_string( $wgExternalDiffEngine ) && $wgExternalDiffEngine !== false ) {
901  // And prevent people from shooting themselves in the foot...
902  wfWarn( '$wgExternalDiffEngine is set to a non-string value, forcing it to false' );
903  $wgExternalDiffEngine = false;
904  }
905 
906  if ( function_exists( 'wikidiff2_do_diff' ) && $wgExternalDiffEngine === false ) {
907  # Better external diff engine, the 2 may some day be dropped
908  # This one does the escaping and segmenting itself
909  $text = wikidiff2_do_diff( $otext, $ntext, 2 );
910  $text .= $this->debug( 'wikidiff2' );
911 
912  return $text;
913  } elseif ( $wgExternalDiffEngine !== false && is_executable( $wgExternalDiffEngine ) ) {
914  # Diff via the shell
915  $tmpDir = wfTempDir();
916  $tempName1 = tempnam( $tmpDir, 'diff_' );
917  $tempName2 = tempnam( $tmpDir, 'diff_' );
918 
919  $tempFile1 = fopen( $tempName1, "w" );
920  if ( !$tempFile1 ) {
921  return false;
922  }
923  $tempFile2 = fopen( $tempName2, "w" );
924  if ( !$tempFile2 ) {
925  return false;
926  }
927  fwrite( $tempFile1, $otext );
928  fwrite( $tempFile2, $ntext );
929  fclose( $tempFile1 );
930  fclose( $tempFile2 );
931  $cmd = wfEscapeShellArg( $wgExternalDiffEngine, $tempName1, $tempName2 );
932  $difftext = wfShellExec( $cmd );
933  $difftext .= $this->debug( "external $wgExternalDiffEngine" );
934  unlink( $tempName1 );
935  unlink( $tempName2 );
936 
937  return $difftext;
938  }
939 
940  # Native PHP diff
941  $ota = explode( "\n", $wgContLang->segmentForDiff( $otext ) );
942  $nta = explode( "\n", $wgContLang->segmentForDiff( $ntext ) );
943  $diffs = new Diff( $ota, $nta );
944  $formatter = new TableDiffFormatter();
945  $difftext = $wgContLang->unsegmentForDiff( $formatter->format( $diffs ) );
946 
947  return $difftext;
948  }
949 
958  protected function debug( $generator = "internal" ) {
959  global $wgShowHostnames;
960  if ( !$this->enableDebugComment ) {
961  return '';
962  }
963  $data = [ $generator ];
964  if ( $wgShowHostnames ) {
965  $data[] = wfHostname();
966  }
967  $data[] = wfTimestamp( TS_DB );
968 
969  return "<!-- diff generator: " .
970  implode( " ", array_map( "htmlspecialchars", $data ) ) .
971  " -->\n";
972  }
973 
981  public function localiseLineNumbers( $text ) {
982  return preg_replace_callback(
983  '/<!--LINE (\d+)-->/',
984  [ $this, 'localiseLineNumbersCb' ],
985  $text
986  );
987  }
988 
989  public function localiseLineNumbersCb( $matches ) {
990  if ( $matches[1] === '1' && $this->mReducedLineNumbers ) {
991  return '';
992  }
993 
994  return $this->msg( 'lineno' )->numParams( $matches[1] )->escaped();
995  }
996 
1002  public function getMultiNotice() {
1003  if ( !is_object( $this->mOldRev ) || !is_object( $this->mNewRev ) ) {
1004  return '';
1005  } elseif ( !$this->mOldPage->equals( $this->mNewPage ) ) {
1006  // Comparing two different pages? Count would be meaningless.
1007  return '';
1008  }
1009 
1010  if ( $this->mOldRev->getTimestamp() > $this->mNewRev->getTimestamp() ) {
1011  $oldRev = $this->mNewRev; // flip
1012  $newRev = $this->mOldRev; // flip
1013  } else { // normal case
1014  $oldRev = $this->mOldRev;
1015  $newRev = $this->mNewRev;
1016  }
1017 
1018  // Sanity: don't show the notice if too many rows must be scanned
1019  // @todo show some special message for that case
1020  $nEdits = $this->mNewPage->countRevisionsBetween( $oldRev, $newRev, 1000 );
1021  if ( $nEdits > 0 && $nEdits <= 1000 ) {
1022  $limit = 100; // use diff-multi-manyusers if too many users
1023  $users = $this->mNewPage->getAuthorsBetween( $oldRev, $newRev, $limit );
1024  $numUsers = count( $users );
1025 
1026  if ( $numUsers == 1 && $users[0] == $newRev->getUserText( Revision::RAW ) ) {
1027  $numUsers = 0; // special case to say "by the same user" instead of "by one other user"
1028  }
1029 
1030  return self::intermediateEditsMsg( $nEdits, $numUsers, $limit );
1031  }
1032 
1033  return ''; // nothing
1034  }
1035 
1045  public static function intermediateEditsMsg( $numEdits, $numUsers, $limit ) {
1046  if ( $numUsers === 0 ) {
1047  $msg = 'diff-multi-sameuser';
1048  } elseif ( $numUsers > $limit ) {
1049  $msg = 'diff-multi-manyusers';
1050  $numUsers = $limit;
1051  } else {
1052  $msg = 'diff-multi-otherusers';
1053  }
1054 
1055  return wfMessage( $msg )->numParams( $numEdits, $numUsers )->parse();
1056  }
1057 
1067  protected function getRevisionHeader( Revision $rev, $complete = '' ) {
1068  $lang = $this->getLanguage();
1069  $user = $this->getUser();
1070  $revtimestamp = $rev->getTimestamp();
1071  $timestamp = $lang->userTimeAndDate( $revtimestamp, $user );
1072  $dateofrev = $lang->userDate( $revtimestamp, $user );
1073  $timeofrev = $lang->userTime( $revtimestamp, $user );
1074 
1075  $header = $this->msg(
1076  $rev->isCurrent() ? 'currentrev-asof' : 'revisionasof',
1077  $timestamp,
1078  $dateofrev,
1079  $timeofrev
1080  )->escaped();
1081 
1082  if ( $complete !== 'complete' ) {
1083  return $header;
1084  }
1085 
1086  $title = $rev->getTitle();
1087 
1088  $header = Linker::linkKnown( $title, $header, [],
1089  [ 'oldid' => $rev->getId() ] );
1090 
1091  if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
1092  $editQuery = [ 'action' => 'edit' ];
1093  if ( !$rev->isCurrent() ) {
1094  $editQuery['oldid'] = $rev->getId();
1095  }
1096 
1097  $key = $title->quickUserCan( 'edit', $user ) ? 'editold' : 'viewsourceold';
1098  $msg = $this->msg( $key )->escaped();
1099  $editLink = $this->msg( 'parentheses' )->rawParams(
1100  Linker::linkKnown( $title, $msg, [], $editQuery ) )->escaped();
1101  $header .= ' ' . Html::rawElement(
1102  'span',
1103  [ 'class' => 'mw-diff-edit' ],
1104  $editLink
1105  );
1106  if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
1107  $header = Html::rawElement(
1108  'span',
1109  [ 'class' => 'history-deleted' ],
1110  $header
1111  );
1112  }
1113  } else {
1114  $header = Html::rawElement( 'span', [ 'class' => 'history-deleted' ], $header );
1115  }
1116 
1117  return $header;
1118  }
1119 
1132  public function addHeader( $diff, $otitle, $ntitle, $multi = '', $notice = '' ) {
1133  // shared.css sets diff in interface language/dir, but the actual content
1134  // is often in a different language, mostly the page content language/dir
1135  $header = Html::openElement( 'table', [
1136  'class' => [ 'diff', 'diff-contentalign-' . $this->getDiffLang()->alignStart() ],
1137  'data-mw' => 'interface',
1138  ] );
1139  $userLang = htmlspecialchars( $this->getLanguage()->getHtmlCode() );
1140 
1141  if ( !$diff && !$otitle ) {
1142  $header .= "
1143  <tr style='vertical-align: top;' lang='{$userLang}'>
1144  <td class='diff-ntitle'>{$ntitle}</td>
1145  </tr>";
1146  $multiColspan = 1;
1147  } else {
1148  if ( $diff ) { // Safari/Chrome show broken output if cols not used
1149  $header .= "
1150  <col class='diff-marker' />
1151  <col class='diff-content' />
1152  <col class='diff-marker' />
1153  <col class='diff-content' />";
1154  $colspan = 2;
1155  $multiColspan = 4;
1156  } else {
1157  $colspan = 1;
1158  $multiColspan = 2;
1159  }
1160  if ( $otitle || $ntitle ) {
1161  $header .= "
1162  <tr style='vertical-align: top;' lang='{$userLang}'>
1163  <td colspan='$colspan' class='diff-otitle'>{$otitle}</td>
1164  <td colspan='$colspan' class='diff-ntitle'>{$ntitle}</td>
1165  </tr>";
1166  }
1167  }
1168 
1169  if ( $multi != '' ) {
1170  $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;' " .
1171  "class='diff-multi' lang='{$userLang}'>{$multi}</td></tr>";
1172  }
1173  if ( $notice != '' ) {
1174  $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;' " .
1175  "lang='{$userLang}'>{$notice}</td></tr>";
1176  }
1177 
1178  return $header . $diff . "</table>";
1179  }
1180 
1187  public function setContent( Content $oldContent, Content $newContent ) {
1188  $this->mOldContent = $oldContent;
1189  $this->mNewContent = $newContent;
1190 
1191  $this->mTextLoaded = 2;
1192  $this->mRevisionsLoaded = true;
1193  }
1194 
1201  public function setTextLanguage( $lang ) {
1202  $this->mDiffLang = wfGetLangObj( $lang );
1203  }
1204 
1216  public function mapDiffPrevNext( $old, $new ) {
1217  if ( $new === 'prev' ) {
1218  // Show diff between revision $old and the previous one. Get previous one from DB.
1219  $newid = intval( $old );
1220  $oldid = $this->getTitle()->getPreviousRevisionID( $newid );
1221  } elseif ( $new === 'next' ) {
1222  // Show diff between revision $old and the next one. Get next one from DB.
1223  $oldid = intval( $old );
1224  $newid = $this->getTitle()->getNextRevisionID( $oldid );
1225  } else {
1226  $oldid = intval( $old );
1227  $newid = intval( $new );
1228  }
1229 
1230  return [ $oldid, $newid ];
1231  }
1232 
1236  private function loadRevisionIds() {
1237  if ( $this->mRevisionsIdsLoaded ) {
1238  return;
1239  }
1240 
1241  $this->mRevisionsIdsLoaded = true;
1242 
1243  $old = $this->mOldid;
1244  $new = $this->mNewid;
1245 
1246  list( $this->mOldid, $this->mNewid ) = self::mapDiffPrevNext( $old, $new );
1247  if ( $new === 'next' && $this->mNewid === false ) {
1248  # if no result, NewId points to the newest old revision. The only newer
1249  # revision is cur, which is "0".
1250  $this->mNewid = 0;
1251  }
1252 
1253  Hooks::run(
1254  'NewDifferenceEngine',
1255  [ $this->getTitle(), &$this->mOldid, &$this->mNewid, $old, $new ]
1256  );
1257  }
1258 
1271  public function loadRevisionData() {
1272  if ( $this->mRevisionsLoaded ) {
1273  return true;
1274  }
1275 
1276  // Whether it succeeds or fails, we don't want to try again
1277  $this->mRevisionsLoaded = true;
1278 
1279  $this->loadRevisionIds();
1280 
1281  // Load the new revision object
1282  if ( $this->mNewid ) {
1283  $this->mNewRev = Revision::newFromId( $this->mNewid );
1284  } else {
1285  $this->mNewRev = Revision::newFromTitle(
1286  $this->getTitle(),
1287  false,
1289  );
1290  }
1291 
1292  if ( !$this->mNewRev instanceof Revision ) {
1293  return false;
1294  }
1295 
1296  // Update the new revision ID in case it was 0 (makes life easier doing UI stuff)
1297  $this->mNewid = $this->mNewRev->getId();
1298  $this->mNewPage = $this->mNewRev->getTitle();
1299 
1300  // Load the old revision object
1301  $this->mOldRev = false;
1302  if ( $this->mOldid ) {
1303  $this->mOldRev = Revision::newFromId( $this->mOldid );
1304  } elseif ( $this->mOldid === 0 ) {
1305  $rev = $this->mNewRev->getPrevious();
1306  if ( $rev ) {
1307  $this->mOldid = $rev->getId();
1308  $this->mOldRev = $rev;
1309  } else {
1310  // No previous revision; mark to show as first-version only.
1311  $this->mOldid = false;
1312  $this->mOldRev = false;
1313  }
1314  } /* elseif ( $this->mOldid === false ) leave mOldRev false; */
1315 
1316  if ( is_null( $this->mOldRev ) ) {
1317  return false;
1318  }
1319 
1320  if ( $this->mOldRev ) {
1321  $this->mOldPage = $this->mOldRev->getTitle();
1322  }
1323 
1324  // Load tags information for both revisions
1325  $dbr = wfGetDB( DB_SLAVE );
1326  if ( $this->mOldid !== false ) {
1327  $this->mOldTags = $dbr->selectField(
1328  'tag_summary',
1329  'ts_tags',
1330  [ 'ts_rev_id' => $this->mOldid ],
1331  __METHOD__
1332  );
1333  } else {
1334  $this->mOldTags = false;
1335  }
1336  $this->mNewTags = $dbr->selectField(
1337  'tag_summary',
1338  'ts_tags',
1339  [ 'ts_rev_id' => $this->mNewid ],
1340  __METHOD__
1341  );
1342 
1343  return true;
1344  }
1345 
1351  public function loadText() {
1352  if ( $this->mTextLoaded == 2 ) {
1353  return true;
1354  }
1355 
1356  // Whether it succeeds or fails, we don't want to try again
1357  $this->mTextLoaded = 2;
1358 
1359  if ( !$this->loadRevisionData() ) {
1360  return false;
1361  }
1362 
1363  if ( $this->mOldRev ) {
1364  $this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1365  if ( $this->mOldContent === null ) {
1366  return false;
1367  }
1368  }
1369 
1370  if ( $this->mNewRev ) {
1371  $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1372  if ( $this->mNewContent === null ) {
1373  return false;
1374  }
1375  }
1376 
1377  return true;
1378  }
1379 
1385  public function loadNewText() {
1386  if ( $this->mTextLoaded >= 1 ) {
1387  return true;
1388  }
1389 
1390  $this->mTextLoaded = 1;
1391 
1392  if ( !$this->loadRevisionData() ) {
1393  return false;
1394  }
1395 
1396  $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1397 
1398  return true;
1399  }
1400 
1401 }
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:99
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:1974
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:1656
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:766
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:1422
getLanguage()
Get the Language object.
static linkKnown($target, $html=null, $customAttribs=[], $query=[], $options=[ 'known', 'noclasses'])
Identical to link(), except $options defaults to 'known'.
Definition: Linker.php:264
magic word the default is to use $key to get the and $key value or $key value text $key value html to format the value $key
Definition: hooks.txt:2325
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:2256
getParserOutput(ParserOptions $parserOptions, $oldid=null)
Get a ParserOutput for the given ParserOptions and revision ID.
Definition: WikiPage.php:1055
__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:75
getTimestamp()
Definition: Revision.php:1152
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
getParserOutput(WikiPage $page, Revision $rev)
const MW_DIFF_VERSION
Constant to indicate diff cache compatibility.
$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
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:1616
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':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:1800
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:2585
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:979
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:773
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:1422
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:2178
bool $mRefreshCache
Refresh the diff cache.
static deprecated($func, $version, $component=false)
Logs a deprecation warning, visible if $wgDevelopmentWarnings, but only if self::$enableDeprecationWa...
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:1008
getId()
Get revision ID.
Definition: Revision.php:716
bool $mRevisionsIdsLoaded
Have the revisions IDs been loaded.
static runLegacyHooks($event, $args=[], $warn=null)
Call a legacy hook that uses text instead of Content objects.
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:2552
markPatrolledLink()
Build a link to mark a change as patrolled.
Base interface for content objects.
Definition: Content.php:34
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"&lt
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:1692
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:548
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
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:916
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.
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:1588
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:246
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:29
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:1857
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:1008
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:1008
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()
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:1936
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:1252
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:2342
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.