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