mediawiki-extensions-SpamBl.../includes/EmailBlacklist.php
Daimona Eaytoy 6ad12a26dc Make User parameter required in BaseBlacklist::filter
Depends-On: Idf346b7d5952c1af1547d178a3634d1116d4f85b
Depends-On: I7fe28c67e5a95de870ac98b4f2571733f4a7d302
Change-Id: I62478bec3a284b7aa56ea94f49be30199a6be3e4
2020-11-24 06:16:42 +00:00

71 lines
1.6 KiB
PHP

<?php
/**
* Email Blacklisting
*/
class EmailBlacklist extends BaseBlacklist {
/**
* @inheritDoc
*/
public function filter( array $links, ?Title $title, User $user, $preventLog = false ) {
throw new LogicException( __CLASS__ . ' cannot be used to filter links.' );
}
/**
* Returns the code for the blacklist implementation
*
* @return string
*/
protected function getBlacklistType() {
return 'email';
}
/**
* Checks a User object for a blacklisted email address
*
* @param User $user
* @return bool True on valid email
*/
public function checkUser( User $user ) {
$blacklists = $this->getBlacklists();
$whitelists = $this->getWhitelists();
// The email to check
$email = $user->getEmail();
if ( !count( $blacklists ) ) {
// Nothing to check
return true;
}
// Check for whitelisted email addresses
if ( is_array( $whitelists ) ) {
wfDebugLog( 'SpamBlacklist', "Excluding whitelisted email addresses from " .
count( $whitelists ) . " regexes: " . implode( ', ', $whitelists ) . "\n" );
foreach ( $whitelists as $regex ) {
Wikimedia\suppressWarnings();
$match = preg_match( $regex, $email );
Wikimedia\restoreWarnings();
if ( $match ) {
// Whitelisted email
return true;
}
}
}
# Do the match
wfDebugLog( 'SpamBlacklist', "Checking e-mail address against " . count( $blacklists ) .
" regexes: " . implode( ', ', $blacklists ) . "\n" );
foreach ( $blacklists as $regex ) {
Wikimedia\suppressWarnings();
$match = preg_match( $regex, $email );
Wikimedia\restoreWarnings();
if ( $match ) {
return false;
}
}
return true;
}
}