5 * Split off from Article.php and Skin.php, 2003-12-22
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.
14 * Construct it by passing in an Article, and call $h->history() to print the
18 class HistoryAction
extends FormlessAction
{
22 public function getName() {
26 public function requiresWrite() {
30 public function requiresUnblock() {
34 protected function getPageTitle() {
35 return $this->msg( 'history-title', $this->getTitle()->getPrefixedText() )->text();
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(),
44 array( 'page' => $this->getTitle()->getPrefixedText() )
49 * Get the Article object we are working on.
52 public function getArticle() {
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
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();
71 * Print the history page for an article.
74 global $wgScript, $wgUseFileCache, $wgSquidMaxage;
76 $out = $this->getOutput();
77 $request = $this->getRequest();
80 * Allow client caching.
82 if ( $out->checkLastModified( $this->page
->getTouched() ) ) {
83 return; // Client cache fresh and headers sent, nothing more to do.
86 wfProfileIn( __METHOD__
);
88 if ( $request->getFullRequestURL() == $this->getTitle()->getInternalURL( 'action=history' ) ) {
89 $out->setSquidMaxage( $wgSquidMaxage );
92 $this->preCacheMessages();
94 # Fill in the file cache if not set already
95 if ( $wgUseFileCache && HTMLFileCache
::useFileCache( $this->getContext() ) ) {
96 $cache = HTMLFileCache
::newFromTitle( $this->getTitle(), 'history' );
97 if ( !$cache->isCacheGood( /* Assume up to date */ ) ) {
98 ob_start( array( &$cache, 'saveToFileCache' ) );
102 // Setup page variables.
103 $out->setFeedAppendQuery( 'action=history' );
104 $out->addModules( array( 'mediawiki.legacy.history', 'mediawiki.action.history' ) );
106 // Handle atom/RSS feeds.
107 $feedType = $request->getVal( 'feed' );
109 $this->feed( $feedType );
110 wfProfileOut( __METHOD__
);
114 // Fail nicely if article doesn't exist.
115 if ( !$this->page
->exists() ) {
116 $out->addWikiMsg( 'nohistory' );
117 # show deletion/move log if there is an entry
118 LogEventsList
::showLogExtract(
120 array( 'delete', 'move' ),
124 'conds' => array( "log_action != 'revision'" ),
125 'showIfEmpty' => false,
126 'msgKey' => array( 'moveddeleted-notice' )
129 wfProfileOut( __METHOD__
);
134 * Add date selector to quickly get to a certain time
136 $year = $request->getInt( 'year' );
137 $month = $request->getInt( 'month' );
138 $tagFilter = $request->getVal( 'tagfilter' );
139 $tagSelector = ChangeTags
::buildTagFilterSelector( $tagFilter );
142 * Option to show only revisions that have been (partially) hidden via RevisionDelete
144 if ( $request->getBool( 'deleted' ) ) {
145 $conds = array( "rev_deleted != '0'" );
149 $checkDeleted = Xml
::checkLabel( $this->msg( 'history-show-deleted' )->text(),
150 'deleted', 'mw-show-deleted-only', $request->getBool( 'deleted' ) ) . "\n";
152 // Add the general form
153 $action = htmlspecialchars( $wgScript );
155 "<form action=\"$action\" method=\"get\" id=\"mw-history-searchform\">" .
157 $this->msg( 'history-fieldset-title' )->text(),
159 array( 'id' => 'mw-history-search' )
161 Html
::hidden( 'title', $this->getTitle()->getPrefixedDBKey() ) . "\n" .
162 Html
::hidden( 'action', 'history' ) . "\n" .
163 Xml
::dateMenu( $year, $month ) . ' ' .
164 ( $tagSelector ?
( implode( ' ', $tagSelector ) . ' ' ) : '' ) .
166 Xml
::submitButton( $this->msg( 'allpagessubmit' )->text() ) . "\n" .
170 wfRunHooks( 'PageHistoryBeforeList', array( &$this->page
) );
172 // Create and output the list.
173 $pager = new HistoryPager( $this, $year, $month, $tagFilter, $conds );
175 $pager->getNavigationBar() .
177 $pager->getNavigationBar()
179 $out->preventClickjacking( $pager->getPreventClickjacking() );
181 wfProfileOut( __METHOD__
);
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.
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
194 function fetchRevisions( $limit, $offset, $direction ) {
195 $dbr = wfGetDB( DB_SLAVE
);
197 if ( $direction == HistoryPage
::DIR_PREV
) {
198 list( $dirs, $oper ) = array( "ASC", ">=" );
199 } else { /* $direction == HistoryPage::DIR_NEXT */
200 list( $dirs, $oper ) = array( "DESC", "<=" );
204 $offsets = array( "rev_timestamp $oper '$offset'" );
209 $page_id = $this->page
->getId();
211 return $dbr->select( 'revision',
212 Revision
::selectFields(),
213 array_merge( array( "rev_page=$page_id" ), $offsets ),
215 array( 'ORDER BY' => "rev_timestamp $dirs",
216 'USE INDEX' => 'page_timestamp', 'LIMIT' => $limit )
221 * Output a subscription feed listing recent edits to this page.
223 * @param $type String: feed type
225 function feed( $type ) {
226 global $wgFeedClasses, $wgFeedLimit;
227 if ( !FeedUtils
::checkFeedOutput( $type ) ) {
230 $request = $this->getRequest();
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' )
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 ) {
245 $items = $this->fetchRevisions( $limit, 0, HistoryPage
::DIR_NEXT
);
247 // Generate feed elements enclosed between header and footer.
249 if ( $items->numRows() ) {
250 foreach ( $items as $row ) {
251 $feed->outItem( $this->feedItem( $row ) );
254 $feed->outItem( $this->feedEmpty() );
259 function feedEmpty() {
261 wfMsgForContent( 'nohistory' ),
262 $this->getOutput()->parse( wfMsgForContent( 'history-feed-empty' ) ),
263 $this->getTitle()->getFullUrl(),
264 wfTimestamp( TS_MW
),
266 $this->getTitle()->getTalkPage()->getFullUrl()
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).
275 * @param $row Object: database row
278 function feedItem( $row ) {
279 $rev = new Revision( $row );
280 $rev->setTitle( $this->getTitle() );
281 $text = FeedUtils
::formatDiffRow(
283 $this->getTitle()->getPreviousRevisionID( $rev->getId() ),
285 $rev->getTimestamp(),
288 if ( $rev->getComment() == '' ) {
290 $title = wfMsgForContent( 'history-feed-item-nocomment',
292 $wgContLang->timeanddate( $rev->getTimestamp() ),
293 $wgContLang->date( $rev->getTimestamp() ),
294 $wgContLang->time( $rev->getTimestamp() )
297 $title = $rev->getUserText() .
298 wfMsgForContent( 'colon-separator' ) .
299 FeedItem
::stripComment( $rev->getComment() );
304 $this->getTitle()->getFullUrl( 'diff=' . $rev->getId() . '&oldid=prev' ),
305 $rev->getTimestamp(),
307 $this->getTitle()->getTalkPage()->getFullUrl()
315 class HistoryPager
extends ReverseChronologicalPager
{
316 public $lastRow = false, $counter, $historyPage, $buttons, $conds;
317 protected $oldIdChecked;
318 protected $preventClickjacking = false;
322 protected $parentLens;
324 function __construct( $historyPage, $year = '', $month = '', $tagFilter = '', $conds = array() ) {
325 parent
::__construct( $historyPage->getContext() );
326 $this->historyPage
= $historyPage;
327 $this->tagFilter
= $tagFilter;
328 $this->getDateCond( $year, $month );
329 $this->conds
= $conds;
332 // For hook compatibility...
333 function getArticle() {
334 return $this->historyPage
->getArticle();
337 function getSqlComment() {
338 if ( $this->conds
) {
339 return 'history page filtered'; // potentially slow, see CR r58153
341 return 'history page unfiltered';
345 function getQueryInfo() {
347 'tables' => array( 'revision', 'user' ),
348 'fields' => array_merge( Revision
::selectFields(), Revision
::selectUserFields() ),
349 'conds' => array_merge(
350 array( 'rev_page' => $this->getWikiPage()->getId() ),
352 'options' => array( 'USE INDEX' => array( 'revision' => 'page_timestamp' ) ),
353 'join_conds' => array(
354 'user' => Revision
::userJoinCond(),
355 'tag_summary' => array( 'LEFT JOIN', 'ts_rev_id=rev_id' ) ),
357 ChangeTags
::modifyDisplayQuery(
358 $queryInfo['tables'],
359 $queryInfo['fields'],
361 $queryInfo['join_conds'],
362 $queryInfo['options'],
365 wfRunHooks( 'PageHistoryPager::getQueryInfo', array( &$this, &$queryInfo ) );
369 function getIndexField() {
370 return 'rev_timestamp';
373 function formatRow( $row ) {
374 if ( $this->lastRow
) {
375 $latest = ( $this->counter
== 1 && $this->mIsFirst
);
376 $firstInList = $this->counter
== 1;
378 $s = $this->historyLine( $this->lastRow
, $row,
379 $this->getTitle()->getNotificationTimestamp( $this->getUser() ), $latest, $firstInList );
383 $this->lastRow
= $row;
387 function doBatchLookups() {
388 # Do a link batch query
389 $this->mResult
->seek( 0 );
390 $batch = new LinkBatch();
392 foreach ( $this->mResult
as $row ) {
393 if( $row->rev_parent_id
) {
394 $revIds[] = $row->rev_parent_id
;
396 if( !is_null( $row->user_name
) ) {
397 $batch->add( NS_USER
, $row->user_name
);
398 $batch->add( NS_USER_TALK
, $row->user_name
);
399 } else { # for anons or usernames of imported revisions
400 $batch->add( NS_USER
, $row->rev_user_text
);
401 $batch->add( NS_USER_TALK
, $row->rev_user_text
);
404 $this->parentLens
= $this->getParentLengths( $revIds );
406 $this->mResult
->seek( 0 );
410 * Do a batched query to get the parent revision lengths
411 * @param $revIds array
413 * @TODO: stolen from Contributions, refactor
415 private function getParentLengths( array $revIds ) {
418 return $revLens; // empty
420 wfProfileIn( __METHOD__
);
421 $res = $this->mDb
->select( 'revision',
422 array( 'rev_id', 'rev_len' ),
423 array( 'rev_id' => $revIds ),
425 foreach ( $res as $row ) {
426 $revLens[$row->rev_id
] = $row->rev_len
;
428 wfProfileOut( __METHOD__
);
433 * Creates begin of history list with a submit button
435 * @return string HTML output
437 function getStartBody() {
439 $this->lastRow
= false;
441 $this->oldIdChecked
= 0;
443 $this->getOutput()->wrapWikiMsg( "<div class='mw-history-legend'>\n$1\n</div>", 'histlegend' );
444 $s = Html
::openElement( 'form', array( 'action' => $wgScript,
445 'id' => 'mw-history-compare' ) ) . "\n";
446 $s .= Html
::hidden( 'title', $this->getTitle()->getPrefixedDbKey() ) . "\n";
447 $s .= Html
::hidden( 'action', 'historysubmit' ) . "\n";
449 // Button container stored in $this->buttons for re-use in getEndBody()
450 $this->buttons
= '<div>';
451 $this->buttons
.= $this->submitButton( $this->msg( 'compareselectedversions' )->text(),
452 array( 'class' => 'historysubmit mw-history-compareselectedversions-button' )
453 + Linker
::tooltipAndAccesskeyAttribs( 'compareselectedversions' )
456 if ( $this->getUser()->isAllowed( 'deleterevision' ) ) {
457 $this->buttons
.= $this->getRevisionButton( 'revisiondelete', 'showhideselectedversions' );
459 $this->buttons
.= '</div>';
461 $s .= $this->buttons
;
462 $s .= '<ul id="pagehistory">' . "\n";
466 private function getRevisionButton( $name, $msg ) {
467 $this->preventClickjacking();
468 # Note bug #20966, <button> is non-standard in IE<8
469 $element = Html
::element( 'button',
474 'class' => "historysubmit mw-history-$name-button",
476 $this->msg( $msg )->text()
481 function getEndBody() {
482 if ( $this->lastRow
) {
483 $latest = $this->counter
== 1 && $this->mIsFirst
;
484 $firstInList = $this->counter
== 1;
485 if ( $this->mIsBackwards
) {
486 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
487 if ( $this->mOffset
== '' ) {
493 # The next row is the past-the-end row
494 $next = $this->mPastTheEndRow
;
497 $s = $this->historyLine( $this->lastRow
, $next,
498 $this->getTitle()->getNotificationTimestamp( $this->getUser() ), $latest, $firstInList );
503 # Add second buttons only if there is more than one rev
504 if ( $this->getNumRows() > 2 ) {
505 $s .= $this->buttons
;
512 * Creates a submit button
514 * @param $message String: text of the submit button, will be escaped
515 * @param $attributes Array: attributes
516 * @return String: HTML output for the submit button
518 function submitButton( $message, $attributes = array() ) {
519 # Disable submit button if history has 1 revision only
520 if ( $this->getNumRows() > 1 ) {
521 return Xml
::submitButton( $message , $attributes );
528 * Returns a row from the history printout.
530 * @todo document some more, and maybe clean up the code (some params redundant?)
532 * @param $row Object: the database row corresponding to the previous line.
533 * @param $next Mixed: the database row corresponding to the next line. (chronologically previous)
534 * @param $notificationtimestamp
535 * @param $latest Boolean: whether this row corresponds to the page's latest revision.
536 * @param $firstInList Boolean: whether this row corresponds to the first displayed on this history page.
537 * @return String: HTML output for the row
539 function historyLine( $row, $next, $notificationtimestamp = false,
540 $latest = false, $firstInList = false )
542 $rev = new Revision( $row );
543 $rev->setTitle( $this->getTitle() );
545 if ( is_object( $next ) ) {
546 $prevRev = new Revision( $next );
547 $prevRev->setTitle( $this->getTitle() );
552 $curlink = $this->curLink( $rev, $latest );
553 $lastlink = $this->lastLink( $rev, $next );
554 $diffButtons = $this->diffButtons( $rev, $firstInList );
555 $histLinks = Html
::rawElement(
557 array( 'class' => 'mw-history-histlinks' ),
558 $this->msg( 'parentheses' )->rawParams( $curlink . $this->historyPage
->message
['pipe-separator'] . $lastlink )->escaped()
560 $s = $histLinks . $diffButtons;
562 $link = $this->revLink( $rev );
566 $user = $this->getUser();
567 // Show checkboxes for each revision
568 if ( $user->isAllowed( 'deleterevision' ) ) {
569 $this->preventClickjacking();
570 // If revision was hidden from sysops, disable the checkbox
571 if ( !$rev->userCan( Revision
::DELETED_RESTRICTED
, $user ) ) {
572 $del = Xml
::check( 'deleterevisions', false, array( 'disabled' => 'disabled' ) );
573 // Otherwise, enable the checkbox...
575 $del = Xml
::check( 'showhiderevisions', false,
576 array( 'name' => 'ids[' . $rev->getId() . ']' ) );
578 // User can only view deleted revisions...
579 } elseif ( $rev->getVisibility() && $user->isAllowed( 'deletedhistory' ) ) {
580 // If revision was hidden from sysops, disable the link
581 if ( !$rev->userCan( Revision
::DELETED_RESTRICTED
, $user ) ) {
582 $cdel = Linker
::revDeleteLinkDisabled( false );
583 // Otherwise, show the link...
585 $query = array( 'type' => 'revision',
586 'target' => $this->getTitle()->getPrefixedDbkey(), 'ids' => $rev->getId() );
587 $del .= Linker
::revDeleteLink( $query,
588 $rev->isDeleted( Revision
::DELETED_RESTRICTED
), false );
595 $lang = $this->getLanguage();
596 $dirmark = $lang->getDirMark();
600 $s .= " <span class='history-user'>" .
601 Linker
::revUserTools( $rev, true ) . "</span>";
604 if ( $rev->isMinor() ) {
605 $s .= ' ' . ChangesList
::flag( 'minor' );
608 # Size is always public data
609 $prevSize = isset( $this->parentLens
[$row->rev_parent_id
] )
610 ?
$this->parentLens
[$row->rev_parent_id
]
612 $sDiff = ChangesList
::showCharacterDifference( $prevSize, $rev->getSize() );
613 $fSize = Linker
::formatRevisionSize($rev->getSize());
614 $s .= " . . $fSize $sDiff";
616 # Text following the character difference is added just before running hooks
617 $s2 = Linker
::revComment( $rev, false, true );
619 if ( $notificationtimestamp && ( $row->rev_timestamp
>= $notificationtimestamp ) ) {
620 $s2 .= ' <span class="updatedmarker">' . $this->msg( 'updatedmarker' )->escaped() . '</span>';
625 # Rollback and undo links
627 !count( $this->getTitle()->getUserPermissionsErrors( 'edit', $this->getUser() ) ) )
629 if ( $latest && !count( $this->getTitle()->getUserPermissionsErrors( 'rollback', $this->getUser() ) ) ) {
630 $this->preventClickjacking();
631 $tools[] = '<span class="mw-rollback-link">' .
632 Linker
::buildRollbackLink( $rev ) . '</span>';
635 if ( !$rev->isDeleted( Revision
::DELETED_TEXT
)
636 && !$prevRev->isDeleted( Revision
::DELETED_TEXT
) )
638 # Create undo tooltip for the first (=latest) line only
639 $undoTooltip = $latest
640 ?
array( 'title' => $this->msg( 'tooltip-undo' )->text() )
642 $undolink = Linker
::linkKnown(
644 $this->msg( 'editundo' )->escaped(),
648 'undoafter' => $prevRev->getId(),
649 'undo' => $rev->getId()
652 $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
657 $s2 .= ' '. $this->msg( 'parentheses' )->rawParams( $lang->pipeList( $tools ) )->escaped();
661 list( $tagSummary, $newClasses ) = ChangeTags
::formatSummaryRow( $row->ts_tags
, 'history' );
662 $classes = array_merge( $classes, $newClasses );
663 if ( $tagSummary !== '' ) {
664 $s2 .= " $tagSummary";
667 # Include separator between character difference and following text
672 wfRunHooks( 'PageHistoryLineEnding', array( $this, &$row , &$s, &$classes ) );
676 $attribs['class'] = implode( ' ', $classes );
679 return Xml
::tags( 'li', $attribs, $s ) . "\n";
683 * Create a link to view this revision of the page
685 * @param $rev Revision
688 function revLink( $rev ) {
689 $date = $this->getLanguage()->userTimeAndDate( $rev->getTimestamp(), $this->getUser() );
690 $date = htmlspecialchars( $date );
691 if ( $rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
692 $link = Linker
::linkKnown(
696 array( 'oldid' => $rev->getId() )
701 if ( $rev->isDeleted( Revision
::DELETED_TEXT
) ) {
702 $link = "<span class=\"history-deleted\">$link</span>";
708 * Create a diff-to-current link for this revision for this page
710 * @param $rev Revision
711 * @param $latest Boolean: this is the latest revision of the page?
714 function curLink( $rev, $latest ) {
715 $cur = $this->historyPage
->message
['cur'];
716 if ( $latest ||
!$rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
719 return Linker
::linkKnown(
724 'diff' => $this->getWikiPage()->getLatest(),
725 'oldid' => $rev->getId()
732 * Create a diff-to-previous link for this revision for this page.
734 * @param $prevRev Revision: the previous revision
735 * @param $next Mixed: the newer revision
738 function lastLink( $prevRev, $next ) {
739 $last = $this->historyPage
->message
['last'];
740 # $next may either be a Row, null, or "unkown"
741 $nextRev = is_object( $next ) ?
new Revision( $next ) : $next;
742 if ( is_null( $next ) ) {
743 # Probably no next row
745 } elseif ( $next === 'unknown' ) {
746 # Next row probably exists but is unknown, use an oldid=prev link
747 return Linker
::linkKnown(
752 'diff' => $prevRev->getId(),
756 } elseif ( !$prevRev->userCan( Revision
::DELETED_TEXT
, $this->getUser() )
757 ||
!$nextRev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) )
761 return Linker
::linkKnown(
766 'diff' => $prevRev->getId(),
767 'oldid' => $next->rev_id
774 * Create radio buttons for page history
776 * @param $rev Revision object
777 * @param $firstInList Boolean: is this version the first one?
779 * @return String: HTML output for the radio buttons
781 function diffButtons( $rev, $firstInList ) {
782 if ( $this->getNumRows() > 1 ) {
784 $radio = array( 'type' => 'radio', 'value' => $id );
785 /** @todo: move title texts to javascript */
786 if ( $firstInList ) {
787 $first = Xml
::element( 'input',
788 array_merge( $radio, array(
789 'style' => 'visibility:hidden',
791 'id' => 'mw-oldid-null' ) )
793 $checkmark = array( 'checked' => 'checked' );
795 # Check visibility of old revisions
796 if ( !$rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
797 $radio['disabled'] = 'disabled';
798 $checkmark = array(); // We will check the next possible one
799 } elseif ( !$this->oldIdChecked
) {
800 $checkmark = array( 'checked' => 'checked' );
801 $this->oldIdChecked
= $id;
803 $checkmark = array();
805 $first = Xml
::element( 'input',
806 array_merge( $radio, $checkmark, array(
808 'id' => "mw-oldid-$id" ) ) );
809 $checkmark = array();
811 $second = Xml
::element( 'input',
812 array_merge( $radio, $checkmark, array(
814 'id' => "mw-diff-$id" ) ) );
815 return $first . $second;
822 * This is called if a write operation is possible from the generated HTML
824 function preventClickjacking( $enable = true ) {
825 $this->preventClickjacking
= $enable;
829 * Get the "prevent clickjacking" flag
832 function getPreventClickjacking() {
833 return $this->preventClickjacking
;
838 * Backwards-compatibility alias
840 class HistoryPage
extends HistoryAction
{
841 public function __construct( Page
$article ) { # Just to make it public
842 parent
::__construct( $article );
845 public function history() {