2006-01-27 23:37:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Some functions to help implement an external link filter for spam control.
|
|
|
|
|
*
|
|
|
|
|
* TODO: implement the filter. Currently these are just some functions to help
|
2006-03-11 17:13:49 +00:00
|
|
|
* maintenance/cleanupSpam.php remove links to a single specified domain. The
|
|
|
|
|
* next thing is to implement functions for checking a given page against a big
|
2006-01-27 23:37:19 +00:00
|
|
|
* list of domains.
|
|
|
|
|
*
|
|
|
|
|
* Another cool thing to do would be a web interface for fast spam removal.
|
|
|
|
|
*/
|
|
|
|
|
class LinkFilter {
|
|
|
|
|
/**
|
|
|
|
|
* @static
|
|
|
|
|
*/
|
|
|
|
|
function matchEntry( $text, $filterEntry ) {
|
|
|
|
|
$regex = LinkFilter::makeRegex( $filterEntry );
|
|
|
|
|
return preg_match( $regex, $text );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @static
|
|
|
|
|
*/
|
|
|
|
|
function makeRegex( $filterEntry ) {
|
|
|
|
|
$regex = '!http://';
|
|
|
|
|
if ( substr( $filterEntry, 0, 2 ) == '*.' ) {
|
|
|
|
|
$regex .= '([A-Za-z0-9.-]+\.|)';
|
|
|
|
|
$filterEntry = substr( $filterEntry, 2 );
|
|
|
|
|
}
|
|
|
|
|
$regex .= preg_quote( $filterEntry, '!' ) . '!Si';
|
|
|
|
|
return $regex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2006-03-11 17:13:49 +00:00
|
|
|
* Make a string to go after an SQL LIKE, which will match the specified
|
2006-01-27 23:37:19 +00:00
|
|
|
* string. There are several kinds of filter entry:
|
2006-03-11 17:13:49 +00:00
|
|
|
* *.domain.com - Produces http://com.domain.%, matches domain.com
|
2006-01-27 23:37:19 +00:00
|
|
|
* and www.domain.com
|
|
|
|
|
* domain.com - Produces http://com.domain./%, matches domain.com
|
|
|
|
|
* or domain.com/ but not www.domain.com
|
2006-03-11 17:13:49 +00:00
|
|
|
* *.domain.com/x - Produces http://com.domain.%/x%, matches
|
2006-01-27 23:37:19 +00:00
|
|
|
* www.domain.com/xy
|
2006-03-11 17:13:49 +00:00
|
|
|
* domain.com/x - Produces http://com.domain./x%, matches
|
2006-01-27 23:37:19 +00:00
|
|
|
* domain.com/xy but not www.domain.com/xy
|
|
|
|
|
*
|
|
|
|
|
* Asterisks in any other location are considered invalid.
|
|
|
|
|
*
|
|
|
|
|
* @static
|
2007-03-16 21:49:43 +00:00
|
|
|
* @param $filterEntry String: domainparts
|
|
|
|
|
* @param $prot String: protocol
|
2006-01-27 23:37:19 +00:00
|
|
|
*/
|
2007-03-19 16:19:13 +00:00
|
|
|
function makeLike( $filterEntry , $prot = 'http://' ) {
|
2006-01-27 23:37:19 +00:00
|
|
|
if ( substr( $filterEntry, 0, 2 ) == '*.' ) {
|
|
|
|
|
$subdomains = true;
|
|
|
|
|
$filterEntry = substr( $filterEntry, 2 );
|
|
|
|
|
if ( $filterEntry == '' ) {
|
|
|
|
|
// We don't want to make a clause that will match everything,
|
|
|
|
|
// that could be dangerous
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$subdomains = false;
|
|
|
|
|
}
|
|
|
|
|
// No stray asterisks, that could cause confusion
|
2006-03-11 17:13:49 +00:00
|
|
|
// It's not simple or efficient to handle it properly so we don't
|
2006-01-27 23:37:19 +00:00
|
|
|
// handle it at all.
|
|
|
|
|
if ( strpos( $filterEntry, '*' ) !== false ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
$slash = strpos( $filterEntry, '/' );
|
|
|
|
|
if ( $slash !== false ) {
|
|
|
|
|
$path = substr( $filterEntry, $slash );
|
|
|
|
|
$host = substr( $filterEntry, 0, $slash );
|
|
|
|
|
} else {
|
|
|
|
|
$path = '/';
|
|
|
|
|
$host = $filterEntry;
|
|
|
|
|
}
|
2007-03-19 16:19:13 +00:00
|
|
|
// Reverse the labels in the hostname, convert to lower case
|
|
|
|
|
// For emails reverse domainpart only
|
|
|
|
|
if ( $prot == 'mailto:' && strpos($host, '@') ) {
|
|
|
|
|
// complete email adress
|
|
|
|
|
$mailparts = explode( '@', $host );
|
|
|
|
|
$domainpart = strtolower( implode( '.', array_reverse( explode( '.', $mailparts[1] ) ) ) );
|
|
|
|
|
$host = $domainpart . '@' . $mailparts[0];
|
|
|
|
|
$like = "$prot$host%";
|
|
|
|
|
} elseif ( $prot == 'mailto:' ) {
|
|
|
|
|
// domainpart of email adress only. do not add '.'
|
|
|
|
|
$host = strtolower( implode( '.', array_reverse( explode( '.', $host ) ) ) );
|
|
|
|
|
$like = "$prot$host%";
|
|
|
|
|
} else {
|
|
|
|
|
$host = strtolower( implode( '.', array_reverse( explode( '.', $host ) ) ) );
|
|
|
|
|
if ( substr( $host, -1, 1 ) !== '.' ) {
|
|
|
|
|
$host .= '.';
|
|
|
|
|
}
|
|
|
|
|
$like = "$prot$host";
|
|
|
|
|
|
|
|
|
|
if ( $subdomains ) {
|
|
|
|
|
$like .= '%';
|
|
|
|
|
}
|
|
|
|
|
if ( !$subdomains || $path !== '/' ) {
|
|
|
|
|
$like .= $path . '%';
|
|
|
|
|
}
|
2006-01-27 23:37:19 +00:00
|
|
|
}
|
|
|
|
|
return $like;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
?>
|