[ * 'mainpage' => (bool) should it be disabled on the main page? * 'namespaces' => int[] namespaces it should be excluded on. * 'querystring' => array of strings mapping to regex for patterns * the query strings it should be excluded on * e.g. [ 'action' => '*' ] disable on all actions * 'pagetitles' => string[] of pages it should be excluded on. * For special pages, use canonical English name. * ] * ] * @param WebRequest $request * @param Title|null $title * * @return bool */ public static function shouldDisable( array $options, WebRequest $request, Title $title = null ) { $canonicalTitle = $title ? $title->getRootTitle() : null; $exclusions = $options[ 'exclude' ] ?? []; $inclusions = $options[ 'include' ] ?? []; $excludeQueryString = $exclusions[ 'querystring' ] ?? []; foreach ( $excludeQueryString as $param => $excludedParamPattern ) { $paramValue = $request->getRawVal( $param ); if ( $paramValue !== null ) { if ( $excludedParamPattern === '*' ) { // Backwards compatibility for the '*' wildcard. $excludedParamPattern = '.+'; } return (bool)preg_match( "/$excludedParamPattern/", $paramValue ); } } if ( $title && $title->isMainPage() ) { // only one check to make return $exclusions[ 'mainpage' ] ?? false; } if ( $canonicalTitle && $canonicalTitle->isSpecialPage() ) { $spFactory = MediaWikiServices::getInstance()->getSpecialPageFactory(); [ $canonicalName, $par ] = $spFactory->resolveAlias( $canonicalTitle->getDBKey() ); if ( $canonicalName ) { $canonicalTitle = Title::makeTitle( NS_SPECIAL, $canonicalName ); } } // // Check the inclusions based on the canonical title // The inclusions are checked first as these trump any exclusions. // // Now we have the canonical title and the inclusions link we look for any matches. foreach ( $inclusions as $titleText ) { $includedTitle = Title::newFromText( $titleText ); if ( $canonicalTitle->equals( $includedTitle ) ) { return false; } } // // Check the excluded page titles based on the canonical title // // Now we have the canonical title and the exclusions link we look for any matches. $pageTitles = $exclusions[ 'pagetitles' ] ?? []; foreach ( $pageTitles as $titleText ) { // use strtolower to make sure the config passed for special pages // is case insensitive, so it does not generate a wrong special page title $excludedTitle = Title::newFromText( $titleText ); if ( $canonicalTitle && $canonicalTitle->equals( $excludedTitle ) ) { return true; } } // // Check the exclusions // If nothing matches the exclusions to determine what should happen // $excludeNamespaces = $exclusions[ 'namespaces' ] ?? []; if ( $title && $title->inNamespaces( $excludeNamespaces ) ) { return true; } return false; } }