Merge "Add anchor "mw-oldid" for beginning of page content in diff view"
[lhc/web/wiklou.git] / includes / actions / HistoryAction.php
1 <?php
2 /**
3 * Page history
4 *
5 * Split off from Article.php and Skin.php, 2003-12-22
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
21 *
22 * @file
23 * @ingroup Actions
24 */
25
26 /**
27 * This class handles printing the history page for an article. In order to
28 * be efficient, it uses timestamps rather than offsets for paging, to avoid
29 * costly LIMIT,offset queries.
30 *
31 * Construct it by passing in an Article, and call $h->history() to print the
32 * history.
33 *
34 * @ingroup Actions
35 */
36 class HistoryAction extends FormlessAction {
37 const DIR_PREV = 0;
38 const DIR_NEXT = 1;
39
40 /** @var array Array of message keys and strings */
41 public $message;
42
43 public function getName() {
44 return 'history';
45 }
46
47 public function requiresWrite() {
48 return false;
49 }
50
51 public function requiresUnblock() {
52 return false;
53 }
54
55 protected function getPageTitle() {
56 return $this->msg( 'history-title', $this->getTitle()->getPrefixedText() )->text();
57 }
58
59 protected function getDescription() {
60 // Creation of a subtitle link pointing to [[Special:Log]]
61 return Linker::linkKnown(
62 SpecialPage::getTitleFor( 'Log' ),
63 $this->msg( 'viewpagelogs' )->escaped(),
64 array(),
65 array( 'page' => $this->getTitle()->getPrefixedText() )
66 );
67 }
68
69 /**
70 * @return WikiPage|Article|ImagePage|CategoryPage|Page The Article object we are working on.
71 */
72 public function getArticle() {
73 return $this->page;
74 }
75
76 /**
77 * As we use the same small set of messages in various methods and that
78 * they are called often, we call them once and save them in $this->message
79 */
80 private function preCacheMessages() {
81 // Precache various messages
82 if ( !isset( $this->message ) ) {
83 $msgs = array( 'cur', 'last', 'pipe-separator' );
84 foreach ( $msgs as $msg ) {
85 $this->message[$msg] = $this->msg( $msg )->escaped();
86 }
87 }
88 }
89
90 /**
91 * Print the history page for an article.
92 */
93 function onView() {
94 $out = $this->getOutput();
95 $request = $this->getRequest();
96
97 /**
98 * Allow client caching.
99 */
100 if ( $out->checkLastModified( $this->page->getTouched() ) ) {
101 return; // Client cache fresh and headers sent, nothing more to do.
102 }
103
104 $this->preCacheMessages();
105 $config = $this->context->getConfig();
106
107 # Fill in the file cache if not set already
108 $useFileCache = $config->get( 'UseFileCache' );
109 if ( $useFileCache && HTMLFileCache::useFileCache( $this->getContext() ) ) {
110 $cache = new HTMLFileCache( $this->getTitle(), 'history' );
111 if ( !$cache->isCacheGood( /* Assume up to date */ ) ) {
112 ob_start( array( &$cache, 'saveToFileCache' ) );
113 }
114 }
115
116 // Setup page variables.
117 $out->setFeedAppendQuery( 'action=history' );
118 $out->addModules( 'mediawiki.action.history' );
119 if ( $config->get( 'UseMediaWikiUIEverywhere' ) ) {
120 $out = $this->getOutput();
121 $out->addModuleStyles( array(
122 'mediawiki.ui.input',
123 'mediawiki.ui.checkbox',
124 ) );
125 }
126
127 // Handle atom/RSS feeds.
128 $feedType = $request->getVal( 'feed' );
129 if ( $feedType ) {
130 $this->feed( $feedType );
131
132 return;
133 }
134
135 // Fail nicely if article doesn't exist.
136 if ( !$this->page->exists() ) {
137 $out->addWikiMsg( 'nohistory' );
138 # show deletion/move log if there is an entry
139 LogEventsList::showLogExtract(
140 $out,
141 array( 'delete', 'move' ),
142 $this->getTitle(),
143 '',
144 array( 'lim' => 10,
145 'conds' => array( "log_action != 'revision'" ),
146 'showIfEmpty' => false,
147 'msgKey' => array( 'moveddeleted-notice' )
148 )
149 );
150
151 return;
152 }
153
154 /**
155 * Add date selector to quickly get to a certain time
156 */
157 $year = $request->getInt( 'year' );
158 $month = $request->getInt( 'month' );
159 $tagFilter = $request->getVal( 'tagfilter' );
160 $tagSelector = ChangeTags::buildTagFilterSelector( $tagFilter );
161
162 /**
163 * Option to show only revisions that have been (partially) hidden via RevisionDelete
164 */
165 if ( $request->getBool( 'deleted' ) ) {
166 $conds = array( 'rev_deleted != 0' );
167 } else {
168 $conds = array();
169 }
170 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
171 $checkDeleted = Xml::checkLabel( $this->msg( 'history-show-deleted' )->text(),
172 'deleted', 'mw-show-deleted-only', $request->getBool( 'deleted' ) ) . "\n";
173 } else {
174 $checkDeleted = '';
175 }
176
177 // Add the general form
178 $action = htmlspecialchars( wfScript() );
179 $out->addHTML(
180 "<form action=\"$action\" method=\"get\" id=\"mw-history-searchform\">" .
181 Xml::fieldset(
182 $this->msg( 'history-fieldset-title' )->text(),
183 false,
184 array( 'id' => 'mw-history-search' )
185 ) .
186 Html::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n" .
187 Html::hidden( 'action', 'history' ) . "\n" .
188 Xml::dateMenu(
189 ( $year == null ? MWTimestamp::getLocalInstance()->format( 'Y' ) : $year ),
190 $month
191 ) . '&#160;' .
192 ( $tagSelector ? ( implode( '&#160;', $tagSelector ) . '&#160;' ) : '' ) .
193 $checkDeleted .
194 Html::submitButton(
195 $this->msg( 'allpagessubmit' )->text(),
196 array(),
197 array( 'mw-ui-progressive' )
198 ) . "\n" .
199 '</fieldset></form>'
200 );
201
202 Hooks::run( 'PageHistoryBeforeList', array( &$this->page, $this->getContext() ) );
203
204 // Create and output the list.
205 $pager = new HistoryPager( $this, $year, $month, $tagFilter, $conds );
206 $out->addHTML(
207 $pager->getNavigationBar() .
208 $pager->getBody() .
209 $pager->getNavigationBar()
210 );
211 $out->preventClickjacking( $pager->getPreventClickjacking() );
212
213 }
214
215 /**
216 * Fetch an array of revisions, specified by a given limit, offset and
217 * direction. This is now only used by the feeds. It was previously
218 * used by the main UI but that's now handled by the pager.
219 *
220 * @param int $limit The limit number of revisions to get
221 * @param int $offset
222 * @param int $direction Either self::DIR_PREV or self::DIR_NEXT
223 * @return ResultWrapper
224 */
225 function fetchRevisions( $limit, $offset, $direction ) {
226 // Fail if article doesn't exist.
227 if ( !$this->getTitle()->exists() ) {
228 return new FakeResultWrapper( array() );
229 }
230
231 $dbr = wfGetDB( DB_SLAVE );
232
233 if ( $direction === self::DIR_PREV ) {
234 list( $dirs, $oper ) = array( "ASC", ">=" );
235 } else { /* $direction === self::DIR_NEXT */
236 list( $dirs, $oper ) = array( "DESC", "<=" );
237 }
238
239 if ( $offset ) {
240 $offsets = array( "rev_timestamp $oper " . $dbr->addQuotes( $dbr->timestamp( $offset ) ) );
241 } else {
242 $offsets = array();
243 }
244
245 $page_id = $this->page->getId();
246
247 return $dbr->select( 'revision',
248 Revision::selectFields(),
249 array_merge( array( 'rev_page' => $page_id ), $offsets ),
250 __METHOD__,
251 array( 'ORDER BY' => "rev_timestamp $dirs",
252 'USE INDEX' => 'page_timestamp', 'LIMIT' => $limit )
253 );
254 }
255
256 /**
257 * Output a subscription feed listing recent edits to this page.
258 *
259 * @param string $type Feed type
260 */
261 function feed( $type ) {
262 if ( !FeedUtils::checkFeedOutput( $type ) ) {
263 return;
264 }
265 $request = $this->getRequest();
266
267 $feedClasses = $this->context->getConfig()->get( 'FeedClasses' );
268 /** @var RSSFeed|AtomFeed $feed */
269 $feed = new $feedClasses[$type](
270 $this->getTitle()->getPrefixedText() . ' - ' .
271 $this->msg( 'history-feed-title' )->inContentLanguage()->text(),
272 $this->msg( 'history-feed-description' )->inContentLanguage()->text(),
273 $this->getTitle()->getFullURL( 'action=history' )
274 );
275
276 // Get a limit on number of feed entries. Provide a sane default
277 // of 10 if none is defined (but limit to $wgFeedLimit max)
278 $limit = $request->getInt( 'limit', 10 );
279 $limit = min(
280 max( $limit, 1 ),
281 $this->context->getConfig()->get( 'FeedLimit' )
282 );
283
284 $items = $this->fetchRevisions( $limit, 0, self::DIR_NEXT );
285
286 // Generate feed elements enclosed between header and footer.
287 $feed->outHeader();
288 if ( $items->numRows() ) {
289 foreach ( $items as $row ) {
290 $feed->outItem( $this->feedItem( $row ) );
291 }
292 } else {
293 $feed->outItem( $this->feedEmpty() );
294 }
295 $feed->outFooter();
296 }
297
298 function feedEmpty() {
299 return new FeedItem(
300 $this->msg( 'nohistory' )->inContentLanguage()->text(),
301 $this->msg( 'history-feed-empty' )->inContentLanguage()->parseAsBlock(),
302 $this->getTitle()->getFullURL(),
303 wfTimestamp( TS_MW ),
304 '',
305 $this->getTitle()->getTalkPage()->getFullURL()
306 );
307 }
308
309 /**
310 * Generate a FeedItem object from a given revision table row
311 * Borrows Recent Changes' feed generation functions for formatting;
312 * includes a diff to the previous revision (if any).
313 *
314 * @param stdClass|array $row Database row
315 * @return FeedItem
316 */
317 function feedItem( $row ) {
318 $rev = new Revision( $row );
319 $rev->setTitle( $this->getTitle() );
320 $text = FeedUtils::formatDiffRow(
321 $this->getTitle(),
322 $this->getTitle()->getPreviousRevisionID( $rev->getId() ),
323 $rev->getId(),
324 $rev->getTimestamp(),
325 $rev->getComment()
326 );
327 if ( $rev->getComment() == '' ) {
328 global $wgContLang;
329 $title = $this->msg( 'history-feed-item-nocomment',
330 $rev->getUserText(),
331 $wgContLang->timeanddate( $rev->getTimestamp() ),
332 $wgContLang->date( $rev->getTimestamp() ),
333 $wgContLang->time( $rev->getTimestamp() ) )->inContentLanguage()->text();
334 } else {
335 $title = $rev->getUserText() .
336 $this->msg( 'colon-separator' )->inContentLanguage()->text() .
337 FeedItem::stripComment( $rev->getComment() );
338 }
339
340 return new FeedItem(
341 $title,
342 $text,
343 $this->getTitle()->getFullURL( 'diff=' . $rev->getId() . '&oldid=prev' ),
344 $rev->getTimestamp(),
345 $rev->getUserText(),
346 $this->getTitle()->getTalkPage()->getFullURL()
347 );
348 }
349 }
350
351 /**
352 * @ingroup Pager
353 * @ingroup Actions
354 */
355 class HistoryPager extends ReverseChronologicalPager {
356 /**
357 * @var bool|stdClass
358 */
359 public $lastRow = false;
360
361 public $counter, $historyPage, $buttons, $conds;
362
363 protected $oldIdChecked;
364
365 protected $preventClickjacking = false;
366 /**
367 * @var array
368 */
369 protected $parentLens;
370
371 /**
372 * @param HistoryAction $historyPage
373 * @param string $year
374 * @param string $month
375 * @param string $tagFilter
376 * @param array $conds
377 */
378 function __construct( $historyPage, $year = '', $month = '', $tagFilter = '', $conds = array() ) {
379 parent::__construct( $historyPage->getContext() );
380 $this->historyPage = $historyPage;
381 $this->tagFilter = $tagFilter;
382 $this->getDateCond( $year, $month );
383 $this->conds = $conds;
384 }
385
386 // For hook compatibility...
387 function getArticle() {
388 return $this->historyPage->getArticle();
389 }
390
391 function getSqlComment() {
392 if ( $this->conds ) {
393 return 'history page filtered'; // potentially slow, see CR r58153
394 } else {
395 return 'history page unfiltered';
396 }
397 }
398
399 function getQueryInfo() {
400 $queryInfo = array(
401 'tables' => array( 'revision', 'user' ),
402 'fields' => array_merge( Revision::selectFields(), Revision::selectUserFields() ),
403 'conds' => array_merge(
404 array( 'rev_page' => $this->getWikiPage()->getId() ),
405 $this->conds ),
406 'options' => array( 'USE INDEX' => array( 'revision' => 'page_timestamp' ) ),
407 'join_conds' => array( 'user' => Revision::userJoinCond() ),
408 );
409 ChangeTags::modifyDisplayQuery(
410 $queryInfo['tables'],
411 $queryInfo['fields'],
412 $queryInfo['conds'],
413 $queryInfo['join_conds'],
414 $queryInfo['options'],
415 $this->tagFilter
416 );
417 Hooks::run( 'PageHistoryPager::getQueryInfo', array( &$this, &$queryInfo ) );
418
419 return $queryInfo;
420 }
421
422 function getIndexField() {
423 return 'rev_timestamp';
424 }
425
426 /**
427 * @param stdClass $row
428 * @return string
429 */
430 function formatRow( $row ) {
431 if ( $this->lastRow ) {
432 $latest = ( $this->counter == 1 && $this->mIsFirst );
433 $firstInList = $this->counter == 1;
434 $this->counter++;
435 $s = $this->historyLine( $this->lastRow, $row,
436 $this->getTitle()->getNotificationTimestamp( $this->getUser() ), $latest, $firstInList );
437 } else {
438 $s = '';
439 }
440 $this->lastRow = $row;
441
442 return $s;
443 }
444
445 function doBatchLookups() {
446 # Do a link batch query
447 $this->mResult->seek( 0 );
448 $batch = new LinkBatch();
449 $revIds = array();
450 foreach ( $this->mResult as $row ) {
451 if ( $row->rev_parent_id ) {
452 $revIds[] = $row->rev_parent_id;
453 }
454 if ( !is_null( $row->user_name ) ) {
455 $batch->add( NS_USER, $row->user_name );
456 $batch->add( NS_USER_TALK, $row->user_name );
457 } else { # for anons or usernames of imported revisions
458 $batch->add( NS_USER, $row->rev_user_text );
459 $batch->add( NS_USER_TALK, $row->rev_user_text );
460 }
461 }
462 $this->parentLens = Revision::getParentLengths( $this->mDb, $revIds );
463 $batch->execute();
464 $this->mResult->seek( 0 );
465 }
466
467 /**
468 * Creates begin of history list with a submit button
469 *
470 * @return string HTML output
471 */
472 function getStartBody() {
473 $this->lastRow = false;
474 $this->counter = 1;
475 $this->oldIdChecked = 0;
476
477 $this->getOutput()->wrapWikiMsg( "<div class='mw-history-legend'>\n$1\n</div>", 'histlegend' );
478 $s = Html::openElement( 'form', array( 'action' => wfScript(),
479 'id' => 'mw-history-compare' ) ) . "\n";
480 $s .= Html::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n";
481 $s .= Html::hidden( 'action', 'historysubmit' ) . "\n";
482
483 // Button container stored in $this->buttons for re-use in getEndBody()
484 $this->buttons = '<div>';
485 $className = 'historysubmit mw-history-compareselectedversions-button';
486 $attrs = array( 'class' => $className )
487 + Linker::tooltipAndAccesskeyAttribs( 'compareselectedversions' );
488 $this->buttons .= $this->submitButton( $this->msg( 'compareselectedversions' )->text(),
489 $attrs
490 ) . "\n";
491
492 if ( $this->getUser()->isAllowed( 'deleterevision' ) ) {
493 $this->buttons .= $this->getRevisionButton( 'revisiondelete', 'showhideselectedversions' );
494 }
495 $this->buttons .= '</div>';
496
497 $s .= $this->buttons;
498 $s .= '<ul id="pagehistory">' . "\n";
499
500 return $s;
501 }
502
503 private function getRevisionButton( $name, $msg ) {
504 $this->preventClickjacking();
505 # Note bug #20966, <button> is non-standard in IE<8
506 $element = Html::element(
507 'button',
508 array(
509 'type' => 'submit',
510 'name' => $name,
511 'value' => '1',
512 'class' => "historysubmit mw-history-$name-button",
513 ),
514 $this->msg( $msg )->text()
515 ) . "\n";
516 return $element;
517 }
518
519 function getEndBody() {
520 if ( $this->lastRow ) {
521 $latest = $this->counter == 1 && $this->mIsFirst;
522 $firstInList = $this->counter == 1;
523 if ( $this->mIsBackwards ) {
524 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
525 if ( $this->mOffset == '' ) {
526 $next = null;
527 } else {
528 $next = 'unknown';
529 }
530 } else {
531 # The next row is the past-the-end row
532 $next = $this->mPastTheEndRow;
533 }
534 $this->counter++;
535 $s = $this->historyLine( $this->lastRow, $next,
536 $this->getTitle()->getNotificationTimestamp( $this->getUser() ), $latest, $firstInList );
537 } else {
538 $s = '';
539 }
540 $s .= "</ul>\n";
541 # Add second buttons only if there is more than one rev
542 if ( $this->getNumRows() > 2 ) {
543 $s .= $this->buttons;
544 }
545 $s .= '</form>';
546
547 return $s;
548 }
549
550 /**
551 * Creates a submit button
552 *
553 * @param string $message Text of the submit button, will be escaped
554 * @param array $attributes Attributes
555 * @return string HTML output for the submit button
556 */
557 function submitButton( $message, $attributes = array() ) {
558 # Disable submit button if history has 1 revision only
559 if ( $this->getNumRows() > 1 ) {
560 return Html::submitButton( $message, $attributes );
561 } else {
562 return '';
563 }
564 }
565
566 /**
567 * Returns a row from the history printout.
568 *
569 * @todo document some more, and maybe clean up the code (some params redundant?)
570 *
571 * @param stdClass $row The database row corresponding to the previous line.
572 * @param mixed $next The database row corresponding to the next line
573 * (chronologically previous)
574 * @param bool|string $notificationtimestamp
575 * @param bool $latest Whether this row corresponds to the page's latest revision.
576 * @param bool $firstInList Whether this row corresponds to the first
577 * displayed on this history page.
578 * @return string HTML output for the row
579 */
580 function historyLine( $row, $next, $notificationtimestamp = false,
581 $latest = false, $firstInList = false ) {
582 $rev = new Revision( $row );
583 $rev->setTitle( $this->getTitle() );
584
585 if ( is_object( $next ) ) {
586 $prevRev = new Revision( $next );
587 $prevRev->setTitle( $this->getTitle() );
588 } else {
589 $prevRev = null;
590 }
591
592 $curlink = $this->curLink( $rev, $latest );
593 $lastlink = $this->lastLink( $rev, $next );
594 $curLastlinks = $curlink . $this->historyPage->message['pipe-separator'] . $lastlink;
595 $histLinks = Html::rawElement(
596 'span',
597 array( 'class' => 'mw-history-histlinks' ),
598 $this->msg( 'parentheses' )->rawParams( $curLastlinks )->escaped()
599 );
600
601 $diffButtons = $this->diffButtons( $rev, $firstInList );
602 $s = $histLinks . $diffButtons;
603
604 $link = $this->revLink( $rev );
605 $classes = array();
606
607 $del = '';
608 $user = $this->getUser();
609 // Show checkboxes for each revision
610 if ( $user->isAllowed( 'deleterevision' ) ) {
611 $this->preventClickjacking();
612 // If revision was hidden from sysops, disable the checkbox
613 if ( !$rev->userCan( Revision::DELETED_RESTRICTED, $user ) ) {
614 $del = Xml::check( 'deleterevisions', false, array( 'disabled' => 'disabled' ) );
615 // Otherwise, enable the checkbox...
616 } else {
617 $del = Xml::check( 'showhiderevisions', false,
618 array( 'name' => 'ids[' . $rev->getId() . ']' ) );
619 }
620 // User can only view deleted revisions...
621 } elseif ( $rev->getVisibility() && $user->isAllowed( 'deletedhistory' ) ) {
622 // If revision was hidden from sysops, disable the link
623 if ( !$rev->userCan( Revision::DELETED_RESTRICTED, $user ) ) {
624 $del = Linker::revDeleteLinkDisabled( false );
625 // Otherwise, show the link...
626 } else {
627 $query = array( 'type' => 'revision',
628 'target' => $this->getTitle()->getPrefixedDBkey(), 'ids' => $rev->getId() );
629 $del .= Linker::revDeleteLink( $query,
630 $rev->isDeleted( Revision::DELETED_RESTRICTED ), false );
631 }
632 }
633 if ( $del ) {
634 $s .= " $del ";
635 }
636
637 $lang = $this->getLanguage();
638 $dirmark = $lang->getDirMark();
639
640 $s .= " $link";
641 $s .= $dirmark;
642 $s .= " <span class='history-user'>" .
643 Linker::revUserTools( $rev, true ) . "</span>";
644 $s .= $dirmark;
645
646 if ( $rev->isMinor() ) {
647 $s .= ' ' . ChangesList::flag( 'minor' );
648 }
649
650 # Sometimes rev_len isn't populated
651 if ( $rev->getSize() !== null ) {
652 # Size is always public data
653 $prevSize = isset( $this->parentLens[$row->rev_parent_id] )
654 ? $this->parentLens[$row->rev_parent_id]
655 : 0;
656 $sDiff = ChangesList::showCharacterDifference( $prevSize, $rev->getSize() );
657 $fSize = Linker::formatRevisionSize( $rev->getSize() );
658 $s .= ' <span class="mw-changeslist-separator">. .</span> ' . "$fSize $sDiff";
659 }
660
661 # Text following the character difference is added just before running hooks
662 $s2 = Linker::revComment( $rev, false, true );
663
664 if ( $notificationtimestamp && ( $row->rev_timestamp >= $notificationtimestamp ) ) {
665 $s2 .= ' <span class="updatedmarker">' . $this->msg( 'updatedmarker' )->escaped() . '</span>';
666 $classes[] = 'mw-history-line-updated';
667 }
668
669 $tools = array();
670
671 # Rollback and undo links
672 if ( $prevRev && $this->getTitle()->quickUserCan( 'edit', $user ) ) {
673 if ( $latest && $this->getTitle()->quickUserCan( 'rollback', $user ) ) {
674 // Get a rollback link without the brackets
675 $rollbackLink = Linker::generateRollback(
676 $rev,
677 $this->getContext(),
678 array( 'verify', 'noBrackets' )
679 );
680 if ( $rollbackLink ) {
681 $this->preventClickjacking();
682 $tools[] = $rollbackLink;
683 }
684 }
685
686 if ( !$rev->isDeleted( Revision::DELETED_TEXT )
687 && !$prevRev->isDeleted( Revision::DELETED_TEXT )
688 ) {
689 # Create undo tooltip for the first (=latest) line only
690 $undoTooltip = $latest
691 ? array( 'title' => $this->msg( 'tooltip-undo' )->text() )
692 : array();
693 $undolink = Linker::linkKnown(
694 $this->getTitle(),
695 $this->msg( 'editundo' )->escaped(),
696 $undoTooltip,
697 array(
698 'action' => 'edit',
699 'undoafter' => $prevRev->getId(),
700 'undo' => $rev->getId()
701 )
702 );
703 $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
704 }
705 }
706 // Allow extension to add their own links here
707 Hooks::run( 'HistoryRevisionTools', array( $rev, &$tools ) );
708
709 if ( $tools ) {
710 $s2 .= ' ' . $this->msg( 'parentheses' )->rawParams( $lang->pipeList( $tools ) )->escaped();
711 }
712
713 # Tags
714 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow( $row->ts_tags, 'history' );
715 $classes = array_merge( $classes, $newClasses );
716 if ( $tagSummary !== '' ) {
717 $s2 .= " $tagSummary";
718 }
719
720 # Include separator between character difference and following text
721 if ( $s2 !== '' ) {
722 $s .= ' <span class="mw-changeslist-separator">. .</span> ' . $s2;
723 }
724
725 Hooks::run( 'PageHistoryLineEnding', array( $this, &$row, &$s, &$classes ) );
726
727 $attribs = array();
728 if ( $classes ) {
729 $attribs['class'] = implode( ' ', $classes );
730 }
731
732 return Xml::tags( 'li', $attribs, $s ) . "\n";
733 }
734
735 /**
736 * Create a link to view this revision of the page
737 *
738 * @param Revision $rev
739 * @return string
740 */
741 function revLink( $rev ) {
742 $date = $this->getLanguage()->userTimeAndDate( $rev->getTimestamp(), $this->getUser() );
743 $date = htmlspecialchars( $date );
744 if ( $rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
745 $link = Linker::linkKnown(
746 $this->getTitle(),
747 $date,
748 array( 'class' => 'mw-changeslist-date' ),
749 array( 'oldid' => $rev->getId() )
750 );
751 } else {
752 $link = $date;
753 }
754 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
755 $link = "<span class=\"history-deleted\">$link</span>";
756 }
757
758 return $link;
759 }
760
761 /**
762 * Create a diff-to-current link for this revision for this page
763 *
764 * @param Revision $rev
765 * @param bool $latest This is the latest revision of the page?
766 * @return string
767 */
768 function curLink( $rev, $latest ) {
769 $cur = $this->historyPage->message['cur'];
770 if ( $latest || !$rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
771 return $cur;
772 } else {
773 return Linker::linkKnown(
774 $this->getTitle(),
775 $cur,
776 array(),
777 array(
778 'diff' => $this->getWikiPage()->getLatest(),
779 'oldid' => $rev->getId()
780 )
781 );
782 }
783 }
784
785 /**
786 * Create a diff-to-previous link for this revision for this page.
787 *
788 * @param Revision $prevRev The revision being displayed
789 * @param stdClass|string|null $next The next revision in list (that is
790 * the previous one in chronological order).
791 * May either be a row, "unknown" or null.
792 * @return string
793 */
794 function lastLink( $prevRev, $next ) {
795 $last = $this->historyPage->message['last'];
796
797 if ( $next === null ) {
798 # Probably no next row
799 return $last;
800 }
801
802 if ( $next === 'unknown' ) {
803 # Next row probably exists but is unknown, use an oldid=prev link
804 return Linker::linkKnown(
805 $this->getTitle(),
806 $last,
807 array(),
808 array(
809 'diff' => $prevRev->getId(),
810 'oldid' => 'prev'
811 )
812 );
813 }
814
815 $nextRev = new Revision( $next );
816
817 if ( !$prevRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
818 || !$nextRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
819 ) {
820 return $last;
821 }
822
823 return Linker::linkKnown(
824 $this->getTitle(),
825 $last,
826 array(),
827 array(
828 'diff' => $prevRev->getId(),
829 'oldid' => $next->rev_id
830 )
831 );
832 }
833
834 /**
835 * Create radio buttons for page history
836 *
837 * @param Revision $rev
838 * @param bool $firstInList Is this version the first one?
839 *
840 * @return string HTML output for the radio buttons
841 */
842 function diffButtons( $rev, $firstInList ) {
843 if ( $this->getNumRows() > 1 ) {
844 $id = $rev->getId();
845 $radio = array( 'type' => 'radio', 'value' => $id );
846 /** @todo Move title texts to javascript */
847 if ( $firstInList ) {
848 $first = Xml::element( 'input',
849 array_merge( $radio, array(
850 'style' => 'visibility:hidden',
851 'name' => 'oldid',
852 'id' => 'mw-oldid-null' ) )
853 );
854 $checkmark = array( 'checked' => 'checked' );
855 } else {
856 # Check visibility of old revisions
857 if ( !$rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
858 $radio['disabled'] = 'disabled';
859 $checkmark = array(); // We will check the next possible one
860 } elseif ( !$this->oldIdChecked ) {
861 $checkmark = array( 'checked' => 'checked' );
862 $this->oldIdChecked = $id;
863 } else {
864 $checkmark = array();
865 }
866 $first = Xml::element( 'input',
867 array_merge( $radio, $checkmark, array(
868 'name' => 'oldid',
869 'id' => "mw-oldid-$id" ) ) );
870 $checkmark = array();
871 }
872 $second = Xml::element( 'input',
873 array_merge( $radio, $checkmark, array(
874 'name' => 'diff',
875 'id' => "mw-diff-$id" ) ) );
876
877 return $first . $second;
878 } else {
879 return '';
880 }
881 }
882
883 /**
884 * This is called if a write operation is possible from the generated HTML
885 * @param bool $enable
886 */
887 function preventClickjacking( $enable = true ) {
888 $this->preventClickjacking = $enable;
889 }
890
891 /**
892 * Get the "prevent clickjacking" flag
893 * @return bool
894 */
895 function getPreventClickjacking() {
896 return $this->preventClickjacking;
897 }
898
899 }