Go to the documentation of this file.
44 'spam' =>
'SpamBlacklist',
45 'email' =>
'EmailBlacklist',
81 self::$blacklistTypes[
$type] = $class;
116 if ( !isset( self::$blacklistTypes[
$type] ) ) {
117 throw new Exception(
"Invalid blacklist type '$type' passed to " . __METHOD__ );
120 if ( !isset( self::$instances[
$type] ) ) {
121 global $wgBlacklistSettings;
124 if ( !isset( $wgBlacklistSettings[
$type] ) ) {
125 $wgBlacklistSettings[
$type] = [];
128 $class = self::$blacklistTypes[
$type];
129 self::$instances[
$type] =
new $class( $wgBlacklistSettings[
$type] );
132 return self::$instances[
$type];
153 foreach ( self::$blacklistTypes
as $type => $class ) {
161 if ( in_array(
$title->getDBkey(), $sources ) ) {
167 $thisHttpRegex =
'/^' . preg_quote( $thisHttp,
'/' ) .
'(?:&.*)?$/';
170 foreach ( self::$blacklistTypes
as $type => $class ) {
171 if ( isset( $wgBlacklistSettings[
$type][
'files'] ) ) {
179 if ( preg_match(
'/^DB: (\w*) (.*)$/', $fileName,
$matches ) ) {
186 } elseif ( preg_match( $thisHttpRegex, $fileName ) ) {
205 $types = array_map( [
$wgContLang,
'ucfirst' ], array_keys( self::$blacklistTypes ) );
206 $regex =
'/(' . implode(
'|', $types ) .
')-(?:blacklist|whitelist)/';
208 if ( preg_match( $regex,
$title->getDBkey(), $m ) ) {
209 return strtolower( $m[1] );
221 if ( $this->regexes ===
false ) {
222 $this->regexes = array_merge(
239 return $cache->getWithSetCallback(
240 $cache->makeKey(
'spamblacklist',
$type,
'blacklist-regex' ),
258 return $cache->getWithSetCallback(
259 $cache->makeKey(
'spamblacklist',
$type,
'whitelist-regex' ),
274 wfDebugLog(
'SpamBlacklist',
"Loading $listType regex..." );
278 wfDebugLog(
'SpamBlacklist',
"no files specified\n" );
289 $cache->makeKey(
'spamblacklist', $listType,
'shared-blacklist-regex' ),
291 function ()
use ( $that, &$miss ) {
293 return $that->buildSharedBlacklists();
298 wfDebugLog(
'SpamBlacklist',
"Got shared spam regexes from cache\n" );
313 $cache->delete(
$cache->makeKey(
'spamblacklist', $listType,
'shared-blacklist-regex' ) );
314 $cache->delete(
$cache->makeKey(
'spamblacklist', $listType,
'blacklist-regex' ) );
315 $cache->delete(
$cache->makeKey(
'spamblacklist', $listType,
'whitelist-regex' ) );
317 wfDebugLog(
'SpamBlacklist',
"$listType blacklist local cache cleared.\n" );
324 wfDebugLog(
'SpamBlacklist',
"Constructing $listType blacklist\n" );
325 foreach ( $this->
files as $fileName ) {
327 if ( preg_match(
'/^DB: ([\w-]*) (.*)$/', $fileName,
$matches ) ) {
329 } elseif ( preg_match(
'/^(https?:)?\/\//', $fileName ) ) {
332 $text = file_get_contents( $fileName );
333 wfDebugLog(
'SpamBlacklist',
"got from file $fileName\n" );
353 # To keep requests to a minimum, we save results into $messageMemc, which is
354 # similar to $wgMemc except almost certain to exist. By default, it is stored
356 # There are two keys, when the warning key expires, a random thread will refresh
357 # the real key. This reduces the chance of multiple requests under high traffic
359 $key =
"{$listType}_blacklist_file:$fileName";
360 $warningKey =
"$wgDBname:{$listType}filewarning:$fileName";
364 if ( !is_string( $httpText ) || ( !$warning && !mt_rand( 0, $this->warningChance ) ) ) {
365 wfDebugLog(
'SpamBlacklist',
"Loading $listType blacklist from $fileName\n" );
367 if ( $httpText ===
false ) {
368 wfDebugLog(
'SpamBlacklist',
"Error loading $listType blacklist from $fileName\n" );
370 $messageMemc->set( $warningKey, 1, $this->warningTime );
371 $messageMemc->set( $key, $httpText, $this->expiryTime );
373 wfDebugLog(
'SpamBlacklist',
"Got $listType blacklist from HTTP cache for $fileName\n" );
388 "Fetching {$this->getBlacklistType()} blacklist from '$article' on '$wiki'...\n" );
398 'tables' => [
'revision',
'page',
'text' ],
399 'fields' => array_merge(
405 'text' => [
'JOIN',
'old_id=rev_text_id' ]
413 'page_namespace' =>
$title->getNamespace(),
414 'page_title' =>
$title->getDBkey(),
418 [
'page' => [
'JOIN',
'rev_id=page_latest' ] ] +
$revQuery[
'joins']
432 return '/[a-z0-9_\-.]*';
442 return ( $batchSize > 0 ) ?
'/Sim' :
'/im';
static getSpamBlacklist()
static getBlacklistTypes()
Return the array of blacklist types currently defined.
return true to allow those checks to and false if checking is done remove or add to the links of a group of changes in EnhancedChangesList Hook subscribers can return false to omit this line from recentchanges use this to change the tables headers change it to an object instance and return false override the list derivative used the name of the old file & $article
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
static getInstance( $type)
Returns an instance of the given blacklist.
getRegexEnd( $batchSize)
Returns the end of the regex for matches.
controlled by the following MediaWiki still creates a BagOStuff but calls it to it are no ops If the cache daemon can t be it should also disable itself fairly $wgDBname
getBlacklists()
Fetch local and (possibly cached) remote blacklists.
getBlacklistType()
Returns the code for the blacklist implementation.
getArticleText( $wiki, $article)
Fetch an article from this or another local MediaWiki database.
array $files
Array of blacklist sources.
static isLocalSource(Title $title)
Check if the given local page title is a spam regex source.
static addBlacklistType( $type, $class)
Adds a blacklist class to the registry.
static getTypeFromTitle(Title $title)
Returns the type of blacklist from the given title.
static regexesFromText( $source, BaseBlacklist $blacklist, $fileName=false)
Build a set of regular expressions from the given multiline input text, with empty lines and comments...
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static selectTextFields()
Return the list of text fields that should be selected to read the revision text.
static array $blacklistTypes
Array containing blacklists that extend BaseBlacklist.
static getQueryInfo( $options=[])
Return the tables, fields, and join conditions to be selected to create a new revision object.
namespace and then decline to actually register it file or subcat img or subcat $title
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
static get( $url, array $options=[], $caller=__METHOD__)
Simple wrapper for Http::request( 'GET' )
c Accompany it with the information you received as to the offer to distribute corresponding source complete source code means all the source code for all modules it plus any associated interface definition files
getLocalBlacklists()
Returns the local blacklist.
Base class for different kinds of blacklists.
clearCache()
Clear all primary blacklist cache keys.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
static regexesFromMessage( $message, BaseBlacklist $blacklist)
Build a set of regular expressions from a MediaWiki message.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
getSharedBlacklists()
Fetch (possibly cached) remote blacklists.
static selectPageFields()
Return the list of page fields that should be selected from page table.
Allows to change the fields on the form that will be generated $name
bool array $regexes
Array containing regexes to test against.
warmCachesForFilter(Title $title, array $entries)
filter(array $links, Title $title, $preventLog=false)
static array $instances
Array of blacklist instances.
Represents a title within MediaWiki.
static getContentText(Content $content=null)
Convenience function for getting flat text from a Content object.
static getMainWANInstance()
Get the main WAN cache object.
int $warningChance
Chance of receiving a warning when the filter is hit.
static getEmailBlacklist()
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
__construct( $settings=[])
Constructor.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
getWhitelists()
Returns the (local) whitelist.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
getRegexStart()
Returns the start of the regex for matches.