Non oldrc change lists were not displaying the names of new log types properly. While...
[lhc/web/wiklou.git] / includes / ChangesList.php
1 <?php
2 /**
3 * Classes to show various lists of changes:
4 * - watchlist
5 * - related changes
6 * - recent changes
7 *
8 * @file
9 */
10
11 /**
12 * @todo document
13 */
14 class RCCacheEntry extends RecentChange {
15 var $secureName, $link;
16 var $curlink , $difflink, $lastlink, $usertalklink, $versionlink;
17 var $userlink, $timestamp, $watched;
18
19 /**
20 * @param $rc RecentChange
21 * @return RCCacheEntry
22 */
23 static function newFromParent( $rc ) {
24 $rc2 = new RCCacheEntry;
25 $rc2->mAttribs = $rc->mAttribs;
26 $rc2->mExtra = $rc->mExtra;
27 return $rc2;
28 }
29 }
30
31 /**
32 * Base class for all changes lists
33 */
34 class ChangesList extends ContextSource {
35
36 /**
37 * @var Skin
38 */
39 public $skin;
40
41 protected $watchlist = false;
42
43 protected $message;
44
45 /**
46 * Changeslist contructor
47 *
48 * @param $obj Skin or IContextSource
49 */
50 public function __construct( $obj ) {
51 if ( $obj instanceof IContextSource ) {
52 $this->setContext( $obj );
53 $this->skin = $obj->getSkin();
54 } else {
55 $this->setContext( $obj->getContext() );
56 $this->skin = $obj;
57 }
58 $this->preCacheMessages();
59 }
60
61 /**
62 * Fetch an appropriate changes list class for the main context
63 * This first argument used to be an User object.
64 *
65 * @deprecated in 1.18; use newFromContext() instead
66 * @param $unused Unused
67 * @return ChangesList|EnhancedChangesList|OldChangesList derivative
68 */
69 public static function newFromUser( $unused ) {
70 wfDeprecated( __METHOD__, '1.18' );
71 return self::newFromContext( RequestContext::getMain() );
72 }
73
74 /**
75 * Fetch an appropriate changes list class for the specified context
76 * Some users might want to use an enhanced list format, for instance
77 *
78 * @param $context IContextSource to use
79 * @return ChangesList|EnhancedChangesList|OldChangesList derivative
80 */
81 public static function newFromContext( IContextSource $context ) {
82 $user = $context->getUser();
83 $sk = $context->getSkin();
84 $list = null;
85 if( wfRunHooks( 'FetchChangesList', array( $user, &$sk, &$list ) ) ) {
86 $new = $context->getRequest()->getBool( 'enhanced', $user->getOption( 'usenewrc' ) );
87 return $new ? new EnhancedChangesList( $context ) : new OldChangesList( $context );
88 } else {
89 return $list;
90 }
91 }
92
93 /**
94 * Sets the list to use a <li class="watchlist-(namespace)-(page)"> tag
95 * @param $value Boolean
96 */
97 public function setWatchlistDivs( $value = true ) {
98 $this->watchlist = $value;
99 }
100
101 /**
102 * As we use the same small set of messages in various methods and that
103 * they are called often, we call them once and save them in $this->message
104 */
105 private function preCacheMessages() {
106 if( !isset( $this->message ) ) {
107 foreach ( explode( ' ', 'cur diff hist last blocklink history ' .
108 'semicolon-separator pipe-separator' ) as $msg ) {
109 $this->message[$msg] = wfMsgExt( $msg, array( 'escapenoentities' ) );
110 }
111 }
112 }
113
114 /**
115 * Returns the appropriate flags for new page, minor change and patrolling
116 * @param $flags Array Associative array of 'flag' => Bool
117 * @param $nothing String to use for empty space
118 * @return String
119 */
120 protected function recentChangesFlags( $flags, $nothing = '&#160;' ) {
121 $f = '';
122 foreach( array( 'newpage', 'minor', 'bot', 'unpatrolled' ) as $flag ){
123 $f .= isset( $flags[$flag] ) && $flags[$flag]
124 ? self::flag( $flag )
125 : $nothing;
126 }
127 return $f;
128 }
129
130 /**
131 * Provide the <abbr> element appropriate to a given abbreviated flag,
132 * namely the flag indicating a new page, a minor edit, a bot edit, or an
133 * unpatrolled edit. By default in English it will contain "N", "m", "b",
134 * "!" respectively, plus it will have an appropriate title and class.
135 *
136 * @param $flag String: 'newpage', 'unpatrolled', 'minor', or 'bot'
137 * @return String: Raw HTML
138 */
139 public static function flag( $flag ) {
140 static $messages = null;
141 if ( is_null( $messages ) ) {
142 $messages = array(
143 'newpage' => array( 'newpageletter', 'recentchanges-label-newpage' ),
144 'minoredit' => array( 'minoreditletter', 'recentchanges-label-minor' ),
145 'botedit' => array( 'boteditletter', 'recentchanges-label-bot' ),
146 'unpatrolled' => array( 'unpatrolledletter', 'recentchanges-label-unpatrolled' ),
147 );
148 foreach( $messages as &$value ) {
149 $value[0] = wfMsgExt( $value[0], 'escapenoentities' );
150 $value[1] = wfMsgExt( $value[1], 'escapenoentities' );
151 }
152 }
153
154 # Inconsistent naming, bleh
155 $map = array(
156 'newpage' => 'newpage',
157 'minor' => 'minoredit',
158 'bot' => 'botedit',
159 'unpatrolled' => 'unpatrolled',
160 'minoredit' => 'minoredit',
161 'botedit' => 'botedit',
162 );
163 $flag = $map[$flag];
164
165 return "<abbr class='$flag' title='" . $messages[$flag][1] . "'>" . $messages[$flag][0] . '</abbr>';
166 }
167
168 /**
169 * Returns text for the start of the tabular part of RC
170 * @return String
171 */
172 public function beginRecentChangesList() {
173 $this->rc_cache = array();
174 $this->rcMoveIndex = 0;
175 $this->rcCacheIndex = 0;
176 $this->lastdate = '';
177 $this->rclistOpen = false;
178 return '';
179 }
180
181 /**
182 * Show formatted char difference
183 * @param $old Integer: bytes
184 * @param $new Integer: bytes
185 * @return String
186 */
187 public static function showCharacterDifference( $old, $new ) {
188 global $wgRCChangedSizeThreshold, $wgLang, $wgMiserMode;
189 $szdiff = $new - $old;
190
191 $code = $wgLang->getCode();
192 static $fastCharDiff = array();
193 if ( !isset($fastCharDiff[$code]) ) {
194 $fastCharDiff[$code] = $wgMiserMode || wfMsgNoTrans( 'rc-change-size' ) === '$1';
195 }
196
197 $formattedSize = $wgLang->formatNum($szdiff);
198
199 if ( !$fastCharDiff[$code] ) {
200 $formattedSize = wfMsgExt( 'rc-change-size', array( 'parsemag' ), $formattedSize );
201 }
202
203 if( abs( $szdiff ) > abs( $wgRCChangedSizeThreshold ) ) {
204 $tag = 'strong';
205 } else {
206 $tag = 'span';
207 }
208
209 if ( $szdiff === 0 ) {
210 $formattedSizeClass = 'mw-plusminus-null';
211 }
212 if ( $szdiff > 0 ) {
213 $formattedSize = '+' . $formattedSize;
214 $formattedSizeClass = 'mw-plusminus-pos';
215 }
216 if ( $szdiff < 0 ) {
217 $formattedSizeClass = 'mw-plusminus-neg';
218 }
219
220 $formattedTotalSize = wfMsgExt( 'nbytes', 'parsemag', $wgLang->formatNum( $new ) );
221
222 return Html::element( $tag,
223 array( 'dir' => 'ltr', 'class' => $formattedSizeClass, 'title' => $formattedTotalSize ),
224 wfMessage( 'parentheses', $formattedSize )->plain() ) . $wgLang->getDirMark();
225 }
226
227 /**
228 * Returns text for the end of RC
229 * @return String
230 */
231 public function endRecentChangesList() {
232 if( $this->rclistOpen ) {
233 return "</ul>\n";
234 } else {
235 return '';
236 }
237 }
238
239 public function insertDateHeader( &$s, $rc_timestamp ) {
240 # Make date header if necessary
241 $date = $this->getLanguage()->date( $rc_timestamp, true, true );
242 if( $date != $this->lastdate ) {
243 if( $this->lastdate != '' ) {
244 $s .= "</ul>\n";
245 }
246 $s .= Xml::element( 'h4', null, $date ) . "\n<ul class=\"special\">";
247 $this->lastdate = $date;
248 $this->rclistOpen = true;
249 }
250 }
251
252 public function insertLog( &$s, $title, $logtype ) {
253 $page = new LogPage( $logtype );
254 $logname = $page->getName()->escaped();
255 $s .= '(' . Linker::linkKnown( $title, $logname ) . ')';
256 }
257
258 /**
259 * @param $s
260 * @param $rc RecentChange
261 * @param $unpatrolled
262 * @return void
263 */
264 public function insertDiffHist( &$s, &$rc, $unpatrolled ) {
265 # Diff link
266 if( $rc->mAttribs['rc_type'] == RC_NEW || $rc->mAttribs['rc_type'] == RC_LOG ) {
267 $diffLink = $this->message['diff'];
268 } elseif ( !self::userCan( $rc, Revision::DELETED_TEXT, $this->getUser() ) ) {
269 $diffLink = $this->message['diff'];
270 } else {
271 $query = array(
272 'curid' => $rc->mAttribs['rc_cur_id'],
273 'diff' => $rc->mAttribs['rc_this_oldid'],
274 'oldid' => $rc->mAttribs['rc_last_oldid']
275 );
276
277 if( $unpatrolled ) {
278 $query['rcid'] = $rc->mAttribs['rc_id'];
279 };
280
281 $diffLink = Linker::linkKnown(
282 $rc->getTitle(),
283 $this->message['diff'],
284 array( 'tabindex' => $rc->counter ),
285 $query
286 );
287 }
288 $s .= '(' . $diffLink . $this->message['pipe-separator'];
289 # History link
290 $s .= Linker::linkKnown(
291 $rc->getTitle(),
292 $this->message['hist'],
293 array(),
294 array(
295 'curid' => $rc->mAttribs['rc_cur_id'],
296 'action' => 'history'
297 )
298 );
299 $s .= ') . . ';
300 }
301
302 /**
303 * @param $s
304 * @param $rc RecentChange
305 * @param $unpatrolled
306 * @param $watched
307 * @return void
308 */
309 public function insertArticleLink( &$s, &$rc, $unpatrolled, $watched ) {
310 # If it's a new article, there is no diff link, but if it hasn't been
311 # patrolled yet, we need to give users a way to do so
312 $params = array();
313
314 if ( $unpatrolled && $rc->mAttribs['rc_type'] == RC_NEW ) {
315 $params['rcid'] = $rc->mAttribs['rc_id'];
316 }
317
318 $articlelink = Linker::linkKnown(
319 $rc->getTitle(),
320 null,
321 array(),
322 $params
323 );
324 if( $this->isDeleted($rc,Revision::DELETED_TEXT) ) {
325 $articlelink = '<span class="history-deleted">' . $articlelink . '</span>';
326 }
327 # Bolden pages watched by this user
328 if( $watched ) {
329 $articlelink = "<strong class=\"mw-watched\">{$articlelink}</strong>";
330 }
331 # RTL/LTR marker
332 $articlelink .= $this->getLanguage()->getDirMark();
333
334 wfRunHooks( 'ChangesListInsertArticleLink',
335 array(&$this, &$articlelink, &$s, &$rc, $unpatrolled, $watched) );
336
337 $s .= " $articlelink";
338 }
339
340 /**
341 * @param $s
342 * @param $rc RecentChange
343 * @return void
344 */
345 public function insertTimestamp( &$s, $rc ) {
346 $s .= $this->message['semicolon-separator'] .
347 $this->getLanguage()->time( $rc->mAttribs['rc_timestamp'], true, true ) . ' . . ';
348 }
349
350 /** Insert links to user page, user talk page and eventually a blocking link
351 *
352 * @param $rc RecentChange
353 */
354 public function insertUserRelatedLinks( &$s, &$rc ) {
355 if( $this->isDeleted( $rc, Revision::DELETED_USER ) ) {
356 $s .= ' <span class="history-deleted">' . wfMsgHtml( 'rev-deleted-user' ) . '</span>';
357 } else {
358 $s .= $this->getLanguage()->getDirMark() . Linker::userLink( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
359 $s .= Linker::userToolLinks( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
360 }
361 }
362
363 /** insert a formatted action
364 *
365 * @param $rc RecentChange
366 */
367 public function insertLogEntry( $rc ) {
368 $formatter = LogFormatter::newFromRow( $rc->mAttribs );
369 $formatter->setShowUserToolLinks( true );
370 $mark = $this->getLanguage()->getDirMark();
371 return $formatter->getActionText() . " $mark" . $formatter->getComment();
372 }
373
374 /**
375 * Insert a formatted comment
376 * @param $rc RecentChange
377 */
378 public function insertComment( $rc ) {
379 if( $rc->mAttribs['rc_type'] != RC_MOVE && $rc->mAttribs['rc_type'] != RC_MOVE_OVER_REDIRECT ) {
380 if( $this->isDeleted( $rc, Revision::DELETED_COMMENT ) ) {
381 return ' <span class="history-deleted">' . wfMsgHtml( 'rev-deleted-comment' ) . '</span>';
382 } else {
383 return Linker::commentBlock( $rc->mAttribs['rc_comment'], $rc->getTitle() );
384 }
385 }
386 }
387
388 /**
389 * Check whether to enable recent changes patrol features
390 * @return Boolean
391 */
392 public static function usePatrol() {
393 global $wgUser;
394 return $wgUser->useRCPatrol();
395 }
396
397 /**
398 * Returns the string which indicates the number of watching users
399 */
400 protected function numberofWatchingusers( $count ) {
401 static $cache = array();
402 if( $count > 0 ) {
403 if( !isset( $cache[$count] ) ) {
404 $cache[$count] = wfMsgExt( 'number_of_watching_users_RCview',
405 array('parsemag', 'escape' ), $this->getLanguage()->formatNum( $count ) );
406 }
407 return $cache[$count];
408 } else {
409 return '';
410 }
411 }
412
413 /**
414 * Determine if said field of a revision is hidden
415 * @param $rc RCCacheEntry
416 * @param $field Integer: one of DELETED_* bitfield constants
417 * @return Boolean
418 */
419 public static function isDeleted( $rc, $field ) {
420 return ( $rc->mAttribs['rc_deleted'] & $field ) == $field;
421 }
422
423 /**
424 * Determine if the current user is allowed to view a particular
425 * field of this revision, if it's marked as deleted.
426 * @param $rc RCCacheEntry
427 * @param $field Integer
428 * @param $user User object to check, or null to use $wgUser
429 * @return Boolean
430 */
431 public static function userCan( $rc, $field, User $user = null ) {
432 if( $rc->mAttribs['rc_type'] == RC_LOG ) {
433 return LogEventsList::userCanBitfield( $rc->mAttribs['rc_deleted'], $field, $user );
434 } else {
435 return Revision::userCanBitfield( $rc->mAttribs['rc_deleted'], $field, $user );
436 }
437 }
438
439 protected function maybeWatchedLink( $link, $watched = false ) {
440 if( $watched ) {
441 return '<strong class="mw-watched">' . $link . '</strong>';
442 } else {
443 return '<span class="mw-rc-unwatched">' . $link . '</span>';
444 }
445 }
446
447 /** Inserts a rollback link
448 *
449 * @param $s
450 * @param $rc RecentChange
451 */
452 public function insertRollback( &$s, &$rc ) {
453 if( !$rc->mAttribs['rc_new'] && $rc->mAttribs['rc_this_oldid'] && $rc->mAttribs['rc_cur_id'] ) {
454 $page = $rc->getTitle();
455 /** Check for rollback and edit permissions, disallow special pages, and only
456 * show a link on the top-most revision */
457 if ( $this->getUser()->isAllowed('rollback') && $rc->mAttribs['page_latest'] == $rc->mAttribs['rc_this_oldid'] )
458 {
459 $rev = new Revision( array(
460 'id' => $rc->mAttribs['rc_this_oldid'],
461 'user' => $rc->mAttribs['rc_user'],
462 'user_text' => $rc->mAttribs['rc_user_text'],
463 'deleted' => $rc->mAttribs['rc_deleted']
464 ) );
465 $rev->setTitle( $page );
466 $s .= ' '.Linker::generateRollback( $rev, $this->getContext() );
467 }
468 }
469 }
470
471 /**
472 * @param $s
473 * @param $rc RecentChange
474 * @param $classes
475 * @return
476 */
477 public function insertTags( &$s, &$rc, &$classes ) {
478 if ( empty($rc->mAttribs['ts_tags']) )
479 return;
480
481 list($tagSummary, $newClasses) = ChangeTags::formatSummaryRow( $rc->mAttribs['ts_tags'], 'changeslist' );
482 $classes = array_merge( $classes, $newClasses );
483 $s .= ' ' . $tagSummary;
484 }
485
486 public function insertExtra( &$s, &$rc, &$classes ) {
487 ## Empty, used for subclassers to add anything special.
488 }
489
490 protected function showAsUnpatrolled( RecentChange $rc ) {
491 $unpatrolled = false;
492 if ( !$rc->mAttribs['rc_patrolled'] ) {
493 if ( $this->getUser()->useRCPatrol() ) {
494 $unpatrolled = true;
495 } elseif ( $this->getUser()->useNPPatrol() && $rc->mAttribs['rc_new'] ) {
496 $unpatrolled = true;
497 }
498 }
499 return $unpatrolled;
500 }
501 }
502
503
504 /**
505 * Generate a list of changes using the good old system (no javascript)
506 */
507 class OldChangesList extends ChangesList {
508 /**
509 * Format a line using the old system (aka without any javascript).
510 *
511 * @param $rc RecentChange
512 */
513 public function recentChangesLine( &$rc, $watched = false, $linenumber = null ) {
514 global $wgRCShowChangedSize;
515 wfProfileIn( __METHOD__ );
516
517 # Should patrol-related stuff be shown?
518 $unpatrolled = $this->showAsUnpatrolled( $rc );
519
520 $dateheader = ''; // $s now contains only <li>...</li>, for hooks' convenience.
521 $this->insertDateHeader( $dateheader, $rc->mAttribs['rc_timestamp'] );
522
523 $s = '';
524 $classes = array();
525 // use mw-line-even/mw-line-odd class only if linenumber is given (feature from bug 14468)
526 if( $linenumber ) {
527 if( $linenumber & 1 ) {
528 $classes[] = 'mw-line-odd';
529 }
530 else {
531 $classes[] = 'mw-line-even';
532 }
533 }
534
535 // Moved pages (very very old, not supported anymore)
536 if( $rc->mAttribs['rc_type'] == RC_MOVE || $rc->mAttribs['rc_type'] == RC_MOVE_OVER_REDIRECT ) {
537 // Log entries
538 } elseif( $rc->mAttribs['rc_log_type'] ) {
539 $logtitle = SpecialPage::getTitleFor( 'Log', $rc->mAttribs['rc_log_type'] );
540 $this->insertLog( $s, $logtitle, $rc->mAttribs['rc_log_type'] );
541 // Log entries (old format) or log targets, and special pages
542 } elseif( $rc->mAttribs['rc_namespace'] == NS_SPECIAL ) {
543 list( $name, $subpage ) = SpecialPageFactory::resolveAlias( $rc->mAttribs['rc_title'] );
544 if( $name == 'Log' ) {
545 $this->insertLog( $s, $rc->getTitle(), $subpage );
546 }
547 // Regular entries
548 } else {
549 $this->insertDiffHist( $s, $rc, $unpatrolled );
550 # M, N, b and ! (minor, new, bot and unpatrolled)
551 $s .= $this->recentChangesFlags(
552 array(
553 'newpage' => $rc->mAttribs['rc_new'],
554 'minor' => $rc->mAttribs['rc_minor'],
555 'unpatrolled' => $unpatrolled,
556 'bot' => $rc->mAttribs['rc_bot']
557 ),
558 ''
559 );
560 $this->insertArticleLink( $s, $rc, $unpatrolled, $watched );
561 }
562 # Edit/log timestamp
563 $this->insertTimestamp( $s, $rc );
564 # Bytes added or removed
565 if( $wgRCShowChangedSize ) {
566 $cd = $rc->getCharacterDifference();
567 if( $cd != '' ) {
568 $s .= "$cd . . ";
569 }
570 }
571
572 if ( $rc->mAttribs['rc_type'] == RC_LOG ) {
573 $s .= $this->insertLogEntry( $rc );
574 } else {
575 # User tool links
576 $this->insertUserRelatedLinks( $s, $rc );
577 # LTR/RTL direction mark
578 $s .= $this->getLanguage()->getDirMark();
579 $s .= $this->insertComment( $rc );
580 }
581
582 # Tags
583 $this->insertTags( $s, $rc, $classes );
584 # Rollback
585 $this->insertRollback( $s, $rc );
586 # For subclasses
587 $this->insertExtra( $s, $rc, $classes );
588
589 # How many users watch this page
590 if( $rc->numberofWatchingusers > 0 ) {
591 $s .= ' ' . wfMsgExt( 'number_of_watching_users_RCview',
592 array( 'parsemag', 'escape' ), $this->getLanguage()->formatNum( $rc->numberofWatchingusers ) );
593 }
594
595 if( $this->watchlist ) {
596 $classes[] = Sanitizer::escapeClass( 'watchlist-'.$rc->mAttribs['rc_namespace'].'-'.$rc->mAttribs['rc_title'] );
597 }
598
599 wfRunHooks( 'OldChangesListRecentChangesLine', array(&$this, &$s, $rc) );
600
601 wfProfileOut( __METHOD__ );
602 return "$dateheader<li class=\"".implode( ' ', $classes )."\">".$s."</li>\n";
603 }
604 }
605
606
607 /**
608 * Generate a list of changes using an Enhanced system (uses javascript).
609 */
610 class EnhancedChangesList extends ChangesList {
611 /**
612 * Add the JavaScript file for enhanced changeslist
613 * @return String
614 */
615 public function beginRecentChangesList() {
616 $this->rc_cache = array();
617 $this->rcMoveIndex = 0;
618 $this->rcCacheIndex = 0;
619 $this->lastdate = '';
620 $this->rclistOpen = false;
621 $this->getOutput()->addModuleStyles( 'mediawiki.special.changeslist' );
622 return '';
623 }
624 /**
625 * Format a line for enhanced recentchange (aka with javascript and block of lines).
626 *
627 * @param $baseRC RecentChange
628 * @param $watched bool
629 *
630 * @return string
631 */
632 public function recentChangesLine( &$baseRC, $watched = false ) {
633 wfProfileIn( __METHOD__ );
634
635 # Create a specialised object
636 $rc = RCCacheEntry::newFromParent( $baseRC );
637
638 $curIdEq = array( 'curid' => $rc->mAttribs['rc_cur_id'] );
639
640 # If it's a new day, add the headline and flush the cache
641 $date = $this->getLanguage()->date( $rc->mAttribs['rc_timestamp'], true );
642 $ret = '';
643 if( $date != $this->lastdate ) {
644 # Process current cache
645 $ret = $this->recentChangesBlock();
646 $this->rc_cache = array();
647 $ret .= Xml::element( 'h4', null, $date ) . "\n";
648 $this->lastdate = $date;
649 }
650
651 # Should patrol-related stuff be shown?
652 $rc->unpatrolled = $this->showAsUnpatrolled( $rc );
653
654 $showdifflinks = true;
655 # Make article link
656 $type = $rc->mAttribs['rc_type'];
657 $logType = $rc->mAttribs['rc_log_type'];
658 // Page moves, very old style, not supported anymore
659 if( $type == RC_MOVE || $type == RC_MOVE_OVER_REDIRECT ) {
660 // New unpatrolled pages
661 } elseif( $rc->unpatrolled && $type == RC_NEW ) {
662 $clink = Linker::linkKnown( $rc->getTitle(), null, array(),
663 array( 'rcid' => $rc->mAttribs['rc_id'] ) );
664 // Log entries
665 } elseif( $type == RC_LOG ) {
666 if( $logType ) {
667 $logtitle = SpecialPage::getTitleFor( 'Log', $logType );
668 $logpage = new LogPage( $logType );
669 $logname = $logpage->getName()->escaped();
670 $clink = '(' . Linker::linkKnown( $logtitle, $logname ) . ')';
671 } else {
672 $clink = Linker::link( $rc->getTitle() );
673 }
674 $watched = false;
675 // Log entries (old format) and special pages
676 } elseif( $rc->mAttribs['rc_namespace'] == NS_SPECIAL ) {
677 wfDebug( "Unexpected special page in recentchanges\n" );
678 $clink = '';
679 // Edits
680 } else {
681 $clink = Linker::linkKnown( $rc->getTitle() );
682 }
683
684 # Don't show unusable diff links
685 if ( !ChangesList::userCan( $rc, Revision::DELETED_TEXT, $this->getUser() ) ) {
686 $showdifflinks = false;
687 }
688
689 $time = $this->getLanguage()->time( $rc->mAttribs['rc_timestamp'], true, true );
690 $rc->watched = $watched;
691 $rc->link = $clink;
692 $rc->timestamp = $time;
693 $rc->numberofWatchingusers = $baseRC->numberofWatchingusers;
694
695 # Make "cur" and "diff" links. Do not use link(), it is too slow if
696 # called too many times (50% of CPU time on RecentChanges!).
697 $thisOldid = $rc->mAttribs['rc_this_oldid'];
698 $lastOldid = $rc->mAttribs['rc_last_oldid'];
699 if( $rc->unpatrolled ) {
700 $rcIdQuery = array( 'rcid' => $rc->mAttribs['rc_id'] );
701 } else {
702 $rcIdQuery = array();
703 }
704 $querycur = $curIdEq + array( 'diff' => '0', 'oldid' => $thisOldid );
705 $querydiff = $curIdEq + array( 'diff' => $thisOldid, 'oldid' =>
706 $lastOldid ) + $rcIdQuery;
707
708 if( !$showdifflinks ) {
709 $curLink = $this->message['cur'];
710 $diffLink = $this->message['diff'];
711 } elseif( in_array( $type, array( RC_NEW, RC_LOG, RC_MOVE, RC_MOVE_OVER_REDIRECT ) ) ) {
712 if ( $type != RC_NEW ) {
713 $curLink = $this->message['cur'];
714 } else {
715 $curUrl = htmlspecialchars( $rc->getTitle()->getLinkURL( $querycur ) );
716 $curLink = "<a href=\"$curUrl\" tabindex=\"{$baseRC->counter}\">{$this->message['cur']}</a>";
717 }
718 $diffLink = $this->message['diff'];
719 } else {
720 $diffUrl = htmlspecialchars( $rc->getTitle()->getLinkURL( $querydiff ) );
721 $curUrl = htmlspecialchars( $rc->getTitle()->getLinkURL( $querycur ) );
722 $diffLink = "<a href=\"$diffUrl\" tabindex=\"{$baseRC->counter}\">{$this->message['diff']}</a>";
723 $curLink = "<a href=\"$curUrl\" tabindex=\"{$baseRC->counter}\">{$this->message['cur']}</a>";
724 }
725
726 # Make "last" link
727 if( !$showdifflinks || !$lastOldid ) {
728 $lastLink = $this->message['last'];
729 } elseif( in_array( $type, array( RC_LOG, RC_MOVE, RC_MOVE_OVER_REDIRECT ) ) ) {
730 $lastLink = $this->message['last'];
731 } else {
732 $lastLink = Linker::linkKnown( $rc->getTitle(), $this->message['last'],
733 array(), $curIdEq + array('diff' => $thisOldid, 'oldid' => $lastOldid) + $rcIdQuery );
734 }
735
736 # Make user links
737 if( $this->isDeleted( $rc, Revision::DELETED_USER ) ) {
738 $rc->userlink = ' <span class="history-deleted">' . wfMsgHtml( 'rev-deleted-user' ) . '</span>';
739 } else {
740 $rc->userlink = Linker::userLink( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
741 $rc->usertalklink = Linker::userToolLinks( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
742 }
743
744 $rc->lastlink = $lastLink;
745 $rc->curlink = $curLink;
746 $rc->difflink = $diffLink;
747
748 # Put accumulated information into the cache, for later display
749 # Page moves go on their own line
750 $title = $rc->getTitle();
751 $secureName = $title->getPrefixedDBkey();
752 if( $type == RC_MOVE || $type == RC_MOVE_OVER_REDIRECT ) {
753 # Use an @ character to prevent collision with page names
754 $this->rc_cache['@@' . ($this->rcMoveIndex++)] = array($rc);
755 } else {
756 # Logs are grouped by type
757 if( $type == RC_LOG ){
758 $secureName = SpecialPage::getTitleFor( 'Log', $logType )->getPrefixedDBkey();
759 }
760 if( !isset( $this->rc_cache[$secureName] ) ) {
761 $this->rc_cache[$secureName] = array();
762 }
763
764 array_push( $this->rc_cache[$secureName], $rc );
765 }
766
767 wfProfileOut( __METHOD__ );
768
769 return $ret;
770 }
771
772 /**
773 * Enhanced RC group
774 */
775 protected function recentChangesBlockGroup( $block ) {
776 global $wgRCShowChangedSize;
777
778 wfProfileIn( __METHOD__ );
779
780 # Add the namespace and title of the block as part of the class
781 if ( $block[0]->mAttribs['rc_log_type'] ) {
782 # Log entry
783 $classes = 'mw-collapsible mw-collapsed mw-enhanced-rc ' . Sanitizer::escapeClass( 'mw-changeslist-log-' . $block[0]->mAttribs['rc_log_type'] . '-' . $block[0]->mAttribs['rc_title'] );
784 } else {
785 $classes = 'mw-collapsible mw-collapsed mw-enhanced-rc ' . Sanitizer::escapeClass( 'mw-changeslist-ns' . $block[0]->mAttribs['rc_namespace'] . '-' . $block[0]->mAttribs['rc_title'] );
786 }
787 $r = Html::openElement( 'table', array( 'class' => $classes ) ) .
788 Html::openElement( 'tr' );
789
790 # Collate list of users
791 $userlinks = array();
792 # Other properties
793 $unpatrolled = false;
794 $isnew = false;
795 $curId = $currentRevision = 0;
796 # Some catalyst variables...
797 $namehidden = true;
798 $allLogs = true;
799 foreach( $block as $rcObj ) {
800 $oldid = $rcObj->mAttribs['rc_last_oldid'];
801 if( $rcObj->mAttribs['rc_new'] ) {
802 $isnew = true;
803 }
804 // If all log actions to this page were hidden, then don't
805 // give the name of the affected page for this block!
806 if( !$this->isDeleted( $rcObj, LogPage::DELETED_ACTION ) ) {
807 $namehidden = false;
808 }
809 $u = $rcObj->userlink;
810 if( !isset( $userlinks[$u] ) ) {
811 $userlinks[$u] = 0;
812 }
813 if( $rcObj->unpatrolled ) {
814 $unpatrolled = true;
815 }
816 if( $rcObj->mAttribs['rc_type'] != RC_LOG ) {
817 $allLogs = false;
818 }
819 # Get the latest entry with a page_id and oldid
820 # since logs may not have these.
821 if( !$curId && $rcObj->mAttribs['rc_cur_id'] ) {
822 $curId = $rcObj->mAttribs['rc_cur_id'];
823 }
824 if( !$currentRevision && $rcObj->mAttribs['rc_this_oldid'] ) {
825 $currentRevision = $rcObj->mAttribs['rc_this_oldid'];
826 }
827
828 $bot = $rcObj->mAttribs['rc_bot'];
829 $userlinks[$u]++;
830 }
831
832 # Sort the list and convert to text
833 krsort( $userlinks );
834 asort( $userlinks );
835 $users = array();
836 foreach( $userlinks as $userlink => $count) {
837 $text = $userlink;
838 $text .= $this->getLanguage()->getDirMark();
839 if( $count > 1 ) {
840 $text .= ' (' . $this->getLanguage()->formatNum( $count ) . '×)';
841 }
842 array_push( $users, $text );
843 }
844
845 $users = ' <span class="changedby">[' .
846 implode( $this->message['semicolon-separator'], $users ) . ']</span>';
847
848 # Title for <a> tags
849 $expandTitle = htmlspecialchars( wfMsg( 'rc-enhanced-expand' ) );
850 $closeTitle = htmlspecialchars( wfMsg( 'rc-enhanced-hide' ) );
851
852 $tl = "<span class='mw-collapsible-toggle'>"
853 . "<span class='mw-rc-openarrow'>"
854 . "<a href='#' title='$expandTitle'>{$this->sideArrow()}</a>"
855 . "</span><span class='mw-rc-closearrow'>"
856 . "<a href='#' title='$closeTitle'>{$this->downArrow()}</a>"
857 . "</span></span>";
858 $r .= "<td>$tl</td>";
859
860 # Main line
861 $r .= '<td class="mw-enhanced-rc">' . $this->recentChangesFlags( array(
862 'newpage' => $isnew,
863 'minor' => false,
864 'unpatrolled' => $unpatrolled,
865 'bot' => $bot ,
866 ) );
867
868 # Timestamp
869 $r .= '&#160;'.$block[0]->timestamp.'&#160;</td><td>';
870
871 # Article link
872 if( $namehidden ) {
873 $r .= ' <span class="history-deleted">' . wfMsgHtml( 'rev-deleted-event' ) . '</span>';
874 } elseif( $allLogs ) {
875 $r .= $this->maybeWatchedLink( $block[0]->link, $block[0]->watched );
876 } else {
877 $this->insertArticleLink( $r, $block[0], $block[0]->unpatrolled, $block[0]->watched );
878 }
879
880 $r .= $this->getLanguage()->getDirMark();
881
882 $queryParams['curid'] = $curId;
883 # Changes message
884 $n = count($block);
885 static $nchanges = array();
886 if ( !isset( $nchanges[$n] ) ) {
887 $nchanges[$n] = wfMsgExt( 'nchanges', array( 'parsemag', 'escape' ), $this->getLanguage()->formatNum( $n ) );
888 }
889 # Total change link
890 $r .= ' ';
891 if( !$allLogs ) {
892 $r .= '(';
893 if( !ChangesList::userCan( $rcObj, Revision::DELETED_TEXT, $this->getUser() ) ) {
894 $r .= $nchanges[$n];
895 } elseif( $isnew ) {
896 $r .= $nchanges[$n];
897 } else {
898 $params = $queryParams;
899 $params['diff'] = $currentRevision;
900 $params['oldid'] = $oldid;
901
902 $r .= Linker::link(
903 $block[0]->getTitle(),
904 $nchanges[$n],
905 array(),
906 $params,
907 array( 'known', 'noclasses' )
908 );
909 }
910 }
911
912 # History
913 if( $allLogs ) {
914 // don't show history link for logs
915 } elseif( $namehidden || !$block[0]->getTitle()->exists() ) {
916 $r .= $this->message['pipe-separator'] . $this->message['hist'] . ')';
917 } else {
918 $params = $queryParams;
919 $params['action'] = 'history';
920
921 $r .= $this->message['pipe-separator'] .
922 Linker::linkKnown(
923 $block[0]->getTitle(),
924 $this->message['hist'],
925 array(),
926 $params
927 ) . ')';
928 }
929 $r .= ' . . ';
930
931 # Character difference (does not apply if only log items)
932 if( $wgRCShowChangedSize && !$allLogs ) {
933 $last = 0;
934 $first = count($block) - 1;
935 # Some events (like logs) have an "empty" size, so we need to skip those...
936 while( $last < $first && $block[$last]->mAttribs['rc_new_len'] === null ) {
937 $last++;
938 }
939 while( $first > $last && $block[$first]->mAttribs['rc_old_len'] === null ) {
940 $first--;
941 }
942 # Get net change
943 $chardiff = $rcObj->getCharacterDifference( $block[$first]->mAttribs['rc_old_len'],
944 $block[$last]->mAttribs['rc_new_len'] );
945
946 if( $chardiff == '' ) {
947 $r .= ' ';
948 } else {
949 $r .= ' ' . $chardiff. ' . . ';
950 }
951 }
952
953 $r .= $users;
954 $r .= $this->numberofWatchingusers($block[0]->numberofWatchingusers);
955
956 # Sub-entries
957 foreach( $block as $rcObj ) {
958 # Classes to apply -- TODO implement
959 $classes = array();
960 $type = $rcObj->mAttribs['rc_type'];
961
962 #$r .= '<tr><td valign="top">'.$this->spacerArrow();
963 $r .= '<tr><td></td><td class="mw-enhanced-rc">';
964 $r .= $this->recentChangesFlags( array(
965 'newpage' => $rcObj->mAttribs['rc_new'],
966 'minor' => $rcObj->mAttribs['rc_minor'],
967 'unpatrolled' => $rcObj->unpatrolled,
968 'bot' => $rcObj->mAttribs['rc_bot'],
969 ) );
970 $r .= '&#160;</td><td class="mw-enhanced-rc-nested"><span class="mw-enhanced-rc-time">';
971
972 $params = $queryParams;
973
974 if( $rcObj->mAttribs['rc_this_oldid'] != 0 ) {
975 $params['oldid'] = $rcObj->mAttribs['rc_this_oldid'];
976 }
977
978 # Log timestamp
979 if( $type == RC_LOG ) {
980 $link = $rcObj->timestamp;
981 # Revision link
982 } elseif( !ChangesList::userCan( $rcObj, Revision::DELETED_TEXT, $this->getUser() ) ) {
983 $link = '<span class="history-deleted">'.$rcObj->timestamp.'</span> ';
984 } else {
985 if ( $rcObj->unpatrolled && $type == RC_NEW) {
986 $params['rcid'] = $rcObj->mAttribs['rc_id'];
987 }
988
989 $link = Linker::linkKnown(
990 $rcObj->getTitle(),
991 $rcObj->timestamp,
992 array(),
993 $params
994 );
995 if( $this->isDeleted($rcObj,Revision::DELETED_TEXT) )
996 $link = '<span class="history-deleted">'.$link.'</span> ';
997 }
998 $r .= $link . '</span>';
999
1000 if ( !$type == RC_LOG || $type == RC_NEW ) {
1001 $r .= ' (';
1002 $r .= $rcObj->curlink;
1003 $r .= $this->message['pipe-separator'];
1004 $r .= $rcObj->lastlink;
1005 $r .= ')';
1006 }
1007 $r .= ' . . ';
1008
1009 # Character diff
1010 if( $wgRCShowChangedSize && $rcObj->getCharacterDifference() ) {
1011 $r .= $rcObj->getCharacterDifference() . ' . . ' ;
1012 }
1013
1014 if ( $rcObj->mAttribs['rc_type'] == RC_LOG ) {
1015 $r .= $this->insertLogEntry( $rcObj );
1016 } else {
1017 # User links
1018 $r .= $rcObj->userlink;
1019 $r .= $rcObj->usertalklink;
1020 $r .= $this->insertComment( $rcObj );
1021 }
1022
1023 # Rollback
1024 $this->insertRollback( $r, $rcObj );
1025 # Tags
1026 $this->insertTags( $r, $rcObj, $classes );
1027
1028 $r .= "</td></tr>\n";
1029 }
1030 $r .= "</table>\n";
1031
1032 $this->rcCacheIndex++;
1033
1034 wfProfileOut( __METHOD__ );
1035
1036 return $r;
1037 }
1038
1039 /**
1040 * Generate HTML for an arrow or placeholder graphic
1041 * @param $dir String: one of '', 'd', 'l', 'r'
1042 * @param $alt String: text
1043 * @param $title String: text
1044 * @return String: HTML <img> tag
1045 */
1046 protected function arrow( $dir, $alt='', $title='' ) {
1047 global $wgStylePath;
1048 $encUrl = htmlspecialchars( $wgStylePath . '/common/images/Arr_' . $dir . '.png' );
1049 $encAlt = htmlspecialchars( $alt );
1050 $encTitle = htmlspecialchars( $title );
1051 return "<img src=\"$encUrl\" width=\"12\" height=\"12\" alt=\"$encAlt\" title=\"$encTitle\" />";
1052 }
1053
1054 /**
1055 * Generate HTML for a right- or left-facing arrow,
1056 * depending on language direction.
1057 * @return String: HTML <img> tag
1058 */
1059 protected function sideArrow() {
1060 global $wgLang;
1061 $dir = $wgLang->isRTL() ? 'l' : 'r';
1062 return $this->arrow( $dir, '+', wfMsg( 'rc-enhanced-expand' ) );
1063 }
1064
1065 /**
1066 * Generate HTML for a down-facing arrow
1067 * depending on language direction.
1068 * @return String: HTML <img> tag
1069 */
1070 protected function downArrow() {
1071 return $this->arrow( 'd', '-', wfMsg( 'rc-enhanced-hide' ) );
1072 }
1073
1074 /**
1075 * Generate HTML for a spacer image
1076 * @return String: HTML <img> tag
1077 */
1078 protected function spacerArrow() {
1079 return $this->arrow( '', codepointToUtf8( 0xa0 ) ); // non-breaking space
1080 }
1081
1082 /**
1083 * Enhanced RC ungrouped line.
1084 *
1085 * @param $rcObj RecentChange
1086 * @return String: a HTML formatted line (generated using $r)
1087 */
1088 protected function recentChangesBlockLine( $rcObj ) {
1089 global $wgRCShowChangedSize;
1090
1091 wfProfileIn( __METHOD__ );
1092 $query['curid'] = $rcObj->mAttribs['rc_cur_id'];
1093
1094 $type = $rcObj->mAttribs['rc_type'];
1095 $logType = $rcObj->mAttribs['rc_log_type'];
1096 if( $logType ) {
1097 # Log entry
1098 $classes = 'mw-enhanced-rc ' . Sanitizer::escapeClass( 'mw-changeslist-log-' . $logType . '-' . $rcObj->mAttribs['rc_title'] );
1099 } else {
1100 $classes = 'mw-enhanced-rc ' . Sanitizer::escapeClass( 'mw-changeslist-ns' . $rcObj->mAttribs['rc_namespace'] . '-' . $rcObj->mAttribs['rc_title'] );
1101 }
1102 $r = Html::openElement( 'table', array( 'class' => $classes ) ) .
1103 Html::openElement( 'tr' );
1104
1105 $r .= '<td class="mw-enhanced-rc">' . $this->spacerArrow();
1106 # Flag and Timestamp
1107 if( $type == RC_MOVE || $type == RC_MOVE_OVER_REDIRECT ) {
1108 $r .= '&#160;&#160;&#160;&#160;'; // 4 flags -> 4 spaces
1109 } else {
1110 $r .= $this->recentChangesFlags( array(
1111 'newpage' => $type == RC_NEW,
1112 'minor' => $rcObj->mAttribs['rc_minor'],
1113 'unpatrolled' => $rcObj->unpatrolled,
1114 'bot' => $rcObj->mAttribs['rc_bot'],
1115 ) );
1116 }
1117 $r .= '&#160;'.$rcObj->timestamp.'&#160;</td><td>';
1118 # Article or log link
1119 if( $logType ) {
1120 $logtitle = SpecialPage::getTitleFor( 'Log', $logType );
1121 $logname = LogPage::logName( $logType );
1122 $r .= '(' . Linker::linkKnown( $logtitle, htmlspecialchars( $logname ) ) . ')';
1123 } else {
1124 $this->insertArticleLink( $r, $rcObj, $rcObj->unpatrolled, $rcObj->watched );
1125 }
1126 # Diff and hist links
1127 if ( $type != RC_LOG ) {
1128 $r .= ' ('. $rcObj->difflink . $this->message['pipe-separator'];
1129 $query['action'] = 'history';
1130 $r .= Linker::linkKnown(
1131 $rcObj->getTitle(),
1132 $this->message['hist'],
1133 array(),
1134 $query
1135 ) . ')';
1136 }
1137 $r .= ' . . ';
1138 # Character diff
1139 if( $wgRCShowChangedSize && ($cd = $rcObj->getCharacterDifference()) ) {
1140 $r .= "$cd . . ";
1141 }
1142
1143 if ( $type == RC_LOG ) {
1144 $r .= $this->insertLogEntry( $rcObj );
1145 } else {
1146 $r .= ' '.$rcObj->userlink . $rcObj->usertalklink;
1147 $r .= $this->insertComment( $rcObj );
1148 $r .= $this->insertRollback( $r, $rcObj );
1149 }
1150
1151 # Tags
1152 $classes = explode( ' ', $classes );
1153 $this->insertTags( $r, $rcObj, $classes );
1154 # Show how many people are watching this if enabled
1155 $r .= $this->numberofWatchingusers($rcObj->numberofWatchingusers);
1156
1157 $r .= "</td></tr></table>\n";
1158
1159 wfProfileOut( __METHOD__ );
1160
1161 return $r;
1162 }
1163
1164 /**
1165 * If enhanced RC is in use, this function takes the previously cached
1166 * RC lines, arranges them, and outputs the HTML
1167 *
1168 * @return string
1169 */
1170 protected function recentChangesBlock() {
1171 if( count ( $this->rc_cache ) == 0 ) {
1172 return '';
1173 }
1174
1175 wfProfileIn( __METHOD__ );
1176
1177 $blockOut = '';
1178 foreach( $this->rc_cache as $block ) {
1179 if( count( $block ) < 2 ) {
1180 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
1181 } else {
1182 $blockOut .= $this->recentChangesBlockGroup( $block );
1183 }
1184 }
1185
1186 wfProfileOut( __METHOD__ );
1187
1188 return '<div>'.$blockOut.'</div>';
1189 }
1190
1191 /**
1192 * Returns text for the end of RC
1193 * If enhanced RC is in use, returns pretty much all the text
1194 */
1195 public function endRecentChangesList() {
1196 return $this->recentChangesBlock() . parent::endRecentChangesList();
1197 }
1198
1199 }