31use MediaWiki\HookContainer\ProtectedHookAccessorTrait;
66 use ProtectedHookAccessorTrait;
131 $this->preCacheMessages();
136 $this->linkRenderer = $services->getLinkRenderer();
137 $this->commentFormatter = $services->getRowCommentFormatter();
138 $this->logFormatterFactory = $services->getLogFormatterFactory();
139 $this->userLinkRenderer = $services->getUserLinkRenderer();
157 if ( (
new HookRunner( $services->getHookContainer() ) )->onFetchChangesList( $user, $sk, $list, $groups ) ) {
158 $userOptionsLookup = $services->getUserOptionsLookup();
184 throw new RuntimeException(
'recentChangesLine should be implemented' );
194 $highlightColorDivs =
'';
195 foreach ( [
'none',
'c1',
'c2',
'c3',
'c4',
'c5' ] as $color ) {
196 $highlightColorDivs .= Html::rawElement(
199 'class' =>
'mw-rcfilters-ui-highlights-color-' . $color,
200 'data-color' => $color
205 return Html::rawElement(
207 [
'class' =>
'mw-rcfilters-ui-highlights' ],
217 $this->watchlist = $value;
232 private function preCacheMessages() {
234 if ( !isset( $this->message ) ) {
237 'cur',
'diff',
'hist',
'enhancedrc-history',
'last',
'blocklink',
'history',
238 'semicolon-separator',
'pipe-separator',
'word-separator' ] as $msg
240 $this->message[$msg] = $this->
msg( $msg )->escaped();
256 $f .= isset( $flags[$flag] ) && $flags[$flag]
273 $classes = [ self::CSS_CLASS_PREFIX .
'line' ];
274 $logType = $rc->mAttribs[
'rc_log_type'];
277 $classes[] = self::CSS_CLASS_PREFIX .
'log';
278 $classes[] = Sanitizer::escapeClass( self::CSS_CLASS_PREFIX .
'log-' . $logType );
280 $classes[] = self::CSS_CLASS_PREFIX .
'edit';
281 $classes[] = Sanitizer::escapeClass( self::CSS_CLASS_PREFIX .
'ns' .
282 $rc->mAttribs[
'rc_namespace'] .
'-' . $rc->mAttribs[
'rc_title'] );
287 $classes[] = $watched && $rc->mAttribs[
'rc_timestamp'] >= $watched
288 ? self::CSS_CLASS_PREFIX .
'line-watched'
289 : self::CSS_CLASS_PREFIX .
'line-not-watched';
306 $classes[] = Sanitizer::escapeClass( self::CSS_CLASS_PREFIX .
'ns-' .
307 $rc->mAttribs[
'rc_namespace'] );
310 $classes[] = Sanitizer::escapeClass(
311 self::CSS_CLASS_PREFIX .
313 ( $nsInfo->isTalk( $rc->mAttribs[
'rc_namespace'] ) ?
'talk' :
'subject' )
316 foreach ( $this->filterGroups as $filterGroup ) {
317 foreach ( $filterGroup->getFilters() as $filter ) {
318 $filter->applyCssClassIfNeeded( $this, $rc, $classes );
336 static $map = [
'minoredit' =>
'minor',
'botedit' =>
'bot' ];
337 static $flagInfos =
null;
339 if ( $flagInfos ===
null ) {
343 foreach ( $recentChangesFlags as $key => $value ) {
344 $flagInfos[$key][
'letter'] = $value[
'letter'];
345 $flagInfos[$key][
'title'] = $value[
'title'];
347 $flagInfos[$key][
'class'] = $value[
'class'] ?? $key;
351 $context = $context ?: RequestContext::getMain();
354 if ( isset( $map[$flag] ) ) {
358 $info = $flagInfos[$flag];
360 'class' => $info[
'class'],
370 $this->rc_cache = [];
371 $this->rcMoveIndex = 0;
372 $this->rcCacheIndex = 0;
373 $this->lastdate =
'';
374 $this->rclistOpen =
false;
376 'mediawiki.interface.helpers.styles',
377 'mediawiki.special.changeslist'
380 return '<div class="mw-changeslist">';
387 $this->getHookRunner()->onChangesListInitRows( $this, $rows );
388 $this->formattedComments = $this->commentFormatter->createBatch()
390 $this->commentFormatter->rows( $rows )
391 ->commentKey(
'rc_comment' )
392 ->namespaceField(
'rc_namespace' )
393 ->titleField(
'rc_title' )
394 ->indexField(
'rc_id' )
412 $context = RequestContext::getMain();
417 $szdiff = $new - $old;
419 $lang = $context->getLanguage();
420 $config = $context->getConfig();
421 $code = $lang->getCode();
422 static $fastCharDiff = [];
423 if ( !isset( $fastCharDiff[$code] ) ) {
425 || $context->msg(
'rc-change-size' )->plain() ===
'$1';
428 $formattedSize = $lang->formatNum( $szdiff );
430 if ( !$fastCharDiff[$code] ) {
431 $formattedSize = $context->msg(
'rc-change-size', $formattedSize )->text();
440 if ( $szdiff === 0 ) {
441 $formattedSizeClass =
'mw-plusminus-null';
442 } elseif ( $szdiff > 0 ) {
443 $formattedSize =
'+' . $formattedSize;
444 $formattedSizeClass =
'mw-plusminus-pos';
446 $formattedSizeClass =
'mw-plusminus-neg';
448 $formattedSizeClass .=
' mw-diff-bytes';
450 $formattedTotalSize = $context->msg(
'rc-change-size-new' )->numParams( $new )->text();
453 [
'dir' =>
'ltr',
'class' => $formattedSizeClass,
'title' => $formattedTotalSize ],
465 $oldlen = $old->mAttribs[
'rc_old_len'];
468 $newlen = $new->mAttribs[
'rc_new_len'];
470 $newlen = $old->mAttribs[
'rc_new_len'];
473 if ( $oldlen ===
null || $newlen ===
null ) {
485 $out = $this->rclistOpen ?
"</ul>\n" :
'';
514 $class = trim(
'mw-changeslist-date ' . $className );
515 if ( $rev->
userCan( RevisionRecord::DELETED_TEXT, $performer ) ) {
516 $link = Html::rawElement(
'bdi', [
'dir' => $lang->
getDir() ],
520 [
'class' => $class ],
521 [
'oldid' => $rev->
getId() ]
525 $link = htmlspecialchars( $date );
527 if ( $rev->
isDeleted( RevisionRecord::DELETED_TEXT ) ) {
528 $class = Linker::getRevisionDeletedClass( $rev ) .
" $class";
529 $link =
"<span class=\"$class\">$link</span>";
532 'class' =>
'mw-changeslist-time'
541 # Make date header if necessary
543 if ( $date != $this->lastdate ) {
544 if ( $this->lastdate !=
'' ) {
547 $s .=
Html::element(
'h4', [], $date ) .
"\n<ul class=\"special\">";
548 $this->lastdate = $date;
549 $this->rclistOpen =
true;
559 public function insertLog( &$s, $title, $logtype, $useParentheses =
true ) {
560 $page =
new LogPage( $logtype );
561 $logname = $page->getName()->setContext( $this->
getContext() )->text();
562 $link = $this->linkRenderer->makeKnownLink( $title, $logname, [
563 'class' => $useParentheses ?
'' :
'mw-changeslist-links'
565 if ( $useParentheses ) {
566 $s .= $this->
msg(
'parentheses' )->rawParams(
582 $rc->mAttribs[
'rc_type'] ==
RC_NEW ||
583 $rc->mAttribs[
'rc_type'] ==
RC_LOG
585 $diffLink = $this->message[
'diff'];
586 } elseif ( !self::userCan( $rc, RevisionRecord::DELETED_TEXT, $this->
getAuthority() ) ) {
587 $diffLink = $this->message[
'diff'];
590 'curid' => $rc->mAttribs[
'rc_cur_id'],
591 'diff' => $rc->mAttribs[
'rc_this_oldid'],
592 'oldid' => $rc->mAttribs[
'rc_last_oldid']
595 $diffLink = $this->linkRenderer->makeKnownLink(
598 [
'class' =>
'mw-changeslist-diff' ],
603 $histLink = $this->message[
'hist'];
605 $histLink = $this->linkRenderer->makeKnownLink(
608 [
'class' =>
'mw-changeslist-history' ],
610 'curid' => $rc->mAttribs[
'rc_cur_id'],
611 'action' =>
'history'
616 $s .= Html::rawElement(
'span', [
'class' =>
'mw-changeslist-links' ],
617 Html::rawElement(
'span', [], $diffLink ) .
618 Html::rawElement(
'span', [], $histLink )
620 ' <span class="mw-changeslist-separator"></span> ';
635 if ( $rc->getTitle()->isRedirect() ) {
636 $params = [
'redirect' =>
'no' ];
639 $articlelink = $this->linkRenderer->makeLink(
642 [
'class' =>
'mw-changeslist-title' ],
645 if ( static::isDeleted( $rc, RevisionRecord::DELETED_TEXT ) ) {
646 $class =
'history-deleted';
647 if ( static::isDeleted( $rc, RevisionRecord::DELETED_RESTRICTED ) ) {
648 $class .=
' mw-history-suppressed';
650 $articlelink =
'<span class="' . $class .
'">' . $articlelink .
'</span>';
653 $articlelink = Html::rawElement(
'bdi', [
'dir' => $dir ], $articlelink );
654 # To allow for boldening pages watched by this user
655 # Don't wrap result of this with another tag, see T376814
656 $articlelink =
"<span class=\"mw-title\">{$articlelink}</span>";
658 # TODO: Deprecate the $s argument, it seems happily unused.
660 $this->getHookRunner()->onChangesListInsertArticleLink( $this, $articlelink,
661 $s, $rc, $unpatrolled, $watched );
664 $watchlistExpiry =
'';
666 if ( isset( $rc->watchlistExpiry ) && $rc->watchlistExpiry ) {
670 return "{$s} {$articlelink}{$watchlistExpiry}";
682 if ( $item->isExpired() ) {
687 $widget =
new IconWidget( [
689 'title' => $daysLeftText,
690 'classes' => [
'mw-changesList-watchlistExpiry' ],
692 $widget->setAttributes( [
695 'aria-label' => $this->
msg(
'watchlist-expires-in-aria-label' )->text(),
697 'data-days-left' => $item->getExpiryInDays(),
724 $separatorClass = $rc->watchlistExpiry ?
'mw-changeslist-separator' :
'mw-changeslist-separator--semicolon';
725 return Html::element(
'span', [
'class' => $separatorClass ] ) . $this->message[
'word-separator'] .
726 '<span class="mw-changeslist-date mw-changeslist-time">' .
727 htmlspecialchars( $this->getLanguage()->userTime(
728 $rc->mAttribs[
'rc_timestamp'],
730 ) ) .
'</span> <span class="mw-changeslist-separator"></span> ';
750 if ( static::isDeleted( $rc, RevisionRecord::DELETED_USER ) ) {
751 $deletedClass =
'history-deleted';
752 if ( static::isDeleted( $rc, RevisionRecord::DELETED_RESTRICTED ) ) {
753 $deletedClass .=
' mw-history-suppressed';
755 $s .=
' <span class="' . $deletedClass .
'">' .
756 $this->msg(
'rev-deleted-user' )->escaped() .
'</span>';
758 $s .= $this->userLinkRenderer->userLink(
759 $rc->getPerformerIdentity(),
762 # Don't wrap result of this with another tag, see T376814
763 $s .= $this->userLinkCache->getWithSetCallback(
764 $this->userLinkCache->makeKey(
765 $rc->mAttribs[
'rc_user_text'],
766 $this->getUser()->getName(),
767 $this->getLanguage()->getCode()
771 static fn () => Linker::userToolLinks(
772 $rc->mAttribs[
'rc_user'], $rc->mAttribs[
'rc_user_text'],
787 $entry = DatabaseLogEntry::newFromRow( $rc->mAttribs );
788 $formatter = $this->logFormatterFactory->newFromEntry( $entry );
789 $formatter->setContext( $this->getContext() );
790 $formatter->setShowUserToolLinks(
true );
792 $comment = $formatter->getComment();
793 if ( $comment !==
'' ) {
794 $dir = $this->getLanguage()->getDir();
795 $comment = Html::rawElement(
'bdi', [
'dir' => $dir ], $comment );
798 $html = $formatter->getActionText() . $this->message[
'word-separator'] . $comment .
799 $this->message[
'word-separator'] . $formatter->getActionLinks();
800 $classes = [
'mw-changeslist-log-entry' ];
804 $this->getHookRunner()->onChangesListInsertLogEntry( $entry, $this->getContext(), $html, $classes, $attribs );
805 $attribs = array_filter( $attribs,
806 [ Sanitizer::class,
'isReservedDataAttribute' ],
809 $attribs[
'class'] = $classes;
811 return Html::openElement(
'span', $attribs ) . $html . Html::closeElement(
'span' );
820 if ( static::isDeleted( $rc, RevisionRecord::DELETED_COMMENT ) ) {
821 $deletedClass =
'history-deleted';
822 if ( static::isDeleted( $rc, RevisionRecord::DELETED_RESTRICTED ) ) {
823 $deletedClass .=
' mw-history-suppressed';
825 return ' <span class="' . $deletedClass .
' comment">' .
826 $this->msg(
'rev-deleted-comment' )->escaped() .
'</span>';
827 } elseif ( isset( $rc->mAttribs[
'rc_id'] )
828 && isset( $this->formattedComments[$rc->mAttribs[
'rc_id']] )
830 return $this->formattedComments[$rc->mAttribs[
'rc_id']];
832 return $this->commentFormatter->formatBlock(
833 $rc->mAttribs[
'rc_comment'],
855 return $this->watchMsgCache->getWithSetCallback(
856 $this->watchMsgCache->makeKey(
857 'watching-users-msg',
859 $this->getUser()->getName(),
860 $this->getLanguage()->getCode()
862 function () use ( $count ) {
863 return $this->msg(
'number-of-watching-users-for-recent-changes' )
864 ->numParams( $count )->escaped();
876 return ( $rc->mAttribs[
'rc_deleted'] & $field ) == $field;
889 $performer ??= RequestContext::getMain()->getAuthority();
891 if ( $rc->mAttribs[
'rc_type'] ==
RC_LOG ) {
892 return LogEventsList::userCanBitfield( $rc->mAttribs[
'rc_deleted'], $field, $performer );
895 return RevisionRecord::userCanBitfield( $rc->mAttribs[
'rc_deleted'], $field, $performer );
905 return '<strong class="mw-watched">' . $link .
'</strong>';
907 return '<span class="mw-rc-unwatched">' . $link .
'</span>';
918 $this->insertPageTools( $s, $rc );
929 private function insertPageTools( &$s, &$rc ) {
931 if ( !in_array( $rc->mAttribs[
'rc_type'], [
RC_EDIT,
RC_NEW ] )
933 || !$rc->mAttribs[
'rc_this_oldid']
934 || !$rc->mAttribs[
'rc_cur_id']
940 $title = $rc->getTitle();
941 $revRecord =
new MutableRevisionRecord( $title );
942 $revRecord->setId( (
int)$rc->mAttribs[
'rc_this_oldid'] );
943 $revRecord->setVisibility( (
int)$rc->mAttribs[
'rc_deleted'] );
944 $user =
new UserIdentityValue(
945 (
int)$rc->mAttribs[
'rc_user'],
946 $rc->mAttribs[
'rc_user_text']
948 $revRecord->setUser( $user );
950 $tools =
new PagerTools(
954 $rc->getAttribute(
'page_latest' ) == $rc->mAttribs[
'rc_this_oldid']
955 && $rc->mAttribs[
'rc_type'] !=
RC_NEW,
956 $this->getHookRunner(),
963 $s .= $tools->toHTML();
973 $this->insertRollback( $s, $rc );
983 if ( empty( $rc->mAttribs[
'ts_tags'] ) ) {
992 [ $tagSummary, $newClasses ] = $this->tagsCache->getWithSetCallback(
993 $this->tagsCache->makeKey(
994 $rc->mAttribs[
'ts_tags'],
995 $this->getUser()->getName(),
996 $this->getLanguage()->getCode()
998 fn () => ChangeTags::formatSummaryRow(
999 $rc->mAttribs[
'ts_tags'],
1004 $classes = array_merge( $classes, $newClasses );
1005 $s .= $this->message[
'word-separator'] . $tagSummary;
1016 $this->insertTags( $s, $rc, $classes );
1025 return self::isUnpatrolled( $rc, $this->getUser() );
1035 $isPatrolled = $rc->mAttribs[
'rc_patrolled'];
1036 $rcType = $rc->mAttribs[
'rc_type'];
1037 $rcLogType = $rc->mAttribs[
'rc_log_type'];
1039 $isPatrolled = $rc->rc_patrolled;
1040 $rcType = $rc->rc_type;
1041 $rcLogType = $rc->rc_log_type;
1044 if ( $isPatrolled ) {
1063 return intval( $rcObj->getAttribute(
'rc_type' ) ) ===
RC_CATEGORIZE
1064 && intval( $rcObj->getAttribute(
'rc_this_oldid' ) ) === 0;
1080 $attrs[
'data-mw-revid'] = $rc->mAttribs[
'rc_this_oldid'];
1083 $attrs[
'data-mw-logid'] = $rc->mAttribs[
'rc_logid'];
1084 $attrs[
'data-mw-logaction'] =
1085 $rc->mAttribs[
'rc_log_type'] .
'/' . $rc->mAttribs[
'rc_log_action'];
1089 $attrs[
'data-mw-ts' ] = $rc->
getAttribute(
'rc_timestamp' );
1102 $this->changeLinePrefixer = $prefixer;
1107class_alias( ChangesList::class,
'ChangesList' );
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
Marks HTML that shouldn't be escaped.
Store key-value entries in a size-limited in-memory LRU cache.
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
setContext(IContextSource $context)
msg( $key,... $params)
Get a Message object with context set Parameters are the same as wfMessage()
getContext()
Get the base IContextSource object.
Group all the pieces relevant to the context of a request into one instance.
A value class to process existing log entries.
Class to simplify the use of log pages.
A class containing constants representing the names of configuration variables.
const RecentChangesFlags
Name constant for the RecentChangesFlags setting, for use with Config::get()
const RCChangedSizeThreshold
Name constant for the RCChangedSizeThreshold setting, for use with Config::get()
const MiserMode
Name constant for the MiserMode setting, for use with Config::get()
Interface for objects which can provide a MediaWiki context on request.