mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
1560528dc7
* Add a section on the preference form to allow users to mute articles from generating "page linked" notices * The preference will save the article title as an article ID Depends-On: Ia0ddf78646ec4c8ae0b84b6d5b46ef5e51c8e8c1 Bug: T46787 Change-Id: I67f751eae5fdc5bccff7fe3047227d432c1cb8d5
129 lines
3.7 KiB
PHP
129 lines
3.7 KiB
PHP
<?php
|
|
|
|
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 );
|
|
$lookup = CentralIdLookup::factory();
|
|
$names = $lookup->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;
|
|
}
|
|
}
|