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 $rc
87 * @param bool $watched
88 * @param int $linenumber (default null)
92 public function recentChangesLine( &$rc, $watched = false, $linenumber = null ) {
94 $date = $this->getLanguage()->userDate(
95 $rc->mAttribs
['rc_timestamp'],
101 # If it's a new day, add the headline and flush the cache
102 if ( $date != $this->lastdate
) {
103 # Process current cache
104 $ret = $this->recentChangesBlock();
105 $this->rc_cache
= array();
106 $ret .= Xml
::element( 'h4', null, $date ) . "\n";
107 $this->lastdate
= $date;
110 $cacheEntry = $this->cacheEntryFactory
->newFromRecentChange( $rc, $watched );
111 $this->addCacheEntry( $cacheEntry );
117 * Put accumulated information into the cache, for later display.
118 * Page moves go on their own line.
120 * @param RCCacheEntry $cacheEntry
122 protected function addCacheEntry( RCCacheEntry
$cacheEntry ) {
123 $cacheGroupingKey = $this->makeCacheGroupingKey( $cacheEntry );
125 if ( !isset( $this->rc_cache
[$cacheGroupingKey] ) ) {
126 $this->rc_cache
[$cacheGroupingKey] = array();
129 array_push( $this->rc_cache
[$cacheGroupingKey], $cacheEntry );
133 * @todo use rc_source to group, if set; fallback to rc_type
135 * @param RCCacheEntry $cacheEntry
139 protected function makeCacheGroupingKey( RCCacheEntry
$cacheEntry ) {
140 $title = $cacheEntry->getTitle();
141 $cacheGroupingKey = $title->getPrefixedDBkey();
143 $type = $cacheEntry->mAttribs
['rc_type'];
145 if ( $type == RC_LOG
) {
147 $cacheGroupingKey = SpecialPage
::getTitleFor(
149 $cacheEntry->mAttribs
['rc_log_type']
150 )->getPrefixedDBkey();
153 return $cacheGroupingKey;
158 * @param RCCacheEntry[] $block
161 protected function recentChangesBlockGroup( $block ) {
163 # Add the namespace and title of the block as part of the class
164 $tableClasses = array( 'mw-collapsible', 'mw-collapsed', 'mw-enhanced-rc' );
165 if ( $block[0]->mAttribs
['rc_log_type'] ) {
167 $tableClasses[] = Sanitizer
::escapeClass( 'mw-changeslist-log-'
168 . $block[0]->mAttribs
['rc_log_type'] );
170 $tableClasses[] = Sanitizer
::escapeClass( 'mw-changeslist-ns'
171 . $block[0]->mAttribs
['rc_namespace'] . '-' . $block[0]->mAttribs
['rc_title'] );
173 if ( $block[0]->watched
174 && $block[0]->mAttribs
['rc_timestamp'] >= $block[0]->watched
176 $tableClasses[] = 'mw-changeslist-line-watched';
178 $tableClasses[] = 'mw-changeslist-line-not-watched';
181 # Collate list of users
182 $userlinks = array();
185 # Some catalyst variables...
188 $RCShowChangedSize = $this->getConfig()->get( 'RCShowChangedSize' );
189 $collectedRcFlags = array(
192 // Includes a new page?
194 // All are minor edits?
196 // Contains an unpatrolled edit?
197 'unpatrolled' => false,
199 foreach ( $block as $rcObj ) {
200 if ( $rcObj->mAttribs
['rc_type'] == RC_NEW
) {
201 $collectedRcFlags['newpage'] = true;
203 // If all log actions to this page were hidden, then don't
204 // give the name of the affected page for this block!
205 if ( !$this->isDeleted( $rcObj, LogPage
::DELETED_ACTION
) ) {
208 $u = $rcObj->userlink
;
209 if ( !isset( $userlinks[$u] ) ) {
212 if ( $rcObj->unpatrolled
) {
213 $collectedRcFlags['unpatrolled'] = true;
215 if ( $rcObj->mAttribs
['rc_type'] != RC_LOG
) {
218 # Get the latest entry with a page_id and oldid
219 # since logs may not have these.
220 if ( !$curId && $rcObj->mAttribs
['rc_cur_id'] ) {
221 $curId = $rcObj->mAttribs
['rc_cur_id'];
224 if ( !$rcObj->mAttribs
['rc_bot'] ) {
225 $collectedRcFlags['bot'] = false;
227 if ( !$rcObj->mAttribs
['rc_minor'] ) {
228 $collectedRcFlags['minor'] = false;
234 # Sort the list and convert to text
235 krsort( $userlinks );
238 foreach ( $userlinks as $userlink => $count ) {
240 $text .= $this->getLanguage()->getDirMark();
242 // @todo FIXME: Hardcoded '×'. Should be a message.
243 $formattedCount = $this->getLanguage()->formatNum( $count ) . '×';
244 $text .= ' ' . $this->msg( 'parentheses' )->rawParams( $formattedCount )->escaped();
246 array_push( $users, $text );
251 $revDeletedMsg = false;
253 $revDeletedMsg = $this->msg( 'rev-deleted-event' )->escaped();
254 } elseif ( $allLogs ) {
255 $articleLink = $this->maybeWatchedLink( $block[0]->link
, $block[0]->watched
);
257 $articleLink = $this->getArticleLink( $block[0], $block[0]->unpatrolled
, $block[0]->watched
);
260 $queryParams['curid'] = $curId;
264 foreach ( $block as $i => $rcObj ) {
265 $line = $this->getLineData( $block, $rcObj, $queryParams );
267 // completely ignore this RC entry if we don't want to render it
272 // Further down are some assumptions that $block is a 0-indexed array
273 // with (count-1) as last key. Let's make sure it is.
274 $block = array_values( $block );
276 if ( empty( $block ) ||
!$lines ) {
277 // if we can't show anything, don't display this block altogether
281 $logText = $this->getLogText( $block, $queryParams, $allLogs,
282 $collectedRcFlags['newpage'], $namehidden
285 # Character difference (does not apply if only log items)
286 $charDifference = false;
287 if ( $RCShowChangedSize && !$allLogs ) {
289 $first = count( $block ) - 1;
290 # Some events (like logs) have an "empty" size, so we need to skip those...
291 while ( $last < $first && $block[$last]->mAttribs
['rc_new_len'] === null ) {
294 while ( $first > $last && $block[$first]->mAttribs
['rc_old_len'] === null ) {
298 $charDifference = $this->formatCharacterDifference( $block[$first], $block[$last] );
301 $numberofWatchingusers = $this->numberofWatchingusers( $block[0]->numberofWatchingusers
);
302 $usersList = $this->msg( 'brackets' )->rawParams(
303 implode( $this->message
['semicolon-separator'], $users )
306 $templateParams = array(
307 'articleLink' => $articleLink,
308 'charDifference' => $charDifference,
309 'collectedRcFlags' => $this->recentChangesFlags( $collectedRcFlags ),
310 'languageDirMark' => $this->getLanguage()->getDirMark(),
312 'logText' => $logText,
313 'numberofWatchingusers' => $numberofWatchingusers,
314 'rev-deleted-event' => $revDeletedMsg,
315 'tableClasses' => $tableClasses,
316 'timestamp' => $block[0]->timestamp
,
317 'users' => $usersList,
320 $this->rcCacheIndex++
;
322 $templateParser = new TemplateParser();
323 return $templateParser->processTemplate(
324 'EnhancedChangesListGroup',
330 * @param RCCacheEntry[] $block
331 * @param RCCacheEntry $rcObj
332 * @param array $queryParams
336 * @throws MWException
338 protected function getLineData( array $block, RCCacheEntry
$rcObj, array $queryParams = array() ) {
339 $RCShowChangedSize = $this->getConfig()->get( 'RCShowChangedSize' );
341 # Classes to apply -- TODO implement
343 $type = $rcObj->mAttribs
['rc_type'];
345 $lineParams = array();
348 && $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
350 $lineParams['classes'] = array( 'mw-enhanced-watched' );
352 $separator = ' <span class="mw-changeslist-separator">. .</span> ';
354 $data['recentChangesFlags'] = array(
355 'newpage' => $type == RC_NEW
,
356 'minor' => $rcObj->mAttribs
['rc_minor'],
357 'unpatrolled' => $rcObj->unpatrolled
,
358 'bot' => $rcObj->mAttribs
['rc_bot'],
361 $params = $queryParams;
363 if ( $rcObj->mAttribs
['rc_this_oldid'] != 0 ) {
364 $params['oldid'] = $rcObj->mAttribs
['rc_this_oldid'];
368 if ( $type == RC_LOG
) {
369 $link = $rcObj->timestamp
;
371 } elseif ( !ChangesList
::userCan( $rcObj, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
372 $link = '<span class="history-deleted">' . $rcObj->timestamp
. '</span> ';
374 $link = Linker
::linkKnown(
380 if ( $this->isDeleted( $rcObj, Revision
::DELETED_TEXT
) ) {
381 $link = '<span class="history-deleted">' . $link . '</span> ';
384 $data['timestampLink'] = $link;
386 $currentAndLastLinks = '';
387 if ( !$type == RC_LOG ||
$type == RC_NEW
) {
388 $currentAndLastLinks .= ' ' . $this->msg( 'parentheses' )->rawParams(
390 $this->message
['pipe-separator'] .
394 $data['currentAndLastLinks'] = $currentAndLastLinks;
395 $data['separatorAfterCurrentAndLastLinks'] = $separator;
398 if ( $RCShowChangedSize ) {
399 $cd = $this->formatCharacterDifference( $rcObj );
401 $data['characterDiff'] = $cd;
402 $data['separatorAfterCharacterDiff'] = $separator;
406 if ( $rcObj->mAttribs
['rc_type'] == RC_LOG
) {
407 $data['logEntry'] = $this->insertLogEntry( $rcObj );
408 } elseif ( $this->isCategorizationWithoutRevision( $rcObj ) ) {
409 $data['comment'] = $this->insertComment( $rcObj );
412 $data['userLink'] = $rcObj->userlink
;
413 $data['userTalkLink'] = $rcObj->usertalklink
;
414 $data['comment'] = $this->insertComment( $rcObj );
418 $data['rollback'] = $this->getRollback( $rcObj );
421 $data['tags'] = $this->getTags( $rcObj, $classes );
423 // give the hook a chance to modify the data
424 $success = Hooks
::run( 'EnhancedChangesListModifyLineData',
425 array( $this, &$data, $block, $rcObj ) );
427 // skip entry if hook aborted it
431 if ( isset( $data['recentChangesFlags'] ) ) {
432 $lineParams['recentChangesFlags'] = $this->recentChangesFlags( $data['recentChangesFlags'] );
433 unset( $data['recentChangesFlags'] );
436 if ( isset( $data['timestampLink'] ) ) {
437 $lineParams['timestampLink'] = $data['timestampLink'];
438 unset( $data['timestampLink'] );
441 // everything else: makes it easier for extensions to add or remove data
442 $lineParams['data'] = array_values( $data );
448 * Generates amount of changes (linking to diff ) & link to history.
450 * @param array $block
451 * @param array $queryParams
452 * @param bool $allLogs
454 * @param bool $namehidden
457 protected function getLogText( $block, $queryParams, $allLogs, $isnew, $namehidden ) {
458 if ( empty( $block ) ) {
463 static $nchanges = array();
464 static $sinceLastVisitMsg = array();
466 $n = count( $block );
467 if ( !isset( $nchanges[$n] ) ) {
468 $nchanges[$n] = $this->msg( 'nchanges' )->numParams( $n )->escaped();
472 $unvisitedOldid = null;
473 /** @var $rcObj RCCacheEntry */
474 foreach ( $block as $rcObj ) {
475 // Same logic as below inside main foreach
476 if ( $rcObj->watched
&& $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
) {
478 $unvisitedOldid = $rcObj->mAttribs
['rc_last_oldid'];
481 if ( !isset( $sinceLastVisitMsg[$sinceLast] ) ) {
482 $sinceLastVisitMsg[$sinceLast] =
483 $this->msg( 'enhancedrc-since-last-visit' )->numParams( $sinceLast )->escaped();
486 $currentRevision = 0;
487 foreach ( $block as $rcObj ) {
488 if ( !$currentRevision ) {
489 $currentRevision = $rcObj->mAttribs
['rc_this_oldid'];
495 /** @var $block0 RecentChange */
497 $last = $block[count( $block ) - 1];
498 if ( !$allLogs && $rcObj->mAttribs
['rc_type'] != RC_CATEGORIZE
) {
499 if ( !ChangesList
::userCan( $rcObj, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
500 $links['total-changes'] = $nchanges[$n];
501 } elseif ( $isnew ) {
502 $links['total-changes'] = $nchanges[$n];
504 $links['total-changes'] = Linker
::link(
508 $queryParams +
array(
509 'diff' => $currentRevision,
510 'oldid' => $last->mAttribs
['rc_last_oldid'],
512 array( 'known', 'noclasses' )
514 if ( $sinceLast > 0 && $sinceLast < $n ) {
515 $links['total-changes-since-last'] = Linker
::link(
517 $sinceLastVisitMsg[$sinceLast],
519 $queryParams +
array(
520 'diff' => $currentRevision,
521 'oldid' => $unvisitedOldid,
523 array( 'known', 'noclasses' )
530 if ( $allLogs ||
$rcObj->mAttribs
['rc_type'] == RC_CATEGORIZE
) {
531 // don't show history link for logs
532 } elseif ( $namehidden ||
!$block0->getTitle()->exists() ) {
533 $links['history'] = $this->message
['enhancedrc-history'];
535 $params = $queryParams;
536 $params['action'] = 'history';
538 $links['history'] = Linker
::linkKnown(
540 $this->message
['enhancedrc-history'],
546 # Allow others to alter, remove or add to these links
547 Hooks
::run( 'EnhancedChangesList::getLogText',
548 array( $this, &$links, $block ) );
554 $logtext = implode( $this->message
['pipe-separator'], $links );
555 $logtext = $this->msg( 'parentheses' )->rawParams( $logtext )->escaped();
556 return ' ' . $logtext;
560 * Enhanced RC ungrouped line.
562 * @param RecentChange|RCCacheEntry $rcObj
563 * @return string A HTML formatted line (generated using $r)
565 protected function recentChangesBlockLine( $rcObj ) {
568 $query['curid'] = $rcObj->mAttribs
['rc_cur_id'];
570 $type = $rcObj->mAttribs
['rc_type'];
571 $logType = $rcObj->mAttribs
['rc_log_type'];
572 $classes = array( 'mw-enhanced-rc' );
575 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-log-' . $logType );
577 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-ns' .
578 $rcObj->mAttribs
['rc_namespace'] . '-' . $rcObj->mAttribs
['rc_title'] );
580 $classes[] = $rcObj->watched
&& $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
581 ?
'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
584 $data['recentChangesFlags'] = array(
585 'newpage' => $type == RC_NEW
,
586 'minor' => $rcObj->mAttribs
['rc_minor'],
587 'unpatrolled' => $rcObj->unpatrolled
,
588 'bot' => $rcObj->mAttribs
['rc_bot'],
590 // timestamp is not really a link here, but is called timestampLink
591 // for consistency with EnhancedChangesListModifyLineData
592 $data['timestampLink'] = $rcObj->timestamp
;
594 # Article or log link
596 $logPage = new LogPage( $logType );
597 $logTitle = SpecialPage
::getTitleFor( 'Log', $logType );
598 $logName = $logPage->getName()->escaped();
599 $data['logLink'] = $this->msg( 'parentheses' )
600 ->rawParams( Linker
::linkKnown( $logTitle, $logName ) )->escaped();
602 $data['articleLink'] = $this->getArticleLink( $rcObj, $rcObj->unpatrolled
, $rcObj->watched
);
605 # Diff and hist links
606 if ( $type != RC_LOG
&& $type != RC_CATEGORIZE
) {
607 $query['action'] = 'history';
608 $data['historyLink'] = $this->getDiffHistLinks( $rcObj, $query );
610 $data['separatorAfterLinks'] = ' <span class="mw-changeslist-separator">. .</span> ';
613 if ( $this->getConfig()->get( 'RCShowChangedSize' ) ) {
614 $cd = $this->formatCharacterDifference( $rcObj );
616 $data['characterDiff'] = $cd;
617 $data['separatorAftercharacterDiff'] = ' <span class="mw-changeslist-separator">. .</span> ';
621 if ( $type == RC_LOG
) {
622 $data['logEntry'] = $this->insertLogEntry( $rcObj );
623 } elseif ( $this->isCategorizationWithoutRevision( $rcObj ) ) {
624 $data['comment'] = $this->insertComment( $rcObj );
626 $data['userLink'] = $rcObj->userlink
;
627 $data['userTalkLink'] = $rcObj->usertalklink
;
628 $data['comment'] = $this->insertComment( $rcObj );
629 if ( $type == RC_CATEGORIZE
) {
630 $data['historyLink'] = $this->getDiffHistLinks( $rcObj, $query );
632 $data['rollback'] = $this->getRollback( $rcObj );
636 $data['tags'] = $this->getTags( $rcObj, $classes );
638 # Show how many people are watching this if enabled
639 $data['watchingUsers'] = $this->numberofWatchingusers( $rcObj->numberofWatchingusers
);
641 // give the hook a chance to modify the data
642 $success = Hooks
::run( 'EnhancedChangesListModifyBlockLineData',
643 array( $this, &$data, $rcObj ) );
645 // skip entry if hook aborted it
649 $line = Html
::openElement( 'table', array( 'class' => $classes ) ) .
650 Html
::openElement( 'tr' );
651 $line .= '<td class="mw-enhanced-rc"><span class="mw-enhancedchanges-arrow-space"></span>';
653 if ( isset( $data['recentChangesFlags'] ) ) {
654 $line .= $this->recentChangesFlags( $data['recentChangesFlags'] );
655 unset( $data['recentChangesFlags'] );
658 if ( isset( $data['timestampLink'] ) ) {
659 $line .= ' ' . $data['timestampLink'];
660 unset( $data['timestampLink'] );
662 $line .= ' </td><td>';
664 // everything else: makes it easier for extensions to add or remove data
665 $line .= implode( '', $data );
667 $line .= "</td></tr></table>\n";
673 * Returns value to be used in 'historyLink' element of $data param in
674 * EnhancedChangesListModifyBlockLineData hook.
678 * @param RCCacheEntry $rc
679 * @param array $query array of key/value pairs to append as a query string
680 * @return string HTML
682 public function getDiffHistLinks( RCCacheEntry
$rc, array $query ) {
683 $pageTitle = $rc->getTitle();
684 if ( $rc->getAttribute( 'rc_type' ) == RC_CATEGORIZE
) {
685 // For categorizations we must swap the category title with the page title!
686 $pageTitle = Title
::newFromID( $rc->getAttribute( 'rc_cur_id' ) );
689 $retVal = ' ' . $this->msg( 'parentheses' )
690 ->rawParams( $rc->difflink
. $this->message
['pipe-separator'] . Linker
::linkKnown(
692 $this->message
['hist'],
700 * If enhanced RC is in use, this function takes the previously cached
701 * RC lines, arranges them, and outputs the HTML
705 protected function recentChangesBlock() {
706 if ( count( $this->rc_cache
) == 0 ) {
711 foreach ( $this->rc_cache
as $block ) {
712 if ( count( $block ) < 2 ) {
713 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
715 $blockOut .= $this->recentChangesBlockGroup( $block );
719 return '<div>' . $blockOut . '</div>';
723 * Returns text for the end of RC
724 * If enhanced RC is in use, returns pretty much all the text
727 public function endRecentChangesList() {
728 return $this->recentChangesBlock() . '</div>';