mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
17a644263a
composer: * mediawiki/mediawiki-codesniffer: 36.0.0 → 37.0.0 The following sniffs are failing and were disabled: * PSR12.Functions.ReturnTypeDeclaration.SpaceBeforeReturnType npm: * svgo: 2.3.0 → 2.3.1 * https://npmjs.com/advisories/1754 (CVE-2021-33587) * postcss: 7.0.35 → 7.0.36 * https://npmjs.com/advisories/1693 (CVE-2021-23368) * trim-newlines: 3.0.0 → 3.0.1 * https://npmjs.com/advisories/1753 (CVE-2021-33623) Change-Id: Id866782d39ac02a329bd79539f2d52392fffd296
131 lines
3.7 KiB
PHP
131 lines
3.7 KiB
PHP
<?php
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
use MediaWiki\Preferences\MultiUsernameFilter;
|
|
|
|
/**
|
|
* Utilizes EchoContainmentList interface to provide a fluent interface to whitelist/blacklist
|
|
* from multiple sources like global variables, wiki pages, etc.
|
|
*
|
|
* Initialize:
|
|
* $cache = ObjectCache::getLocalClusterIntance();
|
|
* $set = new EchoContainmentSet;
|
|
* $set->addArray( $wgSomeGlobalParameter );
|
|
* $set->addOnWiki( NS_USER, 'Foo/bar-baz', $cache, 'some_user_specific_cache_key' );
|
|
*
|
|
* Usage:
|
|
* if ( $set->contains( 'SomeUser' ) ) {
|
|
* ...
|
|
* }
|
|
*/
|
|
class EchoContainmentSet {
|
|
/**
|
|
* @var EchoContainmentList[]
|
|
*/
|
|
protected $lists = [];
|
|
|
|
/**
|
|
* @var User
|
|
*/
|
|
protected $recipient;
|
|
|
|
public function __construct( User $recipient ) {
|
|
$this->recipient = $recipient;
|
|
}
|
|
|
|
/**
|
|
* Add an EchoContainmentList to the set of lists checked by self::contains()
|
|
*
|
|
* @param EchoContainmentList $list
|
|
*/
|
|
public function add( EchoContainmentList $list ) {
|
|
$this->lists[] = $list;
|
|
}
|
|
|
|
/**
|
|
* Add a php array to the set of lists checked by self::contains()
|
|
*
|
|
* @param array $list
|
|
*/
|
|
public function addArray( array $list ) {
|
|
$this->add( new EchoArrayList( $list ) );
|
|
}
|
|
|
|
/**
|
|
* Add a list from a user preference to the set of lists checked by self::contains().
|
|
*
|
|
* @param string $preferenceName
|
|
*/
|
|
public function addFromUserOption( $preferenceName ) {
|
|
$preference = $this->recipient->getOption( $preferenceName, [] );
|
|
|
|
if ( $preference ) {
|
|
$ids = MultiUsernameFilter::splitIds( $preference );
|
|
$names = MediaWikiServices::getInstance()
|
|
->getCentralIdLookup()
|
|
->namesFromCentralIds( $ids, $this->recipient );
|
|
$this->addArray( $names );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add a list of title IDs from a user preference to the set of lists
|
|
* checked by self::contains().
|
|
*
|
|
* @param string $preferenceName
|
|
*/
|
|
public function addTitleIDsFromUserOption( string $preferenceName ): void {
|
|
$preference = $this->recipient->getOption( $preferenceName, [] );
|
|
if ( !is_string( $preference ) ) {
|
|
// We expect the preference data to be saved as a string via the
|
|
// preferences form; if the user modified their data so it's no
|
|
// longer a string, ignore it.
|
|
return;
|
|
}
|
|
$titleIDs = preg_split( '/\n/', $preference, -1, PREG_SPLIT_NO_EMPTY );
|
|
$this->addArray( $titleIDs );
|
|
}
|
|
|
|
/**
|
|
* Add a list from a wiki page to the set of lists checked by self::contains(). Data
|
|
* from wiki pages is cached via the BagOStuff. Caching is disabled when passing a null
|
|
* $cache object.
|
|
*
|
|
* @param int $namespace An NS_* constant representing the mediawiki namespace of the page containing the list.
|
|
* @param string $title The title of the page containing the list.
|
|
* @param WANObjectCache|null $cache An object to cache the page with or null for no cache.
|
|
* @param string $cacheKeyPrefix A prefix to be combined with the pages latest revision id and used as a cache key.
|
|
*
|
|
* @throws MWException
|
|
*/
|
|
public function addOnWiki(
|
|
$namespace, $title, WANObjectCache $cache = null, $cacheKeyPrefix = ''
|
|
) {
|
|
$list = new EchoOnWikiList( $namespace, $title );
|
|
if ( $cache ) {
|
|
if ( $cacheKeyPrefix === '' ) {
|
|
throw new MWException( 'Cache requires providing a cache key prefix.' );
|
|
}
|
|
$list = new EchoCachedList( $cache, $cacheKeyPrefix, $list );
|
|
}
|
|
$this->add( $list );
|
|
}
|
|
|
|
/**
|
|
* Test the wrapped lists for existence of $value
|
|
*
|
|
* @param mixed $value The value to look for
|
|
* @return bool True when the set contains the provided value
|
|
*/
|
|
public function contains( $value ) {
|
|
foreach ( $this->lists as $list ) {
|
|
// Use strict comparison to prevent the number 0 from matching all strings (T177825)
|
|
if ( array_search( $value, $list->getValues(), true ) !== false ) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|