Add (undo) buttons onto page history, for people with rollback privilege only (that...
[lhc/web/wiklou.git] / includes / PageHistory.php
1 <?php
2 /**
3 * Page history
4 *
5 * Split off from Article.php and Skin.php, 2003-12-22
6 */
7
8 /**
9 * This class handles printing the history page for an article. In order to
10 * be efficient, it uses timestamps rather than offsets for paging, to avoid
11 * costly LIMIT,offset queries.
12 *
13 * Construct it by passing in an Article, and call $h->history() to print the
14 * history.
15 *
16 */
17 class PageHistory {
18 const DIR_PREV = 0;
19 const DIR_NEXT = 1;
20
21 var $mArticle, $mTitle, $mSkin;
22 var $lastdate;
23 var $linesonpage;
24 var $mNotificationTimestamp;
25 var $mLatestId = null;
26
27 /**
28 * Construct a new PageHistory.
29 *
30 * @param Article $article
31 * @returns nothing
32 */
33 function __construct($article) {
34 global $wgUser;
35
36 $this->mArticle =& $article;
37 $this->mTitle =& $article->mTitle;
38 $this->mNotificationTimestamp = NULL;
39 $this->mSkin = $wgUser->getSkin();
40 }
41
42 /**
43 * Print the history page for an article.
44 *
45 * @returns nothing
46 */
47 function history() {
48 global $wgOut, $wgRequest, $wgTitle;
49
50 /*
51 * Allow client caching.
52 */
53
54 if( $wgOut->checkLastModified( $this->mArticle->getTimestamp() ) )
55 /* Client cache fresh and headers sent, nothing more to do. */
56 return;
57
58 $fname = 'PageHistory::history';
59 wfProfileIn( $fname );
60
61 /*
62 * Setup page variables.
63 */
64 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
65 $wgOut->setArticleFlag( false );
66 $wgOut->setArticleRelated( true );
67 $wgOut->setRobotpolicy( 'noindex,nofollow' );
68 $wgOut->setSyndicated( true );
69
70 $logPage = SpecialPage::getTitleFor( 'Log' );
71 $logLink = $this->mSkin->makeKnownLinkObj( $logPage, wfMsgHtml( 'viewpagelogs' ), 'page=' . $this->mTitle->getPrefixedUrl() );
72
73 $subtitle = wfMsgHtml( 'revhistory' ) . '<br />' . $logLink;
74 $wgOut->setSubtitle( $subtitle );
75
76 $feedType = $wgRequest->getVal( 'feed' );
77 if( $feedType ) {
78 wfProfileOut( $fname );
79 return $this->feed( $feedType );
80 }
81
82 /*
83 * Fail if article doesn't exist.
84 */
85 if( !$this->mTitle->exists() ) {
86 $wgOut->addWikiText( wfMsg( 'nohistory' ) );
87 wfProfileOut( $fname );
88 return;
89 }
90
91
92 /*
93 * "go=first" means to jump to the last (earliest) history page.
94 * This is deprecated, it no longer appears in the user interface
95 */
96 if ( $wgRequest->getText("go") == 'first' ) {
97 $limit = $wgRequest->getInt( 'limit', 50 );
98 $wgOut->redirect( $wgTitle->getLocalURL( "action=history&limit={$limit}&dir=prev" ) );
99 return;
100 }
101
102 wfRunHooks( 'PageHistoryBeforeList', array( &$this->mArticle ) );
103
104 /**
105 * Do the list
106 */
107 $pager = new PageHistoryPager( $this );
108 $this->linesonpage = $pager->getNumRows();
109 $wgOut->addHTML(
110 $pager->getNavigationBar() .
111 $this->beginHistoryList() .
112 $pager->getBody() .
113 $this->endHistoryList() .
114 $pager->getNavigationBar()
115 );
116 wfProfileOut( $fname );
117 }
118
119 /** @todo document */
120 function beginHistoryList() {
121 global $wgTitle;
122 $this->lastdate = '';
123 $s = wfMsgExt( 'histlegend', array( 'parse') );
124 $s .= '<form action="' . $wgTitle->escapeLocalURL( '-' ) . '" method="get">';
125 $prefixedkey = htmlspecialchars($wgTitle->getPrefixedDbKey());
126
127 // The following line is SUPPOSED to have double-quotes around the
128 // $prefixedkey variable, because htmlspecialchars() doesn't escape
129 // single-quotes.
130 //
131 // On at least two occasions people have changed it to single-quotes,
132 // which creates invalid HTML and incorrect display of the resulting
133 // link.
134 //
135 // Please do not break this a third time. Thank you for your kind
136 // consideration and cooperation.
137 //
138 $s .= "<input type='hidden' name='title' value=\"{$prefixedkey}\" />\n";
139
140 $s .= $this->submitButton();
141 $s .= '<ul id="pagehistory">' . "\n";
142 return $s;
143 }
144
145 /** @todo document */
146 function endHistoryList() {
147 $s = '</ul>';
148 $s .= $this->submitButton( array( 'id' => 'historysubmit' ) );
149 $s .= '</form>';
150 return $s;
151 }
152
153 /** @todo document */
154 function submitButton( $bits = array() ) {
155 return ( $this->linesonpage > 0 )
156 ? wfElement( 'input', array_merge( $bits,
157 array(
158 'class' => 'historysubmit',
159 'type' => 'submit',
160 'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
161 'title' => wfMsg( 'tooltip-compareselectedversions' ).' ['.wfMsg( 'accesskey-compareselectedversions' ).']',
162 'value' => wfMsg( 'compareselectedversions' ),
163 ) ) )
164 : '';
165 }
166
167 /**
168 * Returns a row from the history printout.
169 *
170 * @todo document some more, and maybe clean up the code (some params redundant?)
171 *
172 * @param object $row The database row corresponding to the line (or is it the previous line?).
173 * @param object $next The database row corresponding to the next line (or is it this one?).
174 * @param int $counter Apparently a counter of what row number we're at, counted from the top row = 1.
175 * @param $notificationtimestamp
176 * @param bool $latest Whether this row corresponds to the page's latest revision.
177 * @param bool $firstInList Whether this row corresponds to the first displayed on this history page.
178 * @return string HTML output for the row
179 */
180 function historyLine( $row, $next, $counter = '', $notificationtimestamp = false, $latest = false, $firstInList = false ) {
181 global $wgUser, $wgLang;
182 $rev = new Revision( $row );
183 $rev->setTitle( $this->mTitle );
184
185 $s = '<li>';
186 $curlink = $this->curLink( $rev, $latest );
187 $lastlink = $this->lastLink( $rev, $next, $counter );
188 $arbitrary = $this->diffButtons( $rev, $firstInList, $counter );
189 $link = $this->revLink( $rev );
190
191 $user = $this->mSkin->userLink( $rev->getUser(), $rev->getUserText() )
192 . $this->mSkin->userToolLinks( $rev->getUser(), $rev->getUserText() );
193
194 $s .= "($curlink) ($lastlink) $arbitrary";
195
196 if( $wgUser->isAllowed( 'deleterevision' ) ) {
197 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
198 if( $firstInList ) {
199 // We don't currently handle well changing the top revision's settings
200 $del = wfMsgHtml( 'rev-delundel' );
201 } else if( !$rev->userCan( Revision::DELETED_RESTRICTED ) ) {
202 // If revision was hidden from sysops
203 $del = wfMsgHtml( 'rev-delundel' );
204 } else {
205 $del = $this->mSkin->makeKnownLinkObj( $revdel,
206 wfMsg( 'rev-delundel' ),
207 'target=' . urlencode( $this->mTitle->getPrefixedDbkey() ) .
208 '&oldid=' . urlencode( $rev->getId() ) );
209 }
210 $s .= " (<small>$del</small>) ";
211 }
212
213 $s .= " $link";
214 #getUser is safe, but this avoids making the invalid untargeted contribs links
215 if( $row->rev_deleted & Revision::DELETED_USER ) {
216 $user = '<span class="history-deleted">' . wfMsg('rev-deleted-user') . '</span>';
217 }
218 $s .= " <span class='history-user'>$user</span>";
219
220 if( $row->rev_minor_edit ) {
221 $s .= ' ' . wfElement( 'span', array( 'class' => 'minor' ), wfMsg( 'minoreditletter') );
222 }
223
224 if (!is_null($size = $rev->getSize())) {
225 if ($size == 0)
226 $stxt = wfMsgHtml('historyempty');
227 else
228 $stxt = wfMsgHtml('historysize', $wgLang->formatNum( $size ) );
229 $s .= " <span class=\"history-size\">$stxt</span>";
230 }
231
232 #getComment is safe, but this is better formatted
233 if( $rev->isDeleted( Revision::DELETED_COMMENT ) ) {
234 $s .= " <span class=\"history-deleted\"><span class=\"comment\">" .
235 wfMsgHtml( 'rev-deleted-comment' ) . "</span></span>";
236 } else {
237 $s .= $this->mSkin->revComment( $rev );
238 }
239
240 if ($notificationtimestamp && ($row->rev_timestamp >= $notificationtimestamp)) {
241 $s .= ' <span class="updatedmarker">' . wfMsgHtml( 'updatedmarker' ) . '</span>';
242 }
243 #add blurb about text having been deleted
244 if( $row->rev_deleted & Revision::DELETED_TEXT ) {
245 $s .= ' ' . wfMsgHtml( 'deletedrev' );
246 }
247 if( $wgUser->isAllowed( 'rollback' ) && $latest ) {
248 $s .= ' '.$this->mSkin->generateRollback( $rev );
249 }
250
251 if ( $wgUser->isAllowed( 'rollback' ) && !is_null($next)) {
252 $undolink = $this->mSkin->makeKnownLinkObj(
253 $this->mTitle, '('.htmlspecialchars( wfMsg( 'editundo' ) ).')',
254 'action=edit&undoafter=' . $next->rev_id . '&undo=' . $rev->getId(),
255 '', '', '', null );
256 $s .= ' <span class="mw-history-undo"> '."$undolink </span>";
257 }
258
259 wfRunHooks( 'PageHistoryLineEnding', array( &$row , &$s ) );
260
261 $s .= "</li>\n";
262
263 return $s;
264 }
265
266 /** @todo document */
267 function revLink( $rev ) {
268 global $wgLang;
269 $date = $wgLang->timeanddate( wfTimestamp(TS_MW, $rev->getTimestamp()), true );
270 if( $rev->userCan( Revision::DELETED_TEXT ) ) {
271 $link = $this->mSkin->makeKnownLinkObj(
272 $this->mTitle, $date, "oldid=" . $rev->getId() );
273 } else {
274 $link = $date;
275 }
276 if( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
277 return '<span class="history-deleted">' . $link . '</span>';
278 }
279 return $link;
280 }
281
282 /** @todo document */
283 function curLink( $rev, $latest ) {
284 $cur = wfMsgExt( 'cur', array( 'escape') );
285 if( $latest || !$rev->userCan( Revision::DELETED_TEXT ) ) {
286 return $cur;
287 } else {
288 return $this->mSkin->makeKnownLinkObj(
289 $this->mTitle, $cur,
290 'diff=' . $this->getLatestID() .
291 "&oldid=" . $rev->getId() );
292 }
293 }
294
295 /** @todo document */
296 function lastLink( $rev, $next, $counter ) {
297 $last = wfMsgExt( 'last', array( 'escape' ) );
298 if ( is_null( $next ) ) {
299 # Probably no next row
300 return $last;
301 } elseif ( $next === 'unknown' ) {
302 # Next row probably exists but is unknown, use an oldid=prev link
303 return $this->mSkin->makeKnownLinkObj(
304 $this->mTitle,
305 $last,
306 "diff=" . $rev->getId() . "&oldid=prev" );
307 } elseif( !$rev->userCan( Revision::DELETED_TEXT ) ) {
308 return $last;
309 } else {
310 return $this->mSkin->makeKnownLinkObj(
311 $this->mTitle,
312 $last,
313 "diff=" . $rev->getId() . "&oldid={$next->rev_id}"
314 /*,
315 '',
316 '',
317 "tabindex={$counter}"*/ );
318 }
319 }
320
321 /** @todo document */
322 function diffButtons( $rev, $firstInList, $counter ) {
323 if( $this->linesonpage > 1) {
324 $radio = array(
325 'type' => 'radio',
326 'value' => $rev->getId(),
327 # do we really need to flood this on every item?
328 # 'title' => wfMsgHtml( 'selectolderversionfordiff' )
329 );
330
331 if( !$rev->userCan( Revision::DELETED_TEXT ) ) {
332 $radio['disabled'] = 'disabled';
333 }
334
335 /** @todo: move title texts to javascript */
336 if ( $firstInList ) {
337 $first = wfElement( 'input', array_merge(
338 $radio,
339 array(
340 'style' => 'visibility:hidden',
341 'name' => 'oldid' ) ) );
342 $checkmark = array( 'checked' => 'checked' );
343 } else {
344 if( $counter == 2 ) {
345 $checkmark = array( 'checked' => 'checked' );
346 } else {
347 $checkmark = array();
348 }
349 $first = wfElement( 'input', array_merge(
350 $radio,
351 $checkmark,
352 array( 'name' => 'oldid' ) ) );
353 $checkmark = array();
354 }
355 $second = wfElement( 'input', array_merge(
356 $radio,
357 $checkmark,
358 array( 'name' => 'diff' ) ) );
359 return $first . $second;
360 } else {
361 return '';
362 }
363 }
364
365 /** @todo document */
366 function getLatestId() {
367 if( is_null( $this->mLatestId ) ) {
368 $id = $this->mTitle->getArticleID();
369 $db = wfGetDB(DB_SLAVE);
370 $this->mLatestId = $db->selectField( 'page',
371 "page_latest",
372 array( 'page_id' => $id ),
373 'PageHistory::getLatestID' );
374 }
375 return $this->mLatestId;
376 }
377
378 /**
379 * Fetch an array of revisions, specified by a given limit, offset and
380 * direction. This is now only used by the feeds. It was previously
381 * used by the main UI but that's now handled by the pager.
382 */
383 function fetchRevisions($limit, $offset, $direction) {
384 $fname = 'PageHistory::fetchRevisions';
385
386 $dbr = wfGetDB( DB_SLAVE );
387
388 if ($direction == PageHistory::DIR_PREV)
389 list($dirs, $oper) = array("ASC", ">=");
390 else /* $direction == PageHistory::DIR_NEXT */
391 list($dirs, $oper) = array("DESC", "<=");
392
393 if ($offset)
394 $offsets = array("rev_timestamp $oper '$offset'");
395 else
396 $offsets = array();
397
398 $page_id = $this->mTitle->getArticleID();
399
400 $res = $dbr->select(
401 'revision',
402 Revision::selectFields(),
403 array_merge(array("rev_page=$page_id"), $offsets),
404 $fname,
405 array('ORDER BY' => "rev_timestamp $dirs",
406 'USE INDEX' => 'page_timestamp', 'LIMIT' => $limit)
407 );
408
409 $result = array();
410 while (($obj = $dbr->fetchObject($res)) != NULL)
411 $result[] = $obj;
412
413 return $result;
414 }
415
416 /** @todo document */
417 function getNotificationTimestamp() {
418 global $wgUser, $wgShowUpdatedMarker;
419 $fname = 'PageHistory::getNotficationTimestamp';
420
421 if ($this->mNotificationTimestamp !== NULL)
422 return $this->mNotificationTimestamp;
423
424 if ($wgUser->isAnon() || !$wgShowUpdatedMarker)
425 return $this->mNotificationTimestamp = false;
426
427 $dbr = wfGetDB(DB_SLAVE);
428
429 $this->mNotificationTimestamp = $dbr->selectField(
430 'watchlist',
431 'wl_notificationtimestamp',
432 array( 'wl_namespace' => $this->mTitle->getNamespace(),
433 'wl_title' => $this->mTitle->getDBkey(),
434 'wl_user' => $wgUser->getID()
435 ),
436 $fname);
437
438 // Don't use the special value reserved for telling whether the field is filled
439 if ( is_null( $this->mNotificationTimestamp ) ) {
440 $this->mNotificationTimestamp = false;
441 }
442
443 return $this->mNotificationTimestamp;
444 }
445
446 /**
447 * Output a subscription feed listing recent edits to this page.
448 * @param string $type
449 */
450 function feed( $type ) {
451 require_once 'SpecialRecentchanges.php';
452
453 global $wgFeedClasses;
454 if( !isset( $wgFeedClasses[$type] ) ) {
455 global $wgOut;
456 $wgOut->addWikiText( wfMsg( 'feed-invalid' ) );
457 return;
458 }
459
460 $feed = new $wgFeedClasses[$type](
461 $this->mTitle->getPrefixedText() . ' - ' .
462 wfMsgForContent( 'history-feed-title' ),
463 wfMsgForContent( 'history-feed-description' ),
464 $this->mTitle->getFullUrl( 'action=history' ) );
465
466 $items = $this->fetchRevisions(10, 0, PageHistory::DIR_NEXT);
467 $feed->outHeader();
468 if( $items ) {
469 foreach( $items as $row ) {
470 $feed->outItem( $this->feedItem( $row ) );
471 }
472 } else {
473 $feed->outItem( $this->feedEmpty() );
474 }
475 $feed->outFooter();
476 }
477
478 function feedEmpty() {
479 global $wgOut;
480 return new FeedItem(
481 wfMsgForContent( 'nohistory' ),
482 $wgOut->parse( wfMsgForContent( 'history-feed-empty' ) ),
483 $this->mTitle->getFullUrl(),
484 wfTimestamp( TS_MW ),
485 '',
486 $this->mTitle->getTalkPage()->getFullUrl() );
487 }
488
489 /**
490 * Generate a FeedItem object from a given revision table row
491 * Borrows Recent Changes' feed generation functions for formatting;
492 * includes a diff to the previous revision (if any).
493 *
494 * @param $row
495 * @return FeedItem
496 */
497 function feedItem( $row ) {
498 $rev = new Revision( $row );
499 $rev->setTitle( $this->mTitle );
500 $text = rcFormatDiffRow( $this->mTitle,
501 $this->mTitle->getPreviousRevisionID( $rev->getId() ),
502 $rev->getId(),
503 $rev->getTimestamp(),
504 $rev->getComment() );
505
506 if( $rev->getComment() == '' ) {
507 global $wgContLang;
508 $title = wfMsgForContent( 'history-feed-item-nocomment',
509 $rev->getUserText(),
510 $wgContLang->timeanddate( $rev->getTimestamp() ) );
511 } else {
512 $title = $rev->getUserText() . ": " . $this->stripComment( $rev->getComment() );
513 }
514
515 return new FeedItem(
516 $title,
517 $text,
518 $this->mTitle->getFullUrl( 'diff=' . $rev->getId() . '&oldid=prev' ),
519 $rev->getTimestamp(),
520 $rev->getUserText(),
521 $this->mTitle->getTalkPage()->getFullUrl() );
522 }
523
524 /**
525 * Quickie hack... strip out wikilinks to more legible form from the comment.
526 */
527 function stripComment( $text ) {
528 return preg_replace( '/\[\[([^]]*\|)?([^]]+)\]\]/', '\2', $text );
529 }
530 }
531
532
533 /**
534 * @addtogroup Pager
535 */
536 class PageHistoryPager extends ReverseChronologicalPager {
537 public $mLastRow = false, $mPageHistory;
538
539 function __construct( $pageHistory ) {
540 parent::__construct();
541 $this->mPageHistory = $pageHistory;
542 }
543
544 function getQueryInfo() {
545 return array(
546 'tables' => 'revision',
547 'fields' => Revision::selectFields(),
548 'conds' => array('rev_page' => $this->mPageHistory->mTitle->getArticleID() ),
549 'options' => array( 'USE INDEX' => 'page_timestamp' )
550 );
551 }
552
553 function getIndexField() {
554 return 'rev_timestamp';
555 }
556
557 function formatRow( $row ) {
558 if ( $this->mLastRow ) {
559 $latest = $this->mCounter == 1 && $this->mOffset == '';
560 $firstInList = $this->mCounter == 1;
561 $s = $this->mPageHistory->historyLine( $this->mLastRow, $row, $this->mCounter++,
562 $this->mPageHistory->getNotificationTimestamp(), $latest, $firstInList );
563 } else {
564 $s = '';
565 }
566 $this->mLastRow = $row;
567 return $s;
568 }
569
570 function getStartBody() {
571 $this->mLastRow = false;
572 $this->mCounter = 1;
573 return '';
574 }
575
576 function getEndBody() {
577 if ( $this->mLastRow ) {
578 $latest = $this->mCounter == 1 && $this->mOffset == 0;
579 $firstInList = $this->mCounter == 1;
580 if ( $this->mIsBackwards ) {
581 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
582 if ( $this->mOffset == '' ) {
583 $next = null;
584 } else {
585 $next = 'unknown';
586 }
587 } else {
588 # The next row is the past-the-end row
589 $next = $this->mPastTheEndRow;
590 }
591 $s = $this->mPageHistory->historyLine( $this->mLastRow, $next, $this->mCounter++,
592 $this->mPageHistory->getNotificationTimestamp(), $latest, $firstInList );
593 } else {
594 $s = '';
595 }
596 return $s;
597 }
598 }
599
600