Actually, leave usePatrol() stub for b/c
[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 $clink = $this->skin->makeLinkObj( $rc->getTitle(), '' );
445 // Edits
446 } else {
447 $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '' );
448 }
449
450 # Don't show unusable diff links
451 if ( !ChangesList::userCan($rc,Revision::DELETED_TEXT) ) {
452 $showdifflinks = false;
453 }
454
455 $time = $wgContLang->time( $rc_timestamp, true, true );
456 $rc->watched = $watched;
457 $rc->link = $clink;
458 $rc->timestamp = $time;
459 $rc->numberofWatchingusers = $baseRC->numberofWatchingusers;
460
461 # Make "cur" and "diff" links
462 if( $rc->unpatrolled ) {
463 $rcIdQuery = "&rcid={$rc_id}";
464 } else {
465 $rcIdQuery = '';
466 }
467 $querycur = $curIdEq."&diff=0&oldid=$rc_this_oldid";
468 $querydiff = $curIdEq."&diff=$rc_this_oldid&oldid=$rc_last_oldid$rcIdQuery";
469 $aprops = ' tabindex="'.$baseRC->counter.'"';
470 $curLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['cur'], $querycur, '' ,'', $aprops );
471
472 # Make "diff" an "cur" links
473 if( !$showdifflinks ) {
474 $curLink = $this->message['cur'];
475 $diffLink = $this->message['diff'];
476 } else if( $rc_type == RC_NEW || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
477 if( $rc_type != RC_NEW ) {
478 $curLink = $this->message['cur'];
479 }
480 $diffLink = $this->message['diff'];
481 } else {
482 $diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['diff'], $querydiff, '' ,'', $aprops );
483 }
484
485 # Make "last" link
486 if( !$showdifflinks ) {
487 $lastLink = $this->message['last'];
488 } else if( $rc_last_oldid == 0 || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
489 $lastLink = $this->message['last'];
490 } else {
491 $lastLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['last'],
492 $curIdEq.'&diff='.$rc_this_oldid.'&oldid='.$rc_last_oldid . $rcIdQuery );
493 }
494
495 # Make user links
496 if( $this->isDeleted($rc,Revision::DELETED_USER) ) {
497 $rc->userlink = ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-user') . '</span>';
498 } else {
499 $rc->userlink = $this->skin->userLink( $rc_user, $rc_user_text );
500 $rc->usertalklink = $this->skin->userToolLinks( $rc_user, $rc_user_text );
501 }
502
503 $rc->lastlink = $lastLink;
504 $rc->curlink = $curLink;
505 $rc->difflink = $diffLink;
506
507 # Put accumulated information into the cache, for later display
508 # Page moves go on their own line
509 $title = $rc->getTitle();
510 $secureName = $title->getPrefixedDBkey();
511 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
512 # Use an @ character to prevent collision with page names
513 $this->rc_cache['@@' . ($this->rcMoveIndex++)] = array($rc);
514 } else {
515 global $wgRCTypeGroupedLogs;
516 # Some logs are best grouped by type (block,rights)
517 if( $rc_type == RC_LOG && in_array($rc_log_type,$wgRCTypeGroupedLogs) ){
518 $secureName = SpecialPage::getTitleFor( 'Log', $rc_log_type )->getPrefixedDBkey();
519 }
520 if( !isset( $this->rc_cache[$secureName] ) ) {
521 $this->rc_cache[$secureName] = array();
522 }
523 array_push( $this->rc_cache[$secureName], $rc );
524 }
525 return $ret;
526 }
527
528 /**
529 * Enhanced RC group
530 */
531 protected function recentChangesBlockGroup( $block ) {
532 global $wgLang, $wgContLang, $wgRCShowChangedSize;
533 $r = '<table cellpadding="0" cellspacing="0" border="0" style="background: none"><tr>';
534
535 # Collate list of users
536 $userlinks = array();
537 # Other properties
538 $unpatrolled = false;
539 $isnew = false;
540 $curId = $currentRevision = 0;
541 # Some catalyst variables...
542 $namehidden = true;
543 $alllogs = true;
544 foreach( $block as $rcObj ) {
545 $oldid = $rcObj->mAttribs['rc_last_oldid'];
546 if( $rcObj->mAttribs['rc_new'] ) {
547 $isnew = true;
548 }
549 // If all log actions to this page were hidden, then don't
550 // give the name of the affected page for this block!
551 if( !$this->isDeleted( $rcObj, LogPage::DELETED_ACTION ) ) {
552 $namehidden = false;
553 }
554 $u = $rcObj->userlink;
555 if( !isset( $userlinks[$u] ) ) {
556 $userlinks[$u] = 0;
557 }
558 if( $rcObj->unpatrolled ) {
559 $unpatrolled = true;
560 }
561 if( $rcObj->mAttribs['rc_type'] != RC_LOG ) {
562 $alllogs = false;
563 }
564 # Get the latest entry with a page_id and oldid
565 # since logs may not have these.
566 if( !$curId && $rcObj->mAttribs['rc_cur_id'] ) {
567 $curId = $rcObj->mAttribs['rc_cur_id'];
568 }
569 if( !$currentRevision && $rcObj->mAttribs['rc_this_oldid'] ) {
570 $currentRevision = $rcObj->mAttribs['rc_this_oldid'];
571 }
572
573 $bot = $rcObj->mAttribs['rc_bot'];
574 $userlinks[$u]++;
575 }
576
577 # Sort the list and convert to text
578 krsort( $userlinks );
579 asort( $userlinks );
580 $users = array();
581 foreach( $userlinks as $userlink => $count) {
582 $text = $userlink;
583 $text .= $wgContLang->getDirMark();
584 if( $count > 1 ) {
585 $text .= ' ('.$count.'&times;)';
586 }
587 array_push( $users, $text );
588 }
589
590 $users = ' <span class="changedby">[' . implode( $this->message['semicolon-separator'] . ' ', $users ) . ']</span>';
591
592 # Arrow
593 $rci = 'RCI'.$this->rcCacheIndex;
594 $rcl = 'RCL'.$this->rcCacheIndex;
595 $rcm = 'RCM'.$this->rcCacheIndex;
596 $toggleLink = "javascript:toggleVisibility('$rci','$rcm','$rcl')";
597 $tl = '<span id="'.$rcm.'"><a href="'.$toggleLink.'">' . $this->sideArrow() . '</a></span>';
598 $tl .= '<span id="'.$rcl.'" style="display:none"><a href="'.$toggleLink.'">' . $this->downArrow() . '</a></span>';
599 $r .= '<td valign="top" style="white-space: nowrap"><tt>'.$tl.'&nbsp;';
600
601 # Main line
602 $r .= $this->recentChangesFlags( $isnew, false, $unpatrolled, '&nbsp;', $bot );
603
604 # Timestamp
605 $r .= '&nbsp;'.$block[0]->timestamp.'&nbsp;</tt></td><td>';
606
607 # Article link
608 if( $namehidden ) {
609 $r .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
610 } else {
611 $r .= $this->maybeWatchedLink( $block[0]->link, $block[0]->watched );
612 }
613
614 $r .= $wgContLang->getDirMark();
615
616 $curIdEq = 'curid=' . $curId;
617 # Changes message
618 $n = count($block);
619 static $nchanges = array();
620 if ( !isset( $nchanges[$n] ) ) {
621 $nchanges[$n] = wfMsgExt( 'nchanges', array( 'parsemag', 'escape' ), $wgLang->formatNum( $n ) );
622 }
623 # Total change link
624 $r .= ' ';
625 if( !$alllogs ) {
626 $r .= '(';
627 if( !ChangesList::userCan($rcObj,Revision::DELETED_TEXT) ) {
628 $r .= $nchanges[$n];
629 } else if( $isnew ) {
630 $r .= $nchanges[$n];
631 } else {
632 $r .= $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
633 $nchanges[$n], $curIdEq."&diff=$currentRevision&oldid=$oldid" );
634 }
635 $r .= ') . . ';
636 }
637
638 # Character difference (does not apply if only log items)
639 if( $wgRCShowChangedSize && !$alllogs ) {
640 $last = 0;
641 $first = count($block) - 1;
642 # Some events (like logs) have an "empty" size, so we need to skip those...
643 while( $last < $first && $block[$last]->mAttribs['rc_new_len'] === NULL ) {
644 $last++;
645 }
646 while( $first > $last && $block[$first]->mAttribs['rc_old_len'] === NULL ) {
647 $first--;
648 }
649 # Get net change
650 $chardiff = $rcObj->getCharacterDifference( $block[$first]->mAttribs['rc_old_len'],
651 $block[$last]->mAttribs['rc_new_len'] );
652
653 if( $chardiff == '' ) {
654 $r .= ' ';
655 } else {
656 $r .= ' ' . $chardiff. ' . . ';
657 }
658 }
659
660 # History
661 if( $namehidden || $alllogs ) {
662 $r .= '(' . $this->message['history'] . ')';
663 } else {
664 $r .= '(' . $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
665 $this->message['history'], $curIdEq.'&action=history' ) . ')';
666 }
667
668 $r .= $users;
669 $r .=$this->numberofWatchingusers($block[0]->numberofWatchingusers);
670
671 $r .= "</td></tr></table>\n";
672
673 # Sub-entries
674 $r .= '<div id="'.$rci.'" style="display:none;"><table cellpadding="0" cellspacing="0" border="0" style="background: none">';
675 foreach( $block as $rcObj ) {
676 # Get rc_xxxx variables
677 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
678 extract( $rcObj->mAttribs );
679
680 #$r .= '<tr><td valign="top">'.$this->spacerArrow();
681 $r .= '<tr><td valign="top">';
682 $r .= '<tt>'.$this->spacerIndent() . $this->spacerIndent();
683 $r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
684 $r .= '&nbsp;</tt></td><td valign="top">';
685
686 $o = '';
687 if( $rc_this_oldid != 0 ) {
688 $o = 'oldid='.$rc_this_oldid;
689 }
690 # Revision link
691 if( $rc_type == RC_LOG ) {
692 $link = '<tt>'.$rcObj->timestamp.'</tt> ';
693 } else if( !ChangesList::userCan($rcObj,Revision::DELETED_TEXT) ) {
694 $link = '<span class="history-deleted"><tt>'.$rcObj->timestamp.'</tt></span> ';
695 } else {
696 $link = '<tt>'.$this->skin->makeKnownLinkObj( $rcObj->getTitle(), $rcObj->timestamp, $curIdEq.'&'.$o ).'</tt>';
697 if( $this->isDeleted($rcObj,Revision::DELETED_TEXT) )
698 $link = '<span class="history-deleted">'.$link.'</span> ';
699 }
700 $r .= $link;
701
702 if ( !$rc_type == RC_LOG || $rc_type == RC_NEW ) {
703 $r .= ' (';
704 $r .= $rcObj->curlink;
705 $r .= $this->message['semicolon-separator'] . ' ';
706 $r .= $rcObj->lastlink;
707 $r .= ')';
708 }
709 $r .= ' . . ';
710
711 # Character diff
712 if( $wgRCShowChangedSize ) {
713 $r .= ( $rcObj->getCharacterDifference() == '' ? '' : $rcObj->getCharacterDifference() . ' . . ' ) ;
714 }
715 # User links
716 $r .= $rcObj->userlink;
717 $r .= $rcObj->usertalklink;
718 // log action
719 parent::insertAction( $r, $rcObj );
720 // log comment
721 parent::insertComment( $r, $rcObj );
722 # Mark revision as deleted
723 if( !$rc_log_type && $this->isDeleted($rcObj,Revision::DELETED_TEXT) ) {
724 $r .= ' <tt>' . wfMsgHtml( 'deletedrev' ) . '</tt>';
725 }
726
727 $r .= "</td></tr>\n";
728 }
729 $r .= "</table></div>\n";
730
731 $this->rcCacheIndex++;
732 return $r;
733 }
734
735 protected function maybeWatchedLink( $link, $watched=false ) {
736 if( $watched ) {
737 // FIXME: css style might be more appropriate
738 return '<strong class="mw-watched">' . $link . '</strong>';
739 } else {
740 return $link;
741 }
742 }
743
744 /**
745 * Generate HTML for an arrow or placeholder graphic
746 * @param string $dir one of '', 'd', 'l', 'r'
747 * @param string $alt text
748 * @return string HTML <img> tag
749 */
750 protected function arrow( $dir, $alt='' ) {
751 global $wgStylePath;
752 $encUrl = htmlspecialchars( $wgStylePath . '/common/images/Arr_' . $dir . '.png' );
753 $encAlt = htmlspecialchars( $alt );
754 return "<img src=\"$encUrl\" width=\"12\" height=\"12\" alt=\"$encAlt\" />";
755 }
756
757 /**
758 * Generate HTML for a right- or left-facing arrow,
759 * depending on language direction.
760 * @return string HTML <img> tag
761 */
762 protected function sideArrow() {
763 global $wgContLang;
764 $dir = $wgContLang->isRTL() ? 'l' : 'r';
765 return $this->arrow( $dir, '+' );
766 }
767
768 /**
769 * Generate HTML for a down-facing arrow
770 * depending on language direction.
771 * @return string HTML <img> tag
772 */
773 protected function downArrow() {
774 return $this->arrow( 'd', '-' );
775 }
776
777 /**
778 * Generate HTML for a spacer image
779 * @return string HTML <img> tag
780 */
781 protected function spacerArrow() {
782 return $this->arrow( '', ' ' );
783 }
784
785 /**
786 * Add a set of spaces
787 * @return string HTML <td> tag
788 */
789 protected function spacerIndent() {
790 return '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
791 }
792
793 /**
794 * Enhanced RC ungrouped line.
795 * @return string a HTML formated line (generated using $r)
796 */
797 protected function recentChangesBlockLine( $rcObj ) {
798 global $wgContLang, $wgRCShowChangedSize;
799
800 # Get rc_xxxx variables
801 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
802 extract( $rcObj->mAttribs );
803 $curIdEq = 'curid='.$rc_cur_id;
804
805 $r = '<table cellspacing="0" cellpadding="0" border="0" style="background: none"><tr>';
806
807 $r .= '<td valign="top" style="white-space: nowrap"><tt>' . $this->spacerArrow() . '&nbsp;';
808
809 # Flag and Timestamp
810 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
811 $r .= '&nbsp;&nbsp;&nbsp;&nbsp;'; // 4 flags -> 4 spaces
812 } else {
813 $r .= $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
814 }
815 $r .= '&nbsp;'.$rcObj->timestamp.'&nbsp;</tt></td><td>';
816
817 # Article or log link
818 if( $rc_log_type ) {
819 $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
820 $logname = LogPage::logName( $rc_log_type );
821 $r .= '(' . $this->skin->makeKnownLinkObj($logtitle, $logname ) . ')';
822 } else if( !$this->userCan($rcObj,Revision::DELETED_TEXT) ) {
823 $r .= '<span class="history-deleted">' . $rcObj->link . '</span>';
824 } else {
825 $r .= $this->maybeWatchedLink( $rcObj->link, $rcObj->watched );
826 }
827
828 # Diff and hist links
829 if ( $rc_type != RC_LOG ) {
830 $r .= ' ('. $rcObj->difflink . $this->message['semicolon-separator'] . ' ';
831 $r .= $this->skin->makeKnownLinkObj( $rcObj->getTitle(), wfMsg( 'hist' ), $curIdEq.'&action=history' ) . ')';
832 }
833 $r .= ' . . ';
834
835 # Character diff
836 if( $wgRCShowChangedSize ) {
837 $r .= ( $rcObj->getCharacterDifference() == '' ? '' : '&nbsp;' . $rcObj->getCharacterDifference() . ' . . ' ) ;
838 }
839
840 # User/talk
841 $r .= ' '.$rcObj->userlink . $rcObj->usertalklink;
842
843 # Log action (if any)
844 if( $rc_log_type ) {
845 if( $this->isDeleted($rcObj,LogPage::DELETED_ACTION) ) {
846 $r .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
847 } else {
848 $r .= ' ' . LogPage::actionText( $rc_log_type, $rc_log_action, $rcObj->getTitle(), $this->skin, LogPage::extractParams($rc_params), true, true );
849 }
850 }
851
852 # Edit or log comment
853 if( $rc_type != RC_MOVE && $rc_type != RC_MOVE_OVER_REDIRECT ) {
854 // log comment
855 if ( $this->isDeleted($rcObj,LogPage::DELETED_COMMENT) ) {
856 $r .= ' <span class="history-deleted">' . wfMsg('rev-deleted-comment') . '</span>';
857 } else {
858 $r .= $this->skin->commentBlock( $rc_comment, $rcObj->getTitle() );
859 }
860 }
861
862 # Show how many people are watching this if enabled
863 $r .= $this->numberofWatchingusers($rcObj->numberofWatchingusers);
864
865 $r .= "</td></tr></table>\n";
866 return $r;
867 }
868
869 /**
870 * If enhanced RC is in use, this function takes the previously cached
871 * RC lines, arranges them, and outputs the HTML
872 */
873 protected function recentChangesBlock() {
874 if( count ( $this->rc_cache ) == 0 ) {
875 return '';
876 }
877 $blockOut = '';
878 foreach( $this->rc_cache as $block ) {
879 if( count( $block ) < 2 ) {
880 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
881 } else {
882 $blockOut .= $this->recentChangesBlockGroup( $block );
883 }
884 }
885
886 return '<div>'.$blockOut.'</div>';
887 }
888
889 /**
890 * Returns text for the end of RC
891 * If enhanced RC is in use, returns pretty much all the text
892 */
893 public function endRecentChangesList() {
894 return $this->recentChangesBlock() . parent::endRecentChangesList();
895 }
896
897 }