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