Merge "Removed unneeded else branches in DifferenceEngine"
[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
24 /**
25 * Constant to indicate diff cache compatibility.
26 * Bump this when changing the diff formatting in a way that
27 * fixes important bugs or such to force cached diff views to
28 * clear.
29 */
30 define( 'MW_DIFF_VERSION', '1.11a' );
31
32 /**
33 * @todo document
34 * @ingroup DifferenceEngine
35 */
36 class DifferenceEngine extends ContextSource {
37 /**#@+
38 * @private
39 */
40 var $mOldid, $mNewid;
41 var $mOldTags, $mNewTags;
42 /**
43 * @var Content
44 */
45 var $mOldContent, $mNewContent;
46 protected $mDiffLang;
47
48 /**
49 * @var Title
50 */
51 var $mOldPage, $mNewPage;
52
53 /**
54 * @var Revision
55 */
56 var $mOldRev, $mNewRev;
57 private $mRevisionsIdsLoaded = false; // Have the revisions IDs been loaded
58 var $mRevisionsLoaded = false; // Have the revisions been loaded
59 var $mTextLoaded = 0; // How many text blobs have been loaded, 0, 1 or 2?
60 var $mCacheHit = false; // Was the diff fetched from cache?
61
62 /**
63 * Set this to true to add debug info to the HTML output.
64 * Warning: this may cause RSS readers to spuriously mark articles as "new"
65 * (bug 20601)
66 */
67 var $enableDebugComment = false;
68
69 // If true, line X is not displayed when X is 1, for example to increase
70 // readability and conserve space with many small diffs.
71 protected $mReducedLineNumbers = false;
72
73 // Link to action=markpatrolled
74 protected $mMarkPatrolledLink = null;
75
76 protected $unhide = false; # show rev_deleted content if allowed
77 /**#@-*/
78
79 /**
80 * Constructor
81 * @param $context IContextSource context to use, anything else will be ignored
82 * @param $old Integer old ID we want to show and diff with.
83 * @param $new String either 'prev' or 'next'.
84 * @param $rcid Integer Deprecated, no longer used!
85 * @param $refreshCache boolean If set, refreshes the diff cache
86 * @param $unhide boolean If set, allow viewing deleted revs
87 */
88 function __construct( $context = null, $old = 0, $new = 0, $rcid = 0,
89 $refreshCache = false, $unhide = false )
90 {
91 if ( $context instanceof IContextSource ) {
92 $this->setContext( $context );
93 }
94
95 wfDebug( "DifferenceEngine old '$old' new '$new' rcid '$rcid'\n" );
96
97 $this->mOldid = $old;
98 $this->mNewid = $new;
99 $this->mRefreshCache = $refreshCache;
100 $this->unhide = $unhide;
101 }
102
103 /**
104 * @param $value bool
105 */
106 function setReducedLineNumbers( $value = true ) {
107 $this->mReducedLineNumbers = $value;
108 }
109
110 /**
111 * @return Language
112 */
113 function getDiffLang() {
114 if ( $this->mDiffLang === null ) {
115 # Default language in which the diff text is written.
116 $this->mDiffLang = $this->getTitle()->getPageLanguage();
117 }
118 return $this->mDiffLang;
119 }
120
121 /**
122 * @return bool
123 */
124 function wasCacheHit() {
125 return $this->mCacheHit;
126 }
127
128 /**
129 * @return int
130 */
131 function getOldid() {
132 $this->loadRevisionIds();
133 return $this->mOldid;
134 }
135
136 /**
137 * @return Bool|int
138 */
139 function getNewid() {
140 $this->loadRevisionIds();
141 return $this->mNewid;
142 }
143
144 /**
145 * Look up a special:Undelete link to the given deleted revision id,
146 * as a workaround for being unable to load deleted diffs in currently.
147 *
148 * @param int $id revision ID
149 * @return mixed URL or false
150 */
151 function deletedLink( $id ) {
152 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
153 $dbr = wfGetDB( DB_SLAVE );
154 $row = $dbr->selectRow( 'archive', '*',
155 array( 'ar_rev_id' => $id ),
156 __METHOD__ );
157 if ( $row ) {
158 $rev = Revision::newFromArchiveRow( $row );
159 $title = Title::makeTitleSafe( $row->ar_namespace, $row->ar_title );
160 return SpecialPage::getTitleFor( 'Undelete' )->getFullURL( array(
161 'target' => $title->getPrefixedText(),
162 'timestamp' => $rev->getTimestamp()
163 ));
164 }
165 }
166 return false;
167 }
168
169 /**
170 * Build a wikitext link toward a deleted revision, if viewable.
171 *
172 * @param int $id revision ID
173 * @return string wikitext fragment
174 */
175 function deletedIdMarker( $id ) {
176 $link = $this->deletedLink( $id );
177 if ( $link ) {
178 return "[$link $id]";
179 } else {
180 return $id;
181 }
182 }
183
184 private function showMissingRevision() {
185 $out = $this->getOutput();
186
187 $missing = array();
188 if ( $this->mOldRev === null ) {
189 $missing[] = $this->deletedIdMarker( $this->mOldid );
190 }
191 if ( $this->mNewRev === null ) {
192 $missing[] = $this->deletedIdMarker( $this->mNewid );
193 }
194
195 $out->setPageTitle( $this->msg( 'errorpagetitle' ) );
196 $out->addWikiMsg( 'difference-missing-revision',
197 $this->getLanguage()->listToText( $missing ), count( $missing ) );
198 }
199
200 function showDiffPage( $diffOnly = false ) {
201 wfProfileIn( __METHOD__ );
202
203 # Allow frames except in certain special cases
204 $out = $this->getOutput();
205 $out->allowClickjacking();
206 $out->setRobotPolicy( 'noindex,nofollow' );
207
208 if ( !$this->loadRevisionData() ) {
209 $this->showMissingRevision();
210 wfProfileOut( __METHOD__ );
211 return;
212 }
213
214 $user = $this->getUser();
215 $permErrors = $this->mNewPage->getUserPermissionsErrors( 'read', $user );
216 if ( $this->mOldPage ) { # mOldPage might not be set, see below.
217 $permErrors = wfMergeErrorArrays( $permErrors,
218 $this->mOldPage->getUserPermissionsErrors( 'read', $user ) );
219 }
220 if ( count( $permErrors ) ) {
221 wfProfileOut( __METHOD__ );
222 throw new PermissionsError( 'read', $permErrors );
223 }
224
225 $rollback = '';
226 $undoLink = '';
227
228 $query = array();
229 # Carry over 'diffonly' param via navigation links
230 if ( $diffOnly != $user->getBoolOption( 'diffonly' ) ) {
231 $query['diffonly'] = $diffOnly;
232 }
233 # Cascade unhide param in links for easy deletion browsing
234 if ( $this->unhide ) {
235 $query['unhide'] = 1;
236 }
237
238 # Check if one of the revisions is deleted/suppressed
239 $deleted = $suppressed = false;
240 $allowed = $this->mNewRev->userCan( Revision::DELETED_TEXT, $user );
241
242 $revisionTools = array();
243
244 # mOldRev is false if the difference engine is called with a "vague" query for
245 # a diff between a version V and its previous version V' AND the version V
246 # is the first version of that article. In that case, V' does not exist.
247 if ( $this->mOldRev === false ) {
248 $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
249 $samePage = true;
250 $oldHeader = '';
251 } else {
252 wfRunHooks( 'DiffViewHeader', array( $this, $this->mOldRev, $this->mNewRev ) );
253
254 if ( $this->mNewPage->equals( $this->mOldPage ) ) {
255 $out->setPageTitle( $this->msg( 'difference-title', $this->mNewPage->getPrefixedText() ) );
256 $samePage = true;
257 } else {
258 $out->setPageTitle( $this->msg( 'difference-title-multipage', $this->mOldPage->getPrefixedText(),
259 $this->mNewPage->getPrefixedText() ) );
260 $out->addSubtitle( $this->msg( 'difference-multipage' ) );
261 $samePage = false;
262 }
263
264 if ( $samePage && $this->mNewPage->quickUserCan( 'edit', $user ) ) {
265 if ( $this->mNewRev->isCurrent() && $this->mNewPage->userCan( 'rollback', $user ) ) {
266 $rollbackLink = Linker::generateRollback( $this->mNewRev, $this->getContext() );
267 if ( $rollbackLink ) {
268 $out->preventClickjacking();
269 $rollback = '&#160;&#160;&#160;' . $rollbackLink;
270 }
271 }
272 if ( !$this->mOldRev->isDeleted( Revision::DELETED_TEXT ) && !$this->mNewRev->isDeleted( Revision::DELETED_TEXT ) ) {
273 $undoLink = Html::element( 'a', array(
274 'href' => $this->mNewPage->getLocalURL( array(
275 'action' => 'edit',
276 'undoafter' => $this->mOldid,
277 'undo' => $this->mNewid ) ),
278 'title' => Linker::titleAttrib( 'undo' )
279 ),
280 $this->msg( 'editundo' )->text()
281 );
282 $revisionTools[] = $undoLink;
283 }
284 }
285
286 # Make "previous revision link"
287 if ( $samePage && $this->mOldRev->getPrevious() ) {
288 $prevlink = Linker::linkKnown(
289 $this->mOldPage,
290 $this->msg( 'previousdiff' )->escaped(),
291 array( 'id' => 'differences-prevlink' ),
292 array( 'diff' => 'prev', 'oldid' => $this->mOldid ) + $query
293 );
294 } else {
295 $prevlink = '&#160;';
296 }
297
298 if ( $this->mOldRev->isMinor() ) {
299 $oldminor = ChangesList::flag( 'minor' );
300 } else {
301 $oldminor = '';
302 }
303
304 $ldel = $this->revisionDeleteLink( $this->mOldRev );
305 $oldRevisionHeader = $this->getRevisionHeader( $this->mOldRev, 'complete' );
306 $oldChangeTags = ChangeTags::formatSummaryRow( $this->mOldTags, 'diff' );
307
308 $oldHeader = '<div id="mw-diff-otitle1"><strong>' . $oldRevisionHeader . '</strong></div>' .
309 '<div id="mw-diff-otitle2">' .
310 Linker::revUserTools( $this->mOldRev, !$this->unhide ) . '</div>' .
311 '<div id="mw-diff-otitle3">' . $oldminor .
312 Linker::revComment( $this->mOldRev, !$diffOnly, !$this->unhide ) . $ldel . '</div>' .
313 '<div id="mw-diff-otitle5">' . $oldChangeTags[0] . '</div>' .
314 '<div id="mw-diff-otitle4">' . $prevlink . '</div>';
315
316 if ( $this->mOldRev->isDeleted( Revision::DELETED_TEXT ) ) {
317 $deleted = true; // old revisions text is hidden
318 if ( $this->mOldRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
319 $suppressed = true; // also suppressed
320 }
321 }
322
323 # Check if this user can see the revisions
324 if ( !$this->mOldRev->userCan( Revision::DELETED_TEXT, $user ) ) {
325 $allowed = false;
326 }
327 }
328
329 # Make "next revision link"
330 # Skip next link on the top revision
331 if ( $samePage && !$this->mNewRev->isCurrent() ) {
332 $nextlink = Linker::linkKnown(
333 $this->mNewPage,
334 $this->msg( 'nextdiff' )->escaped(),
335 array( 'id' => 'differences-nextlink' ),
336 array( 'diff' => 'next', 'oldid' => $this->mNewid ) + $query
337 );
338 } else {
339 $nextlink = '&#160;';
340 }
341
342 if ( $this->mNewRev->isMinor() ) {
343 $newminor = ChangesList::flag( 'minor' );
344 } else {
345 $newminor = '';
346 }
347
348 # Handle RevisionDelete links...
349 $rdel = $this->revisionDeleteLink( $this->mNewRev );
350
351 # Allow extensions to define their own revision tools
352 wfRunHooks( 'DiffRevisionTools', array( $this->mNewRev, &$revisionTools ) );
353 $formattedRevisionTools = array();
354 // Put each one in parentheses (poor man's button)
355 foreach ( $revisionTools as $tool ) {
356 $formattedRevisionTools[] = $this->msg( 'parentheses' )->rawParams( $tool )->escaped();
357 }
358 $newRevisionHeader = $this->getRevisionHeader( $this->mNewRev, 'complete' ) . ' ' . implode( ' ', $formattedRevisionTools );
359 $newChangeTags = ChangeTags::formatSummaryRow( $this->mNewTags, 'diff' );
360
361 $newHeader = '<div id="mw-diff-ntitle1"><strong>' . $newRevisionHeader . '</strong></div>' .
362 '<div id="mw-diff-ntitle2">' . Linker::revUserTools( $this->mNewRev, !$this->unhide ) .
363 " $rollback</div>" .
364 '<div id="mw-diff-ntitle3">' . $newminor .
365 Linker::revComment( $this->mNewRev, !$diffOnly, !$this->unhide ) . $rdel . '</div>' .
366 '<div id="mw-diff-ntitle5">' . $newChangeTags[0] . '</div>' .
367 '<div id="mw-diff-ntitle4">' . $nextlink . $this->markPatrolledLink() . '</div>';
368
369 if ( $this->mNewRev->isDeleted( Revision::DELETED_TEXT ) ) {
370 $deleted = true; // new revisions text is hidden
371 if ( $this->mNewRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
372 $suppressed = true; // also suppressed
373 }
374 }
375
376 # If the diff cannot be shown due to a deleted revision, then output
377 # the diff header and links to unhide (if available)...
378 if ( $deleted && ( !$this->unhide || !$allowed ) ) {
379 $this->showDiffStyle();
380 $multi = $this->getMultiNotice();
381 $out->addHTML( $this->addHeader( '', $oldHeader, $newHeader, $multi ) );
382 if ( !$allowed ) {
383 $msg = $suppressed ? 'rev-suppressed-no-diff' : 'rev-deleted-no-diff';
384 # Give explanation for why revision is not visible
385 $out->wrapWikiMsg( "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
386 array( $msg ) );
387 } else {
388 # Give explanation and add a link to view the diff...
389 $link = $this->getTitle()->getFullURL( $this->getRequest()->appendQueryValue( 'unhide', '1', true ) );
390 $msg = $suppressed ? 'rev-suppressed-unhide-diff' : 'rev-deleted-unhide-diff';
391 $out->wrapWikiMsg( "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n", array( $msg, $link ) );
392 }
393 # Otherwise, output a regular diff...
394 } else {
395 # Add deletion notice if the user is viewing deleted content
396 $notice = '';
397 if ( $deleted ) {
398 $msg = $suppressed ? 'rev-suppressed-diff-view' : 'rev-deleted-diff-view';
399 $notice = "<div id='mw-$msg' class='mw-warning plainlinks'>\n" . $this->msg( $msg )->parse() . "</div>\n";
400 }
401 $this->showDiff( $oldHeader, $newHeader, $notice );
402 if ( !$diffOnly ) {
403 $this->renderNewRevision();
404 }
405 }
406 wfProfileOut( __METHOD__ );
407 }
408
409 /**
410 * Get a link to mark the change as patrolled, or '' if there's either no
411 * revision to patrol or the user is not allowed to to it.
412 * Side effect: When the patrol link is build, this method will call
413 * OutputPage::preventClickjacking() and load mediawiki.page.patrol.ajax.
414 *
415 * @return String
416 */
417 protected function markPatrolledLink() {
418 global $wgUseRCPatrol, $wgEnableAPI, $wgEnableWriteAPI;
419 $user = $this->getUser();
420
421 if ( $this->mMarkPatrolledLink === null ) {
422 // Prepare a change patrol link, if applicable
423 if (
424 // Is patrolling enabled and the user allowed to?
425 $wgUseRCPatrol && $this->mNewPage->quickUserCan( 'patrol', $user ) &&
426 // Only do this if the revision isn't more than 6 hours older
427 // than the Max RC age (6h because the RC might not be cleaned out regularly)
428 RecentChange::isInRCLifespan( $this->mNewRev->getTimestamp(), 21600 )
429 ) {
430 // Look for an unpatrolled change corresponding to this diff
431
432 $db = wfGetDB( DB_SLAVE );
433 $change = RecentChange::newFromConds(
434 array(
435 'rc_timestamp' => $db->timestamp( $this->mNewRev->getTimestamp() ),
436 'rc_this_oldid' => $this->mNewid,
437 'rc_patrolled' => 0
438 ),
439 __METHOD__,
440 array( 'USE INDEX' => 'rc_timestamp' )
441 );
442
443 if ( $change && $change->getPerformer()->getName() !== $user->getName() ) {
444 $rcid = $change->getAttribute( 'rc_id' );
445 } else {
446 // None found or the page has been created by the current user.
447 // If the user could patrol this it already would be patrolled
448 $rcid = 0;
449 }
450 // Build the link
451 if ( $rcid ) {
452 $this->getOutput()->preventClickjacking();
453 if ( $wgEnableAPI && $wgEnableWriteAPI
454 && $user->isAllowed( 'writeapi' )
455 ) {
456 $this->getOutput()->addModules( 'mediawiki.page.patrol.ajax' );
457 }
458
459 $token = $user->getEditToken( $rcid );
460 $this->mMarkPatrolledLink = ' <span class="patrollink">[' . Linker::linkKnown(
461 $this->mNewPage,
462 $this->msg( 'markaspatrolleddiff' )->escaped(),
463 array(),
464 array(
465 'action' => 'markpatrolled',
466 'rcid' => $rcid,
467 'token' => $token,
468 )
469 ) . ']</span>';
470 } else {
471 $this->mMarkPatrolledLink = '';
472 }
473 } else {
474 $this->mMarkPatrolledLink = '';
475 }
476 }
477
478 return $this->mMarkPatrolledLink;
479 }
480
481 /**
482 * @param $rev Revision
483 * @return String
484 */
485 protected function revisionDeleteLink( $rev ) {
486 $link = Linker::getRevDeleteLink( $this->getUser(), $rev, $rev->getTitle() );
487 if ( $link !== '' ) {
488 $link = '&#160;&#160;&#160;' . $link . ' ';
489 }
490 return $link;
491 }
492
493 /**
494 * Show the new revision of the page.
495 */
496 function renderNewRevision() {
497 wfProfileIn( __METHOD__ );
498 $out = $this->getOutput();
499 $revHeader = $this->getRevisionHeader( $this->mNewRev );
500 # Add "current version as of X" title
501 $out->addHTML( "<hr class='diff-hr' />
502 <h2 class='diff-currentversion-title'>{$revHeader}</h2>\n" );
503 # Page content may be handled by a hooked call instead...
504 if ( wfRunHooks( 'ArticleContentOnDiff', array( $this, $out ) ) ) {
505 $this->loadNewText();
506 $out->setRevisionId( $this->mNewid );
507 $out->setRevisionTimestamp( $this->mNewRev->getTimestamp() );
508 $out->setArticleFlag( true );
509
510 // NOTE: only needed for B/C: custom rendering of JS/CSS via hook
511 if ( $this->mNewPage->isCssJsSubpage() || $this->mNewPage->isCssOrJsPage() ) {
512 // Stolen from Article::view --AG 2007-10-11
513 // Give hooks a chance to customise the output
514 // @todo standardize this crap into one function
515 if ( ContentHandler::runLegacyHooks( 'ShowRawCssJs', array( $this->mNewContent, $this->mNewPage, $out ) ) ) {
516 // NOTE: deprecated hook, B/C only
517 // use the content object's own rendering
518 $cnt = $this->mNewRev->getContent();
519 $po = $cnt ? $cnt->getParserOutput( $this->mNewRev->getTitle(), $this->mNewRev->getId() ) : null;
520 $txt = $po ? $po->getText() : '';
521 $out->addHTML( $txt );
522 }
523 } elseif ( !wfRunHooks( 'ArticleContentViewCustom', array( $this->mNewContent, $this->mNewPage, $out ) ) ) {
524 // Handled by extension
525 } elseif ( !ContentHandler::runLegacyHooks( 'ArticleViewCustom', array( $this->mNewContent, $this->mNewPage, $out ) ) ) {
526 // NOTE: deprecated hook, B/C only
527 // Handled by extension
528 } else {
529 // Normal page
530 if ( $this->getTitle()->equals( $this->mNewPage ) ) {
531 // If the Title stored in the context is the same as the one
532 // of the new revision, we can use its associated WikiPage
533 // object.
534 $wikiPage = $this->getWikiPage();
535 } else {
536 // Otherwise we need to create our own WikiPage object
537 $wikiPage = WikiPage::factory( $this->mNewPage );
538 }
539
540 $parserOutput = $this->getParserOutput( $wikiPage, $this->mNewRev );
541
542 # Also try to load it as a redirect
543 $rt = $this->mNewContent ? $this->mNewContent->getRedirectTarget() : null;
544
545 if ( $rt ) {
546 $article = Article::newFromTitle( $this->mNewPage, $this->getContext() );
547 $out->addHTML( $article->viewRedirect( $rt ) );
548
549 # WikiPage::getParserOutput() should not return false, but just in case
550 if ( $parserOutput ) {
551 # Show categories etc.
552 $out->addParserOutputNoText( $parserOutput );
553 }
554 } elseif ( $parserOutput ) {
555 $out->addParserOutput( $parserOutput );
556 }
557 }
558 }
559 # Add redundant patrol link on bottom...
560 $out->addHTML( $this->markPatrolledLink() );
561
562 wfProfileOut( __METHOD__ );
563 }
564
565 protected function getParserOutput( WikiPage $page, Revision $rev ) {
566 $parserOptions = $page->makeParserOptions( $this->getContext() );
567
568 if ( !$rev->isCurrent() || !$rev->getTitle()->quickUserCan( "edit" ) ) {
569 $parserOptions->setEditSection( false );
570 }
571
572 $parserOutput = $page->getParserOutput( $parserOptions, $rev->getId() );
573 return $parserOutput;
574 }
575
576 /**
577 * Get the diff text, send it to the OutputPage object
578 * Returns false if the diff could not be generated, otherwise returns true
579 *
580 * @return bool
581 */
582 function showDiff( $otitle, $ntitle, $notice = '' ) {
583 $diff = $this->getDiff( $otitle, $ntitle, $notice );
584 if ( $diff === false ) {
585 $this->showMissingRevision();
586 return false;
587 } else {
588 $this->showDiffStyle();
589 $this->getOutput()->addHTML( $diff );
590 return true;
591 }
592 }
593
594 /**
595 * Add style sheets and supporting JS for diff display.
596 */
597 function showDiffStyle() {
598 $this->getOutput()->addModuleStyles( 'mediawiki.action.history.diff' );
599 }
600
601 /**
602 * Get complete diff table, including header
603 *
604 * @param string|bool $otitle Header for old text or false
605 * @param string|bool $ntitle Header for new text or false
606 * @param string $notice HTML between diff header and body
607 * @return mixed
608 */
609 function getDiff( $otitle, $ntitle, $notice = '' ) {
610 $body = $this->getDiffBody();
611 if ( $body === false ) {
612 return false;
613 } else {
614 $multi = $this->getMultiNotice();
615 // Display a message when the diff is empty
616 if ( $body === '' ) {
617 $notice .= '<div class="mw-diff-empty">' . $this->msg( 'diff-empty' )->parse() . "</div>\n";
618 }
619 return $this->addHeader( $body, $otitle, $ntitle, $multi, $notice );
620 }
621 }
622
623 /**
624 * Get the diff table body, without header
625 *
626 * @return mixed (string/false)
627 */
628 public function getDiffBody() {
629 global $wgMemc;
630 wfProfileIn( __METHOD__ );
631 $this->mCacheHit = true;
632 // Check if the diff should be hidden from this user
633 if ( !$this->loadRevisionData() ) {
634 wfProfileOut( __METHOD__ );
635 return false;
636 } elseif ( $this->mOldRev && !$this->mOldRev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
637 wfProfileOut( __METHOD__ );
638 return false;
639 } elseif ( $this->mNewRev && !$this->mNewRev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
640 wfProfileOut( __METHOD__ );
641 return false;
642 }
643 // Short-circuit
644 if ( $this->mOldRev === false || ( $this->mOldRev && $this->mNewRev
645 && $this->mOldRev->getID() == $this->mNewRev->getID() ) )
646 {
647 wfProfileOut( __METHOD__ );
648 return '';
649 }
650 // Cacheable?
651 $key = false;
652 if ( $this->mOldid && $this->mNewid ) {
653 $key = wfMemcKey( 'diff', 'version', MW_DIFF_VERSION,
654 'oldid', $this->mOldid, 'newid', $this->mNewid );
655 // Try cache
656 if ( !$this->mRefreshCache ) {
657 $difftext = $wgMemc->get( $key );
658 if ( $difftext ) {
659 wfIncrStats( 'diff_cache_hit' );
660 $difftext = $this->localiseLineNumbers( $difftext );
661 $difftext .= "\n<!-- diff cache key $key -->\n";
662 wfProfileOut( __METHOD__ );
663 return $difftext;
664 }
665 } // don't try to load but save the result
666 }
667 $this->mCacheHit = false;
668
669 // Loadtext is permission safe, this just clears out the diff
670 if ( !$this->loadText() ) {
671 wfProfileOut( __METHOD__ );
672 return false;
673 }
674
675 $difftext = $this->generateContentDiffBody( $this->mOldContent, $this->mNewContent );
676
677 // Save to cache for 7 days
678 if ( !wfRunHooks( 'AbortDiffCache', array( &$this ) ) ) {
679 wfIncrStats( 'diff_uncacheable' );
680 } elseif ( $key !== false && $difftext !== false ) {
681 wfIncrStats( 'diff_cache_miss' );
682 $wgMemc->set( $key, $difftext, 7 * 86400 );
683 } else {
684 wfIncrStats( 'diff_uncacheable' );
685 }
686 // Replace line numbers with the text in the user's language
687 if ( $difftext !== false ) {
688 $difftext = $this->localiseLineNumbers( $difftext );
689 }
690 wfProfileOut( __METHOD__ );
691 return $difftext;
692 }
693
694 /**
695 * Make sure the proper modules are loaded before we try to
696 * make the diff
697 */
698 private function initDiffEngines() {
699 global $wgExternalDiffEngine;
700 if ( $wgExternalDiffEngine == 'wikidiff' && !function_exists( 'wikidiff_do_diff' ) ) {
701 wfProfileIn( __METHOD__ . '-php_wikidiff.so' );
702 wfDl( 'php_wikidiff' );
703 wfProfileOut( __METHOD__ . '-php_wikidiff.so' );
704 }
705 elseif ( $wgExternalDiffEngine == 'wikidiff2' && !function_exists( 'wikidiff2_do_diff' ) ) {
706 wfProfileIn( __METHOD__ . '-php_wikidiff2.so' );
707 wfDl( 'wikidiff2' );
708 wfProfileOut( __METHOD__ . '-php_wikidiff2.so' );
709 }
710 }
711
712 /**
713 * Generate a diff, no caching.
714 *
715 * This implementation uses generateTextDiffBody() to generate a diff based on the default
716 * serialization of the given Content objects. This will fail if $old or $new are not
717 * instances of TextContent.
718 *
719 * Subclasses may override this to provide a different rendering for the diff,
720 * perhaps taking advantage of the content's native form. This is required for all content
721 * models that are not text based.
722 *
723 * @param $old Content: old content
724 * @param $new Content: new content
725 *
726 * @return bool|string
727 * @since 1.21
728 * @throws MWException if $old or $new are not instances of TextContent.
729 */
730 function generateContentDiffBody( Content $old, Content $new ) {
731 if ( !( $old instanceof TextContent ) ) {
732 throw new MWException( "Diff not implemented for " . get_class( $old ) . "; "
733 . "override generateContentDiffBody to fix this." );
734 }
735
736 if ( !( $new instanceof TextContent ) ) {
737 throw new MWException( "Diff not implemented for " . get_class( $new ) . "; "
738 . "override generateContentDiffBody to fix this." );
739 }
740
741 $otext = $old->serialize();
742 $ntext = $new->serialize();
743
744 return $this->generateTextDiffBody( $otext, $ntext );
745 }
746
747 /**
748 * Generate a diff, no caching
749 *
750 * @param string $otext old text, must be already segmented
751 * @param string $ntext new text, must be already segmented
752 * @return bool|string
753 * @deprecated since 1.21, use generateContentDiffBody() instead!
754 */
755 function generateDiffBody( $otext, $ntext ) {
756 ContentHandler::deprecated( __METHOD__, "1.21" );
757
758 return $this->generateTextDiffBody( $otext, $ntext );
759 }
760
761 /**
762 * Generate a diff, no caching
763 *
764 * @todo move this to TextDifferenceEngine, make DifferenceEngine abstract. At some point.
765 *
766 * @param string $otext old text, must be already segmented
767 * @param string $ntext new text, must be already segmented
768 * @return bool|string
769 */
770 function generateTextDiffBody( $otext, $ntext ) {
771 global $wgExternalDiffEngine, $wgContLang;
772
773 wfProfileIn( __METHOD__ );
774
775 $otext = str_replace( "\r\n", "\n", $otext );
776 $ntext = str_replace( "\r\n", "\n", $ntext );
777
778 $this->initDiffEngines();
779
780 if ( $wgExternalDiffEngine == 'wikidiff' && function_exists( 'wikidiff_do_diff' ) ) {
781 # For historical reasons, external diff engine expects
782 # input text to be HTML-escaped already
783 $otext = htmlspecialchars ( $wgContLang->segmentForDiff( $otext ) );
784 $ntext = htmlspecialchars ( $wgContLang->segmentForDiff( $ntext ) );
785 wfProfileOut( __METHOD__ );
786 return $wgContLang->unsegmentForDiff( wikidiff_do_diff( $otext, $ntext, 2 ) ) .
787 $this->debug( 'wikidiff1' );
788 }
789
790 if ( $wgExternalDiffEngine == 'wikidiff2' && function_exists( 'wikidiff2_do_diff' ) ) {
791 # Better external diff engine, the 2 may some day be dropped
792 # This one does the escaping and segmenting itself
793 wfProfileIn( 'wikidiff2_do_diff' );
794 $text = wikidiff2_do_diff( $otext, $ntext, 2 );
795 $text .= $this->debug( 'wikidiff2' );
796 wfProfileOut( 'wikidiff2_do_diff' );
797 wfProfileOut( __METHOD__ );
798 return $text;
799 }
800 if ( $wgExternalDiffEngine != 'wikidiff3' && $wgExternalDiffEngine !== false ) {
801 # Diff via the shell
802 $tmpDir = wfTempDir();
803 $tempName1 = tempnam( $tmpDir, 'diff_' );
804 $tempName2 = tempnam( $tmpDir, 'diff_' );
805
806 $tempFile1 = fopen( $tempName1, "w" );
807 if ( !$tempFile1 ) {
808 wfProfileOut( __METHOD__ );
809 return false;
810 }
811 $tempFile2 = fopen( $tempName2, "w" );
812 if ( !$tempFile2 ) {
813 wfProfileOut( __METHOD__ );
814 return false;
815 }
816 fwrite( $tempFile1, $otext );
817 fwrite( $tempFile2, $ntext );
818 fclose( $tempFile1 );
819 fclose( $tempFile2 );
820 $cmd = wfEscapeShellArg( $wgExternalDiffEngine, $tempName1, $tempName2 );
821 wfProfileIn( __METHOD__ . "-shellexec" );
822 $difftext = wfShellExec( $cmd );
823 $difftext .= $this->debug( "external $wgExternalDiffEngine" );
824 wfProfileOut( __METHOD__ . "-shellexec" );
825 unlink( $tempName1 );
826 unlink( $tempName2 );
827 wfProfileOut( __METHOD__ );
828 return $difftext;
829 }
830
831 # Native PHP diff
832 $ota = explode( "\n", $wgContLang->segmentForDiff( $otext ) );
833 $nta = explode( "\n", $wgContLang->segmentForDiff( $ntext ) );
834 $diffs = new Diff( $ota, $nta );
835 $formatter = new TableDiffFormatter();
836 $difftext = $wgContLang->unsegmentForDiff( $formatter->format( $diffs ) ) .
837 wfProfileOut( __METHOD__ );
838 return $difftext;
839 }
840
841 /**
842 * Generate a debug comment indicating diff generating time,
843 * server node, and generator backend.
844 * @return string
845 */
846 protected function debug( $generator = "internal" ) {
847 global $wgShowHostnames;
848 if ( !$this->enableDebugComment ) {
849 return '';
850 }
851 $data = array( $generator );
852 if ( $wgShowHostnames ) {
853 $data[] = wfHostname();
854 }
855 $data[] = wfTimestamp( TS_DB );
856 return "<!-- diff generator: " .
857 implode( " ",
858 array_map(
859 "htmlspecialchars",
860 $data ) ) .
861 " -->\n";
862 }
863
864 /**
865 * Replace line numbers with the text in the user's language
866 * @return mixed
867 */
868 function localiseLineNumbers( $text ) {
869 return preg_replace_callback( '/<!--LINE (\d+)-->/',
870 array( &$this, 'localiseLineNumbersCb' ), $text );
871 }
872
873 function localiseLineNumbersCb( $matches ) {
874 if ( $matches[1] === '1' && $this->mReducedLineNumbers ) {
875 return '';
876 }
877 return $this->msg( 'lineno' )->numParams( $matches[1] )->escaped();
878 }
879
880 /**
881 * If there are revisions between the ones being compared, return a note saying so.
882 * @return string
883 */
884 function getMultiNotice() {
885 if ( !is_object( $this->mOldRev ) || !is_object( $this->mNewRev ) ) {
886 return '';
887 } elseif ( !$this->mOldPage->equals( $this->mNewPage ) ) {
888 // Comparing two different pages? Count would be meaningless.
889 return '';
890 }
891
892 if ( $this->mOldRev->getTimestamp() > $this->mNewRev->getTimestamp() ) {
893 $oldRev = $this->mNewRev; // flip
894 $newRev = $this->mOldRev; // flip
895 } else { // normal case
896 $oldRev = $this->mOldRev;
897 $newRev = $this->mNewRev;
898 }
899
900 $nEdits = $this->mNewPage->countRevisionsBetween( $oldRev, $newRev );
901 if ( $nEdits > 0 ) {
902 $limit = 100; // use diff-multi-manyusers if too many users
903 $numUsers = $this->mNewPage->countAuthorsBetween( $oldRev, $newRev, $limit );
904 return self::intermediateEditsMsg( $nEdits, $numUsers, $limit );
905 }
906 return ''; // nothing
907 }
908
909 /**
910 * Get a notice about how many intermediate edits and users there are
911 * @param $numEdits int
912 * @param $numUsers int
913 * @param $limit int
914 * @return string
915 */
916 public static function intermediateEditsMsg( $numEdits, $numUsers, $limit ) {
917 if ( $numUsers > $limit ) {
918 $msg = 'diff-multi-manyusers';
919 $numUsers = $limit;
920 } else {
921 $msg = 'diff-multi';
922 }
923 return wfMessage( $msg )->numParams( $numEdits, $numUsers )->parse();
924 }
925
926 /**
927 * Get a header for a specified revision.
928 *
929 * @param $rev Revision
930 * @param string $complete 'complete' to get the header wrapped depending
931 * the visibility of the revision and a link to edit the page.
932 * @return String HTML fragment
933 */
934 protected function getRevisionHeader( Revision $rev, $complete = '' ) {
935 $lang = $this->getLanguage();
936 $user = $this->getUser();
937 $revtimestamp = $rev->getTimestamp();
938 $timestamp = $lang->userTimeAndDate( $revtimestamp, $user );
939 $dateofrev = $lang->userDate( $revtimestamp, $user );
940 $timeofrev = $lang->userTime( $revtimestamp, $user );
941
942 $header = $this->msg(
943 $rev->isCurrent() ? 'currentrev-asof' : 'revisionasof',
944 $timestamp,
945 $dateofrev,
946 $timeofrev
947 )->escaped();
948
949 if ( $complete !== 'complete' ) {
950 return $header;
951 }
952
953 $title = $rev->getTitle();
954
955 $header = Linker::linkKnown( $title, $header, array(),
956 array( 'oldid' => $rev->getID() ) );
957
958 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
959 $editQuery = array( 'action' => 'edit' );
960 if ( !$rev->isCurrent() ) {
961 $editQuery['oldid'] = $rev->getID();
962 }
963
964 $msg = $this->msg( $title->quickUserCan( 'edit', $user ) ? 'editold' : 'viewsourceold' )->escaped();
965 $header .= ' ' . $this->msg( 'parentheses' )->rawParams(
966 Linker::linkKnown( $title, $msg, array(), $editQuery ) )->plain();
967 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
968 $header = Html::rawElement( 'span', array( 'class' => 'history-deleted' ), $header );
969 }
970 } else {
971 $header = Html::rawElement( 'span', array( 'class' => 'history-deleted' ), $header );
972 }
973
974 return $header;
975 }
976
977 /**
978 * Add the header to a diff body
979 *
980 * @return string
981 */
982 function addHeader( $diff, $otitle, $ntitle, $multi = '', $notice = '' ) {
983 // shared.css sets diff in interface language/dir, but the actual content
984 // is often in a different language, mostly the page content language/dir
985 $tableClass = 'diff diff-contentalign-' . htmlspecialchars( $this->getDiffLang()->alignStart() );
986 $header = "<table class='$tableClass'>";
987
988 if ( !$diff && !$otitle ) {
989 $header .= "
990 <tr style='vertical-align: top;'>
991 <td class='diff-ntitle'>{$ntitle}</td>
992 </tr>";
993 $multiColspan = 1;
994 } else {
995 if ( $diff ) { // Safari/Chrome show broken output if cols not used
996 $header .= "
997 <col class='diff-marker' />
998 <col class='diff-content' />
999 <col class='diff-marker' />
1000 <col class='diff-content' />";
1001 $colspan = 2;
1002 $multiColspan = 4;
1003 } else {
1004 $colspan = 1;
1005 $multiColspan = 2;
1006 }
1007 if ( $otitle || $ntitle ) {
1008 $header .= "
1009 <tr style='vertical-align: top;'>
1010 <td colspan='$colspan' class='diff-otitle'>{$otitle}</td>
1011 <td colspan='$colspan' class='diff-ntitle'>{$ntitle}</td>
1012 </tr>";
1013 }
1014 }
1015
1016 if ( $multi != '' ) {
1017 $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;' class='diff-multi'>{$multi}</td></tr>";
1018 }
1019 if ( $notice != '' ) {
1020 $header .= "<tr><td colspan='{$multiColspan}' style='text-align: center;'>{$notice}</td></tr>";
1021 }
1022
1023 return $header . $diff . "</table>";
1024 }
1025
1026 /**
1027 * Use specified text instead of loading from the database
1028 * @deprecated since 1.21, use setContent() instead.
1029 */
1030 function setText( $oldText, $newText ) {
1031 ContentHandler::deprecated( __METHOD__, "1.21" );
1032
1033 $oldContent = ContentHandler::makeContent( $oldText, $this->getTitle() );
1034 $newContent = ContentHandler::makeContent( $newText, $this->getTitle() );
1035
1036 $this->setContent( $oldContent, $newContent );
1037 }
1038
1039 /**
1040 * Use specified text instead of loading from the database
1041 * @since 1.21
1042 */
1043 function setContent( Content $oldContent, Content $newContent ) {
1044 $this->mOldContent = $oldContent;
1045 $this->mNewContent = $newContent;
1046
1047 $this->mTextLoaded = 2;
1048 $this->mRevisionsLoaded = true;
1049 }
1050
1051 /**
1052 * Set the language in which the diff text is written
1053 * (Defaults to page content language).
1054 * @since 1.19
1055 */
1056 function setTextLanguage( $lang ) {
1057 $this->mDiffLang = wfGetLangObj( $lang );
1058 }
1059
1060 /**
1061 * Load revision IDs
1062 */
1063 private function loadRevisionIds() {
1064 if ( $this->mRevisionsIdsLoaded ) {
1065 return;
1066 }
1067
1068 $this->mRevisionsIdsLoaded = true;
1069
1070 $old = $this->mOldid;
1071 $new = $this->mNewid;
1072
1073 if ( $new === 'prev' ) {
1074 # Show diff between revision $old and the previous one.
1075 # Get previous one from DB.
1076 $this->mNewid = intval( $old );
1077 $this->mOldid = $this->getTitle()->getPreviousRevisionID( $this->mNewid );
1078 } elseif ( $new === 'next' ) {
1079 # Show diff between revision $old and the next one.
1080 # Get next one from DB.
1081 $this->mOldid = intval( $old );
1082 $this->mNewid = $this->getTitle()->getNextRevisionID( $this->mOldid );
1083 if ( $this->mNewid === false ) {
1084 # if no result, NewId points to the newest old revision. The only newer
1085 # revision is cur, which is "0".
1086 $this->mNewid = 0;
1087 }
1088 } else {
1089 $this->mOldid = intval( $old );
1090 $this->mNewid = intval( $new );
1091 wfRunHooks( 'NewDifferenceEngine', array( $this->getTitle(), &$this->mOldid, &$this->mNewid, $old, $new ) );
1092 }
1093 }
1094
1095 /**
1096 * Load revision metadata for the specified articles. If newid is 0, then compare
1097 * the old article in oldid to the current article; if oldid is 0, then
1098 * compare the current article to the immediately previous one (ignoring the
1099 * value of newid).
1100 *
1101 * If oldid is false, leave the corresponding revision object set
1102 * to false. This is impossible via ordinary user input, and is provided for
1103 * API convenience.
1104 *
1105 * @return bool
1106 */
1107 function loadRevisionData() {
1108 if ( $this->mRevisionsLoaded ) {
1109 return true;
1110 }
1111
1112 // Whether it succeeds or fails, we don't want to try again
1113 $this->mRevisionsLoaded = true;
1114
1115 $this->loadRevisionIds();
1116
1117 // Load the new revision object
1118 $this->mNewRev = $this->mNewid
1119 ? Revision::newFromId( $this->mNewid )
1120 : Revision::newFromTitle( $this->getTitle(), false, Revision::READ_NORMAL );
1121
1122 if ( !$this->mNewRev instanceof Revision ) {
1123 return false;
1124 }
1125
1126 // Update the new revision ID in case it was 0 (makes life easier doing UI stuff)
1127 $this->mNewid = $this->mNewRev->getId();
1128 $this->mNewPage = $this->mNewRev->getTitle();
1129
1130 // Load the old revision object
1131 $this->mOldRev = false;
1132 if ( $this->mOldid ) {
1133 $this->mOldRev = Revision::newFromId( $this->mOldid );
1134 } elseif ( $this->mOldid === 0 ) {
1135 $rev = $this->mNewRev->getPrevious();
1136 if ( $rev ) {
1137 $this->mOldid = $rev->getId();
1138 $this->mOldRev = $rev;
1139 } else {
1140 // No previous revision; mark to show as first-version only.
1141 $this->mOldid = false;
1142 $this->mOldRev = false;
1143 }
1144 } /* elseif ( $this->mOldid === false ) leave mOldRev false; */
1145
1146 if ( is_null( $this->mOldRev ) ) {
1147 return false;
1148 }
1149
1150 if ( $this->mOldRev ) {
1151 $this->mOldPage = $this->mOldRev->getTitle();
1152 }
1153
1154 // Load tags information for both revisions
1155 $dbr = wfGetDB( DB_SLAVE );
1156 if ( $this->mOldid !== false ) {
1157 $this->mOldTags = $dbr->selectField(
1158 'tag_summary',
1159 'ts_tags',
1160 array( 'ts_rev_id' => $this->mOldid ),
1161 __METHOD__
1162 );
1163 } else {
1164 $this->mOldTags = false;
1165 }
1166 $this->mNewTags = $dbr->selectField(
1167 'tag_summary',
1168 'ts_tags',
1169 array( 'ts_rev_id' => $this->mNewid ),
1170 __METHOD__
1171 );
1172
1173 return true;
1174 }
1175
1176 /**
1177 * Load the text of the revisions, as well as revision data.
1178 *
1179 * @return bool
1180 */
1181 function loadText() {
1182 if ( $this->mTextLoaded == 2 ) {
1183 return true;
1184 }
1185
1186 // Whether it succeeds or fails, we don't want to try again
1187 $this->mTextLoaded = 2;
1188
1189 if ( !$this->loadRevisionData() ) {
1190 return false;
1191 }
1192
1193 if ( $this->mOldRev ) {
1194 $this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1195 if ( $this->mOldContent === null ) {
1196 return false;
1197 }
1198 }
1199
1200 if ( $this->mNewRev ) {
1201 $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1202 if ( $this->mNewContent === null ) {
1203 return false;
1204 }
1205 }
1206
1207 return true;
1208 }
1209
1210 /**
1211 * Load the text of the new revision, not the old one
1212 *
1213 * @return bool
1214 */
1215 function loadNewText() {
1216 if ( $this->mTextLoaded >= 1 ) {
1217 return true;
1218 }
1219
1220 $this->mTextLoaded = 1;
1221
1222 if ( !$this->loadRevisionData() ) {
1223 return false;
1224 }
1225
1226 $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->getUser() );
1227
1228 return true;
1229 }
1230 }