Merge "Introduce config var for moved-paragraph-detection threshold"
[lhc/web/wiklou.git] / includes / diff / DifferenceEngine.php
1 <?php
2 /**
3 * User interface for the difference engine.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup DifferenceEngine
22 */
23 use MediaWiki\MediaWikiServices;
24
25 /** @deprecated use class constant instead */
26 define( 'MW_DIFF_VERSION', '1.11a' );
27
28 /**
29 * @todo document
30 * @ingroup DifferenceEngine
31 */
32 class DifferenceEngine extends ContextSource {
33 /**
34 * Constant to indicate diff cache compatibility.
35 * Bump this when changing the diff formatting in a way that
36 * fixes important bugs or such to force cached diff views to
37 * clear.
38 */
39 const DIFF_VERSION = MW_DIFF_VERSION;
40
41 /** @var int */
42 public $mOldid;
43
44 /** @var int */
45 public $mNewid;
46
47 private $mOldTags;
48 private $mNewTags;
49
50 /** @var Content */
51 public $mOldContent;
52
53 /** @var Content */
54 public $mNewContent;
55
56 /** @var Language */
57 protected $mDiffLang;
58
59 /** @var Title */
60 public $mOldPage;
61
62 /** @var Title */
63 public $mNewPage;
64
65 /** @var Revision */
66 public $mOldRev;
67
68 /** @var Revision */
69 public $mNewRev;
70
71 /** @var bool Have the revisions IDs been loaded */
72 private $mRevisionsIdsLoaded = false;
73
74 /** @var bool Have the revisions been loaded */
75 public $mRevisionsLoaded = false;
76
77 /** @var int How many text blobs have been loaded, 0, 1 or 2? */
78 public $mTextLoaded = 0;
79
80 /** @var bool Was the diff fetched from cache? */
81 public $mCacheHit = false;
82
83 /**
84 * Set this to true to add debug info to the HTML output.
85 * Warning: this may cause RSS readers to spuriously mark articles as "new"
86 * (T22601)
87 */
88 public $enableDebugComment = false;
89
90 /** @var bool If true, line X is not displayed when X is 1, for example
91 * to increase readability and conserve space with many small diffs.
92 */
93 protected $mReducedLineNumbers = false;
94
95 /** @var string Link to action=markpatrolled */
96 protected $mMarkPatrolledLink = null;
97
98 /** @var bool Show rev_deleted content if allowed */
99 protected $unhide = false;
100
101 /** @var bool Refresh the diff cache */
102 protected $mRefreshCache = false;
103
104 /**#@-*/
105
106 /**
107 * Constructor
108 * @param IContextSource $context Context to use, anything else will be ignored
109 * @param int $old Old ID we want to show and diff with.
110 * @param string|int $new Either revision ID or 'prev' or 'next'. Default: 0.
111 * @param int $rcid Deprecated, no longer used!
112 * @param bool $refreshCache If set, refreshes the diff cache
113 * @param bool $unhide If set, allow viewing deleted revs
114 */
115 public function __construct( $context = null, $old = 0, $new = 0, $rcid = 0,
116 $refreshCache = false, $unhide = false
117 ) {
118 if ( $context instanceof IContextSource ) {
119 $this->setContext( $context );
120 }
121
122 wfDebug( "DifferenceEngine old '$old' new '$new' rcid '$rcid'\n" );
123
124 $this->mOldid = $old;
125 $this->mNewid = $new;
126 $this->mRefreshCache = $refreshCache;
127 $this->unhide = $unhide;
128 }
129
130 /**
131 * @param bool $value
132 */
133 public function setReducedLineNumbers( $value = true ) {
134 $this->mReducedLineNumbers = $value;
135 }
136
137 /**
138 * @return Language
139 */
140 public function getDiffLang() {
141 if ( $this->mDiffLang === null ) {
142 # Default language in which the diff text is written.
143 $this->mDiffLang = $this->getTitle()->getPageLanguage();
144 }
145
146 return $this->mDiffLang;
147 }
148
149 /**
150 * @return bool
151 */
152 public function wasCacheHit() {
153 return $this->mCacheHit;
154 }
155
156 /**
157 * @return int
158 */
159 public function getOldid() {
160 $this->loadRevisionIds();
161
162 return $this->mOldid;
163 }
164
165 /**
166 * @return bool|int
167 */
168 public function getNewid() {
169 $this->loadRevisionIds();
170
171 return $this->mNewid;
172 }
173
174 /**
175 * Look up a special:Undelete link to the given deleted revision id,
176 * as a workaround for being unable to load deleted diffs in currently.
177 *
178 * @param int $id Revision ID
179 *
180 * @return string|bool Link HTML or false
181 */
182 public function deletedLink( $id ) {
183 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
184 $dbr = wfGetDB( DB_REPLICA );
185 $row = $dbr->selectRow( 'archive', '*',
186 [ 'ar_rev_id' => $id ],
187 __METHOD__ );
188 if ( $row ) {
189 $rev = Revision::newFromArchiveRow( $row );
190 $title = Title::makeTitleSafe( $row->ar_namespace, $row->ar_title );
191
192 return SpecialPage::getTitleFor( 'Undelete' )->getFullURL( [
193 'target' => $title->getPrefixedText(),
194 'timestamp' => $rev->getTimestamp()
195 ] );
196 }
197 }
198
199 return false;
200 }
201
202 /**
203 * Build a wikitext link toward a deleted revision, if viewable.
204 *
205 * @param int $id Revision ID
206 *
207 * @return string Wikitext fragment
208 */
209 public function deletedIdMarker( $id ) {
210 $link = $this->deletedLink( $id );
211 if ( $link ) {
212 return "[$link $id]";
213 } else {
214 return (string)$id;
215 }
216 }
217
218 private function showMissingRevision() {
219 $out = $this->getOutput();
220
221 $missing = [];
222 if ( $this->mOldRev === null ||
223 ( $this->mOldRev && $this->mOldContent === null )
224 ) {
225 $missing[] = $this->deletedIdMarker( $this->mOldid );
226 }
227 if ( $this->mNewRev === null ||
228 ( $this->mNewRev && $this->mNewContent === null )
229 ) {
230 $missing[] = $this->deletedIdMarker( $this->mNewid );
231 }
232
233 $out->setPageTitle( $this->msg( 'errorpagetitle' ) );
234 $msg = $this->msg( 'difference-missing-revision' )
235 ->params( $this->getLanguage()->listToText( $missing ) )
236 ->numParams( count( $missing ) )
237 ->parseAsBlock();
238 $out->addHTML( $msg );
239 }
240
241 public function showDiffPage( $diffOnly = false ) {
242 # Allow frames except in certain special cases
243 $out = $this->getOutput();
244 $out->allowClickjacking();
245 $out->setRobotPolicy( 'noindex,nofollow' );
246
247 // Allow extensions to add any extra output here
248 Hooks::run( 'DifferenceEngineShowDiffPage', [ $out ] );
249
250 if ( !$this->loadRevisionData() ) {
251 if ( Hooks::run( 'DifferenceEngineShowDiffPageMaybeShowMissingRevision', [ $this ] ) ) {
252 $this->showMissingRevision();
253 }
254 return;
255 }
256
257 $user = $this->getUser();
258 $permErrors = $this->mNewPage->getUserPermissionsErrors( 'read', $user );
259 if ( $this->mOldPage ) { # mOldPage might not be set, see below.
260 $permErrors = wfMergeErrorArrays( $permErrors,
261 $this->mOldPage->getUserPermissionsErrors( 'read', $user ) );
262 }
263 if ( count( $permErrors ) ) {
264 throw new PermissionsError( 'read', $permErrors );
265 }
266
267 $rollback = '';
268
269 $query = [];
270 # Carry over 'diffonly' param via navigation links
271 if ( $diffOnly != $user->getBoolOption( 'diffonly' ) ) {
272 $query['diffonly'] = $diffOnly;
273 }
274 # Cascade unhide param in links for easy deletion browsing
275 if ( $this->unhide ) {
276 $query['unhide'] = 1;
277 }
278
279 # Check if one of the revisions is deleted/suppressed
280 $deleted = $suppressed = false;
281 $allowed = $this->mNewRev->userCan( Revision::DELETED_TEXT, $user );
282
283 $revisionTools = [];
284
285 # mOldRev is false if the difference engine is called with a "vague" query for
286 # a diff between a version V and its previous version V' AND the version V
287 # is the first version of that article. In that case, V' does not exist.
288 if ( $this->mOldRev === false ) {
289 $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
290 $samePage = true;
291 $oldHeader = '';
292 // Allow extensions to change the $oldHeader variable
293 Hooks::run( 'DifferenceEngineOldHeaderNoOldRev', [ &$oldHeader ] );
294 } else {
295 Hooks::run( 'DiffViewHeader', [ $this, $this->mOldRev, $this->mNewRev ] );
296
297 if ( $this->mNewPage->equals( $this->mOldPage ) ) {
298 $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
299 $samePage = true;
300 } else {
301 $out->setPageTitle( $this->msg( 'difference-title-multipage',
302 $this->mOldPage->getPrefixedText(), $this->mNewPage->getPrefixedText() ) );
303 $out->addSubtitle( $this->msg( 'difference-multipage' ) );
304 $samePage = false;
305 }
306
307 if ( $samePage && $this->mNewPage->quickUserCan( 'edit', $user ) ) {
308 if ( $this->mNewRev->isCurrent() && $this->mNewPage->userCan( 'rollback', $user ) ) {
309 $rollbackLink = Linker::generateRollback( $this->mNewRev, $this->getContext() );
310 if ( $rollbackLink ) {
311 $out->preventClickjacking();
312 $rollback = '&#160;&#160;&#160;' . $rollbackLink;
313 }
314 }
315
316 if ( !$this->mOldRev->isDeleted( Revision::DELETED_TEXT ) &&
317 !$this->mNewRev->isDeleted( Revision::DELETED_TEXT )
318 ) {
319 $undoLink = Html::element( 'a', [
320 'href' => $this->mNewPage->getLocalURL( [
321 'action' => 'edit',
322 'undoafter' => $this->mOldid,
323 'undo' => $this->mNewid
324 ] ),
325 'title' => Linker::titleAttrib( 'undo' ),
326 ],
327 $this->msg( 'editundo' )->text()
328 );
329 $revisionTools['mw-diff-undo'] = $undoLink;
330 }
331 }
332
333 # Make "previous revision link"
334 if ( $samePage && $this->mOldRev->getPrevious() ) {
335 $prevlink = Linker::linkKnown(
336 $this->mOldPage,
337 $this->msg( 'previousdiff' )->escaped(),
338 [ 'id' => 'differences-prevlink' ],
339 [ 'diff' => 'prev', 'oldid' => $this->mOldid ] + $query
340 );
341 } else {
342 $prevlink = '&#160;';
343 }
344
345 if ( $this->mOldRev->isMinor() ) {
346 $oldminor = ChangesList::flag( 'minor' );
347 } else {
348 $oldminor = '';
349 }
350
351 $ldel = $this->revisionDeleteLink( $this->mOldRev );
352 $oldRevisionHeader = $this->getRevisionHeader( $this->mOldRev, 'complete' );
353 $oldChangeTags = ChangeTags::formatSummaryRow( $this->mOldTags, 'diff', $this->getContext() );
354
355 $oldHeader = '<div id="mw-diff-otitle1"><strong>' . $oldRevisionHeader . '</strong></div>' .
356 '<div id="mw-diff-otitle2">' .
357 Linker::revUserTools( $this->mOldRev, !$this->unhide ) . '</div>' .
358 '<div id="mw-diff-otitle3">' . $oldminor .
359 Linker::revComment( $this->mOldRev, !$diffOnly, !$this->unhide ) . $ldel . '</div>' .
360 '<div id="mw-diff-otitle5">' . $oldChangeTags[0] . '</div>' .
361 '<div id="mw-diff-otitle4">' . $prevlink . '</div>';
362
363 // Allow extensions to change the $oldHeader variable
364 Hooks::run( 'DifferenceEngineOldHeader', [ $this, &$oldHeader, $prevlink, $oldminor,
365 $diffOnly, $ldel, $this->unhide ] );
366
367 if ( $this->mOldRev->isDeleted( Revision::DELETED_TEXT ) ) {
368 $deleted = true; // old revisions text is hidden
369 if ( $this->mOldRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
370 $suppressed = true; // also suppressed
371 }
372 }
373
374 # Check if this user can see the revisions
375 if ( !$this->mOldRev->userCan( Revision::DELETED_TEXT, $user ) ) {
376 $allowed = false;
377 }
378 }
379
380 # Make "next revision link"
381 # Skip next link on the top revision
382 if ( $samePage && !$this->mNewRev->isCurrent() ) {
383 $nextlink = Linker::linkKnown(
384 $this->mNewPage,
385 $this->msg( 'nextdiff' )->escaped(),
386 [ 'id' => 'differences-nextlink' ],
387 [ 'diff' => 'next', 'oldid' => $this->mNewid ] + $query
388 );
389 } else {
390 $nextlink = '&#160;';
391 }
392
393 if ( $this->mNewRev->isMinor() ) {
394 $newminor = ChangesList::flag( 'minor' );
395 } else {
396 $newminor = '';
397 }
398
399 # Handle RevisionDelete links...
400 $rdel = $this->revisionDeleteLink( $this->mNewRev );
401
402 # Allow extensions to define their own revision tools
403 Hooks::run( 'DiffRevisionTools',
404 [ $this->mNewRev, &$revisionTools, $this->mOldRev, $user ] );
405 $formattedRevisionTools = [];
406 // Put each one in parentheses (poor man's button)
407 foreach ( $revisionTools as $key => $tool ) {
408 $toolClass = is_string( $key ) ? $key : 'mw-diff-tool';
409 $element = Html::rawElement(
410 'span',
411 [ 'class' => $toolClass ],
412 $this->msg( 'parentheses' )->rawParams( $tool )->escaped()
413 );
414 $formattedRevisionTools[] = $element;
415 }
416 $newRevisionHeader = $this->getRevisionHeader( $this->mNewRev, 'complete' ) .
417 ' ' . implode( ' ', $formattedRevisionTools );
418 $newChangeTags = ChangeTags::formatSummaryRow( $this->mNewTags, 'diff', $this->getContext() );
419
420 $newHeader = '<div id="mw-diff-ntitle1"><strong>' . $newRevisionHeader . '</strong></div>' .
421 '<div id="mw-diff-ntitle2">' . Linker::revUserTools( $this->mNewRev, !$this->unhide ) .
422 " $rollback</div>" .
423 '<div id="mw-diff-ntitle3">' . $newminor .
424 Linker::revComment( $this->mNewRev, !$diffOnly, !$this->unhide ) . $rdel . '</div>' .
425 '<div id="mw-diff-ntitle5">' . $newChangeTags[0] . '</div>' .
426 '<div id="mw-diff-ntitle4">' . $nextlink . $this->markPatrolledLink() . '</div>';
427
428 // Allow extensions to change the $newHeader variable
429 Hooks::run( 'DifferenceEngineNewHeader', [ $this, &$newHeader, $formattedRevisionTools,
430 $nextlink, $rollback, $newminor, $diffOnly, $rdel, $this->unhide ] );
431
432 if ( $this->mNewRev->isDeleted( Revision::DELETED_TEXT ) ) {
433 $deleted = true; // new revisions text is hidden
434 if ( $this->mNewRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
435 $suppressed = true; // also suppressed
436 }
437 }
438
439 # If the diff cannot be shown due to a deleted revision, then output
440 # the diff header and links to unhide (if available)...
441 if ( $deleted && ( !$this->unhide || !$allowed ) ) {
442 $this->showDiffStyle();
443 $multi = $this->getMultiNotice();
444 $out->addHTML( $this->addHeader( '', $oldHeader, $newHeader, $multi ) );
445 if ( !$allowed ) {
446 $msg = $suppressed ? 'rev-suppressed-no-diff' : 'rev-deleted-no-diff';
447 # Give explanation for why revision is not visible
448 $out->wrapWikiMsg( "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
449 [ $msg ] );
450 } else {
451 # Give explanation and add a link to view the diff...
452 $query = $this->getRequest()->appendQueryValue( 'unhide', '1' );
453 $link = $this->getTitle()->getFullURL( $query );
454 $msg = $suppressed ? 'rev-suppressed-unhide-diff' : 'rev-deleted-unhide-diff';
455 $out->wrapWikiMsg(
456 "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
457 [ $msg, $link ]
458 );
459 }
460 # Otherwise, output a regular diff...
461 } else {
462 # Add deletion notice if the user is viewing deleted content
463 $notice = '';
464 if ( $deleted ) {
465 $msg = $suppressed ? 'rev-suppressed-diff-view' : 'rev-deleted-diff-view';
466 $notice = "<div id='mw-$msg' class='mw-warning plainlinks'>\n" .
467 $this->msg( $msg )->parse() .
468 "</div>\n";
469 }
470 $this->showDiff( $oldHeader, $newHeader, $notice );
471 if ( !$diffOnly ) {
472 $this->renderNewRevision();
473 }
474 }
475 }
476
477 /**
478 * Build a link to mark a change as patrolled.
479 *
480 * Returns empty string if there's either no revision to patrol or the user is not allowed to.
481 * Side effect: When the patrol link is build, this method will call
482 * OutputPage::preventClickjacking() and load mediawiki.page.patrol.ajax.
483 *
484 * @return string HTML or empty string
485 */
486 public function markPatrolledLink() {
487 if ( $this->mMarkPatrolledLink === null ) {
488 $linkInfo = $this->getMarkPatrolledLinkInfo();
489 // If false, there is no patrol link needed/allowed
490 if ( !$linkInfo ) {
491 $this->mMarkPatrolledLink = '';
492 } else {
493 $this->mMarkPatrolledLink = ' <span class="patrollink" data-mw="interface">[' .
494 Linker::linkKnown(
495 $this->mNewPage,
496 $this->msg( 'markaspatrolleddiff' )->escaped(),
497 [],
498 [
499 'action' => 'markpatrolled',
500 'rcid' => $linkInfo['rcid'],
501 ]
502 ) . ']</span>';
503 // Allow extensions to change the markpatrolled link
504 Hooks::run( 'DifferenceEngineMarkPatrolledLink', [ $this,
505 &$this->mMarkPatrolledLink, $linkInfo['rcid'] ] );
506 }
507 }
508 return $this->mMarkPatrolledLink;
509 }
510
511 /**
512 * Returns an array of meta data needed to build a "mark as patrolled" link and
513 * adds the mediawiki.page.patrol.ajax to the output.
514 *
515 * @return array|false An array of meta data for a patrol link (rcid only)
516 * or false if no link is needed
517 */
518 protected function getMarkPatrolledLinkInfo() {
519 global $wgUseRCPatrol, $wgEnableAPI, $wgEnableWriteAPI;
520
521 $user = $this->getUser();
522
523 // Prepare a change patrol link, if applicable
524 if (
525 // Is patrolling enabled and the user allowed to?
526 $wgUseRCPatrol && $this->mNewPage->quickUserCan( 'patrol', $user ) &&
527 // Only do this if the revision isn't more than 6 hours older
528 // than the Max RC age (6h because the RC might not be cleaned out regularly)
529 RecentChange::isInRCLifespan( $this->mNewRev->getTimestamp(), 21600 )
530 ) {
531 // Look for an unpatrolled change corresponding to this diff
532 $db = wfGetDB( DB_REPLICA );
533 $change = RecentChange::newFromConds(
534 [
535 'rc_timestamp' => $db->timestamp( $this->mNewRev->getTimestamp() ),
536 'rc_this_oldid' => $this->mNewid,
537 'rc_patrolled' => 0
538 ],
539 __METHOD__
540 );
541
542 if ( $change && !$change->getPerformer()->equals( $user ) ) {
543 $rcid = $change->getAttribute( 'rc_id' );
544 } else {
545 // None found or the page has been created by the current user.
546 // If the user could patrol this it already would be patrolled
547 $rcid = 0;
548 }
549
550 // Allow extensions to possibly change the rcid here
551 // For example the rcid might be set to zero due to the user
552 // being the same as the performer of the change but an extension
553 // might still want to show it under certain conditions
554 Hooks::run( 'DifferenceEngineMarkPatrolledRCID', [ &$rcid, $this, $change, $user ] );
555
556 // Build the link
557 if ( $rcid ) {
558 $this->getOutput()->preventClickjacking();
559 if ( $wgEnableAPI && $wgEnableWriteAPI
560 && $user->isAllowed( 'writeapi' )
561 ) {
562 $this->getOutput()->addModules( 'mediawiki.page.patrol.ajax' );
563 }
564
565 return [
566 'rcid' => $rcid,
567 ];
568 }
569 }
570
571 // No mark as patrolled link applicable
572 return false;
573 }
574
575 /**
576 * @param Revision $rev
577 *
578 * @return string
579 */
580 protected function revisionDeleteLink( $rev ) {
581 $link = Linker::getRevDeleteLink( $this->getUser(), $rev, $rev->getTitle() );
582 if ( $link !== '' ) {
583 $link = '&#160;&#160;&#160;' . $link . ' ';
584 }
585
586 return $link;
587 }
588
589 /**
590 * Show the new revision of the page.
591 */
592 public function renderNewRevision() {
593 $out = $this->getOutput();
594 $revHeader = $this->getRevisionHeader( $this->mNewRev );
595 # Add "current version as of X" title
596 $out->addHTML( "<hr class='diff-hr' id='mw-oldid' />
597 <h2 class='diff-currentversion-title'>{$revHeader}</h2>\n" );
598 # Page content may be handled by a hooked call instead...
599 # @codingStandardsIgnoreStart Ignoring long lines.
600 if ( Hooks::run( 'ArticleContentOnDiff', [ $this, $out ] ) ) {
601 $this->loadNewText();
602 $out->setRevisionId( $this->mNewid );
603 $out->setRevisionTimestamp( $this->mNewRev->getTimestamp() );
604 $out->setArticleFlag( true );
605
606 if ( !Hooks::run( 'ArticleContentViewCustom', [ $this->mNewContent, $this->mNewPage, $out ] ) ) {
607 // Handled by extension
608 } else {
609 // Normal page
610 if ( $this->getTitle()->equals( $this->mNewPage ) ) {
611 // If the Title stored in the context is the same as the one
612 // of the new revision, we can use its associated WikiPage
613 // object.
614 $wikiPage = $this->getWikiPage();
615 } else {
616 // Otherwise we need to create our own WikiPage object
617 $wikiPage = WikiPage::factory( $this->mNewPage );
618 }
619
620 $parserOutput = $this->getParserOutput( $wikiPage, $this->mNewRev );
621
622 # WikiPage::getParserOutput() should not return false, but just in case
623 if ( $parserOutput ) {
624 // Allow extensions to change parser output here
625 if ( Hooks::run( 'DifferenceEngineRenderRevisionAddParserOutput', [ $this, $out, $parserOutput, $wikiPage ] ) ) {
626 $out->addParserOutput( $parserOutput );
627 }
628 }
629 }
630 }
631 # @codingStandardsIgnoreEnd
632
633 // Allow extensions to optionally not show the final patrolled link
634 if ( Hooks::run( 'DifferenceEngineRenderRevisionShowFinalPatrolLink' ) ) {
635 # Add redundant patrol link on bottom...
636 $out->addHTML( $this->markPatrolledLink() );
637 }
638 }
639
640 protected function getParserOutput( WikiPage $page, Revision $rev ) {
641 $parserOptions = $page->makeParserOptions( $this->getContext() );
642
643 if ( !$rev->isCurrent() || !$rev->getTitle()->quickUserCan( 'edit', $this->getUser() ) ) {
644 $parserOptions->setEditSection( false );
645 }
646
647 $parserOutput = $page->getParserOutput( $parserOptions, $rev->getId() );
648
649 return $parserOutput;
650 }
651
652 /**
653 * Get the diff text, send it to the OutputPage object
654 * Returns false if the diff could not be generated, otherwise returns true
655 *
656 * @param string|bool $otitle Header for old text or false
657 * @param string|bool $ntitle Header for new text or false
658 * @param string $notice HTML between diff header and body
659 *
660 * @return bool
661 */
662 public function showDiff( $otitle, $ntitle, $notice = '' ) {
663 // Allow extensions to affect the output here
664 Hooks::run( 'DifferenceEngineShowDiff', [ $this ] );
665
666 $diff = $this->getDiff( $otitle, $ntitle, $notice );
667 if ( $diff === false ) {
668 $this->showMissingRevision();
669
670 return false;
671 } else {
672 $this->showDiffStyle();
673 $this->getOutput()->addHTML( $diff );
674
675 return true;
676 }
677 }
678
679 /**
680 * Add style sheets for diff display.
681 */
682 public function showDiffStyle() {
683 $this->getOutput()->addModuleStyles( 'mediawiki.diff.styles' );
684 }
685
686 /**
687 * Get complete diff table, including header
688 *
689 * @param string|bool $otitle Header for old text or false
690 * @param string|bool $ntitle Header for new text or false
691 * @param string $notice HTML between diff header and body
692 *
693 * @return mixed
694 */
695 public function getDiff( $otitle, $ntitle, $notice = '' ) {
696 $body = $this->getDiffBody();
697 if ( $body === false ) {
698 return false;
699 }
700
701 $multi = $this->getMultiNotice();
702 // Display a message when the diff is empty
703 if ( $body === '' ) {
704 $notice .= '<div class="mw-diff-empty">' .
705 $this->msg( 'diff-empty' )->parse() .
706 "</div>\n";
707 }
708
709 return $this->addHeader( $body, $otitle, $ntitle, $multi, $notice );
710 }
711
712 /**
713 * Get the diff table body, without header
714 *
715 * @return mixed (string/false)
716 */
717 public function getDiffBody() {
718 $this->mCacheHit = true;
719 // Check if the diff should be hidden from this user
720 if ( !$this->loadRevisionData() ) {
721 return false;
722 } elseif ( $this->mOldRev &&
723 !$this->mOldRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
724 ) {
725 return false;
726 } elseif ( $this->mNewRev &&
727 !$this->mNewRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
728 ) {
729 return false;
730 }
731 // Short-circuit
732 if ( $this->mOldRev === false || ( $this->mOldRev && $this->mNewRev
733 && $this->mOldRev->getId() == $this->mNewRev->getId() )
734 ) {
735 if ( Hooks::run( 'DifferenceEngineShowEmptyOldContent', [ $this ] ) ) {
736 return '';
737 }
738 }
739 // Cacheable?
740 $key = false;
741 $cache = ObjectCache::getMainWANInstance();
742 if ( $this->mOldid && $this->mNewid ) {
743 $key = $this->getDiffBodyCacheKey();
744
745 // Try cache
746 if ( !$this->mRefreshCache ) {
747 $difftext = $cache->get( $key );
748 if ( $difftext ) {
749 wfIncrStats( 'diff_cache.hit' );
750 $difftext = $this->localiseLineNumbers( $difftext );
751 $difftext .= "\n<!-- diff cache key $key -->\n";
752
753 return $difftext;
754 }
755 } // don't try to load but save the result
756 }
757 $this->mCacheHit = false;
758
759 // Loadtext is permission safe, this just clears out the diff
760 if ( !$this->loadText() ) {
761 return false;
762 }
763
764 $difftext = $this->generateContentDiffBody( $this->mOldContent, $this->mNewContent );
765
766 // Avoid PHP 7.1 warning from passing $this by reference
767 $diffEngine = $this;
768
769 // Save to cache for 7 days
770 if ( !Hooks::run( 'AbortDiffCache', [ &$diffEngine ] ) ) {
771 wfIncrStats( 'diff_cache.uncacheable' );
772 } elseif ( $key !== false && $difftext !== false ) {
773 wfIncrStats( 'diff_cache.miss' );
774 $cache->set( $key, $difftext, 7 * 86400 );
775 } else {
776 wfIncrStats( 'diff_cache.uncacheable' );
777 }
778 // Replace line numbers with the text in the user's language
779 if ( $difftext !== false ) {
780 $difftext = $this->localiseLineNumbers( $difftext );
781 }
782
783 return $difftext;
784 }
785
786 /**
787 * Returns the cache key for diff body text or content.
788 *
789 * @since 1.23
790 *
791 * @throws MWException
792 * @return string
793 */
794 protected function getDiffBodyCacheKey() {
795 if ( !$this->mOldid || !$this->mNewid ) {
796 throw new MWException( 'mOldid and mNewid must be set to get diff cache key.' );
797 }
798
799 return wfMemcKey( 'diff', 'version', self::DIFF_VERSION,
800 'oldid', $this->mOldid, 'newid', $this->mNewid );
801 }
802
803 /**
804 * Generate a diff, no caching.
805 *
806 * This implementation uses generateTextDiffBody() to generate a diff based on the default
807 * serialization of the given Content objects. This will fail if $old or $new are not
808 * instances of TextContent.
809 *
810 * Subclasses may override this to provide a different rendering for the diff,
811 * perhaps taking advantage of the content's native form. This is required for all content
812 * models that are not text based.
813 *
814 * @since 1.21
815 *
816 * @param Content $old Old content
817 * @param Content $new New content
818 *
819 * @throws MWException If old or new content is not an instance of TextContent.
820 * @return bool|string
821 */
822 public function generateContentDiffBody( Content $old, Content $new ) {
823 if ( !( $old instanceof TextContent ) ) {
824 throw new MWException( "Diff not implemented for " . get_class( $old ) . "; " .
825 "override generateContentDiffBody to fix this." );
826 }
827
828 if ( !( $new instanceof TextContent ) ) {
829 throw new MWException( "Diff not implemented for " . get_class( $new ) . "; "
830 . "override generateContentDiffBody to fix this." );
831 }
832
833 $otext = $old->serialize();
834 $ntext = $new->serialize();
835
836 return $this->generateTextDiffBody( $otext, $ntext );
837 }
838
839 /**
840 * Generate a diff, no caching
841 *
842 * @todo move this to TextDifferenceEngine, make DifferenceEngine abstract. At some point.
843 *
844 * @param string $otext Old text, must be already segmented
845 * @param string $ntext New text, must be already segmented
846 *
847 * @return bool|string
848 */
849 public function generateTextDiffBody( $otext, $ntext ) {
850 $diff = function () use ( $otext, $ntext ) {
851 $time = microtime( true );
852
853 $result = $this->textDiff( $otext, $ntext );
854
855 $time = intval( ( microtime( true ) - $time ) * 1000 );
856 MediaWikiServices::getInstance()->getStatsdDataFactory()->timing( 'diff_time', $time );
857 // Log requests slower than 99th percentile
858 if ( $time > 100 && $this->mOldPage && $this->mNewPage ) {
859 wfDebugLog( 'diff',
860 "$time ms diff: {$this->mOldid} -> {$this->mNewid} {$this->mNewPage}" );
861 }
862
863 return $result;
864 };
865
866 /**
867 * @param Status $status
868 * @throws FatalError
869 */
870 $error = function ( $status ) {
871 throw new FatalError( $status->getWikiText() );
872 };
873
874 // Use PoolCounter if the diff looks like it can be expensive
875 if ( strlen( $otext ) + strlen( $ntext ) > 20000 ) {
876 $work = new PoolCounterWorkViaCallback( 'diff',
877 md5( $otext ) . md5( $ntext ),
878 [ 'doWork' => $diff, 'error' => $error ]
879 );
880 return $work->execute();
881 }
882
883 return $diff();
884 }
885
886 /**
887 * Generates diff, to be wrapped internally in a logging/instrumentation
888 *
889 * @param string $otext Old text, must be already segmented
890 * @param string $ntext New text, must be already segmented
891 * @return bool|string
892 */
893 protected function textDiff( $otext, $ntext ) {
894 global $wgExternalDiffEngine, $wgContLang;
895
896 $otext = str_replace( "\r\n", "\n", $otext );
897 $ntext = str_replace( "\r\n", "\n", $ntext );
898
899 if ( $wgExternalDiffEngine == 'wikidiff' || $wgExternalDiffEngine == 'wikidiff3' ) {
900 wfDeprecated( "\$wgExternalDiffEngine = '{$wgExternalDiffEngine}'", '1.27' );
901 $wgExternalDiffEngine = false;
902 } elseif ( $wgExternalDiffEngine == 'wikidiff2' ) {
903 // Same as above, but with no deprecation warnings
904 $wgExternalDiffEngine = false;
905 } elseif ( !is_string( $wgExternalDiffEngine ) && $wgExternalDiffEngine !== false ) {
906 // And prevent people from shooting themselves in the foot...
907 wfWarn( '$wgExternalDiffEngine is set to a non-string value, forcing it to false' );
908 $wgExternalDiffEngine = false;
909 }
910
911 // Better external diff engine, the 2 may some day be dropped
912 // This one does the escaping and segmenting itself
913 if ( function_exists( 'wikidiff2_do_diff' ) && $wgExternalDiffEngine === false ) {
914 $wikidiff2Version = phpversion( 'wikidiff2' );
915 if (
916 $wikidiff2Version !== false &&
917 version_compare( $wikidiff2Version, '0.3.0', '>=' )
918 ) {
919 $text = wikidiff2_do_diff(
920 $otext,
921 $ntext,
922 2,
923 $this->getConfig()->get( 'WikiDiff2MovedParagraphDetectionCutoff' )
924 );
925 } else {
926 // Don't pass the 4th parameter for compatibility with older versions of wikidiff2
927 $text = wikidiff2_do_diff(
928 $otext,
929 $ntext,
930 2
931 );
932
933 // Log a warning in case the configuration value is set to not silently ignore it
934 if ( $this->getConfig()->get( 'WikiDiff2MovedParagraphDetectionCutoff' ) > 0 ) {
935 wfLogWarning( '$wgWikiDiff2MovedParagraphDetectionCutoff is set but has no
936 effect since the used version of WikiDiff2 does not support it.' );
937 }
938 }
939
940 $text .= $this->debug( 'wikidiff2' );
941
942 return $text;
943 } elseif ( $wgExternalDiffEngine !== false && is_executable( $wgExternalDiffEngine ) ) {
944 # Diff via the shell
945 $tmpDir = wfTempDir();
946 $tempName1 = tempnam( $tmpDir, 'diff_' );
947 $tempName2 = tempnam( $tmpDir, 'diff_' );
948
949 $tempFile1 = fopen( $tempName1, "w" );
950 if ( !$tempFile1 ) {
951 return false;
952 }
953 $tempFile2 = fopen( $tempName2, "w" );
954 if ( !$tempFile2 ) {
955 return false;
956 }
957 fwrite( $tempFile1, $otext );
958 fwrite( $tempFile2, $ntext );
959 fclose( $tempFile1 );
960 fclose( $tempFile2 );
961 $cmd = wfEscapeShellArg( $wgExternalDiffEngine, $tempName1, $tempName2 );
962 $difftext = wfShellExec( $cmd );
963 $difftext .= $this->debug( "external $wgExternalDiffEngine" );
964 unlink( $tempName1 );
965 unlink( $tempName2 );
966
967 return $difftext;
968 }
969
970 # Native PHP diff
971 $ota = explode( "\n", $wgContLang->segmentForDiff( $otext ) );
972 $nta = explode( "\n", $wgContLang->segmentForDiff( $ntext ) );
973 $diffs = new Diff( $ota, $nta );
974 $formatter = new TableDiffFormatter();
975 $difftext = $wgContLang->unsegmentForDiff( $formatter->format( $diffs ) );
976
977 return $difftext;
978 }
979
980 /**
981 * Generate a debug comment indicating diff generating time,
982 * server node, and generator backend.
983 *
984 * @param string $generator : What diff engine was used
985 *
986 * @return string
987 */
988 protected function debug( $generator = "internal" ) {
989 global $wgShowHostnames;
990 if ( !$this->enableDebugComment ) {
991 return '';
992 }
993 $data = [ $generator ];
994 if ( $wgShowHostnames ) {
995 $data[] = wfHostname();
996 }
997 $data[] = wfTimestamp( TS_DB );
998
999 return "<!-- diff generator: " .
1000 implode( " ", array_map( "htmlspecialchars", $data ) ) .
1001 " -->\n";
1002 }
1003
1004 /**
1005 * Replace line numbers with the text in the user's language
1006 *
1007 * @param string $text
1008 *
1009 * @return mixed
1010 */
1011 public function localiseLineNumbers( $text ) {
1012 return preg_replace_callback(
1013 '/<!--LINE (\d+)-->/',
1014 [ $this, 'localiseLineNumbersCb' ],
1015 $text
1016 );
1017 }
1018
1019 public function localiseLineNumbersCb( $matches ) {
1020 if ( $matches[1] === '1' && $this->mReducedLineNumbers ) {
1021 return '';
1022 }
1023
1024 return $this->msg( 'lineno' )->numParams( $matches[1] )->escaped();
1025 }
1026
1027 /**
1028 * If there are revisions between the ones being compared, return a note saying so.
1029 *
1030 * @return string
1031 */
1032 public function getMultiNotice() {
1033 if ( !is_object( $this->mOldRev ) || !is_object( $this->mNewRev ) ) {
1034 return '';
1035 } elseif ( !$this->mOldPage->equals( $this->mNewPage ) ) {
1036 // Comparing two different pages? Count would be meaningless.
1037 return '';
1038 }
1039
1040 if ( $this->mOldRev->getTimestamp() > $this->mNewRev->getTimestamp() ) {
1041 $oldRev = $this->mNewRev; // flip
1042 $newRev = $this->mOldRev; // flip
1043 } else { // normal case
1044 $oldRev = $this->mOldRev;
1045 $newRev = $this->mNewRev;
1046 }
1047
1048 // Sanity: don't show the notice if too many rows must be scanned
1049 // @todo show some special message for that case
1050 $nEdits = $this->mNewPage->countRevisionsBetween( $oldRev, $newRev, 1000 );
1051 if ( $nEdits > 0 && $nEdits <= 1000 ) {
1052 $limit = 100; // use diff-multi-manyusers if too many users
1053 $users = $this->mNewPage->getAuthorsBetween( $oldRev, $newRev, $limit );
1054 $numUsers = count( $users );
1055
1056 if ( $numUsers == 1 && $users[0] == $newRev->getUserText( Revision::RAW ) ) {
1057 $numUsers = 0; // special case to say "by the same user" instead of "by one other user"
1058 }
1059
1060 return self::intermediateEditsMsg( $nEdits, $numUsers, $limit );
1061 }
1062
1063 return ''; // nothing
1064 }
1065
1066 /**
1067 * Get a notice about how many intermediate edits and users there are
1068 *
1069 * @param int $numEdits
1070 * @param int $numUsers
1071 * @param int $limit
1072 *
1073 * @return string
1074 */
1075 public static function intermediateEditsMsg( $numEdits, $numUsers, $limit ) {
1076 if ( $numUsers === 0 ) {
1077 $msg = 'diff-multi-sameuser';
1078 } elseif ( $numUsers > $limit ) {
1079 $msg = 'diff-multi-manyusers';
1080 $numUsers = $limit;
1081 } else {
1082 $msg = 'diff-multi-otherusers';
1083 }
1084
1085 return wfMessage( $msg )->numParams( $numEdits, $numUsers )->parse();
1086 }
1087
1088 /**
1089 * Get a header for a specified revision.
1090 *
1091 * @param Revision $rev
1092 * @param string $complete 'complete' to get the header wrapped depending
1093 * the visibility of the revision and a link to edit the page.
1094 *
1095 * @return string HTML fragment
1096 */
1097 public function getRevisionHeader( Revision $rev, $complete = '' ) {
1098 $lang = $this->getLanguage();
1099 $user = $this->getUser();
1100 $revtimestamp = $rev->getTimestamp();
1101 $timestamp = $lang->userTimeAndDate( $revtimestamp, $user );
1102 $dateofrev = $lang->userDate( $revtimestamp, $user );
1103 $timeofrev = $lang->userTime( $revtimestamp, $user );
1104
1105 $header = $this->msg(
1106 $rev->isCurrent() ? 'currentrev-asof' : 'revisionasof',
1107 $timestamp,
1108 $dateofrev,
1109 $timeofrev
1110 )->escaped();
1111
1112 if ( $complete !== 'complete' ) {
1113 return $header;
1114 }
1115
1116 $title = $rev->getTitle();
1117
1118 $header = Linker::linkKnown( $title, $header, [],
1119 [ 'oldid' => $rev->getId() ] );
1120
1121 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
1122 $editQuery = [ 'action' => 'edit' ];
1123 if ( !$rev->isCurrent() ) {
1124 $editQuery['oldid'] = $rev->getId();
1125 }
1126
1127 $key = $title->quickUserCan( 'edit', $user ) ? 'editold' : 'viewsourceold';
1128 $msg = $this->msg( $key )->escaped();
1129 $editLink = $this->msg( 'parentheses' )->rawParams(
1130 Linker::linkKnown( $title, $msg, [], $editQuery ) )->escaped();
1131 $header .= ' ' . Html::rawElement(
1132 'span',
1133 [ 'class' => 'mw-diff-edit' ],
1134 $editLink
1135 );
1136 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
1137 $header = Html::rawElement(
1138 'span',
1139 [ 'class' => 'history-deleted' ],
1140 $header
1141 );
1142 }
1143 } else {
1144 $header = Html::rawElement( 'span', [ 'class' => 'history-deleted' ], $header );
1145 }
1146
1147 return $header;
1148 }
1149
1150 /**
1151 * Add the header to a diff body
1152 *
1153 * @param string $diff Diff body
1154 * @param string $otitle Old revision header
1155 * @param string $ntitle New revision header
1156 * @param string $multi Notice telling user that there are intermediate
1157 * revisions between the ones being compared
1158 * @param string $notice Other notices, e.g. that user is viewing deleted content
1159 *
1160 * @return string
1161 */
1162 public function addHeader( $diff, $otitle, $ntitle, $multi = '', $notice = '' ) {
1163 // shared.css sets diff in interface language/dir, but the actual content
1164 // is often in a different language, mostly the page content language/dir
1165 $header = Html::openElement( 'table', [
1166 'class' => [ 'diff', 'diff-contentalign-' . $this->getDiffLang()->alignStart() ],
1167 'data-mw' => 'interface',
1168 ] );
1169 $userLang = htmlspecialchars( $this->getLanguage()->getHtmlCode() );
1170
1171 if ( !$diff && !$otitle ) {
1172 $header .= "
1173 <tr style='vertical-align: top;' lang='{$userLang}'>
1174 <td class='diff-ntitle'>{$ntitle}</td>
1175 </tr>";
1176 $multiColspan = 1;
1177 } else {
1178 if ( $diff ) { // Safari/Chrome show broken output if cols not used
1179 $header .= "
1180 <col class='diff-marker' />
1181 <col class='diff-content' />
1182 <col class='diff-marker' />
1183 <col class='diff-content' />";
1184 $colspan = 2;
1185 $multiColspan = 4;
1186 } else {
1187 $colspan = 1;
1188 $multiColspan = 2;
1189 }
1190 if ( $otitle || $ntitle ) {
1191 $header .= "
1192 <tr style='vertical-align: top;' lang='{$userLang}'>
1193 <td colspan='$colspan' class='diff-otitle'>{$otitle}</td>
1194 <td colspan='$colspan' class='diff-ntitle'>{$ntitle}</td>
1195 </tr>";
1196 }
1197 }
1198
1199 if ( $multi != '' ) {
1200 $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;' " .
1201 "class='diff-multi' lang='{$userLang}'>{$multi}</td></tr>";
1202 }
1203 if ( $notice != '' ) {
1204 $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;' " .
1205 "lang='{$userLang}'>{$notice}</td></tr>";
1206 }
1207
1208 return $header . $diff . "</table>";
1209 }
1210
1211 /**
1212 * Use specified text instead of loading from the database
1213 * @param Content $oldContent
1214 * @param Content $newContent
1215 * @since 1.21
1216 */
1217 public function setContent( Content $oldContent, Content $newContent ) {
1218 $this->mOldContent = $oldContent;
1219 $this->mNewContent = $newContent;
1220
1221 $this->mTextLoaded = 2;
1222 $this->mRevisionsLoaded = true;
1223 }
1224
1225 /**
1226 * Set the language in which the diff text is written
1227 * (Defaults to page content language).
1228 * @param Language|string $lang
1229 * @since 1.19
1230 */
1231 public function setTextLanguage( $lang ) {
1232 $this->mDiffLang = wfGetLangObj( $lang );
1233 }
1234
1235 /**
1236 * Maps a revision pair definition as accepted by DifferenceEngine constructor
1237 * to a pair of actual integers representing revision ids.
1238 *
1239 * @param int $old Revision id, e.g. from URL parameter 'oldid'
1240 * @param int|string $new Revision id or strings 'next' or 'prev', e.g. from URL parameter 'diff'
1241 *
1242 * @return int[] List of two revision ids, older first, later second.
1243 * Zero signifies invalid argument passed.
1244 * false signifies that there is no previous/next revision ($old is the oldest/newest one).
1245 */
1246 public function mapDiffPrevNext( $old, $new ) {
1247 if ( $new === 'prev' ) {
1248 // Show diff between revision $old and the previous one. Get previous one from DB.
1249 $newid = intval( $old );
1250 $oldid = $this->getTitle()->getPreviousRevisionID( $newid );
1251 } elseif ( $new === 'next' ) {
1252 // Show diff between revision $old and the next one. Get next one from DB.
1253 $oldid = intval( $old );
1254 $newid = $this->getTitle()->getNextRevisionID( $oldid );
1255 } else {
1256 $oldid = intval( $old );
1257 $newid = intval( $new );
1258 }
1259
1260 return [ $oldid, $newid ];
1261 }
1262
1263 /**
1264 * Load revision IDs
1265 */
1266 private function loadRevisionIds() {
1267 if ( $this->mRevisionsIdsLoaded ) {
1268 return;
1269 }
1270
1271 $this->mRevisionsIdsLoaded = true;
1272
1273 $old = $this->mOldid;
1274 $new = $this->mNewid;
1275
1276 list( $this->mOldid, $this->mNewid ) = self::mapDiffPrevNext( $old, $new );
1277 if ( $new === 'next' && $this->mNewid === false ) {
1278 # if no result, NewId points to the newest old revision. The only newer
1279 # revision is cur, which is "0".
1280 $this->mNewid = 0;
1281 }
1282
1283 Hooks::run(
1284 'NewDifferenceEngine',
1285 [ $this->getTitle(), &$this->mOldid, &$this->mNewid, $old, $new ]
1286 );
1287 }
1288
1289 /**
1290 * Load revision metadata for the specified articles. If newid is 0, then compare
1291 * the old article in oldid to the current article; if oldid is 0, then
1292 * compare the current article to the immediately previous one (ignoring the
1293 * value of newid).
1294 *
1295 * If oldid is false, leave the corresponding revision object set
1296 * to false. This is impossible via ordinary user input, and is provided for
1297 * API convenience.
1298 *
1299 * @return bool
1300 */
1301 public function loadRevisionData() {
1302 if ( $this->mRevisionsLoaded ) {
1303 return true;
1304 }
1305
1306 // Whether it succeeds or fails, we don't want to try again
1307 $this->mRevisionsLoaded = true;
1308
1309 $this->loadRevisionIds();
1310
1311 // Load the new revision object
1312 if ( $this->mNewid ) {
1313 $this->mNewRev = Revision::newFromId( $this->mNewid );
1314 } else {
1315 $this->mNewRev = Revision::newFromTitle(
1316 $this->getTitle(),
1317 false,
1318 Revision::READ_NORMAL
1319 );
1320 }
1321
1322 if ( !$this->mNewRev instanceof Revision ) {
1323 return false;
1324 }
1325
1326 // Update the new revision ID in case it was 0 (makes life easier doing UI stuff)
1327 $this->mNewid = $this->mNewRev->getId();
1328 $this->mNewPage = $this->mNewRev->getTitle();
1329
1330 // Load the old revision object
1331 $this->mOldRev = false;
1332 if ( $this->mOldid ) {
1333 $this->mOldRev = Revision::newFromId( $this->mOldid );
1334 } elseif ( $this->mOldid === 0 ) {
1335 $rev = $this->mNewRev->getPrevious();
1336 if ( $rev ) {
1337 $this->mOldid = $rev->getId();
1338 $this->mOldRev = $rev;
1339 } else {
1340 // No previous revision; mark to show as first-version only.
1341 $this->mOldid = false;
1342 $this->mOldRev = false;
1343 }
1344 } /* elseif ( $this->mOldid === false ) leave mOldRev false; */
1345
1346 if ( is_null( $this->mOldRev ) ) {
1347 return false;
1348 }
1349
1350 if ( $this->mOldRev ) {
1351 $this->mOldPage = $this->mOldRev->getTitle();
1352 }
1353
1354 // Load tags information for both revisions
1355 $dbr = wfGetDB( DB_REPLICA );
1356 if ( $this->mOldid !== false ) {
1357 $this->mOldTags = $dbr->selectField(
1358 'tag_summary',
1359 'ts_tags',
1360 [ 'ts_rev_id' => $this->mOldid ],
1361 __METHOD__
1362 );
1363 } else {
1364 $this->mOldTags = false;
1365 }
1366 $this->mNewTags = $dbr->selectField(
1367 'tag_summary',
1368 'ts_tags',
1369 [ 'ts_rev_id' => $this->mNewid ],
1370 __METHOD__
1371 );
1372
1373 return true;
1374 }
1375
1376 /**
1377 * Load the text of the revisions, as well as revision data.
1378 *
1379 * @return bool
1380 */
1381 public function loadText() {
1382 if ( $this->mTextLoaded == 2 ) {
1383 return true;
1384 }
1385
1386 // Whether it succeeds or fails, we don't want to try again
1387 $this->mTextLoaded = 2;
1388
1389 if ( !$this->loadRevisionData() ) {
1390 return false;
1391 }
1392
1393 if ( $this->mOldRev ) {
1394 $this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1395 if ( $this->mOldContent === null ) {
1396 return false;
1397 }
1398 }
1399
1400 if ( $this->mNewRev ) {
1401 $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1402 Hooks::run( 'DifferenceEngineLoadTextAfterNewContentIsLoaded', [ $this ] );
1403 if ( $this->mNewContent === null ) {
1404 return false;
1405 }
1406 }
1407
1408 return true;
1409 }
1410
1411 /**
1412 * Load the text of the new revision, not the old one
1413 *
1414 * @return bool
1415 */
1416 public function loadNewText() {
1417 if ( $this->mTextLoaded >= 1 ) {
1418 return true;
1419 }
1420
1421 $this->mTextLoaded = 1;
1422
1423 if ( !$this->loadRevisionData() ) {
1424 return false;
1425 }
1426
1427 $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1428
1429 Hooks::run( 'DifferenceEngineAfterLoadNewText', [ $this ] );
1430
1431 return true;
1432 }
1433
1434 }