Improve log handling for Enhanced RC
[lhc/web/wiklou.git] / includes / ChangesList.php
1 <?php
2
3 /**
4 * @todo document
5 */
6 class RCCacheEntry extends RecentChange
7 {
8 var $secureName, $link;
9 var $curlink , $difflink, $lastlink , $usertalklink , $versionlink ;
10 var $userlink, $timestamp, $watched;
11
12 static function newFromParent( $rc ) {
13 $rc2 = new RCCacheEntry;
14 $rc2->mAttribs = $rc->mAttribs;
15 $rc2->mExtra = $rc->mExtra;
16 return $rc2;
17 }
18 } ;
19
20 /**
21 * Class to show various lists of changes:
22 * - what links here
23 * - related changes
24 * - recent changes
25 */
26 class ChangesList {
27 # Called by history lists and recent changes
28 #
29
30 /** @todo document */
31 function __construct( &$skin ) {
32 $this->skin =& $skin;
33 $this->preCacheMessages();
34 }
35
36 /**
37 * Fetch an appropriate changes list class for the specified user
38 * Some users might want to use an enhanced list format, for instance
39 *
40 * @param $user User to fetch the list class for
41 * @return ChangesList derivative
42 */
43 public static function newFromUser( &$user ) {
44 $sk = $user->getSkin();
45 $list = NULL;
46 if( wfRunHooks( 'FetchChangesList', array( &$user, &$sk, &$list ) ) ) {
47 return $user->getOption( 'usenewrc' ) ? new EnhancedChangesList( $sk ) : new OldChangesList( $sk );
48 } else {
49 return $list;
50 }
51 }
52
53 /**
54 * As we use the same small set of messages in various methods and that
55 * they are called often, we call them once and save them in $this->message
56 */
57 function preCacheMessages() {
58 // Precache various messages
59 if( !isset( $this->message ) ) {
60 foreach( explode(' ', 'cur diff hist minoreditletter newpageletter last '.
61 'blocklink history boteditletter semicolon-separator' ) as $msg ) {
62 $this->message[$msg] = wfMsgExt( $msg, array( 'escape') );
63 }
64 }
65 }
66
67
68 /**
69 * Returns the appropriate flags for new page, minor change and patrolling
70 */
71 function recentChangesFlags( $new, $minor, $patrolled, $nothing = '&nbsp;', $bot = false ) {
72 $f = $new ? '<span class="newpage">' . $this->message['newpageletter'] . '</span>'
73 : $nothing;
74 $f .= $minor ? '<span class="minor">' . $this->message['minoreditletter'] . '</span>'
75 : $nothing;
76 $f .= $bot ? '<span class="bot">' . $this->message['boteditletter'] . '</span>' : $nothing;
77 $f .= $patrolled ? '<span class="unpatrolled">!</span>' : $nothing;
78 return $f;
79 }
80
81 /**
82 * Returns text for the start of the tabular part of RC
83 */
84 function beginRecentChangesList() {
85 $this->rc_cache = array();
86 $this->rcMoveIndex = 0;
87 $this->rcCacheIndex = 0;
88 $this->lastdate = '';
89 $this->rclistOpen = false;
90 return '';
91 }
92
93 /**
94 * Returns text for the end of RC
95 */
96 function endRecentChangesList() {
97 if( $this->rclistOpen ) {
98 return "</ul>\n";
99 } else {
100 return '';
101 }
102 }
103
104 /**
105 * int $field one of DELETED_* bitfield constants
106 * @return bool
107 */
108 function isDeleted( $rc, $field ) {
109 return ($rc->mAttribs['rc_deleted'] & $field) == $field;
110 }
111
112 /**
113 * Determine if the current user is allowed to view a particular
114 * field of this revision, if it's marked as deleted.
115 * @param int $field
116 * @return bool
117 */
118 function userCan( $rc, $field ) {
119 if( ( $rc->mAttribs['rc_deleted'] & $field ) == $field ) {
120 global $wgUser;
121 $permission = ( $rc->mAttribs['rc_deleted'] & Revision::DELETED_RESTRICTED ) == Revision::DELETED_RESTRICTED
122 ? 'hiderevision'
123 : 'deleterevision';
124 wfDebug( "Checking for $permission due to $field match on $rc->mAttribs['rc_deleted']\n" );
125 return $wgUser->isAllowed( $permission );
126 } else {
127 return true;
128 }
129 }
130
131 function insertMove( &$s, $rc ) {
132 # Diff
133 $s .= '(' . $this->message['diff'] . ') (';
134 # Hist
135 $s .= $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), $this->message['hist'], 'action=history' ) .
136 ') . . ';
137
138 # "[[x]] moved to [[y]]"
139 $msg = ( $rc->mAttribs['rc_type'] == RC_MOVE ) ? '1movedto2' : '1movedto2_redir';
140 $s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
141 $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
142 }
143
144 function insertDateHeader(&$s, $rc_timestamp) {
145 global $wgLang;
146
147 # Make date header if necessary
148 $date = $wgLang->date( $rc_timestamp, true, true );
149 $s = '';
150 if( $date != $this->lastdate ) {
151 if( '' != $this->lastdate ) {
152 $s .= "</ul>\n";
153 }
154 $s .= '<h4>'.$date."</h4>\n<ul class=\"special\">";
155 $this->lastdate = $date;
156 $this->rclistOpen = true;
157 }
158 }
159
160 function insertLog(&$s, $title, $logtype) {
161 $logname = LogPage::logName( $logtype );
162 $s .= '(' . $this->skin->makeKnownLinkObj($title, $logname ) . ')';
163 }
164
165 function insertDiffHist(&$s, &$rc, $unpatrolled) {
166 # Diff link
167 if( !$this->userCan($rc,Revision::DELETED_TEXT) ) {
168 $diffLink = $this->message['diff'];
169 } else if( $rc->mAttribs['rc_type'] == RC_NEW || $rc->mAttribs['rc_type'] == RC_LOG ) {
170 $diffLink = $this->message['diff'];
171 } else {
172 $rcidparam = $unpatrolled
173 ? array( 'rcid' => $rc->mAttribs['rc_id'] )
174 : array();
175 $diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['diff'],
176 wfArrayToCGI( array(
177 'curid' => $rc->mAttribs['rc_cur_id'],
178 'diff' => $rc->mAttribs['rc_this_oldid'],
179 'oldid' => $rc->mAttribs['rc_last_oldid'] ),
180 $rcidparam ),
181 '', '', ' tabindex="'.$rc->counter.'"');
182 }
183 $s .= '('.$diffLink.') (';
184
185 # History link
186 $s .= $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['hist'],
187 wfArrayToCGI( array(
188 'curid' => $rc->mAttribs['rc_cur_id'],
189 'action' => 'history' ) ) );
190 $s .= ') . . ';
191 }
192
193 function insertArticleLink(&$s, &$rc, $unpatrolled, $watched) {
194 # Article link
195 # If it's a new article, there is no diff link, but if it hasn't been
196 # patrolled yet, we need to give users a way to do so
197 $params = ( $unpatrolled && $rc->mAttribs['rc_type'] == RC_NEW )
198 ? 'rcid='.$rc->mAttribs['rc_id']
199 : '';
200 if( $this->isDeleted($rc,Revision::DELETED_TEXT) ) {
201 $articlelink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '', $params );
202 $articlelink = '<span class="history-deleted">'.$articlelink.'</span>';
203 } else {
204 $articlelink = ' '. $this->skin->makeKnownLinkObj( $rc->getTitle(), '', $params );
205 }
206 if( $watched )
207 $articlelink = "<strong class=\"mw-watched\">{$articlelink}</strong>";
208 global $wgContLang;
209 $articlelink .= $wgContLang->getDirMark();
210
211 wfRunHooks('ChangesListInsertArticleLink',
212 array(&$this, &$articlelink, &$s, &$rc, $unpatrolled, $watched));
213
214 $s .= ' '.$articlelink;
215 }
216
217 function insertTimestamp(&$s, $rc) {
218 global $wgLang;
219 # Timestamp
220 $s .= $this->message['semicolon-separator'] . ' ' . $wgLang->time( $rc->mAttribs['rc_timestamp'], true, true ) . ' . . ';
221 }
222
223 /** Insert links to user page, user talk page and eventually a blocking link */
224 function insertUserRelatedLinks(&$s, &$rc) {
225 if ( $this->isDeleted($rc,Revision::DELETED_USER) ) {
226 $s .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-user') . '</span>';
227 } else {
228 $s .= $this->skin->userLink( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
229 $s .= $this->skin->userToolLinks( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
230 }
231 }
232
233 /** insert a formatted action */
234 function insertAction(&$s, &$rc) {
235 # Add action
236 if( $rc->mAttribs['rc_type'] == RC_LOG ) {
237 // log action
238 if ( $this->isDeleted($rc,LogPage::DELETED_ACTION) ) {
239 $s .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
240 } else {
241 $s .= ' ' . LogPage::actionText( $rc->mAttribs['rc_log_type'], $rc->mAttribs['rc_log_action'],
242 $rc->getTitle(), $this->skin, LogPage::extractParams($rc->mAttribs['rc_params']), true, true );
243 }
244 }
245 }
246
247 /** insert a formatted comment */
248 function insertComment(&$s, &$rc) {
249 # Add comment
250 if( $rc->mAttribs['rc_type'] != RC_MOVE && $rc->mAttribs['rc_type'] != RC_MOVE_OVER_REDIRECT ) {
251 // log comment
252 if ( $this->isDeleted($rc,Revision::DELETED_COMMENT) ) {
253 $s .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-comment') . '</span>';
254 } else {
255 $s .= $this->skin->commentBlock( $rc->mAttribs['rc_comment'], $rc->getTitle() );
256 }
257 }
258 }
259
260 /**
261 * Check whether to enable recent changes patrol features
262 * @return bool
263 */
264 public static function usePatrol() {
265 global $wgUseRCPatrol, $wgUser;
266 return( $wgUseRCPatrol && ($wgUser->isAllowed('patrol') || $wgUser->isAllowed('patrolmarks')) );
267 }
268
269 /**
270 * Returns the string which indicates the number of watching users
271 */
272 function numberofWatchingusers( $count ) {
273 global $wgLang;
274 static $cache = array();
275 if ( $count > 0 ) {
276 if ( !isset( $cache[$count] ) ) {
277 $cache[$count] = wfMsgExt('number_of_watching_users_RCview',
278 array('parsemag', 'escape'), $wgLang->formatNum($count));
279 }
280 return $cache[$count];
281 } else {
282 return '';
283 }
284 }
285 }
286
287
288 /**
289 * Generate a list of changes using the good old system (no javascript)
290 */
291 class OldChangesList extends ChangesList {
292 /**
293 * Format a line using the old system (aka without any javascript).
294 */
295 function recentChangesLine( &$rc, $watched = false ) {
296 global $wgContLang, $wgRCShowChangedSize;
297
298 $fname = 'ChangesList::recentChangesLineOld';
299 wfProfileIn( $fname );
300
301 # Extract DB fields into local scope
302 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
303 extract( $rc->mAttribs );
304
305 # Should patrol-related stuff be shown?
306 $unpatrolled = $this->usePatrol() && $rc_patrolled == 0;
307
308 $this->insertDateHeader($s,$rc_timestamp);
309
310 $s .= '<li>';
311
312 // Moved pages
313 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
314 $this->insertMove( $s, $rc );
315 // Log entries
316 } elseif( $rc_log_type !='' ) {
317 $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
318 $this->insertLog( $s, $logtitle, $rc_log_type );
319 // Log entries (old format) or log targets, and special pages
320 } elseif( $rc_namespace == NS_SPECIAL ) {
321 list( $specialName, $specialSubpage ) = SpecialPage::resolveAliasWithSubpage( $rc_title );
322 if ( $specialName == 'Log' ) {
323 $this->insertLog( $s, $rc->getTitle(), $specialSubpage );
324 } else {
325 wfDebug( "Unexpected special page in recentchanges\n" );
326 }
327 // Log entries
328 } else {
329 wfProfileIn($fname.'-page');
330
331 $this->insertDiffHist($s, $rc, $unpatrolled);
332
333 # M, N, b and ! (minor, new, bot and unpatrolled)
334 $s .= $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $unpatrolled, '', $rc_bot );
335 $this->insertArticleLink($s, $rc, $unpatrolled, $watched);
336
337 wfProfileOut($fname.'-page');
338 }
339
340 wfProfileIn( $fname.'-rest' );
341
342 $this->insertTimestamp($s,$rc);
343
344 if( $wgRCShowChangedSize ) {
345 $s .= ( $rc->getCharacterDifference() == '' ? '' : $rc->getCharacterDifference() . ' . . ' );
346 }
347
348 $this->insertUserRelatedLinks($s,$rc);
349 $this->insertAction($s, $rc);
350 $this->insertComment($s, $rc);
351
352 # Mark revision as deleted
353 if ( !$rc_log_type && $this->isDeleted($rc,Revision::DELETED_TEXT) )
354 $s .= ' <tt>' . wfMsgHtml( 'deletedrev' ) . '</tt>';
355 if($rc->numberofWatchingusers > 0) {
356 $s .= ' ' . wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($rc->numberofWatchingusers));
357 }
358
359 $s .= "</li>\n";
360
361 wfProfileOut( $fname.'-rest' );
362
363 wfProfileOut( $fname );
364 return $s;
365 }
366 }
367
368
369 /**
370 * Generate a list of changes using an Enhanced system (use javascript).
371 */
372 class EnhancedChangesList extends ChangesList {
373 /**
374 * Format a line for enhanced recentchange (aka with javascript and block of lines).
375 */
376 function recentChangesLine( &$baseRC, $watched = false ) {
377 global $wgLang, $wgContLang;
378
379 # Create a specialised object
380 $rc = RCCacheEntry::newFromParent( $baseRC );
381
382 # Extract fields from DB into the function scope (rc_xxxx variables)
383 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
384 extract( $rc->mAttribs );
385 $curIdEq = 'curid=' . $rc_cur_id;
386
387 # If it's a new day, add the headline and flush the cache
388 $date = $wgLang->date( $rc_timestamp, true);
389 $ret = '';
390 if( $date != $this->lastdate ) {
391 # Process current cache
392 $ret = $this->recentChangesBlock();
393 $this->rc_cache = array();
394 $ret .= "<h4>{$date}</h4>\n";
395 $this->lastdate = $date;
396 }
397
398 # Should patrol-related stuff be shown?
399 if( $this->usePatrol() ) {
400 $rc->unpatrolled = !$rc_patrolled;
401 } else {
402 $rc->unpatrolled = false;
403 }
404
405 $showdifflinks = true;
406 # Make article link
407 // Page moves
408 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
409 $msg = ( $rc_type == RC_MOVE ) ? "1movedto2" : "1movedto2_redir";
410 $clink = wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
411 $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
412 // Log entries (old format) and special pages
413 } elseif( $rc_namespace == NS_SPECIAL ) {
414 list( $specialName, $logtype ) = SpecialPage::resolveAliasWithSubpage( $rc_title );
415 if ( $specialName == 'Log' ) {
416 # Log updates, etc
417 $logname = LogPage::logName( $logtype );
418 $clink = '(' . $this->skin->makeKnownLinkObj( $rc->getTitle(), $logname ) . ')';
419 } else {
420 wfDebug( "Unexpected special page in recentchanges\n" );
421 $clink = '';
422 }
423 // Page edits or log entries (group these page)
424 } else if( $this->isDeleted($rc,Revision::DELETED_TEXT) ) {
425 $clink = '<span class="history-deleted">' . $this->skin->makeKnownLinkObj( $rc->getTitle(), '' ) . '</span>';
426 if ( !ChangesList::userCan($rc,Revision::DELETED_TEXT) )
427 $showdifflinks = false;
428 } else if( $rc->unpatrolled && $rc_type == RC_NEW ) {
429 # Unpatrolled new page, give rc_id in query
430 $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '', "rcid={$rc_id}" );
431 } else {
432 $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '' );
433 }
434
435 $time = $wgContLang->time( $rc_timestamp, true, true );
436 $rc->watched = $watched;
437 $rc->link = $clink;
438 $rc->timestamp = $time;
439 $rc->numberofWatchingusers = $baseRC->numberofWatchingusers;
440
441 # Make "cur" and "diff" links
442 if( $rc->unpatrolled ) {
443 $rcIdQuery = "&rcid={$rc_id}";
444 } else {
445 $rcIdQuery = '';
446 }
447 $querycur = $curIdEq."&diff=0&oldid=$rc_this_oldid";
448 $querydiff = $curIdEq."&diff=$rc_this_oldid&oldid=$rc_last_oldid$rcIdQuery";
449 $aprops = ' tabindex="'.$baseRC->counter.'"';
450 $curLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['cur'], $querycur, '' ,'', $aprops );
451
452 # Make "diff" an "cur" links
453 if ( !$showdifflinks ) {
454 $curLink = $this->message['cur'];
455 $diffLink = $this->message['diff'];
456 } else if( $rc_type == RC_NEW || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
457 if( $rc_type != RC_NEW ) {
458 $curLink = $this->message['cur'];
459 }
460 $diffLink = $this->message['diff'];
461 } else {
462 $diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['diff'], $querydiff, '' ,'', $aprops );
463 }
464
465 # Make "last" link
466 if( !$showdifflinks ) {
467 $lastLink = $this->message['last'];
468 } else if( $rc_last_oldid == 0 || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
469 $lastLink = $this->message['last'];
470 } else {
471 $lastLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['last'],
472 $curIdEq.'&diff='.$rc_this_oldid.'&oldid='.$rc_last_oldid . $rcIdQuery );
473 }
474
475 # Make user links
476 if ( $this->isDeleted($rc,Revision::DELETED_USER) ) {
477 $rc->userlink = ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-user') . '</span>';
478 } else {
479 $rc->userlink = $this->skin->userLink( $rc_user, $rc_user_text );
480 $rc->usertalklink = $this->skin->userToolLinks( $rc_user, $rc_user_text );
481 }
482
483 $rc->lastlink = $lastLink;
484 $rc->curlink = $curLink;
485 $rc->difflink = $diffLink;
486
487 # Put accumulated information into the cache, for later display
488 # Page moves go on their own line
489 $title = $rc->getTitle();
490 $secureName = $title->getPrefixedDBkey();
491 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
492 # Use an @ character to prevent collision with page names
493 $this->rc_cache['@@' . ($this->rcMoveIndex++)] = array($rc);
494 } else {
495 if( !isset ( $this->rc_cache[$secureName] ) ) {
496 $this->rc_cache[$secureName] = array();
497 }
498 array_push( $this->rc_cache[$secureName], $rc );
499 }
500 return $ret;
501 }
502
503 /**
504 * Enhanced RC group
505 */
506 function recentChangesBlockGroup( $block ) {
507 global $wgLang, $wgContLang, $wgRCShowChangedSize;
508 $r = '<table cellpadding="0" cellspacing="0" border="0" style="background: none"><tr>';
509
510 # Collate list of users
511 $userlinks = array();
512 # Other properties
513 $unpatrolled = false;
514 $isnew = false;
515 $curId = $currentRevision = 0;
516 # Some catalyst variables...
517 $namehidden = true;
518 $alllogs = true;
519 foreach( $block as $rcObj ) {
520 $oldid = $rcObj->mAttribs['rc_last_oldid'];
521 if( $rcObj->mAttribs['rc_new'] ) {
522 $isnew = true;
523 }
524 // If all log actions to this page were hidden, then don't
525 // give the name of the affected page for this block!
526 if( !($rcObj->mAttribs['rc_deleted'] & LogPage::DELETED_ACTION) ) {
527 $namehidden = false;
528 }
529 $u = $rcObj->userlink;
530 if( !isset( $userlinks[$u] ) ) {
531 $userlinks[$u] = 0;
532 }
533 if( $rcObj->unpatrolled ) {
534 $unpatrolled = true;
535 }
536 if( $rcObj->mAttribs['rc_type'] != RC_LOG ) {
537 $alllogs = false;
538 }
539 # Get the latest entry with a page_id and oldid
540 # since logs may not have these.
541 if( !$curId && $rcObj->mAttribs['rc_cur_id'] ) {
542 $curId = $rcObj->mAttribs['rc_cur_id'];
543 }
544 if( !$currentRevision && $rcObj->mAttribs['rc_this_oldid'] ) {
545 $currentRevision = $rcObj->mAttribs['rc_this_oldid'];
546 }
547
548 $bot = $rcObj->mAttribs['rc_bot'];
549 $userlinks[$u]++;
550 }
551
552 # Sort the list and convert to text
553 krsort( $userlinks );
554 asort( $userlinks );
555 $users = array();
556 foreach( $userlinks as $userlink => $count) {
557 $text = $userlink;
558 $text .= $wgContLang->getDirMark();
559 if( $count > 1 ) {
560 $text .= ' ('.$count.'&times;)';
561 }
562 array_push( $users, $text );
563 }
564
565 $users = ' <span class="changedby">[' . implode( $this->message['semicolon-separator'] . ' ', $users ) . ']</span>';
566
567 # Arrow
568 $rci = 'RCI'.$this->rcCacheIndex;
569 $rcl = 'RCL'.$this->rcCacheIndex;
570 $rcm = 'RCM'.$this->rcCacheIndex;
571 $toggleLink = "javascript:toggleVisibility('$rci','$rcm','$rcl')";
572 $tl = '<span id="'.$rcm.'"><a href="'.$toggleLink.'">' . $this->sideArrow() . '</a></span>';
573 $tl .= '<span id="'.$rcl.'" style="display:none"><a href="'.$toggleLink.'">' . $this->downArrow() . '</a></span>';
574 $r .= '<td valign="top" style="white-space: nowrap"><tt>'.$tl.'&nbsp;';
575
576 # Main line
577 $r .= $this->recentChangesFlags( $isnew, false, $unpatrolled, '&nbsp;', $bot );
578
579 # Timestamp
580 $r .= '&nbsp;'.$block[0]->timestamp.'&nbsp;</tt></td><td>';
581
582 # Article link
583 if( $namehidden ) {
584 $r .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
585 } else {
586 $r .= $this->maybeWatchedLink( $block[0]->link, $block[0]->watched );
587 }
588
589 $r .= $wgContLang->getDirMark();
590
591 $curIdEq = 'curid=' . $curId;
592 # Changes message
593 $n = count($block);
594 static $nchanges = array();
595 if ( !isset( $nchanges[$n] ) ) {
596 $nchanges[$n] = wfMsgExt( 'nchanges', array( 'parsemag', 'escape'), $wgLang->formatNum( $n ) );
597 }
598 # Total change link
599 $r .= ' ';
600 if( !$alllogs ) {
601 $r .= '(';
602 if( !ChangesList::userCan($rcObj,Revision::DELETED_TEXT) ) {
603 $r .= $nchanges[$n];
604 } else if( $isnew ) {
605 $r .= $nchanges[$n];
606 } else {
607 $r .= $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
608 $nchanges[$n], $curIdEq."&diff=$currentRevision&oldid=$oldid" );
609 }
610 $r .= ') . . ';
611 }
612
613 # Character difference (does not apply if only log items)
614 if( $wgRCShowChangedSize && !$alllogs ) {
615 $last = 0;
616 $first = count($block) - 1;
617 # Some events (like logs) have an "empty" size, so we need to skip those...
618 while( $last < $first && $block[$last]->mAttribs['rc_new_len'] === NULL ) {
619 $last++;
620 }
621 while( $first > $last && $block[$first]->mAttribs['rc_old_len'] === NULL ) {
622 $first--;
623 }
624 # Get net change
625 $chardiff = $rcObj->getCharacterDifference( $block[$first]->mAttribs['rc_old_len'],
626 $block[$last]->mAttribs['rc_new_len'] );
627
628 if( $chardiff == '' ) {
629 $r .= ' ';
630 } else {
631 $r .= ' ' . $chardiff. ' . . ';
632 }
633 }
634
635 # History
636 $r .= '(' . $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
637 $this->message['history'], $curIdEq.'&action=history' );
638 $r .= ')';
639
640 $r .= $users;
641 $r .=$this->numberofWatchingusers($block[0]->numberofWatchingusers);
642
643 $r .= "</td></tr></table>\n";
644
645 # Sub-entries
646 $r .= '<div id="'.$rci.'" style="display:none;"><table cellpadding="0" cellspacing="0" border="0" style="background: none">';
647 foreach( $block as $rcObj ) {
648 # Get rc_xxxx variables
649 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
650 extract( $rcObj->mAttribs );
651
652 #$r .= '<tr><td valign="top">'.$this->spacerArrow();
653 $r .= '<tr><td valign="top">';
654 $r .= '<tt>'.$this->spacerIndent() . $this->spacerIndent();
655 $r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
656 $r .= '&nbsp;</tt></td><td valign="top">';
657
658 $o = '';
659 if( $rc_this_oldid != 0 ) {
660 $o = 'oldid='.$rc_this_oldid;
661 }
662 # Revision link
663 if( $rc_type == RC_LOG ) {
664 $link = '<tt>'.$rcObj->timestamp.'</tt> ';
665 } else if( !ChangesList::userCan($rcObj,Revision::DELETED_TEXT) ) {
666 $link = '<span class="history-deleted"><tt>'.$rcObj->timestamp.'</tt></span> ';
667 } else {
668 $link = '<tt>'.$this->skin->makeKnownLinkObj( $rcObj->getTitle(), $rcObj->timestamp, $curIdEq.'&'.$o ).'</tt>';
669 if( $this->isDeleted($rcObj,Revision::DELETED_TEXT) )
670 $link = '<span class="history-deleted">'.$link.'</span> ';
671 }
672 $r .= $link;
673
674 if ( !$rc_log_type ) {
675 $r .= ' (';
676 $r .= $rcObj->curlink;
677 $r .= $this->message['semicolon-separator'] . ' ';
678 $r .= $rcObj->lastlink;
679 $r .= ')';
680 } else {
681 $logname = LogPage::logName( $rc_log_type );
682 $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
683 $r .= '(' . $this->skin->makeKnownLinkObj($logtitle, $logname ) . ')';
684 }
685 $r .= ' . . ';
686
687 # Character diff
688 if( $wgRCShowChangedSize ) {
689 $r .= ( $rcObj->getCharacterDifference() == '' ? '' : $rcObj->getCharacterDifference() . ' . . ' ) ;
690 }
691 # User links
692 $r .= $rcObj->userlink;
693 $r .= $rcObj->usertalklink;
694 // log action
695 parent::insertAction($r, $rcObj);
696 // log comment
697 parent::insertComment($r, $rcObj);
698 # Mark revision as deleted
699 if ( !$rc_log_type && $this->isDeleted($rcObj,Revision::DELETED_TEXT) )
700 $r .= ' <tt>' . wfMsgHtml( 'deletedrev' ) . '</tt>';
701
702 $r .= "</td></tr>\n";
703 }
704 $r .= "</table></div>\n";
705
706 $this->rcCacheIndex++;
707 return $r;
708 }
709
710 function maybeWatchedLink( $link, $watched=false ) {
711 if( $watched ) {
712 // FIXME: css style might be more appropriate
713 return '<strong class="mw-watched">' . $link . '</strong>';
714 } else {
715 return $link;
716 }
717 }
718
719 /**
720 * Generate HTML for an arrow or placeholder graphic
721 * @param string $dir one of '', 'd', 'l', 'r'
722 * @param string $alt text
723 * @return string HTML <img> tag
724 * @access private
725 */
726 function arrow( $dir, $alt='' ) {
727 global $wgStylePath;
728 $encUrl = htmlspecialchars( $wgStylePath . '/common/images/Arr_' . $dir . '.png' );
729 $encAlt = htmlspecialchars( $alt );
730 return "<img src=\"$encUrl\" width=\"12\" height=\"12\" alt=\"$encAlt\" />";
731 }
732
733 /**
734 * Generate HTML for a right- or left-facing arrow,
735 * depending on language direction.
736 * @return string HTML <img> tag
737 * @access private
738 */
739 function sideArrow() {
740 global $wgContLang;
741 $dir = $wgContLang->isRTL() ? 'l' : 'r';
742 return $this->arrow( $dir, '+' );
743 }
744
745 /**
746 * Generate HTML for a down-facing arrow
747 * depending on language direction.
748 * @return string HTML <img> tag
749 * @access private
750 */
751 function downArrow() {
752 return $this->arrow( 'd', '-' );
753 }
754
755 /**
756 * Generate HTML for a spacer image
757 * @return string HTML <img> tag
758 * @access private
759 */
760 function spacerArrow() {
761 return $this->arrow( '', ' ' );
762 }
763
764 /**
765 * Add a set of spaces
766 * @return string HTML <td> tag
767 * @access private
768 */
769 function spacerIndent() {
770 return '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
771 }
772
773 /**
774 * Enhanced RC ungrouped line.
775 * @return string a HTML formated line (generated using $r)
776 */
777 function recentChangesBlockLine( $rcObj ) {
778 global $wgContLang, $wgRCShowChangedSize;
779
780 # Get rc_xxxx variables
781 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
782 extract( $rcObj->mAttribs );
783 $curIdEq = 'curid='.$rc_cur_id;
784
785 $r = '<table cellspacing="0" cellpadding="0" border="0" style="background: none"><tr>';
786
787 $r .= '<td valign="top" style="white-space: nowrap"><tt>' . $this->spacerArrow() . '&nbsp;';
788
789 # Flag and Timestamp
790 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
791 $r .= '&nbsp;&nbsp;&nbsp;&nbsp;'; // 4 flags -> 4 spaces
792 } else {
793 $r .= $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
794 }
795 $r .= '&nbsp;'.$rcObj->timestamp.'&nbsp;</tt></td><td>';
796
797 # Article link
798 if ( $rc_log_type !='' ) {
799 $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
800 $logname = LogPage::logName( $rc_log_type );
801 $r .= '(' . $this->skin->makeKnownLinkObj($logtitle, $logname ) . ')';
802 // All other stuff
803 } else {
804 $r .= $this->maybeWatchedLink( $rcObj->link, $rcObj->watched );
805 }
806 if ( $rc_type != RC_LOG ) {
807 # Diff
808 $r .= ' ('. $rcObj->difflink . $this->message['semicolon-separator'] . ' ';
809 # Hist
810 $r .= $this->skin->makeKnownLinkObj( $rcObj->getTitle(), wfMsg( 'hist' ), $curIdEq.'&action=history' ) . ')';
811 }
812 $r .= ' . . ';
813
814 # Character diff
815 if( $wgRCShowChangedSize ) {
816 $r .= ( $rcObj->getCharacterDifference() == '' ? '' : '&nbsp;' . $rcObj->getCharacterDifference() . ' . . ' ) ;
817 }
818
819 # User/talk
820 $r .= ' '.$rcObj->userlink . $rcObj->usertalklink;
821
822 # Comment
823 if( $rc_type != RC_MOVE && $rc_type != RC_MOVE_OVER_REDIRECT ) {
824 // log action
825 if ( $this->isDeleted($rcObj,LogPage::DELETED_ACTION) ) {
826 $r .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
827 } else {
828 $r .= ' ' . LogPage::actionText( $rc_log_type, $rc_log_action, $rcObj->getTitle(), $this->skin, LogPage::extractParams($rc_params), true, true );
829 }
830 // log comment
831 if ( $this->isDeleted($rcObj,LogPage::DELETED_COMMENT) ) {
832 $r .= ' <span class="history-deleted">' . wfMsg('rev-deleted-comment') . '</span>';
833 } else {
834 $r .= $this->skin->commentBlock( $rc_comment, $rcObj->getTitle() );
835 }
836 }
837
838 $r .= $this->numberofWatchingusers($rcObj->numberofWatchingusers);
839
840 $r .= "</td></tr></table>\n";
841 return $r;
842 }
843
844 /**
845 * If enhanced RC is in use, this function takes the previously cached
846 * RC lines, arranges them, and outputs the HTML
847 */
848 function recentChangesBlock() {
849 if( count ( $this->rc_cache ) == 0 ) {
850 return '';
851 }
852 $blockOut = '';
853 foreach( $this->rc_cache as $block ) {
854 if( count( $block ) < 2 ) {
855 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
856 } else {
857 $blockOut .= $this->recentChangesBlockGroup( $block );
858 }
859 }
860
861 return '<div>'.$blockOut.'</div>';
862 }
863
864 /**
865 * Returns text for the end of RC
866 * If enhanced RC is in use, returns pretty much all the text
867 */
868 function endRecentChangesList() {
869 return $this->recentChangesBlock() . parent::endRecentChangesList();
870 }
871
872 }