2012-01-17 06:13:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Utility class for working with blacklists
|
|
|
|
*/
|
|
|
|
class SpamRegexBatch {
|
|
|
|
/**
|
|
|
|
* Build a set of regular expressions matching URLs with the list of regex fragments.
|
|
|
|
* Returns an empty list if the input list is empty.
|
|
|
|
*
|
|
|
|
* @param array $lines list of fragments which will match in URLs
|
2012-09-02 15:41:39 +00:00
|
|
|
* @param BaseBlacklist $blacklist
|
2012-01-17 06:13:46 +00:00
|
|
|
* @param int $batchSize largest allowed batch regex;
|
|
|
|
* if 0, will produce one regex per line
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-11-02 11:54:59 +00:00
|
|
|
private static function buildRegexes( $lines, BaseBlacklist $blacklist, $batchSize = 4096 ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
# Make regex
|
|
|
|
# It's faster using the S modifier even though it will usually only be run once
|
2017-06-06 16:29:27 +00:00
|
|
|
// $regex = 'https?://+[a-z0-9_\-.]*(' . implode( '|', $lines ) . ')';
|
|
|
|
// return '/' . str_replace( '/', '\/', preg_replace('|\\\*/|', '/', $regex) ) . '/Sim';
|
|
|
|
$regexes = [];
|
2012-01-18 23:29:37 +00:00
|
|
|
$regexStart = $blacklist->getRegexStart();
|
|
|
|
$regexEnd = $blacklist->getRegexEnd( $batchSize );
|
2012-01-17 06:13:46 +00:00
|
|
|
$build = false;
|
2017-06-06 16:29:27 +00:00
|
|
|
foreach ( $lines as $line ) {
|
|
|
|
if ( substr( $line, -1, 1 ) == "\\" ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
// Final \ will break silently on the batched regexes.
|
|
|
|
// Skip it here to avoid breaking the next line;
|
|
|
|
// warnings from getBadLines() will still trigger on
|
|
|
|
// edit to keep new ones from floating in.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// FIXME: not very robust size check, but should work. :)
|
2017-06-06 16:29:27 +00:00
|
|
|
if ( $build === false ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
$build = $line;
|
2017-06-06 16:29:27 +00:00
|
|
|
} elseif ( strlen( $build ) + strlen( $line ) > $batchSize ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
$regexes[] = $regexStart .
|
2017-06-06 16:29:27 +00:00
|
|
|
str_replace( '/', '\/', preg_replace( '|\\\*/|u', '/', $build ) ) .
|
2012-01-17 06:13:46 +00:00
|
|
|
$regexEnd;
|
|
|
|
$build = $line;
|
|
|
|
} else {
|
|
|
|
$build .= '|';
|
|
|
|
$build .= $line;
|
|
|
|
}
|
|
|
|
}
|
2017-06-06 16:29:27 +00:00
|
|
|
if ( $build !== false ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
$regexes[] = $regexStart .
|
2017-06-06 16:29:27 +00:00
|
|
|
str_replace( '/', '\/', preg_replace( '|\\\*/|u', '/', $build ) ) .
|
2012-01-17 06:13:46 +00:00
|
|
|
$regexEnd;
|
|
|
|
}
|
|
|
|
return $regexes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Confirm that a set of regexes is either empty or valid.
|
|
|
|
*
|
2017-10-07 09:15:06 +00:00
|
|
|
* @param array $regexes set of regexes
|
2012-01-17 06:13:46 +00:00
|
|
|
* @return bool true if ok, false if contains invalid lines
|
|
|
|
*/
|
2018-11-02 11:54:59 +00:00
|
|
|
private static function validateRegexes( $regexes ) {
|
2017-06-06 16:29:27 +00:00
|
|
|
foreach ( $regexes as $regex ) {
|
2019-02-13 00:25:53 +00:00
|
|
|
Wikimedia\suppressWarnings();
|
2012-01-17 06:13:46 +00:00
|
|
|
$ok = preg_match( $regex, '' );
|
2019-02-13 00:25:53 +00:00
|
|
|
Wikimedia\restoreWarnings();
|
2012-01-17 06:13:46 +00:00
|
|
|
|
2017-06-06 16:29:27 +00:00
|
|
|
if ( $ok === false ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Strip comments and whitespace, then remove blanks
|
|
|
|
*
|
2017-10-07 09:15:06 +00:00
|
|
|
* @param array $lines
|
2012-01-17 06:13:46 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2018-11-02 11:54:59 +00:00
|
|
|
private static function stripLines( $lines ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
return array_filter(
|
|
|
|
array_map( 'trim',
|
|
|
|
preg_replace( '/#.*$/', '',
|
|
|
|
$lines ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Do a sanity check on the batch regex.
|
|
|
|
*
|
2018-02-25 01:25:04 +00:00
|
|
|
* @param array $lines unsanitized input lines
|
2017-10-07 09:15:06 +00:00
|
|
|
* @param BaseBlacklist $blacklist
|
|
|
|
* @param bool|string $fileName optional for debug reporting
|
2012-01-17 06:13:46 +00:00
|
|
|
* @return array of regexes
|
|
|
|
*/
|
2018-11-02 11:54:59 +00:00
|
|
|
private static function buildSafeRegexes( $lines, BaseBlacklist $blacklist, $fileName = false ) {
|
2017-07-26 20:59:35 +00:00
|
|
|
$lines = self::stripLines( $lines );
|
|
|
|
$regexes = self::buildRegexes( $lines, $blacklist );
|
|
|
|
if ( self::validateRegexes( $regexes ) ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
return $regexes;
|
|
|
|
} else {
|
|
|
|
// _Something_ broke... rebuild line-by-line; it'll be
|
|
|
|
// slower if there's a lot of blacklist lines, but one
|
|
|
|
// broken line won't take out hundreds of its brothers.
|
2017-06-06 16:29:27 +00:00
|
|
|
if ( $fileName ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
wfDebugLog( 'SpamBlacklist', "Spam blacklist warning: bogus line in $fileName\n" );
|
|
|
|
}
|
2017-07-26 20:59:35 +00:00
|
|
|
return self::buildRegexes( $lines, $blacklist, 0 );
|
2012-01-17 06:13:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of invalid lines
|
|
|
|
*
|
|
|
|
* @param array $lines
|
2017-10-07 09:15:06 +00:00
|
|
|
* @param BaseBlacklist $blacklist
|
2012-01-17 06:13:46 +00:00
|
|
|
* @return array of input lines which produce invalid input, or empty array if no problems
|
|
|
|
*/
|
2018-11-02 11:54:59 +00:00
|
|
|
public static function getBadLines( $lines, BaseBlacklist $blacklist ) {
|
2017-07-26 20:59:35 +00:00
|
|
|
$lines = self::stripLines( $lines );
|
2012-01-17 06:13:46 +00:00
|
|
|
|
2017-06-06 16:29:27 +00:00
|
|
|
$badLines = [];
|
|
|
|
foreach ( $lines as $line ) {
|
|
|
|
if ( substr( $line, -1, 1 ) == "\\" ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
// Final \ will break silently on the batched regexes.
|
|
|
|
$badLines[] = $line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-26 20:59:35 +00:00
|
|
|
$regexes = self::buildRegexes( $lines, $blacklist );
|
|
|
|
if ( self::validateRegexes( $regexes ) ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
// No other problems!
|
|
|
|
return $badLines;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Something failed in the batch, so check them one by one.
|
2017-06-06 16:29:27 +00:00
|
|
|
foreach ( $lines as $line ) {
|
2017-07-26 20:59:35 +00:00
|
|
|
$regexes = self::buildRegexes( [ $line ], $blacklist );
|
|
|
|
if ( !self::validateRegexes( $regexes ) ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
$badLines[] = $line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $badLines;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build a set of regular expressions from the given multiline input text,
|
|
|
|
* with empty lines and comments stripped.
|
|
|
|
*
|
2017-10-07 09:15:06 +00:00
|
|
|
* @param string $source
|
|
|
|
* @param BaseBlacklist $blacklist
|
|
|
|
* @param bool|string $fileName optional, for reporting of bad files
|
2012-01-17 06:13:46 +00:00
|
|
|
* @return array of regular expressions, potentially empty
|
|
|
|
*/
|
2018-11-02 11:54:59 +00:00
|
|
|
public static function regexesFromText( $source, BaseBlacklist $blacklist, $fileName = false ) {
|
2012-01-17 06:13:46 +00:00
|
|
|
$lines = explode( "\n", $source );
|
2017-07-26 20:59:35 +00:00
|
|
|
return self::buildSafeRegexes( $lines, $blacklist, $fileName );
|
2012-01-17 06:13:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build a set of regular expressions from a MediaWiki message.
|
|
|
|
* Will be correctly empty if the message isn't present.
|
|
|
|
*
|
2017-10-07 09:15:06 +00:00
|
|
|
* @param string $message
|
|
|
|
* @param BaseBlacklist $blacklist
|
2012-01-17 06:13:46 +00:00
|
|
|
* @return array of regular expressions, potentially empty
|
|
|
|
*/
|
2018-11-02 11:54:59 +00:00
|
|
|
public static function regexesFromMessage( $message, BaseBlacklist $blacklist ) {
|
2012-09-02 15:41:39 +00:00
|
|
|
$source = wfMessage( $message )->inContentLanguage();
|
2017-06-06 16:29:27 +00:00
|
|
|
if ( !$source->isDisabled() ) {
|
2017-07-26 20:59:35 +00:00
|
|
|
return self::regexesFromText( $source->plain(), $blacklist );
|
2012-01-17 06:13:46 +00:00
|
|
|
} else {
|
2017-06-06 16:29:27 +00:00
|
|
|
return [];
|
2012-01-17 06:13:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|