4 * Contain class to show various lists of change:
14 class RCCacheEntry
extends RecentChange
16 var $secureName, $link;
17 var $curlink , $difflink, $lastlink , $usertalklink , $versionlink ;
18 var $userlink, $timestamp, $watched;
20 function newFromParent( $rc )
22 $rc2 = new RCCacheEntry
;
23 $rc2->mAttribs
= $rc->mAttribs
;
24 $rc2->mExtra
= $rc->mExtra
;
33 # Called by history lists and recent changes
37 function ChangesList( &$skin ) {
39 $this->preCacheMessages();
43 * Fetch an appropriate changes list class for the specified user
44 * Some users might want to use an enhanced list format, for instance
46 * @param $user User to fetch the list class for
47 * @return ChangesList derivative
49 function newFromUser( &$user ) {
50 $sk =& $user->getSkin();
52 if( wfRunHooks( 'FetchChangesList', array( &$user, &$skin, &$list ) ) ) {
53 return $user->getOption( 'usenewrc' ) ?
new EnhancedChangesList( $sk ) : new OldChangesList( $sk );
60 * As we use the same small set of messages in various methods and that
61 * they are called often, we call them once and save them in $this->message
63 function preCacheMessages() {
64 // Precache various messages
65 if( !isset( $this->message
) ) {
66 foreach( explode(' ', 'cur diff hist minoreditletter newpageletter last '.
67 'blocklink changes history boteditletter' ) as $msg ) {
68 $this->message
[$msg] = wfMsgExt( $msg, array( 'escape') );
75 * Returns the appropriate flags for new page, minor change and patrolling
77 function recentChangesFlags( $new, $minor, $patrolled, $nothing = ' ', $bot = false ) {
78 $f = $new ?
'<span class="newpage">' . $this->message
['newpageletter'] . '</span>'
80 $f .= $minor ?
'<span class="minor">' . $this->message
['minoreditletter'] . '</span>'
82 $f .= $bot ?
'<span class="bot">' . $this->message
['boteditletter'] . '</span>' : $nothing;
83 $f .= $patrolled ?
'<span class="unpatrolled">!</span>' : $nothing;
88 * Returns text for the start of the tabular part of RC
90 function beginRecentChangesList() {
91 $this->rc_cache
= array();
92 $this->rcMoveIndex
= 0;
93 $this->rcCacheIndex
= 0;
95 $this->rclistOpen
= false;
100 * Returns text for the end of RC
102 function endRecentChangesList() {
103 if( $this->rclistOpen
) {
111 function insertMove( &$s, $rc ) {
113 $s .= '(' . $this->message
['diff'] . ') (';
115 $s .= $this->skin
->makeKnownLinkObj( $rc->getMovedToTitle(), $this->message
['hist'], 'action=history' ) .
118 # "[[x]] moved to [[y]]"
119 $msg = ( $rc->mAttribs
['rc_type'] == RC_MOVE
) ?
'1movedto2' : '1movedto2_redir';
120 $s .= wfMsg( $msg, $this->skin
->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
121 $this->skin
->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
124 function insertDateHeader(&$s, $rc_timestamp) {
127 # Make date header if necessary
128 $date = $wgLang->date( $rc_timestamp, true, true );
130 if( $date != $this->lastdate
) {
131 if( '' != $this->lastdate
) {
134 $s .= '<h4>'.$date."</h4>\n<ul class=\"special\">";
135 $this->lastdate
= $date;
136 $this->rclistOpen
= true;
140 function insertLog(&$s, $title, $logtype) {
141 $logname = LogPage
::logName( $logtype );
142 $s .= '(' . $this->skin
->makeKnownLinkObj($title, $logname ) . ')';
146 function insertDiffHist(&$s, &$rc, $unpatrolled) {
148 if( $rc->mAttribs
['rc_type'] == RC_NEW ||
$rc->mAttribs
['rc_type'] == RC_LOG
) {
149 $diffLink = $this->message
['diff'];
151 $rcidparam = $unpatrolled
152 ?
array( 'rcid' => $rc->mAttribs
['rc_id'] )
154 $diffLink = $this->skin
->makeKnownLinkObj( $rc->getTitle(), $this->message
['diff'],
156 'curid' => $rc->mAttribs
['rc_cur_id'],
157 'diff' => $rc->mAttribs
['rc_this_oldid'],
158 'oldid' => $rc->mAttribs
['rc_last_oldid'] ),
160 '', '', ' tabindex="'.$rc->counter
.'"');
162 $s .= '('.$diffLink.') (';
165 $s .= $this->skin
->makeKnownLinkObj( $rc->getTitle(), $this->message
['hist'],
167 'curid' => $rc->mAttribs
['rc_cur_id'],
168 'action' => 'history' ) ) );
172 function insertArticleLink(&$s, &$rc, $unpatrolled, $watched) {
174 # If it's a new article, there is no diff link, but if it hasn't been
175 # patrolled yet, we need to give users a way to do so
176 $params = ( $unpatrolled && $rc->mAttribs
['rc_type'] == RC_NEW
)
177 ?
'rcid='.$rc->mAttribs
['rc_id']
179 $articlelink = ' '. $this->skin
->makeKnownLinkObj( $rc->getTitle(), '', $params );
180 if($watched) $articlelink = '<strong>'.$articlelink.'</strong>';
182 $articlelink .= $wgContLang->getDirMark();
184 $s .= ' '.$articlelink;
187 function insertTimestamp(&$s, &$rc) {
190 $s .= '; ' . $wgLang->time( $rc->mAttribs
['rc_timestamp'], true, true ) . ' . . ';
193 /** Insert links to user page, user talk page and eventually a blocking link */
194 function insertUserRelatedLinks(&$s, &$rc) {
195 $s .= $this->skin
->userLink( $rc->mAttribs
['rc_user'], $rc->mAttribs
['rc_user_text'] );
196 $s .= $this->skin
->userToolLinks( $rc->mAttribs
['rc_user'], $rc->mAttribs
['rc_user_text'] );
199 /** insert a formatted comment */
200 function insertComment(&$s, &$rc) {
202 if( $rc->mAttribs
['rc_type'] != RC_MOVE
&& $rc->mAttribs
['rc_type'] != RC_MOVE_OVER_REDIRECT
) {
203 $s .= $this->skin
->commentBlock( $rc->mAttribs
['rc_comment'], $rc->getTitle() );
208 * Check whether to enable recent changes patrol features
211 function usePatrol() {
212 global $wgUseRCPatrol, $wgUser;
213 return( $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) );
221 * Generate a list of changes using the good old system (no javascript)
223 class OldChangesList
extends ChangesList
{
225 * Format a line using the old system (aka without any javascript).
227 function recentChangesLine( &$rc, $watched = false ) {
230 $fname = 'ChangesList::recentChangesLineOld';
231 wfProfileIn( $fname );
234 # Extract DB fields into local scope
235 extract( $rc->mAttribs
);
236 $curIdEq = 'curid=' . $rc_cur_id;
238 # Should patrol-related stuff be shown?
239 $unpatrolled = $this->usePatrol() && $rc_patrolled == 0;
241 $this->insertDateHeader($s,$rc_timestamp);
246 if( $rc_type == RC_MOVE ||
$rc_type == RC_MOVE_OVER_REDIRECT
) {
247 $this->insertMove( $s, $rc );
249 } elseif( $rc_namespace == NS_SPECIAL
&& preg_match( '!^Log/(.*)$!', $rc_title, $matches ) ) {
250 $this->insertLog($s, $rc->getTitle(), $matches[1]);
253 wfProfileIn($fname.'-page');
255 $this->insertDiffHist($s, $rc, $unpatrolled);
257 # M, N, b and ! (minor, new, bot and unpatrolled)
258 $s .= ' ' . $this->recentChangesFlags( $rc_type == RC_NEW
, $rc_minor, $unpatrolled, '', $rc_bot );
259 $this->insertArticleLink($s, $rc, $unpatrolled, $watched);
261 wfProfileOut($fname.'-page');
264 wfProfileIn( $fname.'-rest' );
266 $this->insertTimestamp($s,$rc);
267 $this->insertUserRelatedLinks($s,$rc);
268 $this->insertComment($s, $rc);
270 if($rc->numberofWatchingusers
> 0) {
271 $s .= ' ' . wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($rc->numberofWatchingusers
));
276 wfProfileOut( $fname.'-rest' );
278 wfProfileOut( $fname );
285 * Generate a list of changes using an Enhanced system (use javascript).
287 class EnhancedChangesList
extends ChangesList
{
289 * Format a line for enhanced recentchange (aka with javascript and block of lines).
291 function recentChangesLine( &$baseRC, $watched = false ) {
292 global $wgLang, $wgContLang;
294 # Create a specialised object
295 $rc = RCCacheEntry
::newFromParent( $baseRC );
297 # Extract fields from DB into the function scope (rc_xxxx variables)
298 extract( $rc->mAttribs
);
299 $curIdEq = 'curid=' . $rc_cur_id;
301 # If it's a new day, add the headline and flush the cache
302 $date = $wgLang->date( $rc_timestamp, true);
304 if( $date != $this->lastdate
) {
305 # Process current cache
306 $ret = $this->recentChangesBlock();
307 $this->rc_cache
= array();
308 $ret .= "<h4>{$date}</h4>\n";
309 $this->lastdate
= $date;
312 # Should patrol-related stuff be shown?
313 if( $this->usePatrol() ) {
314 $rc->unpatrolled
= !$rc_patrolled;
316 $rc->unpatrolled
= false;
320 if( $rc_type == RC_MOVE ||
$rc_type == RC_MOVE_OVER_REDIRECT
) {
321 $msg = ( $rc_type == RC_MOVE
) ?
"1movedto2" : "1movedto2_redir";
322 $clink = wfMsg( $msg, $this->skin
->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
323 $this->skin
->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
324 } elseif( $rc_namespace == NS_SPECIAL
&& preg_match( '!^Log/(.*)$!', $rc_title, $matches ) ) {
326 $logtype = $matches[1];
327 $logname = LogPage
::logName( $logtype );
328 $clink = '(' . $this->skin
->makeKnownLinkObj( $rc->getTitle(), $logname ) . ')';
329 } elseif( $rc->unpatrolled
&& $rc_type == RC_NEW
) {
330 # Unpatrolled new page, give rc_id in query
331 $clink = $this->skin
->makeKnownLinkObj( $rc->getTitle(), '', "rcid={$rc_id}" );
333 $clink = $this->skin
->makeKnownLinkObj( $rc->getTitle(), '' );
336 $time = $wgContLang->time( $rc_timestamp, true, true );
337 $rc->watched
= $watched;
339 $rc->timestamp
= $time;
340 $rc->numberofWatchingusers
= $baseRC->numberofWatchingusers
;
342 # Make "cur" and "diff" links
343 if( $rc->unpatrolled
) {
344 $rcIdQuery = "&rcid={$rc_id}";
348 $querycur = $curIdEq."&diff=0&oldid=$rc_this_oldid";
349 $querydiff = $curIdEq."&diff=$rc_this_oldid&oldid=$rc_last_oldid$rcIdQuery";
350 $aprops = ' tabindex="'.$baseRC->counter
.'"';
351 $curLink = $this->skin
->makeKnownLinkObj( $rc->getTitle(), $this->message
['cur'], $querycur, '' ,'', $aprops );
352 if( $rc_type == RC_NEW ||
$rc_type == RC_LOG ||
$rc_type == RC_MOVE ||
$rc_type == RC_MOVE_OVER_REDIRECT
) {
353 if( $rc_type != RC_NEW
) {
354 $curLink = $this->message
['cur'];
356 $diffLink = $this->message
['diff'];
358 $diffLink = $this->skin
->makeKnownLinkObj( $rc->getTitle(), $this->message
['diff'], $querydiff, '' ,'', $aprops );
362 if( $rc_last_oldid == 0 ||
$rc_type == RC_LOG ||
$rc_type == RC_MOVE ||
$rc_type == RC_MOVE_OVER_REDIRECT
) {
363 $lastLink = $this->message
['last'];
365 $lastLink = $this->skin
->makeKnownLinkObj( $rc->getTitle(), $this->message
['last'],
366 $curIdEq.'&diff='.$rc_this_oldid.'&oldid='.$rc_last_oldid . $rcIdQuery );
369 $rc->userlink
= $this->skin
->userLink( $rc_user, $rc_user_text );
371 $rc->lastlink
= $lastLink;
372 $rc->curlink
= $curLink;
373 $rc->difflink
= $diffLink;
375 $rc->usertalklink
= $this->skin
->userToolLinks( $rc_user, $rc_user_text );
377 # Put accumulated information into the cache, for later display
378 # Page moves go on their own line
379 $title = $rc->getTitle();
380 $secureName = $title->getPrefixedDBkey();
381 if( $rc_type == RC_MOVE ||
$rc_type == RC_MOVE_OVER_REDIRECT
) {
382 # Use an @ character to prevent collision with page names
383 $this->rc_cache
['@@' . ($this->rcMoveIndex++
)] = array($rc);
385 if( !isset ( $this->rc_cache
[$secureName] ) ) {
386 $this->rc_cache
[$secureName] = array();
388 array_push( $this->rc_cache
[$secureName], $rc );
396 function recentChangesBlockGroup( $block ) {
399 # Collate list of users
401 $unpatrolled = false;
402 $userlinks = array();
403 foreach( $block as $rcObj ) {
404 $oldid = $rcObj->mAttribs
['rc_last_oldid'];
405 $newid = $rcObj->mAttribs
['rc_this_oldid'];
406 if( $rcObj->mAttribs
['rc_new'] ) {
409 $u = $rcObj->userlink
;
410 if( !isset( $userlinks[$u] ) ) {
413 if( $rcObj->unpatrolled
) {
416 $bot = $rcObj->mAttribs
['rc_bot'];
420 # Sort the list and convert to text
421 krsort( $userlinks );
424 foreach( $userlinks as $userlink => $count) {
427 $text .= ' ('.$count.'×)';
429 array_push( $users, $text );
432 $users = ' <span class="changedby">['.implode('; ',$users).']</span>';
435 $rci = 'RCI'.$this->rcCacheIndex
;
436 $rcl = 'RCL'.$this->rcCacheIndex
;
437 $rcm = 'RCM'.$this->rcCacheIndex
;
438 $toggleLink = "javascript:toggleVisibility('$rci','$rcm','$rcl')";
439 $tl = '<span id="'.$rcm.'"><a href="'.$toggleLink.'">' . $this->sideArrow() . '</a></span>';
440 $tl .= '<span id="'.$rcl.'" style="display:none"><a href="'.$toggleLink.'">' . $this->downArrow() . '</a></span>';
445 $r .= $this->recentChangesFlags( $isnew, false, $unpatrolled, ' ', $bot );
448 $r .= ' '.$block[0]->timestamp
.' ';
452 $r .= $this->maybeWatchedLink( $block[0]->link
, $block[0]->watched
);
454 $curIdEq = 'curid=' . $block[0]->mAttribs
['rc_cur_id'];
455 $currentRevision = $block[0]->mAttribs
['rc_this_oldid'];
456 if( $block[0]->mAttribs
['rc_type'] != RC_LOG
) {
458 $r .= ' ('.count($block).' ';
460 $r .= $this->message
['changes'];
462 $r .= $this->skin
->makeKnownLinkObj( $block[0]->getTitle(),
463 $this->message
['changes'], $curIdEq."&diff=$currentRevision&oldid=$oldid" );
468 $r .= $this->skin
->makeKnownLinkObj( $block[0]->getTitle(),
469 $this->message
['history'], $curIdEq.'&action=history' );
475 if($block[0]->numberofWatchingusers
> 0) {
477 $r .= wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($block[0]->numberofWatchingusers
));
482 $r .= '<div id="'.$rci.'" style="display:none">';
483 foreach( $block as $rcObj ) {
484 # Get rc_xxxx variables
485 extract( $rcObj->mAttribs
);
487 $r .= $this->spacerArrow();
488 $r .= '<tt> ';
489 $r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled
, ' ', $rc_bot );
493 if( $rc_this_oldid != 0 ) {
494 $o = 'oldid='.$rc_this_oldid;
496 if( $rc_type == RC_LOG
) {
497 $link = $rcObj->timestamp
;
499 $link = $this->skin
->makeKnownLinkObj( $rcObj->getTitle(), $rcObj->timestamp
, $curIdEq.'&'.$o );
501 $link = '<tt>'.$link.'</tt>';
505 $r .= $rcObj->curlink
;
507 $r .= $rcObj->lastlink
;
508 $r .= ') . . '.$rcObj->userlink
;
509 $r .= $rcObj->usertalklink
;
510 $r .= $this->skin
->commentBlock( $rc_comment, $rcObj->getTitle() );
515 $this->rcCacheIndex++
;
519 function maybeWatchedLink( $link, $watched=false ) {
521 // FIXME: css style might be more appropriate
522 return '<strong>' . $link . '</strong>';
529 * Generate HTML for an arrow or placeholder graphic
530 * @param string $dir one of '', 'd', 'l', 'r'
531 * @param string $alt text
532 * @return string HTML <img> tag
535 function arrow( $dir, $alt='' ) {
537 $encUrl = htmlspecialchars( $wgStylePath . '/common/images/Arr_' . $dir . '.png' );
538 $encAlt = htmlspecialchars( $alt );
539 return "<img src=\"$encUrl\" width=\"12\" height=\"12\" alt=\"$encAlt\" />";
543 * Generate HTML for a right- or left-facing arrow,
544 * depending on language direction.
545 * @return string HTML <img> tag
548 function sideArrow() {
550 $dir = $wgContLang->isRTL() ?
'l' : 'r';
551 return $this->arrow( $dir, '+' );
555 * Generate HTML for a down-facing arrow
556 * depending on language direction.
557 * @return string HTML <img> tag
560 function downArrow() {
561 return $this->arrow( 'd', '-' );
565 * Generate HTML for a spacer image
566 * @return string HTML <img> tag
569 function spacerArrow() {
570 return $this->arrow( '', ' ' );
574 * Enhanced RC ungrouped line.
575 * @return string a HTML formated line (generated using $r)
577 function recentChangesBlockLine( $rcObj ) {
580 # Get rc_xxxx variables
581 extract( $rcObj->mAttribs
);
582 $curIdEq = 'curid='.$rc_cur_id;
587 $r .= $this->spacerArrow();
592 if( $rc_type == RC_MOVE ||
$rc_type == RC_MOVE_OVER_REDIRECT
) {
593 $r .= ' ';
595 $r .= $this->recentChangesFlags( $rc_type == RC_NEW
, $rc_minor, $rcObj->unpatrolled
, ' ', $rc_bot );
597 $r .= ' '.$rcObj->timestamp
.' </tt>';
600 $r .= $this->maybeWatchedLink( $rcObj->link
, $rcObj->watched
);
603 $r .= ' ('. $rcObj->difflink
.'; ';
606 $r .= $this->skin
->makeKnownLinkObj( $rcObj->getTitle(), wfMsg( 'hist' ), $curIdEq.'&action=history' );
609 $r .= ') . . '.$rcObj->userlink
. $rcObj->usertalklink
;
612 if( $rc_type != RC_MOVE
&& $rc_type != RC_MOVE_OVER_REDIRECT
) {
613 $r .= $this->skin
->commentBlock( $rc_comment, $rcObj->getTitle() );
616 if( $rcObj->numberofWatchingusers
> 0 ) {
617 $r .= wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($rcObj->numberofWatchingusers
));
625 * If enhanced RC is in use, this function takes the previously cached
626 * RC lines, arranges them, and outputs the HTML
628 function recentChangesBlock() {
629 if( count ( $this->rc_cache
) == 0 ) {
633 foreach( $this->rc_cache
as $secureName => $block ) {
634 if( count( $block ) < 2 ) {
635 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
637 $blockOut .= $this->recentChangesBlockGroup( $block );
641 return '<div>'.$blockOut.'</div>';
645 * Returns text for the end of RC
646 * If enhanced RC is in use, returns pretty much all the text
648 function endRecentChangesList() {
649 return $this->recentChangesBlock() . parent
::endRecentChangesList();