85ff9944baab35040eaf95eb2cb81efbe45b3a6c
[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
436 $notifTimestamp = $this->getConfig()->get( 'ShowUpdatedMarker' )
437 ? $this->getTitle()->getNotificationTimestamp( $this->getUser() )
438 : false;
439
440 $s = $this->historyLine(
441 $this->lastRow, $row, $notifTimestamp, $latest, $firstInList );
442 } else {
443 $s = '';
444 }
445 $this->lastRow = $row;
446
447 return $s;
448 }
449
450 function doBatchLookups() {
451 # Do a link batch query
452 $this->mResult->seek( 0 );
453 $batch = new LinkBatch();
454 $revIds = array();
455 foreach ( $this->mResult as $row ) {
456 if ( $row->rev_parent_id ) {
457 $revIds[] = $row->rev_parent_id;
458 }
459 if ( !is_null( $row->user_name ) ) {
460 $batch->add( NS_USER, $row->user_name );
461 $batch->add( NS_USER_TALK, $row->user_name );
462 } else { # for anons or usernames of imported revisions
463 $batch->add( NS_USER, $row->rev_user_text );
464 $batch->add( NS_USER_TALK, $row->rev_user_text );
465 }
466 }
467 $this->parentLens = Revision::getParentLengths( $this->mDb, $revIds );
468 $batch->execute();
469 $this->mResult->seek( 0 );
470 }
471
472 /**
473 * Creates begin of history list with a submit button
474 *
475 * @return string HTML output
476 */
477 function getStartBody() {
478 $this->lastRow = false;
479 $this->counter = 1;
480 $this->oldIdChecked = 0;
481
482 $this->getOutput()->wrapWikiMsg( "<div class='mw-history-legend'>\n$1\n</div>", 'histlegend' );
483 $s = Html::openElement( 'form', array( 'action' => wfScript(),
484 'id' => 'mw-history-compare' ) ) . "\n";
485 $s .= Html::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n";
486 $s .= Html::hidden( 'action', 'historysubmit' ) . "\n";
487
488 // Button container stored in $this->buttons for re-use in getEndBody()
489 $this->buttons = '<div>';
490 $className = 'historysubmit mw-history-compareselectedversions-button';
491 $attrs = array( 'class' => $className )
492 + Linker::tooltipAndAccesskeyAttribs( 'compareselectedversions' );
493 $this->buttons .= $this->submitButton( $this->msg( 'compareselectedversions' )->text(),
494 $attrs
495 ) . "\n";
496
497 if ( $this->getUser()->isAllowed( 'deleterevision' ) ) {
498 $this->buttons .= $this->getRevisionButton( 'revisiondelete', 'showhideselectedversions' );
499 }
500 $this->buttons .= '</div>';
501
502 $s .= $this->buttons;
503 $s .= '<ul id="pagehistory">' . "\n";
504
505 return $s;
506 }
507
508 private function getRevisionButton( $name, $msg ) {
509 $this->preventClickjacking();
510 # Note bug #20966, <button> is non-standard in IE<8
511 $element = Html::element(
512 'button',
513 array(
514 'type' => 'submit',
515 'name' => $name,
516 'value' => '1',
517 'class' => "historysubmit mw-history-$name-button",
518 ),
519 $this->msg( $msg )->text()
520 ) . "\n";
521 return $element;
522 }
523
524 function getEndBody() {
525 if ( $this->lastRow ) {
526 $latest = $this->counter == 1 && $this->mIsFirst;
527 $firstInList = $this->counter == 1;
528 if ( $this->mIsBackwards ) {
529 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
530 if ( $this->mOffset == '' ) {
531 $next = null;
532 } else {
533 $next = 'unknown';
534 }
535 } else {
536 # The next row is the past-the-end row
537 $next = $this->mPastTheEndRow;
538 }
539 $this->counter++;
540
541 $notifTimestamp = $this->getConfig()->get( 'ShowUpdatedMarker' )
542 ? $this->getTitle()->getNotificationTimestamp( $this->getUser() )
543 : false;
544
545 $s = $this->historyLine(
546 $this->lastRow, $next, $notifTimestamp, $latest, $firstInList );
547 } else {
548 $s = '';
549 }
550 $s .= "</ul>\n";
551 # Add second buttons only if there is more than one rev
552 if ( $this->getNumRows() > 2 ) {
553 $s .= $this->buttons;
554 }
555 $s .= '</form>';
556
557 return $s;
558 }
559
560 /**
561 * Creates a submit button
562 *
563 * @param string $message Text of the submit button, will be escaped
564 * @param array $attributes Attributes
565 * @return string HTML output for the submit button
566 */
567 function submitButton( $message, $attributes = array() ) {
568 # Disable submit button if history has 1 revision only
569 if ( $this->getNumRows() > 1 ) {
570 return Html::submitButton( $message, $attributes );
571 } else {
572 return '';
573 }
574 }
575
576 /**
577 * Returns a row from the history printout.
578 *
579 * @todo document some more, and maybe clean up the code (some params redundant?)
580 *
581 * @param stdClass $row The database row corresponding to the previous line.
582 * @param mixed $next The database row corresponding to the next line
583 * (chronologically previous)
584 * @param bool|string $notificationtimestamp
585 * @param bool $latest Whether this row corresponds to the page's latest revision.
586 * @param bool $firstInList Whether this row corresponds to the first
587 * displayed on this history page.
588 * @return string HTML output for the row
589 */
590 function historyLine( $row, $next, $notificationtimestamp = false,
591 $latest = false, $firstInList = false ) {
592 $rev = new Revision( $row );
593 $rev->setTitle( $this->getTitle() );
594
595 if ( is_object( $next ) ) {
596 $prevRev = new Revision( $next );
597 $prevRev->setTitle( $this->getTitle() );
598 } else {
599 $prevRev = null;
600 }
601
602 $curlink = $this->curLink( $rev, $latest );
603 $lastlink = $this->lastLink( $rev, $next );
604 $curLastlinks = $curlink . $this->historyPage->message['pipe-separator'] . $lastlink;
605 $histLinks = Html::rawElement(
606 'span',
607 array( 'class' => 'mw-history-histlinks' ),
608 $this->msg( 'parentheses' )->rawParams( $curLastlinks )->escaped()
609 );
610
611 $diffButtons = $this->diffButtons( $rev, $firstInList );
612 $s = $histLinks . $diffButtons;
613
614 $link = $this->revLink( $rev );
615 $classes = array();
616
617 $del = '';
618 $user = $this->getUser();
619 // Show checkboxes for each revision
620 if ( $user->isAllowed( 'deleterevision' ) ) {
621 $this->preventClickjacking();
622 // If revision was hidden from sysops, disable the checkbox
623 if ( !$rev->userCan( Revision::DELETED_RESTRICTED, $user ) ) {
624 $del = Xml::check( 'deleterevisions', false, array( 'disabled' => 'disabled' ) );
625 // Otherwise, enable the checkbox...
626 } else {
627 $del = Xml::check( 'showhiderevisions', false,
628 array( 'name' => 'ids[' . $rev->getId() . ']' ) );
629 }
630 // User can only view deleted revisions...
631 } elseif ( $rev->getVisibility() && $user->isAllowed( 'deletedhistory' ) ) {
632 // If revision was hidden from sysops, disable the link
633 if ( !$rev->userCan( Revision::DELETED_RESTRICTED, $user ) ) {
634 $del = Linker::revDeleteLinkDisabled( false );
635 // Otherwise, show the link...
636 } else {
637 $query = array( 'type' => 'revision',
638 'target' => $this->getTitle()->getPrefixedDBkey(), 'ids' => $rev->getId() );
639 $del .= Linker::revDeleteLink( $query,
640 $rev->isDeleted( Revision::DELETED_RESTRICTED ), false );
641 }
642 }
643 if ( $del ) {
644 $s .= " $del ";
645 }
646
647 $lang = $this->getLanguage();
648 $dirmark = $lang->getDirMark();
649
650 $s .= " $link";
651 $s .= $dirmark;
652 $s .= " <span class='history-user'>" .
653 Linker::revUserTools( $rev, true ) . "</span>";
654 $s .= $dirmark;
655
656 if ( $rev->isMinor() ) {
657 $s .= ' ' . ChangesList::flag( 'minor' );
658 }
659
660 # Sometimes rev_len isn't populated
661 if ( $rev->getSize() !== null ) {
662 # Size is always public data
663 $prevSize = isset( $this->parentLens[$row->rev_parent_id] )
664 ? $this->parentLens[$row->rev_parent_id]
665 : 0;
666 $sDiff = ChangesList::showCharacterDifference( $prevSize, $rev->getSize() );
667 $fSize = Linker::formatRevisionSize( $rev->getSize() );
668 $s .= ' <span class="mw-changeslist-separator">. .</span> ' . "$fSize $sDiff";
669 }
670
671 # Text following the character difference is added just before running hooks
672 $s2 = Linker::revComment( $rev, false, true );
673
674 if ( $notificationtimestamp && ( $row->rev_timestamp >= $notificationtimestamp ) ) {
675 $s2 .= ' <span class="updatedmarker">' . $this->msg( 'updatedmarker' )->escaped() . '</span>';
676 $classes[] = 'mw-history-line-updated';
677 }
678
679 $tools = array();
680
681 # Rollback and undo links
682 if ( $prevRev && $this->getTitle()->quickUserCan( 'edit', $user ) ) {
683 if ( $latest && $this->getTitle()->quickUserCan( 'rollback', $user ) ) {
684 // Get a rollback link without the brackets
685 $rollbackLink = Linker::generateRollback(
686 $rev,
687 $this->getContext(),
688 array( 'verify', 'noBrackets' )
689 );
690 if ( $rollbackLink ) {
691 $this->preventClickjacking();
692 $tools[] = $rollbackLink;
693 }
694 }
695
696 if ( !$rev->isDeleted( Revision::DELETED_TEXT )
697 && !$prevRev->isDeleted( Revision::DELETED_TEXT )
698 ) {
699 # Create undo tooltip for the first (=latest) line only
700 $undoTooltip = $latest
701 ? array( 'title' => $this->msg( 'tooltip-undo' )->text() )
702 : array();
703 $undolink = Linker::linkKnown(
704 $this->getTitle(),
705 $this->msg( 'editundo' )->escaped(),
706 $undoTooltip,
707 array(
708 'action' => 'edit',
709 'undoafter' => $prevRev->getId(),
710 'undo' => $rev->getId()
711 )
712 );
713 $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
714 }
715 }
716 // Allow extension to add their own links here
717 Hooks::run( 'HistoryRevisionTools', array( $rev, &$tools ) );
718
719 if ( $tools ) {
720 $s2 .= ' ' . $this->msg( 'parentheses' )->rawParams( $lang->pipeList( $tools ) )->escaped();
721 }
722
723 # Tags
724 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow( $row->ts_tags, 'history' );
725 $classes = array_merge( $classes, $newClasses );
726 if ( $tagSummary !== '' ) {
727 $s2 .= " $tagSummary";
728 }
729
730 # Include separator between character difference and following text
731 if ( $s2 !== '' ) {
732 $s .= ' <span class="mw-changeslist-separator">. .</span> ' . $s2;
733 }
734
735 Hooks::run( 'PageHistoryLineEnding', array( $this, &$row, &$s, &$classes ) );
736
737 $attribs = array();
738 if ( $classes ) {
739 $attribs['class'] = implode( ' ', $classes );
740 }
741
742 return Xml::tags( 'li', $attribs, $s ) . "\n";
743 }
744
745 /**
746 * Create a link to view this revision of the page
747 *
748 * @param Revision $rev
749 * @return string
750 */
751 function revLink( $rev ) {
752 $date = $this->getLanguage()->userTimeAndDate( $rev->getTimestamp(), $this->getUser() );
753 $date = htmlspecialchars( $date );
754 if ( $rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
755 $link = Linker::linkKnown(
756 $this->getTitle(),
757 $date,
758 array( 'class' => 'mw-changeslist-date' ),
759 array( 'oldid' => $rev->getId() )
760 );
761 } else {
762 $link = $date;
763 }
764 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
765 $link = "<span class=\"history-deleted\">$link</span>";
766 }
767
768 return $link;
769 }
770
771 /**
772 * Create a diff-to-current link for this revision for this page
773 *
774 * @param Revision $rev
775 * @param bool $latest This is the latest revision of the page?
776 * @return string
777 */
778 function curLink( $rev, $latest ) {
779 $cur = $this->historyPage->message['cur'];
780 if ( $latest || !$rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
781 return $cur;
782 } else {
783 return Linker::linkKnown(
784 $this->getTitle(),
785 $cur,
786 array(),
787 array(
788 'diff' => $this->getWikiPage()->getLatest(),
789 'oldid' => $rev->getId()
790 )
791 );
792 }
793 }
794
795 /**
796 * Create a diff-to-previous link for this revision for this page.
797 *
798 * @param Revision $prevRev The revision being displayed
799 * @param stdClass|string|null $next The next revision in list (that is
800 * the previous one in chronological order).
801 * May either be a row, "unknown" or null.
802 * @return string
803 */
804 function lastLink( $prevRev, $next ) {
805 $last = $this->historyPage->message['last'];
806
807 if ( $next === null ) {
808 # Probably no next row
809 return $last;
810 }
811
812 if ( $next === 'unknown' ) {
813 # Next row probably exists but is unknown, use an oldid=prev link
814 return Linker::linkKnown(
815 $this->getTitle(),
816 $last,
817 array(),
818 array(
819 'diff' => $prevRev->getId(),
820 'oldid' => 'prev'
821 )
822 );
823 }
824
825 $nextRev = new Revision( $next );
826
827 if ( !$prevRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
828 || !$nextRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
829 ) {
830 return $last;
831 }
832
833 return Linker::linkKnown(
834 $this->getTitle(),
835 $last,
836 array(),
837 array(
838 'diff' => $prevRev->getId(),
839 'oldid' => $next->rev_id
840 )
841 );
842 }
843
844 /**
845 * Create radio buttons for page history
846 *
847 * @param Revision $rev
848 * @param bool $firstInList Is this version the first one?
849 *
850 * @return string HTML output for the radio buttons
851 */
852 function diffButtons( $rev, $firstInList ) {
853 if ( $this->getNumRows() > 1 ) {
854 $id = $rev->getId();
855 $radio = array( 'type' => 'radio', 'value' => $id );
856 /** @todo Move title texts to javascript */
857 if ( $firstInList ) {
858 $first = Xml::element( 'input',
859 array_merge( $radio, array(
860 'style' => 'visibility:hidden',
861 'name' => 'oldid',
862 'id' => 'mw-oldid-null' ) )
863 );
864 $checkmark = array( 'checked' => 'checked' );
865 } else {
866 # Check visibility of old revisions
867 if ( !$rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
868 $radio['disabled'] = 'disabled';
869 $checkmark = array(); // We will check the next possible one
870 } elseif ( !$this->oldIdChecked ) {
871 $checkmark = array( 'checked' => 'checked' );
872 $this->oldIdChecked = $id;
873 } else {
874 $checkmark = array();
875 }
876 $first = Xml::element( 'input',
877 array_merge( $radio, $checkmark, array(
878 'name' => 'oldid',
879 'id' => "mw-oldid-$id" ) ) );
880 $checkmark = array();
881 }
882 $second = Xml::element( 'input',
883 array_merge( $radio, $checkmark, array(
884 'name' => 'diff',
885 'id' => "mw-diff-$id" ) ) );
886
887 return $first . $second;
888 } else {
889 return '';
890 }
891 }
892
893 /**
894 * This is called if a write operation is possible from the generated HTML
895 * @param bool $enable
896 */
897 function preventClickjacking( $enable = true ) {
898 $this->preventClickjacking = $enable;
899 }
900
901 /**
902 * Get the "prevent clickjacking" flag
903 * @return bool
904 */
905 function getPreventClickjacking() {
906 return $this->preventClickjacking;
907 }
908
909 }