3 * Functions to help implement an external link filter for spam control.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 * Some functions to help implement an external link filter for spam control.
26 * @todo implement the filter. Currently these are just some functions to help
27 * maintenance/cleanupSpam.php remove links to a single specified domain. The
28 * next thing is to implement functions for checking a given page against a big
31 * Another cool thing to do would be a web interface for fast spam removal.
36 * Check whether $content contains a link to $filterEntry
38 * @param $content Content: content to check
39 * @param string $filterEntry domainparts, see makeRegex() for more details
40 * @return Integer: 0 if no match or 1 if there's at least one match
42 static function matchEntry( Content
$content, $filterEntry ) {
43 if ( !( $content instanceof TextContent
) ) {
44 //TODO: handle other types of content too.
45 // Maybe create ContentHandler::matchFilter( LinkFilter ).
46 // Think about a common base class for LinkFilter and MagicWord.
50 $text = $content->getNativeData();
52 $regex = LinkFilter
::makeRegex( $filterEntry );
53 return preg_match( $regex, $text );
57 * Builds a regex pattern for $filterEntry.
59 * @param string $filterEntry URL, if it begins with "*.", it'll be
60 * replaced to match any subdomain
61 * @return String: regex pattern, for preg_match()
63 private static function makeRegex( $filterEntry ) {
65 if ( substr( $filterEntry, 0, 2 ) == '*.' ) {
66 $regex .= '(?:[A-Za-z0-9.-]+\.|)';
67 $filterEntry = substr( $filterEntry, 2 );
69 $regex .= preg_quote( $filterEntry, '!' ) . '!Si';
74 * Make an array to be used for calls to DatabaseBase::buildLike(), which
75 * will match the specified string. There are several kinds of filter entry:
76 * *.domain.com - Produces http://com.domain.%, matches domain.com
78 * domain.com - Produces http://com.domain./%, matches domain.com
79 * or domain.com/ but not www.domain.com
80 * *.domain.com/x - Produces http://com.domain.%/x%, matches
82 * domain.com/x - Produces http://com.domain./x%, matches
83 * domain.com/xy but not www.domain.com/xy
85 * Asterisks in any other location are considered invalid.
87 * @param string $filterEntry domainparts
88 * @param $prot String: protocol
89 * @return Array to be passed to DatabaseBase::buildLike() or false on error
91 public static function makeLikeArray( $filterEntry, $prot = 'http://' ) {
92 $db = wfGetDB( DB_MASTER
);
93 if ( substr( $filterEntry, 0, 2 ) == '*.' ) {
95 $filterEntry = substr( $filterEntry, 2 );
96 if ( $filterEntry == '' ) {
97 // We don't want to make a clause that will match everything,
98 // that could be dangerous
104 // No stray asterisks, that could cause confusion
105 // It's not simple or efficient to handle it properly so we don't
107 if ( strpos( $filterEntry, '*' ) !== false ) {
110 $slash = strpos( $filterEntry, '/' );
111 if ( $slash !== false ) {
112 $path = substr( $filterEntry, $slash );
113 $host = substr( $filterEntry, 0, $slash );
116 $host = $filterEntry;
118 // Reverse the labels in the hostname, convert to lower case
119 // For emails reverse domainpart only
120 if ( $prot == 'mailto:' && strpos( $host, '@' ) ) {
121 // complete email address
122 $mailparts = explode( '@', $host );
123 $domainpart = strtolower( implode( '.', array_reverse( explode( '.', $mailparts[1] ) ) ) );
124 $host = $domainpart . '@' . $mailparts[0];
125 $like = array( "$prot$host", $db->anyString() );
126 } elseif ( $prot == 'mailto:' ) {
127 // domainpart of email address only. do not add '.'
128 $host = strtolower( implode( '.', array_reverse( explode( '.', $host ) ) ) );
129 $like = array( "$prot$host", $db->anyString() );
131 $host = strtolower( implode( '.', array_reverse( explode( '.', $host ) ) ) );
132 if ( substr( $host, -1, 1 ) !== '.' ) {
135 $like = array( "$prot$host" );
138 $like[] = $db->anyString();
140 if ( !$subdomains ||
$path !== '/' ) {
142 $like[] = $db->anyString();
149 * Filters an array returned by makeLikeArray(), removing everything past first pattern placeholder.
151 * @param array $arr array to filter
152 * @return array filtered array
154 public static function keepOneWildcard( $arr ) {
155 if ( !is_array( $arr ) ) {
159 foreach ( $arr as $key => $value ) {
160 if ( $value instanceof LikeMatch
) {
161 return array_slice( $arr, 0, $key +
1 );