3 * Base class for all changes lists.
5 * The class is used for formatting recent changes, related changes and watchlist.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
24 use MediaWiki\Linker\LinkRenderer
;
25 use MediaWiki\MediaWikiServices
;
27 class ChangesList
extends ContextSource
{
33 protected $watchlist = false;
37 protected $rcCacheIndex;
38 protected $rclistOpen;
39 protected $rcMoveIndex;
42 protected $watchMsgCache;
47 protected $linkRenderer;
50 * Changeslist constructor
52 * @param Skin|IContextSource $obj
54 public function __construct( $obj ) {
55 if ( $obj instanceof IContextSource
) {
56 $this->setContext( $obj );
57 $this->skin
= $obj->getSkin();
59 $this->setContext( $obj->getContext() );
62 $this->preCacheMessages();
63 $this->watchMsgCache
= new HashBagOStuff( [ 'maxKeys' => 50 ] );
64 $this->linkRenderer
= MediaWikiServices
::getInstance()->getLinkRenderer();
68 * Fetch an appropriate changes list class for the specified context
69 * Some users might want to use an enhanced list format, for instance
71 * @param IContextSource $context
74 public static function newFromContext( IContextSource
$context ) {
75 $user = $context->getUser();
76 $sk = $context->getSkin();
78 if ( Hooks
::run( 'FetchChangesList', [ $user, &$sk, &$list ] ) ) {
79 $new = $context->getRequest()->getBool( 'enhanced', $user->getOption( 'usenewrc' ) );
81 return $new ?
new EnhancedChangesList( $context ) : new OldChangesList( $context );
92 * @param RecentChange $rc Passed by reference
93 * @param bool $watched (default false)
94 * @param int $linenumber (default null)
98 public function recentChangesLine( &$rc, $watched = false, $linenumber = null ) {
99 throw new RuntimeException( 'recentChangesLine should be implemented' );
103 * Sets the list to use a "<li class='watchlist-(namespace)-(page)'>" tag
106 public function setWatchlistDivs( $value = true ) {
107 $this->watchlist
= $value;
111 * @return bool True when setWatchlistDivs has been called
114 public function isWatchlist() {
115 return (bool)$this->watchlist
;
119 * As we use the same small set of messages in various methods and that
120 * they are called often, we call them once and save them in $this->message
122 private function preCacheMessages() {
123 if ( !isset( $this->message
) ) {
125 'cur', 'diff', 'hist', 'enhancedrc-history', 'last', 'blocklink', 'history',
126 'semicolon-separator', 'pipe-separator' ] as $msg
128 $this->message
[$msg] = $this->msg( $msg )->escaped();
134 * Returns the appropriate flags for new page, minor change and patrolling
135 * @param array $flags Associative array of 'flag' => Bool
136 * @param string $nothing To use for empty space
139 public function recentChangesFlags( $flags, $nothing = ' ' ) {
141 foreach ( array_keys( $this->getConfig()->get( 'RecentChangesFlags' ) ) as $flag ) {
142 $f .= isset( $flags[$flag] ) && $flags[$flag]
143 ? self
::flag( $flag, $this->getContext() )
151 * Get an array of default HTML class attributes for the change.
153 * @param RecentChange|RCCacheEntry $rc
154 * @param string|bool $watched Optionally timestamp for adding watched class
156 * @return array of classes
158 protected function getHTMLClasses( $rc, $watched ) {
160 $logType = $rc->mAttribs
['rc_log_type'];
163 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-log-' . $logType );
165 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-ns' .
166 $rc->mAttribs
['rc_namespace'] . '-' . $rc->mAttribs
['rc_title'] );
169 // Indicate watched status on the line to allow for more
170 // comprehensive styling.
171 $classes[] = $watched && $rc->mAttribs
['rc_timestamp'] >= $watched
172 ?
'mw-changeslist-line-watched'
173 : 'mw-changeslist-line-not-watched';
179 * Make an "<abbr>" element for a given change flag. The flag indicating a new page, minor edit,
180 * bot edit, or unpatrolled edit. In English it typically contains "N", "m", "b", or "!".
182 * @param string $flag One key of $wgRecentChangesFlags
183 * @param IContextSource $context
184 * @return string HTML
186 public static function flag( $flag, IContextSource
$context = null ) {
187 static $map = [ 'minoredit' => 'minor', 'botedit' => 'bot' ];
188 static $flagInfos = null;
190 if ( is_null( $flagInfos ) ) {
191 global $wgRecentChangesFlags;
193 foreach ( $wgRecentChangesFlags as $key => $value ) {
194 $flagInfos[$key]['letter'] = $value['letter'];
195 $flagInfos[$key]['title'] = $value['title'];
196 // Allow customized class name, fall back to flag name
197 $flagInfos[$key]['class'] = isset( $value['class'] ) ?
$value['class'] : $key;
201 $context = $context ?
: RequestContext
::getMain();
203 // Inconsistent naming, kepted for b/c
204 if ( isset( $map[$flag] ) ) {
208 $info = $flagInfos[$flag];
209 return Html
::element( 'abbr', [
210 'class' => $info['class'],
211 'title' => wfMessage( $info['title'] )->setContext( $context )->text(),
212 ], wfMessage( $info['letter'] )->setContext( $context )->text() );
216 * Returns text for the start of the tabular part of RC
219 public function beginRecentChangesList() {
220 $this->rc_cache
= [];
221 $this->rcMoveIndex
= 0;
222 $this->rcCacheIndex
= 0;
223 $this->lastdate
= '';
224 $this->rclistOpen
= false;
225 $this->getOutput()->addModuleStyles( 'mediawiki.special.changeslist' );
227 return '<div class="mw-changeslist">';
231 * @param ResultWrapper|array $rows
233 public function initChangesListRows( $rows ) {
234 Hooks
::run( 'ChangesListInitRows', [ $this, $rows ] );
238 * Show formatted char difference
240 * Needs the css module 'mediawiki.special.changeslist' to style output
242 * @param int $old Number of bytes
243 * @param int $new Number of bytes
244 * @param IContextSource $context
247 public static function showCharacterDifference( $old, $new, IContextSource
$context = null ) {
249 $context = RequestContext
::getMain();
254 $szdiff = $new - $old;
256 $lang = $context->getLanguage();
257 $config = $context->getConfig();
258 $code = $lang->getCode();
259 static $fastCharDiff = [];
260 if ( !isset( $fastCharDiff[$code] ) ) {
261 $fastCharDiff[$code] = $config->get( 'MiserMode' )
262 ||
$context->msg( 'rc-change-size' )->plain() === '$1';
265 $formattedSize = $lang->formatNum( $szdiff );
267 if ( !$fastCharDiff[$code] ) {
268 $formattedSize = $context->msg( 'rc-change-size', $formattedSize )->text();
271 if ( abs( $szdiff ) > abs( $config->get( 'RCChangedSizeThreshold' ) ) ) {
277 if ( $szdiff === 0 ) {
278 $formattedSizeClass = 'mw-plusminus-null';
279 } elseif ( $szdiff > 0 ) {
280 $formattedSize = '+' . $formattedSize;
281 $formattedSizeClass = 'mw-plusminus-pos';
283 $formattedSizeClass = 'mw-plusminus-neg';
286 $formattedTotalSize = $context->msg( 'rc-change-size-new' )->numParams( $new )->text();
288 return Html
::element( $tag,
289 [ 'dir' => 'ltr', 'class' => $formattedSizeClass, 'title' => $formattedTotalSize ],
290 $context->msg( 'parentheses', $formattedSize )->plain() ) . $lang->getDirMark();
294 * Format the character difference of one or several changes.
296 * @param RecentChange $old
297 * @param RecentChange $new Last change to use, if not provided, $old will be used
298 * @return string HTML fragment
300 public function formatCharacterDifference( RecentChange
$old, RecentChange
$new = null ) {
301 $oldlen = $old->mAttribs
['rc_old_len'];
304 $newlen = $new->mAttribs
['rc_new_len'];
306 $newlen = $old->mAttribs
['rc_new_len'];
309 if ( $oldlen === null ||
$newlen === null ) {
313 return self
::showCharacterDifference( $oldlen, $newlen, $this->getContext() );
317 * Returns text for the end of RC
320 public function endRecentChangesList() {
321 $out = $this->rclistOpen ?
"</ul>\n" : '';
328 * @param string $s HTML to update
329 * @param mixed $rc_timestamp
331 public function insertDateHeader( &$s, $rc_timestamp ) {
332 # Make date header if necessary
333 $date = $this->getLanguage()->userDate( $rc_timestamp, $this->getUser() );
334 if ( $date != $this->lastdate
) {
335 if ( $this->lastdate
!= '' ) {
338 $s .= Xml
::element( 'h4', null, $date ) . "\n<ul class=\"special\">";
339 $this->lastdate
= $date;
340 $this->rclistOpen
= true;
345 * @param string $s HTML to update
346 * @param Title $title
347 * @param string $logtype
349 public function insertLog( &$s, $title, $logtype ) {
350 $page = new LogPage( $logtype );
351 $logname = $page->getName()->setContext( $this->getContext() )->text();
352 $s .= $this->msg( 'parentheses' )->rawParams(
353 $this->linkRenderer
->makeKnownLink( $title, $logname )
358 * @param string $s HTML to update
359 * @param RecentChange $rc
360 * @param bool|null $unpatrolled Unused variable, since 1.27.
362 public function insertDiffHist( &$s, &$rc, $unpatrolled = null ) {
365 $rc->mAttribs
['rc_type'] == RC_NEW ||
366 $rc->mAttribs
['rc_type'] == RC_LOG ||
367 $rc->mAttribs
['rc_type'] == RC_CATEGORIZE
369 $diffLink = $this->message
['diff'];
370 } elseif ( !self
::userCan( $rc, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
371 $diffLink = $this->message
['diff'];
374 'curid' => $rc->mAttribs
['rc_cur_id'],
375 'diff' => $rc->mAttribs
['rc_this_oldid'],
376 'oldid' => $rc->mAttribs
['rc_last_oldid']
379 $diffLink = $this->linkRenderer
->makeKnownLink(
381 new HtmlArmor( $this->message
['diff'] ),
386 if ( $rc->mAttribs
['rc_type'] == RC_CATEGORIZE
) {
387 $diffhist = $diffLink . $this->message
['pipe-separator'] . $this->message
['hist'];
389 $diffhist = $diffLink . $this->message
['pipe-separator'];
391 $diffhist .= $this->linkRenderer
->makeKnownLink(
393 new HtmlArmor( $this->message
['hist'] ),
396 'curid' => $rc->mAttribs
['rc_cur_id'],
397 'action' => 'history'
402 // @todo FIXME: Hard coded ". .". Is there a message for this? Should there be?
403 $s .= $this->msg( 'parentheses' )->rawParams( $diffhist )->escaped() .
404 ' <span class="mw-changeslist-separator">. .</span> ';
408 * @param string $s Article link will be appended to this string, in place.
409 * @param RecentChange $rc
410 * @param bool $unpatrolled
411 * @param bool $watched
412 * @deprecated since 1.27, use getArticleLink instead.
414 public function insertArticleLink( &$s, RecentChange
$rc, $unpatrolled, $watched ) {
415 $s .= $this->getArticleLink( $rc, $unpatrolled, $watched );
419 * @param RecentChange $rc
420 * @param bool $unpatrolled
421 * @param bool $watched
422 * @return string HTML
425 public function getArticleLink( &$rc, $unpatrolled, $watched ) {
427 if ( $rc->getTitle()->isRedirect() ) {
428 $params = [ 'redirect' => 'no' ];
431 $articlelink = $this->linkRenderer
->makeLink(
434 [ 'class' => 'mw-changeslist-title' ],
437 if ( $this->isDeleted( $rc, Revision
::DELETED_TEXT
) ) {
438 $articlelink = '<span class="history-deleted">' . $articlelink . '</span>';
440 # To allow for boldening pages watched by this user
441 $articlelink = "<span class=\"mw-title\">{$articlelink}</span>";
443 $articlelink .= $this->getLanguage()->getDirMark();
445 # TODO: Deprecate the $s argument, it seems happily unused.
447 Hooks
::run( 'ChangesListInsertArticleLink',
448 [ &$this, &$articlelink, &$s, &$rc, $unpatrolled, $watched ] );
450 return "{$s} {$articlelink}";
454 * Get the timestamp from $rc formatted with current user's settings
457 * @param RecentChange $rc
458 * @return string HTML fragment
460 public function getTimestamp( $rc ) {
461 // @todo FIXME: Hard coded ". .". Is there a message for this? Should there be?
462 return $this->message
['semicolon-separator'] . '<span class="mw-changeslist-date">' .
463 $this->getLanguage()->userTime(
464 $rc->mAttribs
['rc_timestamp'],
466 ) . '</span> <span class="mw-changeslist-separator">. .</span> ';
470 * Insert time timestamp string from $rc into $s
472 * @param string $s HTML to update
473 * @param RecentChange $rc
475 public function insertTimestamp( &$s, $rc ) {
476 $s .= $this->getTimestamp( $rc );
480 * Insert links to user page, user talk page and eventually a blocking link
482 * @param string &$s HTML to update
483 * @param RecentChange &$rc
485 public function insertUserRelatedLinks( &$s, &$rc ) {
486 if ( $this->isDeleted( $rc, Revision
::DELETED_USER
) ) {
487 $s .= ' <span class="history-deleted">' .
488 $this->msg( 'rev-deleted-user' )->escaped() . '</span>';
490 $s .= $this->getLanguage()->getDirMark() . Linker
::userLink( $rc->mAttribs
['rc_user'],
491 $rc->mAttribs
['rc_user_text'] );
492 $s .= Linker
::userToolLinks( $rc->mAttribs
['rc_user'], $rc->mAttribs
['rc_user_text'] );
497 * Insert a formatted action
499 * @param RecentChange $rc
502 public function insertLogEntry( $rc ) {
503 $formatter = LogFormatter
::newFromRow( $rc->mAttribs
);
504 $formatter->setContext( $this->getContext() );
505 $formatter->setShowUserToolLinks( true );
506 $mark = $this->getLanguage()->getDirMark();
508 return $formatter->getActionText() . " $mark" . $formatter->getComment();
512 * Insert a formatted comment
513 * @param RecentChange $rc
516 public function insertComment( $rc ) {
517 if ( $this->isDeleted( $rc, Revision
::DELETED_COMMENT
) ) {
518 return ' <span class="history-deleted">' .
519 $this->msg( 'rev-deleted-comment' )->escaped() . '</span>';
521 return Linker
::commentBlock( $rc->mAttribs
['rc_comment'], $rc->getTitle() );
526 * Returns the string which indicates the number of watching users
527 * @param int $count Number of user watching a page
530 protected function numberofWatchingusers( $count ) {
534 $cache = $this->watchMsgCache
;
535 return $cache->getWithSetCallback( $count, $cache::TTL_INDEFINITE
,
536 function () use ( $count ) {
537 return $this->msg( 'number_of_watching_users_RCview' )
538 ->numParams( $count )->escaped();
544 * Determine if said field of a revision is hidden
545 * @param RCCacheEntry|RecentChange $rc
546 * @param int $field One of DELETED_* bitfield constants
549 public static function isDeleted( $rc, $field ) {
550 return ( $rc->mAttribs
['rc_deleted'] & $field ) == $field;
554 * Determine if the current user is allowed to view a particular
555 * field of this revision, if it's marked as deleted.
556 * @param RCCacheEntry|RecentChange $rc
558 * @param User $user User object to check, or null to use $wgUser
561 public static function userCan( $rc, $field, User
$user = null ) {
562 if ( $rc->mAttribs
['rc_type'] == RC_LOG
) {
563 return LogEventsList
::userCanBitfield( $rc->mAttribs
['rc_deleted'], $field, $user );
565 return Revision
::userCanBitfield( $rc->mAttribs
['rc_deleted'], $field, $user );
570 * @param string $link
571 * @param bool $watched
574 protected function maybeWatchedLink( $link, $watched = false ) {
576 return '<strong class="mw-watched">' . $link . '</strong>';
578 return '<span class="mw-rc-unwatched">' . $link . '</span>';
582 /** Inserts a rollback link
585 * @param RecentChange $rc
587 public function insertRollback( &$s, &$rc ) {
588 if ( $rc->mAttribs
['rc_type'] == RC_EDIT
589 && $rc->mAttribs
['rc_this_oldid']
590 && $rc->mAttribs
['rc_cur_id']
592 $page = $rc->getTitle();
593 /** Check for rollback and edit permissions, disallow special pages, and only
594 * show a link on the top-most revision */
595 if ( $this->getUser()->isAllowed( 'rollback' )
596 && $rc->mAttribs
['page_latest'] == $rc->mAttribs
['rc_this_oldid']
598 $rev = new Revision( [
600 'id' => $rc->mAttribs
['rc_this_oldid'],
601 'user' => $rc->mAttribs
['rc_user'],
602 'user_text' => $rc->mAttribs
['rc_user_text'],
603 'deleted' => $rc->mAttribs
['rc_deleted']
605 $s .= ' ' . Linker
::generateRollback( $rev, $this->getContext() );
611 * @param RecentChange $rc
615 public function getRollback( RecentChange
$rc ) {
617 $this->insertRollback( $s, $rc );
623 * @param RecentChange $rc
624 * @param array $classes
626 public function insertTags( &$s, &$rc, &$classes ) {
627 if ( empty( $rc->mAttribs
['ts_tags'] ) ) {
631 list( $tagSummary, $newClasses ) = ChangeTags
::formatSummaryRow(
632 $rc->mAttribs
['ts_tags'],
636 $classes = array_merge( $classes, $newClasses );
637 $s .= ' ' . $tagSummary;
641 * @param RecentChange $rc
642 * @param array $classes
646 public function getTags( RecentChange
$rc, array &$classes ) {
648 $this->insertTags( $s, $rc, $classes );
652 public function insertExtra( &$s, &$rc, &$classes ) {
653 // Empty, used for subclasses to add anything special.
656 protected function showAsUnpatrolled( RecentChange
$rc ) {
657 return self
::isUnpatrolled( $rc, $this->getUser() );
661 * @param object|RecentChange $rc Database row from recentchanges or a RecentChange object
665 public static function isUnpatrolled( $rc, User
$user ) {
666 if ( $rc instanceof RecentChange
) {
667 $isPatrolled = $rc->mAttribs
['rc_patrolled'];
668 $rcType = $rc->mAttribs
['rc_type'];
669 $rcLogType = $rc->mAttribs
['rc_log_type'];
671 $isPatrolled = $rc->rc_patrolled
;
672 $rcType = $rc->rc_type
;
673 $rcLogType = $rc->rc_log_type
;
676 if ( !$isPatrolled ) {
677 if ( $user->useRCPatrol() ) {
680 if ( $user->useNPPatrol() && $rcType == RC_NEW
) {
683 if ( $user->useFilePatrol() && $rcLogType == 'upload' ) {
692 * Determines whether a revision is linked to this change; this may not be the case
693 * when the categorization wasn't done by an edit but a conditional parser function
697 * @param RecentChange|RCCacheEntry $rcObj
700 protected function isCategorizationWithoutRevision( $rcObj ) {
701 return intval( $rcObj->getAttribute( 'rc_type' ) ) === RC_CATEGORIZE
702 && intval( $rcObj->getAttribute( 'rc_this_oldid' ) ) === 0;