MediaWiki REL1_33
LinkFilter.php
Go to the documentation of this file.
1<?php
23
39 const VERSION = 1;
40
49 public static function matchEntry( Content $content, $filterEntry, $protocol = 'http://' ) {
50 if ( !( $content instanceof TextContent ) ) {
51 // TODO: handle other types of content too.
52 // Maybe create ContentHandler::matchFilter( LinkFilter ).
53 // Think about a common base class for LinkFilter and MagicWord.
54 return 0;
55 }
56
57 $text = $content->getText();
58
59 $regex = self::makeRegex( $filterEntry, $protocol );
60 return preg_match( $regex, $text );
61 }
62
73 private static function makeRegex( $filterEntry, $protocol ) {
74 $regex = '!' . preg_quote( $protocol, '!' );
75 if ( substr( $filterEntry, 0, 2 ) == '*.' ) {
76 $regex .= '(?:[A-Za-z0-9.-]+\.|)';
77 $filterEntry = substr( $filterEntry, 2 );
78 }
79 $regex .= preg_quote( $filterEntry, '!' ) . '!Si';
80 return $regex;
81 }
82
88 public static function supportsIDN() {
89 return is_callable( 'idn_to_utf8' ) && defined( 'INTL_IDNA_VARIANT_UTS46' );
90 }
91
97 private static function indexifyHost( $host ) {
98 // NOTE: If you change the output of this method, you'll probably have to increment self::VERSION!
99
100 // Canonicalize.
101 $host = rawurldecode( $host );
102 if ( $host !== '' && self::supportsIDN() ) {
103 // @todo Add a PHP fallback
104 $tmp = idn_to_utf8( $host, IDNA_DEFAULT, INTL_IDNA_VARIANT_UTS46 );
105 if ( $tmp !== false ) {
106 $host = $tmp;
107 }
108 }
109 $okChars = 'a-zA-Z0-9\\-._~!$&\'()*+,;=';
110 if ( StringUtils::isUtf8( $host ) ) {
111 // Save a little space by not percent-encoding valid UTF-8 bytes
112 $okChars .= '\x80-\xf4';
113 }
114 $host = preg_replace_callback(
115 '<[^' . $okChars . ']>',
116 function ( $m ) {
117 return rawurlencode( $m[0] );
118 },
119 strtolower( $host )
120 );
121
122 // IPv6? RFC 3986 syntax.
123 if ( preg_match( '/^\[([0-9a-f:*]+)\]$/', rawurldecode( $host ), $m ) ) {
124 $ip = $m[1];
125 if ( IP::isValid( $ip ) ) {
126 return 'V6.' . implode( '.', explode( ':', IP::sanitizeIP( $ip ) ) ) . '.';
127 }
128 if ( substr( $ip, -2 ) === ':*' ) {
129 $cutIp = substr( $ip, 0, -2 );
130 if ( IP::isValid( "{$cutIp}::" ) ) {
131 // Wildcard IP doesn't contain "::", so multiple parts can be wild
132 $ct = count( explode( ':', $ip ) ) - 1;
133 return 'V6.' .
134 implode( '.', array_slice( explode( ':', IP::sanitizeIP( "{$cutIp}::" ) ), 0, $ct ) ) .
135 '.*.';
136 }
137 if ( IP::isValid( "{$cutIp}:1" ) ) {
138 // Wildcard IP does contain "::", so only the last part is wild
139 return 'V6.' .
140 substr( implode( '.', explode( ':', IP::sanitizeIP( "{$cutIp}:1" ) ) ), 0, -1 ) .
141 '*.';
142 }
143 }
144 }
145
146 // Regularlize explicit specification of the DNS root.
147 // Browsers seem to do this for IPv4 literals too.
148 if ( substr( $host, -1 ) === '.' ) {
149 $host = substr( $host, 0, -1 );
150 }
151
152 // IPv4?
153 $b = '(?:0*25[0-5]|0*2[0-4][0-9]|0*1[0-9][0-9]|0*[0-9]?[0-9])';
154 if ( preg_match( "/^(?:{$b}\.){3}{$b}$|^(?:{$b}\.){1,3}\*$/", $host ) ) {
155 return 'V4.' . implode( '.', array_map( function ( $v ) {
156 return $v === '*' ? $v : (int)$v;
157 }, explode( '.', $host ) ) ) . '.';
158 }
159
160 // Must be a host name.
161 return implode( '.', array_reverse( explode( '.', $host ) ) ) . '.';
162 }
163
171 public static function makeIndexes( $url ) {
172 // NOTE: If you change the output of this method, you'll probably have to increment self::VERSION!
173
174 // NOTE: refreshExternallinksIndex.php assumes that only protocol-relative URLs return more
175 // than one index, and that the indexes for protocol-relative URLs only vary in the "http://"
176 // versus "https://" prefix. If you change that, you'll likely need to update
177 // refreshExternallinksIndex.php accordingly.
178
179 $bits = wfParseUrl( $url );
180 if ( !$bits ) {
181 return [];
182 }
183
184 // Reverse the labels in the hostname, convert to lower case, unless it's an IP.
185 // For emails turn it into "domain.reversed@localpart"
186 if ( $bits['scheme'] == 'mailto' ) {
187 $mailparts = explode( '@', $bits['host'], 2 );
188 if ( count( $mailparts ) === 2 ) {
189 $domainpart = self::indexifyHost( $mailparts[1] );
190 } else {
191 // No @, assume it's a local part with no domain
192 $domainpart = '';
193 }
194 $bits['host'] = $domainpart . '@' . $mailparts[0];
195 } else {
196 $bits['host'] = self::indexifyHost( $bits['host'] );
197 }
198
199 // Reconstruct the pseudo-URL
200 $index = $bits['scheme'] . $bits['delimiter'] . $bits['host'];
201 // Leave out user and password. Add the port, path, query and fragment
202 if ( isset( $bits['port'] ) ) {
203 $index .= ':' . $bits['port'];
204 }
205 if ( isset( $bits['path'] ) ) {
206 $index .= $bits['path'];
207 } else {
208 $index .= '/';
209 }
210 if ( isset( $bits['query'] ) ) {
211 $index .= '?' . $bits['query'];
212 }
213 if ( isset( $bits['fragment'] ) ) {
214 $index .= '#' . $bits['fragment'];
215 }
216
217 if ( $bits['scheme'] == '' ) {
218 return [ "http:$index", "https:$index" ];
219 } else {
220 return [ $index ];
221 }
222 }
223
254 public static function getQueryConditions( $filterEntry, array $options = [] ) {
255 $options += [
256 'protocol' => 'http://',
257 'oneWildcard' => false,
258 'prefix' => 'el',
259 'db' => null,
260 ];
261
262 // First, get the like array
263 $like = self::makeLikeArray( $filterEntry, $options['protocol'] );
264 if ( $like === false ) {
265 return $like;
266 }
267
268 // Get the constant prefix (i.e. everything up to the first wildcard)
269 $trimmedLike = self::keepOneWildcard( $like );
270 if ( $options['oneWildcard'] ) {
271 $like = $trimmedLike;
272 }
273 if ( $trimmedLike[count( $trimmedLike ) - 1] instanceof LikeMatch ) {
274 array_pop( $trimmedLike );
275 }
276 $index = implode( '', $trimmedLike );
277
278 $p = $options['prefix'];
279 $db = $options['db'] ?: wfGetDB( DB_REPLICA );
280
281 // Build the query
282 $l = strlen( $index );
283 if ( $l >= 60 ) {
284 // The constant prefix is larger than el_index_60, so we can use a
285 // constant comparison.
286 return [
287 "{$p}_index_60" => substr( $index, 0, 60 ),
288 "{$p}_index" . $db->buildLike( $like ),
289 ];
290 }
291
292 // The constant prefix is smaller than el_index_60, so we use a LIKE
293 // for a prefix search.
294 return [
295 "{$p}_index_60" . $db->buildLike( [ $index, $db->anyString() ] ),
296 "{$p}_index" . $db->buildLike( $like ),
297 ];
298 }
299
312 public static function makeLikeArray( $filterEntry, $protocol = 'http://' ) {
313 $db = wfGetDB( DB_REPLICA );
314
315 $target = $protocol . $filterEntry;
316 $bits = wfParseUrl( $target );
317 if ( !$bits ) {
318 return false;
319 }
320
321 $subdomains = false;
322 if ( $bits['scheme'] === 'mailto' && strpos( $bits['host'], '@' ) ) {
323 // Email address with domain and non-empty local part
324 $mailparts = explode( '@', $bits['host'], 2 );
325 $domainpart = self::indexifyHost( $mailparts[1] );
326 if ( $mailparts[0] === '*' ) {
327 $subdomains = true;
328 $bits['host'] = $domainpart . '@';
329 } else {
330 $bits['host'] = $domainpart . '@' . $mailparts[0];
331 }
332 } else {
333 // Non-email, or email with only a domain part.
334 $bits['host'] = self::indexifyHost( $bits['host'] );
335 if ( substr( $bits['host'], -3 ) === '.*.' ) {
336 $subdomains = true;
337 $bits['host'] = substr( $bits['host'], 0, -2 );
338 }
339 }
340
341 $like[] = $bits['scheme'] . $bits['delimiter'] . $bits['host'];
342
343 if ( $subdomains ) {
344 $like[] = $db->anyString();
345 }
346
347 if ( isset( $bits['port'] ) ) {
348 $like[] = ':' . $bits['port'];
349 }
350 if ( isset( $bits['path'] ) ) {
351 $like[] = $bits['path'];
352 } elseif ( !$subdomains ) {
353 $like[] = '/';
354 }
355 if ( isset( $bits['query'] ) ) {
356 $like[] = '?' . $bits['query'];
357 }
358 if ( isset( $bits['fragment'] ) ) {
359 $like[] = '#' . $bits['fragment'];
360 }
361
362 // Check for stray asterisks: asterisk only allowed at the start of the domain
363 foreach ( $like as $likepart ) {
364 if ( !( $likepart instanceof LikeMatch ) && strpos( $likepart, '*' ) !== false ) {
365 return false;
366 }
367 }
368
369 if ( !( $like[count( $like ) - 1] instanceof LikeMatch ) ) {
370 // Add wildcard at the end if there isn't one already
371 $like[] = $db->anyString();
372 }
373
374 return $like;
375 }
376
385 public static function keepOneWildcard( $arr ) {
386 if ( !is_array( $arr ) ) {
387 return $arr;
388 }
389
390 foreach ( $arr as $key => $value ) {
391 if ( $value instanceof LikeMatch ) {
392 return array_slice( $arr, 0, $key + 1 );
393 }
394 }
395
396 return $arr;
397 }
398}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfParseUrl( $url)
parse_url() work-alike, but non-broken.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Some functions to help implement an external link filter for spam control.
static makeRegex( $filterEntry, $protocol)
Builds a regex pattern for $filterEntry.
static makeIndexes( $url)
Converts a URL into a format for el_index.
static makeLikeArray( $filterEntry, $protocol='http://')
Make an array to be used for calls to Database::buildLike(), which will match the specified string.
static indexifyHost( $host)
Canonicalize a hostname for el_index.
static getQueryConditions( $filterEntry, array $options=[])
Return query conditions which will match the specified string.
static supportsIDN()
Indicate whether LinkFilter IDN support is available.
const VERSION
Increment this when makeIndexes output changes.
static matchEntry(Content $content, $filterEntry, $protocol='http://')
Check whether $content contains a link to $filterEntry.
static keepOneWildcard( $arr)
Filters an array returned by makeLikeArray(), removing everything past first pattern placeholder.
static isUtf8( $value)
Test whether a string is valid UTF-8.
Content object implementation for representing flat text.
Used by Database::buildLike() to represent characters that have special meaning in SQL LIKE clauses a...
Definition LikeMatch.php:10
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
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:1999
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
Definition injection.txt:37
Base interface for content objects.
Definition Content.php:34
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))
$content
const DB_REPLICA
Definition defines.php:25