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