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