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