107 parent::__construct( $name, $restriction );
109 $nonRevisionTypes = [
RC_LOG ];
110 Hooks::run(
'SpecialWatchlistGetNonRevisionTypes', [ &$nonRevisionTypes ] );
112 $this->filterGroupDefinitions = [
114 'name' =>
'registration',
115 'title' =>
'rcfilters-filtergroup-registration',
116 'class' => ChangesListBooleanFilterGroup::class,
122 'showHideSuffix' =>
'showhideliu',
124 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
125 &$query_options, &$join_conds
127 $actorMigration = ActorMigration::newMigration();
128 $actorQuery = $actorMigration->getJoin(
'rc_user' );
129 $tables += $actorQuery[
'tables'];
130 $join_conds += $actorQuery[
'joins'];
131 $conds[] = $actorMigration->isAnon( $actorQuery[
'fields'][
'rc_user'] );
133 'isReplacedInStructuredUi' =>
true,
137 'name' =>
'hideanons',
140 'showHideSuffix' =>
'showhideanons',
142 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
143 &$query_options, &$join_conds
145 $actorMigration = ActorMigration::newMigration();
146 $actorQuery = $actorMigration->getJoin(
'rc_user' );
147 $tables += $actorQuery[
'tables'];
148 $join_conds += $actorQuery[
'joins'];
149 $conds[] = $actorMigration->isNotAnon( $actorQuery[
'fields'][
'rc_user'] );
151 'isReplacedInStructuredUi' =>
true,
157 'name' =>
'userExpLevel',
158 'title' =>
'rcfilters-filtergroup-userExpLevel',
159 'class' => ChangesListStringOptionsFilterGroup::class,
160 'isFullCoverage' =>
true,
163 'name' =>
'unregistered',
164 'label' =>
'rcfilters-filter-user-experience-level-unregistered-label',
165 'description' =>
'rcfilters-filter-user-experience-level-unregistered-description',
166 'cssClassSuffix' =>
'user-unregistered',
167 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
168 return !$rc->getAttribute(
'rc_user' );
172 'name' =>
'registered',
173 'label' =>
'rcfilters-filter-user-experience-level-registered-label',
174 'description' =>
'rcfilters-filter-user-experience-level-registered-description',
175 'cssClassSuffix' =>
'user-registered',
176 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
177 return $rc->getAttribute(
'rc_user' );
181 'name' =>
'newcomer',
182 'label' =>
'rcfilters-filter-user-experience-level-newcomer-label',
183 'description' =>
'rcfilters-filter-user-experience-level-newcomer-description',
184 'cssClassSuffix' =>
'user-newcomer',
185 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
186 $performer = $rc->getPerformer();
187 return $performer && $performer->isLoggedIn() &&
188 $performer->getExperienceLevel() ===
'newcomer';
193 'label' =>
'rcfilters-filter-user-experience-level-learner-label',
194 'description' =>
'rcfilters-filter-user-experience-level-learner-description',
195 'cssClassSuffix' =>
'user-learner',
196 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
197 $performer = $rc->getPerformer();
198 return $performer && $performer->isLoggedIn() &&
199 $performer->getExperienceLevel() ===
'learner';
203 'name' =>
'experienced',
204 'label' =>
'rcfilters-filter-user-experience-level-experienced-label',
205 'description' =>
'rcfilters-filter-user-experience-level-experienced-description',
206 'cssClassSuffix' =>
'user-experienced',
207 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
208 $performer = $rc->getPerformer();
209 return $performer && $performer->isLoggedIn() &&
210 $performer->getExperienceLevel() ===
'experienced';
215 'queryCallable' => [ $this,
'filterOnUserExperienceLevel' ],
219 'name' =>
'authorship',
220 'title' =>
'rcfilters-filtergroup-authorship',
221 'class' => ChangesListBooleanFilterGroup::class,
224 'name' =>
'hidemyself',
225 'label' =>
'rcfilters-filter-editsbyself-label',
226 'description' =>
'rcfilters-filter-editsbyself-description',
229 'showHideSuffix' =>
'showhidemine',
231 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
232 &$query_options, &$join_conds
234 $actorQuery = ActorMigration::newMigration()->getWhere(
$dbr,
'rc_user', $ctx->getUser() );
235 $tables += $actorQuery[
'tables'];
236 $join_conds += $actorQuery[
'joins'];
237 $conds[] =
'NOT(' . $actorQuery[
'conds'] .
')';
239 'cssClassSuffix' =>
'self',
240 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
241 return $ctx->getUser()->equals( $rc->getPerformer() );
245 'name' =>
'hidebyothers',
246 'label' =>
'rcfilters-filter-editsbyother-label',
247 'description' =>
'rcfilters-filter-editsbyother-description',
249 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
250 &$query_options, &$join_conds
252 $actorQuery = ActorMigration::newMigration()
253 ->getWhere(
$dbr,
'rc_user', $ctx->getUser(),
false );
254 $tables += $actorQuery[
'tables'];
255 $join_conds += $actorQuery[
'joins'];
256 $conds[] = $actorQuery[
'conds'];
258 'cssClassSuffix' =>
'others',
259 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
260 return !$ctx->getUser()->equals( $rc->getPerformer() );
267 'name' =>
'automated',
268 'title' =>
'rcfilters-filtergroup-automated',
269 'class' => ChangesListBooleanFilterGroup::class,
272 'name' =>
'hidebots',
273 'label' =>
'rcfilters-filter-bots-label',
274 'description' =>
'rcfilters-filter-bots-description',
277 'showHideSuffix' =>
'showhidebots',
279 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
280 &$query_options, &$join_conds
282 $conds[
'rc_bot'] = 0;
284 'cssClassSuffix' =>
'bot',
285 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
286 return $rc->getAttribute(
'rc_bot' );
290 'name' =>
'hidehumans',
291 'label' =>
'rcfilters-filter-humans-label',
292 'description' =>
'rcfilters-filter-humans-description',
294 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
295 &$query_options, &$join_conds
297 $conds[
'rc_bot'] = 1;
299 'cssClassSuffix' =>
'human',
300 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
301 return !$rc->getAttribute(
'rc_bot' );
310 'name' =>
'significance',
311 'title' =>
'rcfilters-filtergroup-significance',
312 'class' => ChangesListBooleanFilterGroup::class,
316 'name' =>
'hideminor',
317 'label' =>
'rcfilters-filter-minor-label',
318 'description' =>
'rcfilters-filter-minor-description',
321 'showHideSuffix' =>
'showhideminor',
323 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
324 &$query_options, &$join_conds
326 $conds[] =
'rc_minor = 0';
328 'cssClassSuffix' =>
'minor',
329 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
330 return $rc->getAttribute(
'rc_minor' );
334 'name' =>
'hidemajor',
335 'label' =>
'rcfilters-filter-major-label',
336 'description' =>
'rcfilters-filter-major-description',
338 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
339 &$query_options, &$join_conds
341 $conds[] =
'rc_minor = 1';
343 'cssClassSuffix' =>
'major',
344 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
345 return !$rc->getAttribute(
'rc_minor' );
352 'name' =>
'lastRevision',
353 'title' =>
'rcfilters-filtergroup-lastRevision',
354 'class' => ChangesListBooleanFilterGroup::class,
358 'name' =>
'hidelastrevision',
359 'label' =>
'rcfilters-filter-lastrevision-label',
360 'description' =>
'rcfilters-filter-lastrevision-description',
362 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
363 &$query_options, &$join_conds ) use ( $nonRevisionTypes ) {
364 $conds[] =
$dbr->makeList(
366 'rc_this_oldid <> page_latest',
367 'rc_type' => $nonRevisionTypes,
372 'cssClassSuffix' =>
'last',
373 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
374 return $rc->getAttribute(
'rc_this_oldid' ) === $rc->getAttribute(
'page_latest' );
378 'name' =>
'hidepreviousrevisions',
379 'label' =>
'rcfilters-filter-previousrevision-label',
380 'description' =>
'rcfilters-filter-previousrevision-description',
382 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
383 &$query_options, &$join_conds ) use ( $nonRevisionTypes ) {
384 $conds[] =
$dbr->makeList(
386 'rc_this_oldid = page_latest',
387 'rc_type' => $nonRevisionTypes,
392 'cssClassSuffix' =>
'previous',
393 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
394 return $rc->getAttribute(
'rc_this_oldid' ) !== $rc->getAttribute(
'page_latest' );
402 'name' =>
'changeType',
403 'title' =>
'rcfilters-filtergroup-changetype',
404 'class' => ChangesListBooleanFilterGroup::class,
408 'name' =>
'hidepageedits',
409 'label' =>
'rcfilters-filter-pageedits-label',
410 'description' =>
'rcfilters-filter-pageedits-description',
413 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
414 &$query_options, &$join_conds
416 $conds[] =
'rc_type != ' .
$dbr->addQuotes(
RC_EDIT );
418 'cssClassSuffix' =>
'src-mw-edit',
419 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
420 return $rc->getAttribute(
'rc_source' ) === RecentChange::SRC_EDIT;
424 'name' =>
'hidenewpages',
425 'label' =>
'rcfilters-filter-newpages-label',
426 'description' =>
'rcfilters-filter-newpages-description',
429 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
430 &$query_options, &$join_conds
432 $conds[] =
'rc_type != ' .
$dbr->addQuotes(
RC_NEW );
434 'cssClassSuffix' =>
'src-mw-new',
435 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
436 return $rc->getAttribute(
'rc_source' ) === RecentChange::SRC_NEW;
444 'label' =>
'rcfilters-filter-logactions-label',
445 'description' =>
'rcfilters-filter-logactions-description',
448 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
449 &$query_options, &$join_conds
451 $conds[] =
'rc_type != ' .
$dbr->addQuotes(
RC_LOG );
453 'cssClassSuffix' =>
'src-mw-log',
454 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
455 return $rc->getAttribute(
'rc_source' ) === RecentChange::SRC_LOG;
463 $this->legacyReviewStatusFilterGroupDefinition = [
465 'name' =>
'legacyReviewStatus',
466 'title' =>
'rcfilters-filtergroup-reviewstatus',
467 'class' => ChangesListBooleanFilterGroup::class,
470 'name' =>
'hidepatrolled',
473 'showHideSuffix' =>
'showhidepatr',
475 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
476 &$query_options, &$join_conds
478 $conds[
'rc_patrolled'] = RecentChange::PRC_UNPATROLLED;
480 'isReplacedInStructuredUi' =>
true,
483 'name' =>
'hideunpatrolled',
485 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
486 &$query_options, &$join_conds
488 $conds[] =
'rc_patrolled != ' . RecentChange::PRC_UNPATROLLED;
490 'isReplacedInStructuredUi' =>
true,
496 $this->reviewStatusFilterGroupDefinition = [
498 'name' =>
'reviewStatus',
499 'title' =>
'rcfilters-filtergroup-reviewstatus',
500 'class' => ChangesListStringOptionsFilterGroup::class,
501 'isFullCoverage' =>
true,
505 'name' =>
'unpatrolled',
506 'label' =>
'rcfilters-filter-reviewstatus-unpatrolled-label',
507 'description' =>
'rcfilters-filter-reviewstatus-unpatrolled-description',
508 'cssClassSuffix' =>
'reviewstatus-unpatrolled',
509 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
510 return $rc->getAttribute(
'rc_patrolled' ) == RecentChange::PRC_UNPATROLLED;
515 'label' =>
'rcfilters-filter-reviewstatus-manual-label',
516 'description' =>
'rcfilters-filter-reviewstatus-manual-description',
517 'cssClassSuffix' =>
'reviewstatus-manual',
518 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
519 return $rc->getAttribute(
'rc_patrolled' ) == RecentChange::PRC_PATROLLED;
524 'label' =>
'rcfilters-filter-reviewstatus-auto-label',
525 'description' =>
'rcfilters-filter-reviewstatus-auto-description',
526 'cssClassSuffix' =>
'reviewstatus-auto',
527 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
528 return $rc->getAttribute(
'rc_patrolled' ) == RecentChange::PRC_AUTOPATROLLED;
533 'queryCallable' =>
function ( $specialPageClassName, $ctx,
$dbr,
534 &
$tables, &$fields, &$conds, &$query_options, &$join_conds, $selected
536 if ( $selected === [] ) {
539 $rcPatrolledValues = [
540 'unpatrolled' => RecentChange::PRC_UNPATROLLED,
541 'manual' => RecentChange::PRC_PATROLLED,
542 'auto' => RecentChange::PRC_AUTOPATROLLED,
545 $conds[
'rc_patrolled'] = array_map(
function (
$s ) use ( $rcPatrolledValues ) {
546 return $rcPatrolledValues[
$s ];
552 $this->hideCategorizationFilterDefinition = [
553 'name' =>
'hidecategorization',
554 'label' =>
'rcfilters-filter-categorization-label',
555 'description' =>
'rcfilters-filter-categorization-description',
558 'showHideSuffix' =>
'showhidecategorization',
561 'queryCallable' =>
function ( $specialClassName, $ctx,
$dbr, &
$tables, &$fields, &$conds,
562 &$query_options, &$join_conds
566 'cssClassSuffix' =>
'src-mw-categorize',
567 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
568 return $rc->getAttribute(
'rc_source' ) === RecentChange::SRC_CATEGORIZE;
582 if ( $group->getConflictingGroups() ) {
585 " specifies conflicts with other groups but these are not supported yet."
590 foreach ( $group->getConflictingFilters() as $conflictingFilter ) {
591 if ( $conflictingFilter->activelyInConflictWithGroup( $group, $opts ) ) {
597 foreach ( $group->getFilters() as $filter ) {
599 foreach ( $filter->getConflictingFilters() as $conflictingFilter ) {
601 $conflictingFilter->activelyInConflictWithFilter( $filter, $opts ) &&
602 $filter->activelyInConflictWithFilter( $conflictingFilter, $opts )
621 $this->rcSubpage = $subpage;
628 if (
$rows ===
false ) {
633 if ( $this->
getRequest()->getVal(
'action' ) ===
'render' ) {
634 $this->
getOutput()->setArticleBodyOnly(
true );
639 if ( $this->
getRequest()->getBool(
'peek' ) ) {
643 if ( $this->
getUser()->isAnon() !==
646 $this->
getOutput()->setStatusCode( 205 );
653 foreach (
$rows as $row ) {
654 $batch->
add( NS_USER, $row->rc_user_text );
656 $batch->add( $row->rc_namespace, $row->rc_title );
657 if ( $row->rc_source === RecentChange::SRC_LOG ) {
659 foreach ( $formatter->getPreloadTitles() as $title ) {
673 MWExceptionHandler::logException( $timeoutException );
679 $this->
getOutput()->setStatusCode( 500 );
684 if ( $this->
getConfig()->
get(
'EnableWANCacheReaper' ) ) {
688 LoggerFactory::getInstance(
'objectcache' )
707 $knownParams = call_user_func_array(
709 array_keys( $this->
getOptions()->getAllValues() )
715 $excludedParams = [
'limit' =>
'',
'days' =>
'',
'enhanced' =>
'',
'from' =>
'' ];
716 $knownParams = array_diff_key( $knownParams, $excludedParams );
722 count( $knownParams ) === 0
725 $savedQueries = FormatJson::decode(
726 $this->
getUser()->getOption( static::$savedQueriesPreferenceName ),
730 if ( $savedQueries && isset( $savedQueries[
'default' ] ) ) {
733 if ( isset( $savedQueries[
'version' ] ) && $savedQueries[
'version' ] ===
'2' ) {
734 $savedQueryDefaultID = $savedQueries[
'default' ];
735 $defaultQuery = $savedQueries[
'queries' ][ $savedQueryDefaultID ][
'data' ];
739 $defaultQuery[
'params' ],
740 $defaultQuery[
'highlights' ],
748 unset(
$query[
'title' ] );
756 'wgStructuredChangeFiltersDefaultSavedQueryExists',
762 $this->
getOutput()->addBodyClasses(
'mw-rcfilters-ui-loading' );
780 foreach ( $jsData[
'messageKeys'] as $key ) {
784 $out->addBodyClasses(
'mw-rcfilters-enabled' );
792 $out->addJsConfigVars(
'wgStructuredChangeFilters', $jsData[
'groups'] );
794 $out->addJsConfigVars(
795 'wgRCFiltersChangeTags',
798 $out->addJsConfigVars(
799 'StructuredChangeFiltersDisplayConfig',
801 'maxDays' => (
int)$this->
getConfig()->
get(
'RCMaxAge' ) / ( 24 * 3600 ),
802 'limitArray' => $this->
getConfig()->
get(
'RCLinkLimits' ),
804 'daysArray' => $this->
getConfig()->
get(
'RCLinkDays' ),
809 $out->addJsConfigVars(
810 'wgStructuredChangeFiltersSavedQueriesPreferenceName',
811 static::$savedQueriesPreferenceName
813 $out->addJsConfigVars(
814 'wgStructuredChangeFiltersLimitPreferenceName',
815 static::$limitPreferenceName
817 $out->addJsConfigVars(
818 'wgStructuredChangeFiltersDaysPreferenceName',
819 static::$daysPreferenceName
822 $out->addJsConfigVars(
823 'StructuredChangeFiltersLiveUpdatePollingRate',
824 $this->
getConfig()->
get(
'StructuredChangeFiltersLiveUpdatePollingRate' )
827 $out->addBodyClasses(
'mw-rcfilters-disabled' );
837 $cache = ObjectCache::getMainWANInstance();
839 return $cache->getWithSetCallback(
840 $cache->makeKey(
'changeslistspecialpage-changetags',
$context->getLanguage()->getCode() ),
841 $cache::TTL_MINUTE * 10,
854 $tagHitCounts = array_merge( $explicitlyDefinedTags, $softwareActivatedTags );
858 foreach ( $tagHitCounts as $tagName => $hits ) {
861 isset( $explicitlyDefinedTags[ $tagName ] ) ||
862 isset( $softwareActivatedTags[ $tagName ] )
866 'label' => Sanitizer::stripAllTags(
871 $tagName, self::TAG_DESC_CHARACTER_LIMIT,
$context
873 'cssClass' => Sanitizer::escapeClass(
'mw-tag-' . $tagName ),
880 usort( $result,
function ( $a, $b ) {
881 return strcasecmp( $a[
'label'], $b[
'label'] );
897 '<div class="mw-changeslist-empty">' .
898 $this->
msg(
'recentchanges-noresult' )->parse() .
908 '<div class="mw-changeslist-empty mw-changeslist-timeout">' .
909 $this->
msg(
'recentchanges-timeout' )->parse() .
927 $this->
buildQuery(
$tables, $fields, $conds, $query_options, $join_conds, $opts );
929 return $this->
doMainQuery(
$tables, $fields, $conds, $query_options, $join_conds, $opts );
938 if ( $this->rcOptions ===
null ) {
939 $this->rcOptions = $this->
setup( $this->rcSubpage );
967 if ( $this->
getConfig()->
get(
'RCWatchCategoryMembership' ) ) {
969 $this->hideCategorizationFilterDefinition
972 $transformedHideCategorizationDef[
'group'] = $changeTypeGroup;
975 $transformedHideCategorizationDef
979 Hooks::run(
'ChangesListSpecialPageStructuredFilters', [ $this ] );
981 $unstructuredGroupDefinition =
988 $registered = $userExperienceLevel->getFilter(
'registered' );
989 $registered->setAsSupersetOf( $userExperienceLevel->getFilter(
'newcomer' ) );
990 $registered->setAsSupersetOf( $userExperienceLevel->getFilter(
'learner' ) );
991 $registered->setAsSupersetOf( $userExperienceLevel->getFilter(
'experienced' ) );
993 $categoryFilter = $changeTypeGroup->getFilter(
'hidecategorization' );
994 $logactionsFilter = $changeTypeGroup->getFilter(
'hidelog' );
995 $pagecreationFilter = $changeTypeGroup->getFilter(
'hidenewpages' );
998 $hideMinorFilter = $significanceTypeGroup->getFilter(
'hideminor' );
1001 if ( $categoryFilter !==
null ) {
1002 $hideMinorFilter->conflictsWith(
1004 'rcfilters-hideminor-conflicts-typeofchange-global',
1005 'rcfilters-hideminor-conflicts-typeofchange',
1006 'rcfilters-typeofchange-conflicts-hideminor'
1009 $hideMinorFilter->conflictsWith(
1011 'rcfilters-hideminor-conflicts-typeofchange-global',
1012 'rcfilters-hideminor-conflicts-typeofchange',
1013 'rcfilters-typeofchange-conflicts-hideminor'
1015 $hideMinorFilter->conflictsWith(
1016 $pagecreationFilter,
1017 'rcfilters-hideminor-conflicts-typeofchange-global',
1018 'rcfilters-hideminor-conflicts-typeofchange',
1019 'rcfilters-typeofchange-conflicts-hideminor'
1033 return $filterDefinition;
1046 $autoFillPriority = -1;
1047 foreach ( $definition as $groupDefinition ) {
1048 if ( !isset( $groupDefinition[
'priority'] ) ) {
1049 $groupDefinition[
'priority'] = $autoFillPriority;
1052 $autoFillPriority = $groupDefinition[
'priority'];
1055 $autoFillPriority--;
1057 $className = $groupDefinition[
'class'];
1058 unset( $groupDefinition[
'class'] );
1060 foreach ( $groupDefinition[
'filters'] as &$filterDefinition ) {
1076 $unstructuredGroupDefinition = [
1077 'name' =>
'unstructured',
1078 'class' => ChangesListBooleanFilterGroup::class,
1084 $unstructuredGroupDefinition[
'filters'][] = [
1087 'default' =>
$params[
'default'],
1091 return $unstructuredGroupDefinition;
1099 foreach ( $this->filterGroups as $group ) {
1101 foreach ( $group->getFilters() as $key => $filter ) {
1102 if ( $filter->displaysOnUnstructuredUi( $this ) ) {
1103 $filters[ $key ] = $filter;
1127 if ( $parameters !==
null ) {
1149 $useDefaults = $this->
getRequest()->getInt(
'urlversion' ) !== 2;
1152 foreach ( $this->filterGroups as $filterGroup ) {
1153 $filterGroup->addOptions( $opts, $useDefaults, $structuredUI );
1157 $opts->add(
'invert',
false );
1158 $opts->add(
'associated',
false );
1159 $opts->add(
'urlversion', 1 );
1160 $opts->add(
'tagfilter',
'' );
1165 $opts->add(
'from',
'' );
1176 $groupName = $group->
getName();
1178 $this->filterGroups[$groupName] = $group;
1198 return isset( $this->filterGroups[$groupName] ) ?
1199 $this->filterGroups[$groupName] :
1218 'messageKeys' => [],
1221 usort( $this->filterGroups,
function ( $a, $b ) {
1222 return $b->getPriority() - $a->getPriority();
1225 foreach ( $this->filterGroups as $groupName => $group ) {
1226 $groupOutput = $group->getJsData( $this );
1227 if ( $groupOutput !==
null ) {
1228 $output[
'messageKeys'] = array_merge(
1230 $groupOutput[
'messageKeys']
1233 unset( $groupOutput[
'messageKeys'] );
1234 $output[
'groups'][] = $groupOutput;
1248 if ( $this->customFilters ===
null ) {
1249 $this->customFilters = [];
1250 Hooks::run(
'ChangesListSpecialPageFilters', [ $this, &$this->customFilters ],
'1.29' );
1265 $opts->fetchValuesFromRequest( $this->
getRequest() );
1277 $stringParameterNameSet = [];
1278 $hideParameterNameSet = [];
1283 foreach ( $this->filterGroups as $filterGroup ) {
1285 $stringParameterNameSet[$filterGroup->getName()] =
true;
1287 foreach ( $filterGroup->getFilters() as $filter ) {
1288 $hideParameterNameSet[$filter->getName()] =
true;
1293 $bits = preg_split(
'/\s*,\s*/', trim( $par ) );
1294 foreach ( $bits as $bit ) {
1296 if ( isset( $hideParameterNameSet[$bit] ) ) {
1299 } elseif ( isset( $hideParameterNameSet[
"hide$bit"] ) ) {
1301 $opts[
"hide$bit"] =
false;
1302 } elseif ( preg_match(
'/^(.*)=(.*)$/', $bit, $m ) ) {
1303 if ( isset( $stringParameterNameSet[$m[1]] ) ) {
1304 $opts[$m[1]] = $m[2];
1319 if ( $isContradictory || $isReplaced ) {
1337 foreach ( $this->filterGroups as $filterGroup ) {
1339 $filters = $filterGroup->getFilters();
1341 if ( count( $filters ) === 1 ) {
1346 $allInGroupEnabled = array_reduce(
1348 function ( $carry, $filter ) use ( $opts ) {
1349 return $carry && $opts[ $filter->getName() ];
1351 count( $filters ) > 0
1354 if ( $allInGroupEnabled ) {
1355 foreach ( $filters as $filter ) {
1356 $opts[ $filter->getName() ] =
false;
1377 if ( $opts[
'hideanons'] && $opts[
'hideliu'] ) {
1378 $opts->
reset(
'hideanons' );
1379 if ( !$opts[
'hidebots'] ) {
1380 $opts->
reset(
'hideliu' );
1381 $opts[
'hidehumans'] = 1;
1405 if ( $opts[
'hideanons' ] ) {
1406 $opts->
reset(
'hideanons' );
1407 $opts[
'userExpLevel' ] =
'registered';
1411 if ( $opts[
'hideliu' ] ) {
1412 $opts->
reset(
'hideliu' );
1413 $opts[
'userExpLevel' ] =
'unregistered';
1418 if ( $opts[
'hidepatrolled' ] ) {
1419 $opts->
reset(
'hidepatrolled' );
1420 $opts[
'reviewStatus' ] =
'unpatrolled';
1424 if ( $opts[
'hideunpatrolled' ] ) {
1425 $opts->
reset(
'hideunpatrolled' );
1426 $opts[
'reviewStatus' ] = implode(
1428 [
'manual',
'auto' ]
1447 if (
$value ===
false ) {
1473 foreach ( $this->filterGroups as $filterGroup ) {
1474 $filterGroup->modifyQuery(
$dbr, $this,
$tables, $fields, $conds,
1475 $query_options, $join_conds, $opts, $isStructuredUI );
1479 if ( $opts[
'namespace' ] !==
'' ) {
1480 $namespaces = explode(
';', $opts[
'namespace' ] );
1482 if ( $opts[
'associated' ] ) {
1483 $associatedNamespaces = array_map(
1485 return MWNamespace::getAssociated( $ns );
1493 $operator = $opts[
'invert' ] ?
'!=' :
'=';
1496 $operator = $opts[
'invert' ] ?
'NOT IN' :
'IN';
1500 $conds[] =
"rc_namespace $operator $value";
1504 $cutoff_unixtime = time() - $opts[
'days'] * 3600 * 24;
1505 $cutoff =
$dbr->timestamp( $cutoff_unixtime );
1507 $fromValid = preg_match(
'/^[0-9]{14}$/', $opts[
'from'] );
1508 if ( $fromValid && $opts[
'from'] >
wfTimestamp( TS_MW, $cutoff ) ) {
1509 $cutoff =
$dbr->timestamp( $opts[
'from'] );
1511 $opts->
reset(
'from' );
1514 $conds[] =
'rc_timestamp >= ' .
$dbr->addQuotes( $cutoff );
1531 $rcQuery = RecentChange::getQueryInfo();
1533 $fields = array_merge( $rcQuery[
'fields'], $fields );
1534 $join_conds = array_merge( $join_conds, $rcQuery[
'joins'] );
1553 return $dbr->select(
1564 &$query_options, &$join_conds, $opts
1567 'ChangesListSpecialPageQuery',
1568 [ $this->
getName(), &
$tables, &$fields, &$conds, &$query_options, &$join_conds, $opts ]
1590 $this->
doHeader( $opts, $rowCount );
1676 # The legend showing what the letters and stuff mean
1677 $legend = Html::openElement(
'dl' ) .
"\n";
1678 # Iterates through them and gets the messages for both letter and tooltip
1679 $legendItems =
$context->getConfig()->get(
'RecentChangesFlags' );
1680 if ( !( $user->useRCPatrol() || $user->useNPPatrol() ) ) {
1681 unset( $legendItems[
'unpatrolled'] );
1683 foreach ( $legendItems as $key => $item ) { # generate items of the legend
1684 $label = isset( $item[
'legend'] ) ? $item[
'legend'] : $item[
'title'];
1685 $letter = $item[
'letter'];
1686 $cssClass = isset( $item[
'class'] ) ? $item[
'class'] : $key;
1688 $legend .= Html::element(
'dt',
1689 [
'class' => $cssClass ],
$context->msg( $letter )->text()
1691 Html::rawElement(
'dd',
1692 [
'class' => Sanitizer::escapeClass(
'mw-changeslist-legend-' . $key ) ],
1697 $legend .= Html::rawElement(
'dt',
1698 [
'class' =>
'mw-plusminus-pos' ],
1699 $context->msg(
'recentchanges-legend-plusminus' )->parse()
1701 $legend .= Html::element(
1703 [
'class' =>
'mw-changeslist-legend-plusminus' ],
1704 $context->msg(
'recentchanges-label-plusminus' )->text()
1706 $legend .= Html::closeElement(
'dl' ) .
"\n";
1709 $context->msg(
'rcfilters-legend-heading' )->parse() :
1710 $context->msg(
'recentchanges-legend-heading' )->parse();
1713 $collapsedState = $this->
getRequest()->getCookie(
'changeslist-state' );
1714 $collapsedClass = $collapsedState ===
'collapsed' ?
' mw-collapsed' :
'';
1717 '<div class="mw-changeslist-legend mw-collapsible' . $collapsedClass .
'">' .
1719 '<div class="mw-collapsible-content">' . $legend .
'</div>' .
1731 $out->addModuleStyles( [
1732 'mediawiki.special.changeslist.legend',
1733 'mediawiki.special.changeslist',
1735 $out->addModules(
'mediawiki.special.changeslist.legend.js' );
1738 $out->addModules(
'mediawiki.rcfilters.filters.ui' );
1739 $out->addModuleStyles(
'mediawiki.rcfilters.filters.base.styles' );
1764 &
$tables, &$fields, &$conds, &$query_options, &$join_conds, $selectedExpLevels, $now = 0
1774 if ( count( $selectedExpLevels ) === $LEVEL_COUNT ) {
1780 in_array(
'registered', $selectedExpLevels ) &&
1781 in_array(
'unregistered', $selectedExpLevels )
1786 $actorMigration = ActorMigration::newMigration();
1787 $actorQuery = $actorMigration->getJoin(
'rc_user' );
1788 $tables += $actorQuery[
'tables'];
1789 $join_conds += $actorQuery[
'joins'];
1793 in_array(
'registered', $selectedExpLevels ) &&
1794 !in_array(
'unregistered', $selectedExpLevels )
1796 $conds[] = $actorMigration->isNotAnon( $actorQuery[
'fields'][
'rc_user'] );
1800 if ( $selectedExpLevels === [
'unregistered' ] ) {
1801 $conds[] = $actorMigration->isAnon( $actorQuery[
'fields'][
'rc_user'] );
1806 $join_conds[
'user'] = [
'LEFT JOIN', $actorQuery[
'fields'][
'rc_user'] .
' = user_id' ];
1811 $secondsPerDay = 86400;
1815 $aboveNewcomer =
$dbr->makeList(
1818 'user_registration <= ' .
$dbr->addQuotes(
$dbr->timestamp( $learnerCutoff ) ),
1823 $aboveLearner =
$dbr->makeList(
1826 'user_registration <= ' .
1827 $dbr->addQuotes(
$dbr->timestamp( $experiencedUserCutoff ) ),
1834 if ( in_array(
'unregistered', $selectedExpLevels ) ) {
1835 $selectedExpLevels = array_diff( $selectedExpLevels, [
'unregistered' ] );
1836 $conditions[] = $actorMigration->isAnon( $actorQuery[
'fields'][
'rc_user'] );
1839 if ( $selectedExpLevels === [
'newcomer' ] ) {
1840 $conditions[] =
"NOT ( $aboveNewcomer )";
1841 } elseif ( $selectedExpLevels === [
'learner' ] ) {
1842 $conditions[] =
$dbr->makeList(
1843 [ $aboveNewcomer,
"NOT ( $aboveLearner )" ],
1846 } elseif ( $selectedExpLevels === [
'experienced' ] ) {
1847 $conditions[] = $aboveLearner;
1848 } elseif ( $selectedExpLevels === [
'learner',
'newcomer' ] ) {
1849 $conditions[] =
"NOT ( $aboveLearner )";
1850 } elseif ( $selectedExpLevels === [
'experienced',
'newcomer' ] ) {
1851 $conditions[] =
$dbr->makeList(
1852 [
"NOT ( $aboveNewcomer )", $aboveLearner ],
1855 } elseif ( $selectedExpLevels === [
'experienced',
'learner' ] ) {
1856 $conditions[] = $aboveNewcomer;
1857 } elseif ( $selectedExpLevels === [
'experienced',
'learner',
'newcomer' ] ) {
1858 $conditions[] = $actorMigration->isNotAnon( $actorQuery[
'fields'][
'rc_user'] );
1861 if ( count( $conditions ) > 1 ) {
1862 $conds[] =
$dbr->makeList( $conditions, IDatabase::LIST_OR );
1863 } elseif ( count( $conditions ) === 1 ) {
1864 $conds[] = reset( $conditions );
1874 if ( $this->
getRequest()->getBool(
'rcfilters' ) ) {
1878 return static::checkStructuredFilterUiEnabled(
1891 if ( $this->
getConfig()->
get(
'StructuredChangeFiltersShowPreference' ) ) {
1892 return !$this->
getUser()->getDefaultOption(
'rcenhancedfilters-disable' );
1894 return $this->
getUser()->getDefaultOption(
'rcenhancedfilters' );
1907 if ( $config->
get(
'StructuredChangeFiltersShowPreference' ) ) {
1908 return !$user->getOption(
'rcenhancedfilters-disable' );
1910 return $user->getOption(
'rcenhancedfilters' );
1922 return $this->
getUser()->getIntOption( static::$limitPreferenceName );
1934 return floatval( $this->
getUser()->getOption( static::$daysPreferenceName ) );
within a display generated by the Derivative if and wherever such third party notices normally appear The contents of the NOTICE file are for informational purposes only and do not modify the License You may add Your own attribution notices within Derivative Works that You alongside or as an addendum to the NOTICE text from the provided that such additional attribution notices cannot be construed as modifying the License You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for or distribution of Your or for any such Derivative Works as a provided Your and distribution of the Work otherwise complies with the conditions stated in this License Submission of Contributions Unless You explicitly state any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this without any additional terms or conditions Notwithstanding the nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions Trademarks This License does not grant permission to use the trade service or product names of the except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file Disclaimer of Warranty Unless required by applicable law or agreed to in Licensor provides the WITHOUT WARRANTIES OR CONDITIONS OF ANY either express or including
$wgLearnerMemberSince
Name of the external diff engine to use.
$wgExperiencedUserMemberSince
Name of the external diff engine to use.
$wgLearnerEdits
The following variables define 3 user experience levels:
$wgExperiencedUserEdits
Name of the external diff engine to use.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfLogWarning( $msg, $callerOffset=1, $level=E_USER_WARNING)
Send a warning as a PHP error and the debug log.
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes one or two arrays as input, and returns a CGI-style string, e....
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
If the group is active, any unchecked filters will translate to hide parameters in the URL.
Represents a hide-based boolean filter (used on ChangesListSpecialPage and descendants)
Represents a filter group (used on ChangesListSpecialPage and descendants)
Special page which uses a ChangesList to show query results.
const TAG_DESC_CHARACTER_LIMIT
Maximum length of a tag description in UTF-8 characters.
validateOptions(FormOptions $opts)
Validate a FormOptions object generated by getDefaultOptions() with values already populated.
getDefaultOptions()
Get a FormOptions object containing the default options.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
setTopText(FormOptions $opts)
Send the text to be displayed before the options.
filterOnUserExperienceLevel( $specialPageClassName, $context, $dbr, &$tables, &$fields, &$conds, &$query_options, &$join_conds, $selectedExpLevels, $now=0)
Filter on users' experience levels; this will not be called if nothing is selected.
runMainQueryHook(&$tables, &$fields, &$conds, &$query_options, &$join_conds, $opts)
getDefaultLimit()
Get the default value of the number of changes to display when loading the result set.
registerFiltersFromDefinitions(array $definition)
Register filters from a definition object.
convertParamsForLink( $params)
Convert parameters values from true/false to 1/0 so they are not omitted by wfArrayToCgi() Bug 36524.
parseParameters( $par, FormOptions $opts)
Process $par and put options found in $opts.
getFilterGroup( $groupName)
Gets a specified ChangesListFilterGroup by name.
$hideCategorizationFilterDefinition
replaceOldOptions(FormOptions $opts)
Replace old options with their structured UI equivalents.
isStructuredFilterUiEnabled()
Check whether the structured filter UI is enabled.
getExtraOptions( $opts)
Get options to be displayed in a form.
setup( $parameters)
Register all the filters, including legacy hook-driven ones.
isStructuredFilterUiEnabledByDefault()
Check whether the structured filter UI is enabled by default (regardless of this particular user's se...
static string $savedQueriesPreferenceName
Preference name for saved queries.
getFilterGroupDefinitionFromLegacyCustomFilters(array $customFilters)
Get filter group definition from legacy custom filters.
static checkStructuredFilterUiEnabled(Config $config, User $user)
Static method to check whether StructuredFilter UI is enabled for the given user.
registerFilters()
Register all filters and their groups (including those from hooks), plus handle conflicts and default...
areFiltersInConflict()
Check if filters are in conflict and guaranteed to return no results.
getDefaultDays()
Get the default value of the number of days to display when loading the result set.
fixBackwardsCompatibilityOptions(FormOptions $opts)
Fix a special case (hideanons=1 and hideliu=1) in a special way, for backwards compatibility.
getCustomFilters()
Get custom show/hide filters using deprecated ChangesListSpecialPageFilters hook.
outputNoResults()
Add the "no results" message to the output.
static string $limitPreferenceName
Preference name for 'limit'.
static string $daysPreferenceName
Preference name for 'days'.
getFilterGroups()
Gets the currently registered filters groups.
registerFilterGroup(ChangesListFilterGroup $group)
Register a structured changes list filter group.
addModules()
Add page-specific modules.
fixContradictoryOptions(FormOptions $opts)
Fix invalid options by resetting pairs that should never appear together.
__construct( $name, $restriction)
outputFeedLinks()
Output feed links.
$legacyReviewStatusFilterGroupDefinition
getLegacyShowHideFilters()
$reviewStatusFilterGroupDefinition
outputTimeout()
Add the "timeout" message to the output.
doHeader( $opts, $numRows)
Set the text to be displayed above the changes.
fetchOptionsFromRequest( $opts)
Fetch values for a FormOptions object from the WebRequest associated with this instance.
getOptions()
Get the current FormOptions for this request.
doMainQuery( $tables, $fields, $conds, $query_options, $join_conds, FormOptions $opts)
Process the query.
execute( $subpage)
Main execution point.
setBottomText(FormOptions $opts)
Send the text to be displayed after the options.
getStructuredFilterJsData()
Gets structured filter information needed by JS.
buildQuery(&$tables, &$fields, &$conds, &$query_options, &$join_conds, FormOptions $opts)
Sets appropriate tables, fields, conditions, etc.
webOutputHeader( $rowCount, $opts)
Send header output to the OutputPage object, only called if not using feeds.
getChangeTagList()
Fetch the change tags list for the front end.
makeLegend()
Return the legend displayed within the fieldset.
webOutput( $rows, $opts)
Send output to the OutputPage object, only called if not used feeds.
considerActionsForDefaultSavedQuery( $subpage)
Check whether or not the page should load defaults, and if so, whether a default saved query is relev...
transformFilterDefinition(array $filterDefinition)
Transforms filter definition to prepare it for constructor.
getDB()
Return a IDatabase object for reading.
$filterGroups
Filter groups, and their contained filters This is an associative array (with group name as key) of C...
outputChangesList( $rows, $opts)
Build and output the actual changes list.
getRows()
Get the database result for this special page instance.
$filterGroupDefinitions
Definition information for the filters and their groups.
includeRcFiltersApp()
Include the modules and configuration for the RCFilters app.
Represents a filter group with multiple string options.
const SEPARATOR
Delimiter.
const NONE
Signifies that no options in the group are selected, meaning the group has no effect.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
static makeInlineScript( $script)
Returns an HTML script tag that runs given JS code after startup and base modules.
static makeMessageSetScript( $messages)
Returns JS code which, when called, will register a given list of messages.
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
getName()
Get the name of this Special Page.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
getContext()
Gets the context this SpecialPage is executed in.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getRequest()
Get the WebRequest being used for this instance.
getPageTitle( $subpage=false)
Get a self-referential title object.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Class for fixing stale WANObjectCache keys using a purge event source.
when a variable name is used in a function
namespace being checked & $result
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
namespace and then decline to actually register it & $namespaces
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Allows to change the fields on the form that will be generated $name
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Interface for configuration instances.
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".