3 * Generates a list of changes using an Enhanced system (uses javascript).
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
23 class EnhancedChangesList
extends ChangesList
{
26 * @var RCCacheEntryFactory
28 protected $cacheEntryFactory;
31 * @var array Array of array of RCCacheEntry
36 * @param IContextSource|Skin $obj
39 public function __construct( $obj ) {
40 if ( $obj instanceof Skin
) {
41 // @todo: deprecate constructing with Skin
42 $context = $obj->getContext();
44 if ( !$obj instanceof IContextSource
) {
45 throw new MWException( 'EnhancedChangesList must be constructed with a '
46 . 'context source or skin.' );
52 parent
::__construct( $context );
54 // message is set by the parent ChangesList class
55 $this->cacheEntryFactory
= new RCCacheEntryFactory(
62 * Add the JavaScript file for enhanced changeslist
65 public function beginRecentChangesList() {
66 $this->rc_cache
= array();
67 $this->rcMoveIndex
= 0;
68 $this->rcCacheIndex
= 0;
70 $this->rclistOpen
= false;
71 $this->getOutput()->addModuleStyles( array(
72 'mediawiki.special.changeslist',
73 'mediawiki.special.changeslist.enhanced',
75 $this->getOutput()->addModules( array(
76 'jquery.makeCollapsible',
80 return '<div class="mw-changeslist">';
84 * Format a line for enhanced recentchange (aka with javascript and block of lines).
86 * @param RecentChange $baseRC
87 * @param bool $watched
91 public function recentChangesLine( &$baseRC, $watched = false ) {
93 $date = $this->getLanguage()->userDate(
94 $baseRC->mAttribs
['rc_timestamp'],
100 # If it's a new day, add the headline and flush the cache
101 if ( $date != $this->lastdate
) {
102 # Process current cache
103 $ret = $this->recentChangesBlock();
104 $this->rc_cache
= array();
105 $ret .= Xml
::element( 'h4', null, $date ) . "\n";
106 $this->lastdate
= $date;
109 $cacheEntry = $this->cacheEntryFactory
->newFromRecentChange( $baseRC, $watched );
110 $this->addCacheEntry( $cacheEntry );
116 * Put accumulated information into the cache, for later display.
117 * Page moves go on their own line.
119 * @param RCCacheEntry $cacheEntry
121 protected function addCacheEntry( RCCacheEntry
$cacheEntry ) {
122 $cacheGroupingKey = $this->makeCacheGroupingKey( $cacheEntry );
124 if ( !isset( $this->rc_cache
[$cacheGroupingKey] ) ) {
125 $this->rc_cache
[$cacheGroupingKey] = array();
128 array_push( $this->rc_cache
[$cacheGroupingKey], $cacheEntry );
132 * @todo use rc_source to group, if set; fallback to rc_type
134 * @param RCCacheEntry $cacheEntry
138 protected function makeCacheGroupingKey( RCCacheEntry
$cacheEntry ) {
139 $title = $cacheEntry->getTitle();
140 $cacheGroupingKey = $title->getPrefixedDBkey();
142 $type = $cacheEntry->mAttribs
['rc_type'];
144 if ( $type == RC_LOG
) {
146 $cacheGroupingKey = SpecialPage
::getTitleFor(
148 $cacheEntry->mAttribs
['rc_log_type']
149 )->getPrefixedDBkey();
152 return $cacheGroupingKey;
157 * @param RCCacheEntry[] $block
160 protected function recentChangesBlockGroup( $block ) {
162 # Add the namespace and title of the block as part of the class
163 $classes = array( 'mw-collapsible', 'mw-collapsed', 'mw-enhanced-rc' );
164 if ( $block[0]->mAttribs
['rc_log_type'] ) {
166 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-log-'
167 . $block[0]->mAttribs
['rc_log_type'] );
169 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-ns'
170 . $block[0]->mAttribs
['rc_namespace'] . '-' . $block[0]->mAttribs
['rc_title'] );
172 $classes[] = $block[0]->watched
&& $block[0]->mAttribs
['rc_timestamp'] >= $block[0]->watched
173 ?
'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
174 $r = Html
::openElement( 'table', array( 'class' => $classes ) ) .
175 Html
::openElement( 'tr' );
177 # Collate list of users
178 $userlinks = array();
180 $unpatrolled = false;
185 # Some catalyst variables...
188 $RCShowChangedSize = $this->getConfig()->get( 'RCShowChangedSize' );
189 foreach ( $block as $rcObj ) {
190 if ( $rcObj->mAttribs
['rc_type'] == RC_NEW
) {
193 // If all log actions to this page were hidden, then don't
194 // give the name of the affected page for this block!
195 if ( !$this->isDeleted( $rcObj, LogPage
::DELETED_ACTION
) ) {
198 $u = $rcObj->userlink
;
199 if ( !isset( $userlinks[$u] ) ) {
202 if ( $rcObj->unpatrolled
) {
205 if ( $rcObj->mAttribs
['rc_type'] != RC_LOG
) {
208 # Get the latest entry with a page_id and oldid
209 # since logs may not have these.
210 if ( !$curId && $rcObj->mAttribs
['rc_cur_id'] ) {
211 $curId = $rcObj->mAttribs
['rc_cur_id'];
214 if ( !$rcObj->mAttribs
['rc_bot'] ) {
217 if ( !$rcObj->mAttribs
['rc_minor'] ) {
224 # Sort the list and convert to text
225 krsort( $userlinks );
228 foreach ( $userlinks as $userlink => $count ) {
230 $text .= $this->getLanguage()->getDirMark();
232 // @todo FIXME: Hardcoded '×'. Should be a message.
233 $formattedCount = $this->getLanguage()->formatNum( $count ) . '×';
234 $text .= ' ' . $this->msg( 'parentheses' )->rawParams( $formattedCount )->escaped();
236 array_push( $users, $text );
239 $users = ' <span class="changedby">'
240 . $this->msg( 'brackets' )->rawParams(
241 implode( $this->message
['semicolon-separator'], $users )
242 )->escaped() . '</span>';
244 $tl = '<span class="mw-collapsible-toggle mw-collapsible-arrow ' .
245 'mw-enhancedchanges-arrow mw-enhancedchanges-arrow-space"></span>';
246 $r .= "<td>$tl</td>";
249 $r .= '<td class="mw-enhanced-rc">' . $this->recentChangesFlags( array(
250 'newpage' => $isnew, # show, when one have this flag
251 'minor' => $allMinors, # show only, when all have this flag
252 'unpatrolled' => $unpatrolled, # show, when one have this flag
253 'bot' => $allBots, # show only, when all have this flag
257 $r .= ' ' . $block[0]->timestamp
. ' </td><td>';
261 $r .= ' <span class="history-deleted">' .
262 $this->msg( 'rev-deleted-event' )->escaped() . '</span>';
263 } elseif ( $allLogs ) {
264 $r .= $this->maybeWatchedLink( $block[0]->link
, $block[0]->watched
);
266 $this->insertArticleLink( $r, $block[0], $block[0]->unpatrolled
, $block[0]->watched
);
269 $r .= $this->getLanguage()->getDirMark();
271 $queryParams['curid'] = $curId;
273 $r .= $this->getLogText( $block, $queryParams, $allLogs, $isnew, $namehidden );
275 $r .= ' <span class="mw-changeslist-separator">. .</span> ';
277 # Character difference (does not apply if only log items)
278 if ( $RCShowChangedSize && !$allLogs ) {
280 $first = count( $block ) - 1;
281 # Some events (like logs) have an "empty" size, so we need to skip those...
282 while ( $last < $first && $block[$last]->mAttribs
['rc_new_len'] === null ) {
285 while ( $first > $last && $block[$first]->mAttribs
['rc_old_len'] === null ) {
289 $chardiff = $this->formatCharacterDifference( $block[$first], $block[$last] );
291 if ( $chardiff == '' ) {
294 $r .= ' ' . $chardiff . ' <span class="mw-changeslist-separator">. .</span> ';
299 $r .= $this->numberofWatchingusers( $block[0]->numberofWatchingusers
);
303 foreach ( $block as $rcObj ) {
304 # Classes to apply -- TODO implement
306 $type = $rcObj->mAttribs
['rc_type'];
308 $trClass = $rcObj->watched
&& $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
309 ?
' class="mw-enhanced-watched"' : '';
311 $r .= '<tr' . $trClass . '><td></td><td class="mw-enhanced-rc">';
312 $r .= $this->recentChangesFlags( array(
313 'newpage' => $type == RC_NEW
,
314 'minor' => $rcObj->mAttribs
['rc_minor'],
315 'unpatrolled' => $rcObj->unpatrolled
,
316 'bot' => $rcObj->mAttribs
['rc_bot'],
318 $r .= ' </td><td class="mw-enhanced-rc-nested"><span class="mw-enhanced-rc-time">';
320 $params = $queryParams;
322 if ( $rcObj->mAttribs
['rc_this_oldid'] != 0 ) {
323 $params['oldid'] = $rcObj->mAttribs
['rc_this_oldid'];
327 if ( $type == RC_LOG
) {
328 $link = $rcObj->timestamp
;
330 } elseif ( !ChangesList
::userCan( $rcObj, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
331 $link = '<span class="history-deleted">' . $rcObj->timestamp
. '</span> ';
334 $link = Linker
::linkKnown(
340 if ( $this->isDeleted( $rcObj, Revision
::DELETED_TEXT
) ) {
341 $link = '<span class="history-deleted">' . $link . '</span> ';
344 $r .= $link . '</span>';
346 if ( !$type == RC_LOG ||
$type == RC_NEW
) {
347 $r .= ' ' . $this->msg( 'parentheses' )->rawParams(
349 $this->message
['pipe-separator'] .
353 $r .= ' <span class="mw-changeslist-separator">. .</span> ';
356 if ( $RCShowChangedSize ) {
357 $cd = $this->formatCharacterDifference( $rcObj );
359 $r .= $cd . ' <span class="mw-changeslist-separator">. .</span> ';
363 if ( $rcObj->mAttribs
['rc_type'] == RC_LOG
) {
364 $r .= $this->insertLogEntry( $rcObj );
367 $r .= $rcObj->userlink
;
368 $r .= $rcObj->usertalklink
;
369 $r .= $this->insertComment( $rcObj );
373 $this->insertRollback( $r, $rcObj );
375 $this->insertTags( $r, $rcObj, $classes );
377 $r .= "</td></tr>\n";
381 $this->rcCacheIndex++
;
387 * Generates amount of changes (linking to diff ) & link to history.
389 * @param array $block
390 * @param array $queryParams
391 * @param bool $allLogs
393 * @param bool $namehidden
396 protected function getLogText( $block, $queryParams, $allLogs, $isnew, $namehidden ) {
398 static $nchanges = array();
399 static $sinceLastVisitMsg = array();
401 $n = count( $block );
402 if ( !isset( $nchanges[$n] ) ) {
403 $nchanges[$n] = $this->msg( 'nchanges' )->numParams( $n )->escaped();
407 $unvisitedOldid = null;
408 /** @var $rcObj RCCacheEntry */
409 foreach ( $block as $rcObj ) {
410 // Same logic as below inside main foreach
411 if ( $rcObj->watched
&& $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
) {
413 $unvisitedOldid = $rcObj->mAttribs
['rc_last_oldid'];
416 if ( !isset( $sinceLastVisitMsg[$sinceLast] ) ) {
417 $sinceLastVisitMsg[$sinceLast] =
418 $this->msg( 'enhancedrc-since-last-visit' )->numParams( $sinceLast )->escaped();
421 $currentRevision = 0;
422 foreach ( $block as $rcObj ) {
423 if ( !$currentRevision ) {
424 $currentRevision = $rcObj->mAttribs
['rc_this_oldid'];
430 /** @var $block0 RecentChange */
432 $last = $block[count( $block ) - 1];
434 if ( !ChangesList
::userCan( $rcObj, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
435 $links['total-changes'] = $nchanges[$n];
436 } elseif ( $isnew ) {
437 $links['total-changes'] = $nchanges[$n];
439 $links['total-changes'] = Linker
::link(
443 $queryParams +
array(
444 'diff' => $currentRevision,
445 'oldid' => $last->mAttribs
['rc_last_oldid'],
447 array( 'known', 'noclasses' )
449 if ( $sinceLast > 0 && $sinceLast < $n ) {
450 $links['total-changes-since-last'] = Linker
::link(
452 $sinceLastVisitMsg[$sinceLast],
454 $queryParams +
array(
455 'diff' => $currentRevision,
456 'oldid' => $unvisitedOldid,
458 array( 'known', 'noclasses' )
466 // don't show history link for logs
467 } elseif ( $namehidden ||
!$block0->getTitle()->exists() ) {
468 $links['history'] = $this->message
['enhancedrc-history'];
470 $params = $queryParams;
471 $params['action'] = 'history';
473 $links['history'] = Linker
::linkKnown(
475 $this->message
['enhancedrc-history'],
481 # Allow others to alter, remove or add to these links
482 Hooks
::run( 'EnhancedChangesList::getLogText',
483 array( $this, &$links, $block ) );
489 $logtext = implode( $this->message
['pipe-separator'], $links );
490 $logtext = $this->msg( 'parentheses' )->rawParams( $logtext )->escaped();
491 return ' ' . $logtext;
495 * Enhanced RC ungrouped line.
497 * @param RecentChange|RCCacheEntry $rcObj
498 * @return string A HTML formatted line (generated using $r)
500 protected function recentChangesBlockLine( $rcObj ) {
501 $query['curid'] = $rcObj->mAttribs
['rc_cur_id'];
503 $type = $rcObj->mAttribs
['rc_type'];
504 $logType = $rcObj->mAttribs
['rc_log_type'];
505 $classes = array( 'mw-enhanced-rc' );
508 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-log-' . $logType );
510 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-ns' .
511 $rcObj->mAttribs
['rc_namespace'] . '-' . $rcObj->mAttribs
['rc_title'] );
513 $classes[] = $rcObj->watched
&& $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
514 ?
'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
515 $r = Html
::openElement( 'table', array( 'class' => $classes ) ) .
516 Html
::openElement( 'tr' );
518 $r .= '<td class="mw-enhanced-rc"><span class="mw-enhancedchanges-arrow-space"></span>';
520 $r .= $this->recentChangesFlags( array(
521 'newpage' => $type == RC_NEW
,
522 'minor' => $rcObj->mAttribs
['rc_minor'],
523 'unpatrolled' => $rcObj->unpatrolled
,
524 'bot' => $rcObj->mAttribs
['rc_bot'],
526 $r .= ' ' . $rcObj->timestamp
. ' </td><td>';
527 # Article or log link
529 $logPage = new LogPage( $logType );
530 $logTitle = SpecialPage
::getTitleFor( 'Log', $logType );
531 $logName = $logPage->getName()->escaped();
532 $r .= $this->msg( 'parentheses' )
533 ->rawParams( Linker
::linkKnown( $logTitle, $logName ) )->escaped();
535 $this->insertArticleLink( $r, $rcObj, $rcObj->unpatrolled
, $rcObj->watched
);
537 # Diff and hist links
538 if ( $type != RC_LOG
) {
539 $query['action'] = 'history';
540 $r .= ' ' . $this->msg( 'parentheses' )
541 ->rawParams( $rcObj->difflink
. $this->message
['pipe-separator'] . Linker
::linkKnown(
543 $this->message
['hist'],
548 $r .= ' <span class="mw-changeslist-separator">. .</span> ';
550 if ( $this->getConfig()->get( 'RCShowChangedSize' ) ) {
551 $cd = $this->formatCharacterDifference( $rcObj );
553 $r .= $cd . ' <span class="mw-changeslist-separator">. .</span> ';
557 if ( $type == RC_LOG
) {
558 $r .= $this->insertLogEntry( $rcObj );
560 $r .= ' ' . $rcObj->userlink
. $rcObj->usertalklink
;
561 $r .= $this->insertComment( $rcObj );
562 $this->insertRollback( $r, $rcObj );
566 $this->insertTags( $r, $rcObj, $classes );
567 # Show how many people are watching this if enabled
568 $r .= $this->numberofWatchingusers( $rcObj->numberofWatchingusers
);
570 $r .= "</td></tr></table>\n";
576 * If enhanced RC is in use, this function takes the previously cached
577 * RC lines, arranges them, and outputs the HTML
581 protected function recentChangesBlock() {
582 if ( count( $this->rc_cache
) == 0 ) {
587 foreach ( $this->rc_cache
as $block ) {
588 if ( count( $block ) < 2 ) {
589 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
591 $blockOut .= $this->recentChangesBlockGroup( $block );
595 return '<div>' . $blockOut . '</div>';
599 * Returns text for the end of RC
600 * If enhanced RC is in use, returns pretty much all the text
603 public function endRecentChangesList() {
604 return $this->recentChangesBlock() . '</div>';