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