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