5 * Split off from Article.php and Skin.php, 2003-12-22
10 define('DIR_NEXT', 1);
13 * This class handles printing the history page for an article. In order to
14 * be efficient, it uses timestamps rather than offsets for paging, to avoid
15 * costly LIMIT,offset queries.
17 * Construct it by passing in an Article, and call $h->history() to print the
24 var $mArticle, $mTitle, $mSkin;
27 var $mNotificationTimestamp;
28 var $mLatestId = null;
31 * Construct a new PageHistory.
33 * @param Article $article
36 function PageHistory($article) {
39 $this->mArticle
=& $article;
40 $this->mTitle
=& $article->mTitle
;
41 $this->mNotificationTimestamp
= NULL;
42 $this->mSkin
= $wgUser->getSkin();
44 $this->defaultLimit
= 50;
48 * Print the history page for an article.
53 global $wgOut, $wgRequest, $wgTitle;
56 * Allow client caching.
59 if( $wgOut->checkLastModified( $this->mArticle
->getTimestamp() ) )
60 /* Client cache fresh and headers sent, nothing more to do. */
63 $fname = 'PageHistory::history';
64 wfProfileIn( $fname );
67 * Setup page variables.
69 $wgOut->setPageTitle( $this->mTitle
->getPrefixedText() );
70 $wgOut->setSubtitle( wfMsg( 'revhistory' ) );
71 $wgOut->setArticleFlag( false );
72 $wgOut->setArticleRelated( true );
73 $wgOut->setRobotpolicy( 'noindex,nofollow' );
76 * Fail if article doesn't exist.
78 if( !$this->mTitle
->exists() ) {
79 $wgOut->addWikiText( wfMsg( 'nohistory' ) );
80 wfProfileOut( $fname );
84 $dbr =& wfGetDB(DB_SLAVE
);
87 * Extract limit, the number of revisions to show, and
88 * offset, the timestamp to begin at, from the URL.
90 $limit = $wgRequest->getInt('limit', $this->defaultLimit
);
91 $offset = $wgRequest->getText('offset');
93 /* Offset must be an integral. */
94 if (!strlen($offset) ||
!preg_match("/^[0-9]+$/", $offset))
96 # $offset = $dbr->timestamp($offset);
97 $dboffset = $offset === 0 ?
0 : $dbr->timestamp($offset);
99 * "go=last" means to jump to the last history page.
101 if (($gowhere = $wgRequest->getText("go")) !== NULL) {
104 if (($lastid = $this->getLastOffsetForPaging($this->mTitle
->getArticleID(), $limit)) === NULL)
106 $gourl = $wgTitle->getLocalURL("action=history&limit={$limit}&offset=".
107 wfTimestamp(TS_MW
, $lastid));
113 if (!is_null($gourl)) {
114 $wgOut->redirect($gourl);
122 * If the user clicked "previous", we retrieve the revisions backwards,
123 * then reverse them. This is to avoid needing to know the timestamp of
124 * previous revisions when generating the URL.
126 $direction = $this->getDirection();
127 $revisions = $this->fetchRevisions($limit, $dboffset, $direction);
128 $navbar = $this->makeNavbar($revisions, $offset, $limit, $direction);
131 * We fetch one more revision than needed to get the timestamp of the
132 * one after this page (and to know if it exists).
134 * linesonpage stores the actual number of lines.
136 if (count($revisions) < $limit +
1)
137 $this->linesonpage
= count($revisions);
139 $this->linesonpage
= count($revisions) - 1;
141 /* Un-reverse revisions */
142 if ($direction == DIR_PREV
)
143 $revisions = array_reverse($revisions);
146 * Print the top navbar.
149 $s .= $this->beginHistoryList();
153 * Print each revision, excluding the one-past-the-end, if any.
155 foreach (array_slice($revisions, 0, $limit) as $i => $line) {
156 $latest = !$i && $offset == 0;
158 $next = isset( $revisions[$i +
1] ) ?
$revisions[$i +
1 ] : null;
159 $s .= $this->historyLine($line, $next, $counter, $this->getNotificationTimestamp(), $latest, $firstInList);
166 $s .= $this->endHistoryList();
169 $wgOut->addHTML( $s );
170 wfProfileOut( $fname );
173 /** @todo document */
174 function beginHistoryList() {
176 $this->lastdate
= '';
177 $s = wfMsgWikiHtml( 'histlegend' );
178 $s .= '<form action="' . $wgTitle->escapeLocalURL( '-' ) . '" method="get">';
179 $prefixedkey = htmlspecialchars($wgTitle->getPrefixedDbKey());
181 // The following line is SUPPOSED to have double-quotes around the
182 // $prefixedkey variable, because htmlspecialchars() doesn't escape
185 // On at least two occasions people have changed it to single-quotes,
186 // which creates invalid HTML and incorrect display of the resulting
189 // Please do not break this a third time. Thank you for your kind
190 // consideration and cooperation.
192 $s .= "<input type='hidden' name='title' value=\"{$prefixedkey}\" />\n";
194 $s .= $this->submitButton();
195 $s .= '<ul id="pagehistory">' . "\n";
199 /** @todo document */
200 function endHistoryList() {
201 $last = wfMsg( 'last' );
204 $s .= $this->submitButton( array( 'id' => 'historysubmit' ) );
209 /** @todo document */
210 function submitButton( $bits = array() ) {
211 return ( $this->linesonpage
> 0 )
212 ?
wfElement( 'input', array_merge( $bits,
214 'class' => 'historysubmit',
216 'accesskey' => wfMsgHtml( 'accesskey-compareselectedversions' ),
217 'title' => wfMsgHtml( 'tooltip-compareselectedversions' ),
218 'value' => wfMsgHtml( 'compareselectedversions' ),
223 /** @todo document */
224 function historyLine( $row, $next, $counter = '', $notificationtimestamp = false, $latest = false, $firstInList = false ) {
226 $rev = new Revision( $row );
229 $curlink = $this->curLink( $rev, $latest );
230 $lastlink = $this->lastLink( $rev, $next, $counter );
231 $arbitrary = $this->diffButtons( $rev, $firstInList, $counter );
232 $link = $this->revLink( $rev );
233 $user = $this->mSkin
->revUserLink( $rev );
235 $s .= "($curlink) ($lastlink) $arbitrary";
237 if( $wgUser->isAllowed( 'deleterevision' ) ) {
238 $revdel = Title
::makeTitle( NS_SPECIAL
, 'Revisiondelete' );
240 // We don't currently handle well changing the top revision's settings
241 $del = wfMsgHtml( 'rev-delundel' );
243 $del = $this->mSkin
->makeKnownLinkObj( $revdel,
244 wfMsg( 'rev-delundel' ),
245 'target=' . urlencode( $this->mTitle
->getPrefixedDbkey() ) .
246 '&oldid=' . urlencode( $rev->getId() ) );
248 $s .= "(<small>$del</small>) ";
251 $s .= " $link <span class='history-user'>$user</span>";
253 if( $row->rev_minor_edit
) {
254 $s .= ' ' . wfElement( 'span', array( 'class' => 'minor' ), wfMsgHtml( 'minoreditletter') );
257 $s .= $this->mSkin
->revComment( $rev );
258 if ($notificationtimestamp && ($row->rev_timestamp
>= $notificationtimestamp)) {
259 $s .= ' <span class="updatedmarker">' . wfMsgHtml( 'updatedmarker' ) . '</span>';
261 if( $row->rev_deleted
& MW_REV_DELETED_TEXT
) {
262 $s .= ' ' . wfMsgHtml( 'deletedrev' );
269 /** @todo document */
270 function revLink( $rev ) {
272 $date = $wgLang->timeanddate( wfTimestamp(TS_MW
, $rev->getTimestamp()), true );
273 if( $rev->userCan( MW_REV_DELETED_TEXT
) ) {
274 $link = $this->mSkin
->makeKnownLinkObj(
275 $this->mTitle
, $date, "oldid=" . $rev->getId() );
279 if( $rev->isDeleted( MW_REV_DELETED_TEXT
) ) {
280 return '<span class="history-deleted">' . $link . '</span>';
285 /** @todo document */
286 function curLink( $rev, $latest ) {
287 $cur = wfMsgHtml( 'cur' );
288 if( $latest ||
!$rev->userCan( MW_REV_DELETED_TEXT
) ) {
291 return $this->mSkin
->makeKnownLinkObj(
293 'diff=' . $this->getLatestID() .
294 "&oldid=" . $rev->getId() );
298 /** @todo document */
299 function lastLink( $rev, $next, $counter ) {
300 $last = htmlspecialchars( wfMsg( 'last' ) );
301 if( is_null( $next ) ) {
302 if( $rev->getTimestamp() == $this->getEarliestOffset() ) {
305 // Cut off by paging; there are more behind us...
306 return $this->mSkin
->makeKnownLinkObj(
309 "diff=" . $rev->getId() . "&oldid=prev" );
311 } elseif( !$rev->userCan( MW_REV_DELETED_TEXT
) ) {
314 return $this->mSkin
->makeKnownLinkObj(
317 "diff=" . $rev->getId() . "&oldid={$next->rev_id}"
321 "tabindex={$counter}"*/ );
325 /** @todo document */
326 function diffButtons( $rev, $firstInList, $counter ) {
327 if( $this->linesonpage
> 1) {
330 'value' => $rev->getId(),
331 # do we really need to flood this on every item?
332 # 'title' => wfMsgHtml( 'selectolderversionfordiff' )
335 if( !$rev->userCan( MW_REV_DELETED_TEXT
) ) {
336 $radio['disabled'] = 'disabled';
339 /** @todo: move title texts to javascript */
340 if ( $firstInList ) {
341 $first = wfElement( 'input', array_merge(
344 'style' => 'visibility:hidden',
345 'name' => 'oldid' ) ) );
346 $checkmark = array( 'checked' => 'checked' );
348 if( $counter == 2 ) {
349 $checkmark = array( 'checked' => 'checked' );
351 $checkmark = array();
353 $first = wfElement( 'input', array_merge(
356 array( 'name' => 'oldid' ) ) );
357 $checkmark = array();
359 $second = wfElement( 'input', array_merge(
362 array( 'name' => 'diff' ) ) );
363 return $first . $second;
369 /** @todo document */
370 function getLatestOffset( $id = null ) {
371 if ( $id === null) $id = $this->mTitle
->getArticleID();
372 return $this->getExtremeOffset( $id, 'max' );
375 /** @todo document */
376 function getEarliestOffset( $id = null ) {
377 if ( $id === null) $id = $this->mTitle
->getArticleID();
378 return $this->getExtremeOffset( $id, 'min' );
381 /** @todo document */
382 function getExtremeOffset( $id, $func ) {
383 $db =& wfGetDB(DB_SLAVE
);
384 return $db->selectField( 'revision',
385 "$func(rev_timestamp)",
386 array( 'rev_page' => $id ),
387 'PageHistory::getExtremeOffset' );
390 /** @todo document */
391 function getLatestId() {
392 if( is_null( $this->mLatestId
) ) {
393 $id = $this->mTitle
->getArticleID();
394 $db =& wfGetDB(DB_SLAVE
);
395 $this->mLatestId
= $db->selectField( 'revision',
397 array( 'rev_page' => $id ),
398 'PageHistory::getLatestID' );
400 return $this->mLatestId
;
403 /** @todo document */
404 function getLastOffsetForPaging( $id, $step ) {
405 $fname = 'PageHistory::getLastOffsetForPaging';
407 $dbr =& wfGetDB(DB_SLAVE
);
413 array('ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => $step));
415 $n = $dbr->numRows( $res );
417 while( $obj = $dbr->fetchObject( $res ) ) {
418 $last = $obj->rev_timestamp
;
420 $dbr->freeResult( $res );
425 * @return returns the direction of browsing watchlist
427 function getDirection() {
429 if ($wgRequest->getText("dir") == "prev")
435 /** @todo document */
436 function fetchRevisions($limit, $offset, $direction) {
437 $fname = 'PageHistory::fetchRevisions';
439 $dbr =& wfGetDB( DB_SLAVE
);
441 if ($direction == DIR_PREV
)
442 list($dirs, $oper) = array("ASC", ">=");
443 else /* $direction == DIR_NEXT */
444 list($dirs, $oper) = array("DESC", "<=");
447 $offsets = array("rev_timestamp $oper '$offset'");
451 $page_id = $this->mTitle
->getArticleID();
455 array('rev_id', 'rev_page', 'rev_text_id', 'rev_user', 'rev_comment', 'rev_user_text',
456 'rev_timestamp', 'rev_minor_edit', 'rev_deleted'),
457 array_merge(array("rev_page=$page_id"), $offsets),
459 array('ORDER BY' => "rev_timestamp $dirs",
460 'USE INDEX' => 'page_timestamp', 'LIMIT' => $limit)
464 while (($obj = $dbr->fetchObject($res)) != NULL)
470 /** @todo document */
471 function getNotificationTimestamp() {
472 global $wgUser, $wgShowUpdatedMarker;
473 $fname = 'PageHistory::getNotficationTimestamp';
475 if ($this->mNotificationTimestamp
!== NULL)
476 return $this->mNotificationTimestamp
;
478 if ($wgUser->isAnon() ||
!$wgShowUpdatedMarker)
479 return $this->mNotificationTimestamp
= false;
481 $dbr =& wfGetDB(DB_SLAVE
);
483 $this->mNotificationTimestamp
= $dbr->selectField(
485 'wl_notificationtimestamp',
486 array( 'wl_namespace' => $this->mTitle
->getNamespace(),
487 'wl_title' => $this->mTitle
->getDBkey(),
488 'wl_user' => $wgUser->getID()
492 return $this->mNotificationTimestamp
;
495 /** @todo document */
496 function makeNavbar($revisions, $offset, $limit, $direction) {
499 $revisions = array_slice($revisions, 0, $limit);
501 $latestTimestamp = wfTimestamp(TS_MW
, $this->getLatestOffset());
502 $earliestTimestamp = wfTimestamp(TS_MW
, $this->getEarliestOffset());
505 * When we're displaying previous revisions, we need to reverse
506 * the array, because it's queried in reverse order.
508 if ($direction == DIR_PREV
)
509 $revisions = array_reverse($revisions);
512 * lowts is the timestamp of the first revision on this page.
513 * hights is the timestamp of the last revision.
516 $lowts = $hights = 0;
518 if( count( $revisions ) ) {
519 $latestShown = wfTimestamp(TS_MW
, $revisions[0]->rev_timestamp
);
520 $earliestShown = wfTimestamp(TS_MW
, $revisions[count($revisions) - 1]->rev_timestamp
);
523 /* Don't announce the limit everywhere if it's the default */
524 $usefulLimit = $limit == $this->defaultLimit ?
'' : $limit;
527 foreach (array(20, 50, 100, 250, 500) as $num) {
528 $urls[] = $this->MakeLink( $wgLang->formatNum($num),
529 array('offset' => $offset == 0 ?
'' : wfTimestamp(TS_MW
, $offset), 'limit' => $num, ) );
532 $bits = implode($urls, ' | ');
534 wfDebug("latestShown=$latestShown latestTimestamp=$latestTimestamp\n");
535 if( $latestShown < $latestTimestamp ) {
536 $prevtext = $this->MakeLink( wfMsgHtml("prevn", $limit),
537 array( 'dir' => 'prev', 'offset' => $latestShown, 'limit' => $usefulLimit ) );
538 $lasttext = $this->MakeLink( wfMsgHtml('histlast'),
539 array( 'limit' => $usefulLimit ) );
541 $prevtext = wfMsgHtml("prevn", $limit);
542 $lasttext = wfMsgHtml('histlast');
545 wfDebug("earliestShown=$earliestShown earliestTimestamp=$earliestTimestamp\n");
546 if( $earliestShown > $earliestTimestamp ) {
547 $nexttext = $this->MakeLink( wfMsgHtml("nextn", $limit),
548 array( 'offset' => $earliestShown, 'limit' => $usefulLimit ) );
549 $firsttext = $this->MakeLink( wfMsgHtml('histfirst'),
550 array( 'go' => 'first', 'limit' => $usefulLimit ) );
552 $nexttext = wfMsgHtml("nextn", $limit);
553 $firsttext = wfMsgHtml('histfirst');
556 $firstlast = "($lasttext | $firsttext)";
558 return "$firstlast " . wfMsgHtml("viewprevnext", $prevtext, $nexttext, $bits);
561 function MakeLink($text, $query = NULL) {
562 if ( $query === null ) return $text;
563 return $this->mSkin
->makeKnownLinkObj(
564 $this->mTitle
, $text,
565 wfArrayToCGI( $query, array( 'action' => 'history' )));