Merge "Doxyfile: Suppress warnings for phpunit "@" annotations"
[lhc/web/wiklou.git] / includes / GlobalFunctions.php
1 <?php
2 /**
3 * Global functions used everywhere.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 if ( !defined( 'MEDIAWIKI' ) ) {
24 die( "This file is part of MediaWiki, it is not a valid entry point" );
25 }
26
27 use Liuggio\StatsdClient\StatsdClient;
28 use Liuggio\StatsdClient\Sender\SocketSender;
29
30 // Hide compatibility functions from Doxygen
31 /// @cond
32
33 /**
34 * Compatibility functions
35 *
36 * We support PHP 5.3.3 and up.
37 * Re-implementations of newer functions or functions in non-standard
38 * PHP extensions may be included here.
39 */
40
41 if ( !function_exists( 'mb_substr' ) ) {
42 /**
43 * @codeCoverageIgnore
44 * @see Fallback::mb_substr
45 * @return string
46 */
47 function mb_substr( $str, $start, $count = 'end' ) {
48 return Fallback::mb_substr( $str, $start, $count );
49 }
50
51 /**
52 * @codeCoverageIgnore
53 * @see Fallback::mb_substr_split_unicode
54 * @return int
55 */
56 function mb_substr_split_unicode( $str, $splitPos ) {
57 return Fallback::mb_substr_split_unicode( $str, $splitPos );
58 }
59 }
60
61 if ( !function_exists( 'mb_strlen' ) ) {
62 /**
63 * @codeCoverageIgnore
64 * @see Fallback::mb_strlen
65 * @return int
66 */
67 function mb_strlen( $str, $enc = '' ) {
68 return Fallback::mb_strlen( $str, $enc );
69 }
70 }
71
72 if ( !function_exists( 'mb_strpos' ) ) {
73 /**
74 * @codeCoverageIgnore
75 * @see Fallback::mb_strpos
76 * @return int
77 */
78 function mb_strpos( $haystack, $needle, $offset = 0, $encoding = '' ) {
79 return Fallback::mb_strpos( $haystack, $needle, $offset, $encoding );
80 }
81 }
82
83 if ( !function_exists( 'mb_strrpos' ) ) {
84 /**
85 * @codeCoverageIgnore
86 * @see Fallback::mb_strrpos
87 * @return int
88 */
89 function mb_strrpos( $haystack, $needle, $offset = 0, $encoding = '' ) {
90 return Fallback::mb_strrpos( $haystack, $needle, $offset, $encoding );
91 }
92 }
93
94 // gzdecode function only exists in PHP >= 5.4.0
95 // http://php.net/gzdecode
96 if ( !function_exists( 'gzdecode' ) ) {
97 /**
98 * @codeCoverageIgnore
99 * @param string $data
100 * @return string
101 */
102 function gzdecode( $data ) {
103 return gzinflate( substr( $data, 10, -8 ) );
104 }
105 }
106
107 // hash_equals function only exists in PHP >= 5.6.0
108 // http://php.net/hash_equals
109 if ( !function_exists( 'hash_equals' ) ) {
110 /**
111 * Check whether a user-provided string is equal to a fixed-length secret string
112 * without revealing bytes of the secret string through timing differences.
113 *
114 * The usual way to compare strings (PHP's === operator or the underlying memcmp()
115 * function in C) is to compare corresponding bytes and stop at the first difference,
116 * which would take longer for a partial match than for a complete mismatch. This
117 * is not secure when one of the strings (e.g. an HMAC or token) must remain secret
118 * and the other may come from an attacker. Statistical analysis of timing measurements
119 * over many requests may allow the attacker to guess the string's bytes one at a time
120 * (and check his guesses) even if the timing differences are extremely small.
121 *
122 * When making such a security-sensitive comparison, it is essential that the sequence
123 * in which instructions are executed and memory locations are accessed not depend on
124 * the secret string's value. HOWEVER, for simplicity, we do not attempt to minimize
125 * the inevitable leakage of the string's length. That is generally known anyway as
126 * a chararacteristic of the hash function used to compute the secret value.
127 *
128 * Longer explanation: http://www.emerose.com/timing-attacks-explained
129 *
130 * @codeCoverageIgnore
131 * @param string $known_string Fixed-length secret string to compare against
132 * @param string $user_string User-provided string
133 * @return bool True if the strings are the same, false otherwise
134 */
135 function hash_equals( $known_string, $user_string ) {
136 // Strict type checking as in PHP's native implementation
137 if ( !is_string( $known_string ) ) {
138 trigger_error( 'hash_equals(): Expected known_string to be a string, ' .
139 gettype( $known_string ) . ' given', E_USER_WARNING );
140
141 return false;
142 }
143
144 if ( !is_string( $user_string ) ) {
145 trigger_error( 'hash_equals(): Expected user_string to be a string, ' .
146 gettype( $user_string ) . ' given', E_USER_WARNING );
147
148 return false;
149 }
150
151 $known_string_len = strlen( $known_string );
152 if ( $known_string_len !== strlen( $user_string ) ) {
153 return false;
154 }
155
156 $result = 0;
157 for ( $i = 0; $i < $known_string_len; $i++ ) {
158 $result |= ord( $known_string[$i] ) ^ ord( $user_string[$i] );
159 }
160
161 return ( $result === 0 );
162 }
163 }
164 /// @endcond
165
166 /**
167 * Load an extension
168 *
169 * This queues an extension to be loaded through
170 * the ExtensionRegistry system.
171 *
172 * @param string $name Name of the extension to load
173 * @param string|null $path Absolute path of where to find the extension.json file
174 */
175 function wfLoadExtension( $name, $path = null ) {
176 if ( !$path ) {
177 global $IP;
178 $path = "$IP/extensions/$name/extension.json";
179 }
180 ExtensionRegistry::getInstance()->queue( $path );
181 }
182
183 /**
184 * Load multiple extensions at once
185 *
186 * Same as wfLoadExtension, but more efficient if you
187 * are loading multiple extensions.
188 *
189 * If you want to specify custom paths, you should interact with
190 * ExtensionRegistry directly.
191 *
192 * @see wfLoadExtension
193 * @param string[] $exts Array of extension names to load
194 */
195 function wfLoadExtensions( array $exts ) {
196 global $IP;
197 $registry = ExtensionRegistry::getInstance();
198 foreach ( $exts as $ext ) {
199 $registry->queue( "$IP/extensions/$ext/extension.json" );
200 }
201 }
202
203 /**
204 * Load a skin
205 *
206 * @see wfLoadExtension
207 * @param string $name Name of the extension to load
208 * @param string|null $path Absolute path of where to find the skin.json file
209 */
210 function wfLoadSkin( $name, $path = null ) {
211 if ( !$path ) {
212 global $IP;
213 $path = "$IP/skins/$name/skin.json";
214 }
215 ExtensionRegistry::getInstance()->queue( $path );
216 }
217
218 /**
219 * Load multiple skins at once
220 *
221 * @see wfLoadExtensions
222 * @param string[] $skins Array of extension names to load
223 */
224 function wfLoadSkins( array $skins ) {
225 global $IP;
226 $registry = ExtensionRegistry::getInstance();
227 foreach ( $skins as $skin ) {
228 $registry->queue( "$IP/skins/$skin/skin.json" );
229 }
230 }
231
232 /**
233 * Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
234 * @param array $a
235 * @param array $b
236 * @return array
237 */
238 function wfArrayDiff2( $a, $b ) {
239 return array_udiff( $a, $b, 'wfArrayDiff2_cmp' );
240 }
241
242 /**
243 * @param array|string $a
244 * @param array|string $b
245 * @return int
246 */
247 function wfArrayDiff2_cmp( $a, $b ) {
248 if ( is_string( $a ) && is_string( $b ) ) {
249 return strcmp( $a, $b );
250 } elseif ( count( $a ) !== count( $b ) ) {
251 return count( $a ) < count( $b ) ? -1 : 1;
252 } else {
253 reset( $a );
254 reset( $b );
255 while ( ( list( , $valueA ) = each( $a ) ) && ( list( , $valueB ) = each( $b ) ) ) {
256 $cmp = strcmp( $valueA, $valueB );
257 if ( $cmp !== 0 ) {
258 return $cmp;
259 }
260 }
261 return 0;
262 }
263 }
264
265 /**
266 * Appends to second array if $value differs from that in $default
267 *
268 * @param string|int $key
269 * @param mixed $value
270 * @param mixed $default
271 * @param array $changed Array to alter
272 * @throws MWException
273 */
274 function wfAppendToArrayIfNotDefault( $key, $value, $default, &$changed ) {
275 if ( is_null( $changed ) ) {
276 throw new MWException( 'GlobalFunctions::wfAppendToArrayIfNotDefault got null' );
277 }
278 if ( $default[$key] !== $value ) {
279 $changed[$key] = $value;
280 }
281 }
282
283 /**
284 * Merge arrays in the style of getUserPermissionsErrors, with duplicate removal
285 * e.g.
286 * wfMergeErrorArrays(
287 * array( array( 'x' ) ),
288 * array( array( 'x', '2' ) ),
289 * array( array( 'x' ) ),
290 * array( array( 'y' ) )
291 * );
292 * returns:
293 * array(
294 * array( 'x', '2' ),
295 * array( 'x' ),
296 * array( 'y' )
297 * )
298 *
299 * @param array $array1,...
300 * @return array
301 */
302 function wfMergeErrorArrays( /*...*/ ) {
303 $args = func_get_args();
304 $out = array();
305 foreach ( $args as $errors ) {
306 foreach ( $errors as $params ) {
307 # @todo FIXME: Sometimes get nested arrays for $params,
308 # which leads to E_NOTICEs
309 $spec = implode( "\t", $params );
310 $out[$spec] = $params;
311 }
312 }
313 return array_values( $out );
314 }
315
316 /**
317 * Insert array into another array after the specified *KEY*
318 *
319 * @param array $array The array.
320 * @param array $insert The array to insert.
321 * @param mixed $after The key to insert after
322 * @return array
323 */
324 function wfArrayInsertAfter( array $array, array $insert, $after ) {
325 // Find the offset of the element to insert after.
326 $keys = array_keys( $array );
327 $offsetByKey = array_flip( $keys );
328
329 $offset = $offsetByKey[$after];
330
331 // Insert at the specified offset
332 $before = array_slice( $array, 0, $offset + 1, true );
333 $after = array_slice( $array, $offset + 1, count( $array ) - $offset, true );
334
335 $output = $before + $insert + $after;
336
337 return $output;
338 }
339
340 /**
341 * Recursively converts the parameter (an object) to an array with the same data
342 *
343 * @param object|array $objOrArray
344 * @param bool $recursive
345 * @return array
346 */
347 function wfObjectToArray( $objOrArray, $recursive = true ) {
348 $array = array();
349 if ( is_object( $objOrArray ) ) {
350 $objOrArray = get_object_vars( $objOrArray );
351 }
352 foreach ( $objOrArray as $key => $value ) {
353 if ( $recursive && ( is_object( $value ) || is_array( $value ) ) ) {
354 $value = wfObjectToArray( $value );
355 }
356
357 $array[$key] = $value;
358 }
359
360 return $array;
361 }
362
363 /**
364 * Get a random decimal value between 0 and 1, in a way
365 * not likely to give duplicate values for any realistic
366 * number of articles.
367 *
368 * @return string
369 */
370 function wfRandom() {
371 # The maximum random value is "only" 2^31-1, so get two random
372 # values to reduce the chance of dupes
373 $max = mt_getrandmax() + 1;
374 $rand = number_format( ( mt_rand() * $max + mt_rand() ) / $max / $max, 12, '.', '' );
375
376 return $rand;
377 }
378
379 /**
380 * Get a random string containing a number of pseudo-random hex
381 * characters.
382 * @note This is not secure, if you are trying to generate some sort
383 * of token please use MWCryptRand instead.
384 *
385 * @param int $length The length of the string to generate
386 * @return string
387 * @since 1.20
388 */
389 function wfRandomString( $length = 32 ) {
390 $str = '';
391 for ( $n = 0; $n < $length; $n += 7 ) {
392 $str .= sprintf( '%07x', mt_rand() & 0xfffffff );
393 }
394 return substr( $str, 0, $length );
395 }
396
397 /**
398 * We want some things to be included as literal characters in our title URLs
399 * for prettiness, which urlencode encodes by default. According to RFC 1738,
400 * all of the following should be safe:
401 *
402 * ;:@&=$-_.+!*'(),
403 *
404 * But + is not safe because it's used to indicate a space; &= are only safe in
405 * paths and not in queries (and we don't distinguish here); ' seems kind of
406 * scary; and urlencode() doesn't touch -_. to begin with. Plus, although /
407 * is reserved, we don't care. So the list we unescape is:
408 *
409 * ;:@$!*(),/
410 *
411 * However, IIS7 redirects fail when the url contains a colon (Bug 22709),
412 * so no fancy : for IIS7.
413 *
414 * %2F in the page titles seems to fatally break for some reason.
415 *
416 * @param string $s
417 * @return string
418 */
419 function wfUrlencode( $s ) {
420 static $needle;
421
422 if ( is_null( $s ) ) {
423 $needle = null;
424 return '';
425 }
426
427 if ( is_null( $needle ) ) {
428 $needle = array( '%3B', '%40', '%24', '%21', '%2A', '%28', '%29', '%2C', '%2F' );
429 if ( !isset( $_SERVER['SERVER_SOFTWARE'] ) ||
430 ( strpos( $_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS/7' ) === false )
431 ) {
432 $needle[] = '%3A';
433 }
434 }
435
436 $s = urlencode( $s );
437 $s = str_ireplace(
438 $needle,
439 array( ';', '@', '$', '!', '*', '(', ')', ',', '/', ':' ),
440 $s
441 );
442
443 return $s;
444 }
445
446 /**
447 * This function takes two arrays as input, and returns a CGI-style string, e.g.
448 * "days=7&limit=100". Options in the first array override options in the second.
449 * Options set to null or false will not be output.
450 *
451 * @param array $array1 ( String|Array )
452 * @param array $array2 ( String|Array )
453 * @param string $prefix
454 * @return string
455 */
456 function wfArrayToCgi( $array1, $array2 = null, $prefix = '' ) {
457 if ( !is_null( $array2 ) ) {
458 $array1 = $array1 + $array2;
459 }
460
461 $cgi = '';
462 foreach ( $array1 as $key => $value ) {
463 if ( !is_null( $value ) && $value !== false ) {
464 if ( $cgi != '' ) {
465 $cgi .= '&';
466 }
467 if ( $prefix !== '' ) {
468 $key = $prefix . "[$key]";
469 }
470 if ( is_array( $value ) ) {
471 $firstTime = true;
472 foreach ( $value as $k => $v ) {
473 $cgi .= $firstTime ? '' : '&';
474 if ( is_array( $v ) ) {
475 $cgi .= wfArrayToCgi( $v, null, $key . "[$k]" );
476 } else {
477 $cgi .= urlencode( $key . "[$k]" ) . '=' . urlencode( $v );
478 }
479 $firstTime = false;
480 }
481 } else {
482 if ( is_object( $value ) ) {
483 $value = $value->__toString();
484 }
485 $cgi .= urlencode( $key ) . '=' . urlencode( $value );
486 }
487 }
488 }
489 return $cgi;
490 }
491
492 /**
493 * This is the logical opposite of wfArrayToCgi(): it accepts a query string as
494 * its argument and returns the same string in array form. This allows compatibility
495 * with legacy functions that accept raw query strings instead of nice
496 * arrays. Of course, keys and values are urldecode()d.
497 *
498 * @param string $query Query string
499 * @return string[] Array version of input
500 */
501 function wfCgiToArray( $query ) {
502 if ( isset( $query[0] ) && $query[0] == '?' ) {
503 $query = substr( $query, 1 );
504 }
505 $bits = explode( '&', $query );
506 $ret = array();
507 foreach ( $bits as $bit ) {
508 if ( $bit === '' ) {
509 continue;
510 }
511 if ( strpos( $bit, '=' ) === false ) {
512 // Pieces like &qwerty become 'qwerty' => '' (at least this is what php does)
513 $key = $bit;
514 $value = '';
515 } else {
516 list( $key, $value ) = explode( '=', $bit );
517 }
518 $key = urldecode( $key );
519 $value = urldecode( $value );
520 if ( strpos( $key, '[' ) !== false ) {
521 $keys = array_reverse( explode( '[', $key ) );
522 $key = array_pop( $keys );
523 $temp = $value;
524 foreach ( $keys as $k ) {
525 $k = substr( $k, 0, -1 );
526 $temp = array( $k => $temp );
527 }
528 if ( isset( $ret[$key] ) ) {
529 $ret[$key] = array_merge( $ret[$key], $temp );
530 } else {
531 $ret[$key] = $temp;
532 }
533 } else {
534 $ret[$key] = $value;
535 }
536 }
537 return $ret;
538 }
539
540 /**
541 * Append a query string to an existing URL, which may or may not already
542 * have query string parameters already. If so, they will be combined.
543 *
544 * @param string $url
545 * @param string|string[] $query String or associative array
546 * @return string
547 */
548 function wfAppendQuery( $url, $query ) {
549 if ( is_array( $query ) ) {
550 $query = wfArrayToCgi( $query );
551 }
552 if ( $query != '' ) {
553 if ( false === strpos( $url, '?' ) ) {
554 $url .= '?';
555 } else {
556 $url .= '&';
557 }
558 $url .= $query;
559 }
560 return $url;
561 }
562
563 /**
564 * Expand a potentially local URL to a fully-qualified URL. Assumes $wgServer
565 * is correct.
566 *
567 * The meaning of the PROTO_* constants is as follows:
568 * PROTO_HTTP: Output a URL starting with http://
569 * PROTO_HTTPS: Output a URL starting with https://
570 * PROTO_RELATIVE: Output a URL starting with // (protocol-relative URL)
571 * PROTO_CURRENT: Output a URL starting with either http:// or https:// , depending
572 * on which protocol was used for the current incoming request
573 * PROTO_CANONICAL: For URLs without a domain, like /w/index.php , use $wgCanonicalServer.
574 * For protocol-relative URLs, use the protocol of $wgCanonicalServer
575 * PROTO_INTERNAL: Like PROTO_CANONICAL, but uses $wgInternalServer instead of $wgCanonicalServer
576 *
577 * @todo this won't work with current-path-relative URLs
578 * like "subdir/foo.html", etc.
579 *
580 * @param string $url Either fully-qualified or a local path + query
581 * @param string $defaultProto One of the PROTO_* constants. Determines the
582 * protocol to use if $url or $wgServer is protocol-relative
583 * @return string Fully-qualified URL, current-path-relative URL or false if
584 * no valid URL can be constructed
585 */
586 function wfExpandUrl( $url, $defaultProto = PROTO_CURRENT ) {
587 global $wgServer, $wgCanonicalServer, $wgInternalServer, $wgRequest,
588 $wgHttpsPort;
589 if ( $defaultProto === PROTO_CANONICAL ) {
590 $serverUrl = $wgCanonicalServer;
591 } elseif ( $defaultProto === PROTO_INTERNAL && $wgInternalServer !== false ) {
592 // Make $wgInternalServer fall back to $wgServer if not set
593 $serverUrl = $wgInternalServer;
594 } else {
595 $serverUrl = $wgServer;
596 if ( $defaultProto === PROTO_CURRENT ) {
597 $defaultProto = $wgRequest->getProtocol() . '://';
598 }
599 }
600
601 // Analyze $serverUrl to obtain its protocol
602 $bits = wfParseUrl( $serverUrl );
603 $serverHasProto = $bits && $bits['scheme'] != '';
604
605 if ( $defaultProto === PROTO_CANONICAL || $defaultProto === PROTO_INTERNAL ) {
606 if ( $serverHasProto ) {
607 $defaultProto = $bits['scheme'] . '://';
608 } else {
609 // $wgCanonicalServer or $wgInternalServer doesn't have a protocol.
610 // This really isn't supposed to happen. Fall back to HTTP in this
611 // ridiculous case.
612 $defaultProto = PROTO_HTTP;
613 }
614 }
615
616 $defaultProtoWithoutSlashes = substr( $defaultProto, 0, -2 );
617
618 if ( substr( $url, 0, 2 ) == '//' ) {
619 $url = $defaultProtoWithoutSlashes . $url;
620 } elseif ( substr( $url, 0, 1 ) == '/' ) {
621 // If $serverUrl is protocol-relative, prepend $defaultProtoWithoutSlashes,
622 // otherwise leave it alone.
623 $url = ( $serverHasProto ? '' : $defaultProtoWithoutSlashes ) . $serverUrl . $url;
624 }
625
626 $bits = wfParseUrl( $url );
627
628 // ensure proper port for HTTPS arrives in URL
629 // https://bugzilla.wikimedia.org/show_bug.cgi?id=65184
630 if ( $defaultProto === PROTO_HTTPS && $wgHttpsPort != 443 ) {
631 $bits['port'] = $wgHttpsPort;
632 }
633
634 if ( $bits && isset( $bits['path'] ) ) {
635 $bits['path'] = wfRemoveDotSegments( $bits['path'] );
636 return wfAssembleUrl( $bits );
637 } elseif ( $bits ) {
638 # No path to expand
639 return $url;
640 } elseif ( substr( $url, 0, 1 ) != '/' ) {
641 # URL is a relative path
642 return wfRemoveDotSegments( $url );
643 }
644
645 # Expanded URL is not valid.
646 return false;
647 }
648
649 /**
650 * This function will reassemble a URL parsed with wfParseURL. This is useful
651 * if you need to edit part of a URL and put it back together.
652 *
653 * This is the basic structure used (brackets contain keys for $urlParts):
654 * [scheme][delimiter][user]:[pass]@[host]:[port][path]?[query]#[fragment]
655 *
656 * @todo Need to integrate this into wfExpandUrl (bug 32168)
657 *
658 * @since 1.19
659 * @param array $urlParts URL parts, as output from wfParseUrl
660 * @return string URL assembled from its component parts
661 */
662 function wfAssembleUrl( $urlParts ) {
663 $result = '';
664
665 if ( isset( $urlParts['delimiter'] ) ) {
666 if ( isset( $urlParts['scheme'] ) ) {
667 $result .= $urlParts['scheme'];
668 }
669
670 $result .= $urlParts['delimiter'];
671 }
672
673 if ( isset( $urlParts['host'] ) ) {
674 if ( isset( $urlParts['user'] ) ) {
675 $result .= $urlParts['user'];
676 if ( isset( $urlParts['pass'] ) ) {
677 $result .= ':' . $urlParts['pass'];
678 }
679 $result .= '@';
680 }
681
682 $result .= $urlParts['host'];
683
684 if ( isset( $urlParts['port'] ) ) {
685 $result .= ':' . $urlParts['port'];
686 }
687 }
688
689 if ( isset( $urlParts['path'] ) ) {
690 $result .= $urlParts['path'];
691 }
692
693 if ( isset( $urlParts['query'] ) ) {
694 $result .= '?' . $urlParts['query'];
695 }
696
697 if ( isset( $urlParts['fragment'] ) ) {
698 $result .= '#' . $urlParts['fragment'];
699 }
700
701 return $result;
702 }
703
704 /**
705 * Remove all dot-segments in the provided URL path. For example,
706 * '/a/./b/../c/' becomes '/a/c/'. For details on the algorithm, please see
707 * RFC3986 section 5.2.4.
708 *
709 * @todo Need to integrate this into wfExpandUrl (bug 32168)
710 *
711 * @param string $urlPath URL path, potentially containing dot-segments
712 * @return string URL path with all dot-segments removed
713 */
714 function wfRemoveDotSegments( $urlPath ) {
715 $output = '';
716 $inputOffset = 0;
717 $inputLength = strlen( $urlPath );
718
719 while ( $inputOffset < $inputLength ) {
720 $prefixLengthOne = substr( $urlPath, $inputOffset, 1 );
721 $prefixLengthTwo = substr( $urlPath, $inputOffset, 2 );
722 $prefixLengthThree = substr( $urlPath, $inputOffset, 3 );
723 $prefixLengthFour = substr( $urlPath, $inputOffset, 4 );
724 $trimOutput = false;
725
726 if ( $prefixLengthTwo == './' ) {
727 # Step A, remove leading "./"
728 $inputOffset += 2;
729 } elseif ( $prefixLengthThree == '../' ) {
730 # Step A, remove leading "../"
731 $inputOffset += 3;
732 } elseif ( ( $prefixLengthTwo == '/.' ) && ( $inputOffset + 2 == $inputLength ) ) {
733 # Step B, replace leading "/.$" with "/"
734 $inputOffset += 1;
735 $urlPath[$inputOffset] = '/';
736 } elseif ( $prefixLengthThree == '/./' ) {
737 # Step B, replace leading "/./" with "/"
738 $inputOffset += 2;
739 } elseif ( $prefixLengthThree == '/..' && ( $inputOffset + 3 == $inputLength ) ) {
740 # Step C, replace leading "/..$" with "/" and
741 # remove last path component in output
742 $inputOffset += 2;
743 $urlPath[$inputOffset] = '/';
744 $trimOutput = true;
745 } elseif ( $prefixLengthFour == '/../' ) {
746 # Step C, replace leading "/../" with "/" and
747 # remove last path component in output
748 $inputOffset += 3;
749 $trimOutput = true;
750 } elseif ( ( $prefixLengthOne == '.' ) && ( $inputOffset + 1 == $inputLength ) ) {
751 # Step D, remove "^.$"
752 $inputOffset += 1;
753 } elseif ( ( $prefixLengthTwo == '..' ) && ( $inputOffset + 2 == $inputLength ) ) {
754 # Step D, remove "^..$"
755 $inputOffset += 2;
756 } else {
757 # Step E, move leading path segment to output
758 if ( $prefixLengthOne == '/' ) {
759 $slashPos = strpos( $urlPath, '/', $inputOffset + 1 );
760 } else {
761 $slashPos = strpos( $urlPath, '/', $inputOffset );
762 }
763 if ( $slashPos === false ) {
764 $output .= substr( $urlPath, $inputOffset );
765 $inputOffset = $inputLength;
766 } else {
767 $output .= substr( $urlPath, $inputOffset, $slashPos - $inputOffset );
768 $inputOffset += $slashPos - $inputOffset;
769 }
770 }
771
772 if ( $trimOutput ) {
773 $slashPos = strrpos( $output, '/' );
774 if ( $slashPos === false ) {
775 $output = '';
776 } else {
777 $output = substr( $output, 0, $slashPos );
778 }
779 }
780 }
781
782 return $output;
783 }
784
785 /**
786 * Returns a regular expression of url protocols
787 *
788 * @param bool $includeProtocolRelative If false, remove '//' from the returned protocol list.
789 * DO NOT USE this directly, use wfUrlProtocolsWithoutProtRel() instead
790 * @return string
791 */
792 function wfUrlProtocols( $includeProtocolRelative = true ) {
793 global $wgUrlProtocols;
794
795 // Cache return values separately based on $includeProtocolRelative
796 static $withProtRel = null, $withoutProtRel = null;
797 $cachedValue = $includeProtocolRelative ? $withProtRel : $withoutProtRel;
798 if ( !is_null( $cachedValue ) ) {
799 return $cachedValue;
800 }
801
802 // Support old-style $wgUrlProtocols strings, for backwards compatibility
803 // with LocalSettings files from 1.5
804 if ( is_array( $wgUrlProtocols ) ) {
805 $protocols = array();
806 foreach ( $wgUrlProtocols as $protocol ) {
807 // Filter out '//' if !$includeProtocolRelative
808 if ( $includeProtocolRelative || $protocol !== '//' ) {
809 $protocols[] = preg_quote( $protocol, '/' );
810 }
811 }
812
813 $retval = implode( '|', $protocols );
814 } else {
815 // Ignore $includeProtocolRelative in this case
816 // This case exists for pre-1.6 compatibility, and we can safely assume
817 // that '//' won't appear in a pre-1.6 config because protocol-relative
818 // URLs weren't supported until 1.18
819 $retval = $wgUrlProtocols;
820 }
821
822 // Cache return value
823 if ( $includeProtocolRelative ) {
824 $withProtRel = $retval;
825 } else {
826 $withoutProtRel = $retval;
827 }
828 return $retval;
829 }
830
831 /**
832 * Like wfUrlProtocols(), but excludes '//' from the protocol list. Use this if
833 * you need a regex that matches all URL protocols but does not match protocol-
834 * relative URLs
835 * @return string
836 */
837 function wfUrlProtocolsWithoutProtRel() {
838 return wfUrlProtocols( false );
839 }
840
841 /**
842 * parse_url() work-alike, but non-broken. Differences:
843 *
844 * 1) Does not raise warnings on bad URLs (just returns false).
845 * 2) Handles protocols that don't use :// (e.g., mailto: and news:, as well as
846 * protocol-relative URLs) correctly.
847 * 3) Adds a "delimiter" element to the array, either '://', ':' or '//' (see (2)).
848 *
849 * @param string $url A URL to parse
850 * @return string[] Bits of the URL in an associative array, per PHP docs
851 */
852 function wfParseUrl( $url ) {
853 global $wgUrlProtocols; // Allow all protocols defined in DefaultSettings/LocalSettings.php
854
855 // Protocol-relative URLs are handled really badly by parse_url(). It's so
856 // bad that the easiest way to handle them is to just prepend 'http:' and
857 // strip the protocol out later.
858 $wasRelative = substr( $url, 0, 2 ) == '//';
859 if ( $wasRelative ) {
860 $url = "http:$url";
861 }
862 wfSuppressWarnings();
863 $bits = parse_url( $url );
864 wfRestoreWarnings();
865 // parse_url() returns an array without scheme for some invalid URLs, e.g.
866 // parse_url("%0Ahttp://example.com") == array( 'host' => '%0Ahttp', 'path' => 'example.com' )
867 if ( !$bits || !isset( $bits['scheme'] ) ) {
868 return false;
869 }
870
871 // parse_url() incorrectly handles schemes case-sensitively. Convert it to lowercase.
872 $bits['scheme'] = strtolower( $bits['scheme'] );
873
874 // most of the protocols are followed by ://, but mailto: and sometimes news: not, check for it
875 if ( in_array( $bits['scheme'] . '://', $wgUrlProtocols ) ) {
876 $bits['delimiter'] = '://';
877 } elseif ( in_array( $bits['scheme'] . ':', $wgUrlProtocols ) ) {
878 $bits['delimiter'] = ':';
879 // parse_url detects for news: and mailto: the host part of an url as path
880 // We have to correct this wrong detection
881 if ( isset( $bits['path'] ) ) {
882 $bits['host'] = $bits['path'];
883 $bits['path'] = '';
884 }
885 } else {
886 return false;
887 }
888
889 /* Provide an empty host for eg. file:/// urls (see bug 28627) */
890 if ( !isset( $bits['host'] ) ) {
891 $bits['host'] = '';
892
893 // bug 45069
894 if ( isset( $bits['path'] ) ) {
895 /* parse_url loses the third / for file:///c:/ urls (but not on variants) */
896 if ( substr( $bits['path'], 0, 1 ) !== '/' ) {
897 $bits['path'] = '/' . $bits['path'];
898 }
899 } else {
900 $bits['path'] = '';
901 }
902 }
903
904 // If the URL was protocol-relative, fix scheme and delimiter
905 if ( $wasRelative ) {
906 $bits['scheme'] = '';
907 $bits['delimiter'] = '//';
908 }
909 return $bits;
910 }
911
912 /**
913 * Take a URL, make sure it's expanded to fully qualified, and replace any
914 * encoded non-ASCII Unicode characters with their UTF-8 original forms
915 * for more compact display and legibility for local audiences.
916 *
917 * @todo handle punycode domains too
918 *
919 * @param string $url
920 * @return string
921 */
922 function wfExpandIRI( $url ) {
923 return preg_replace_callback(
924 '/((?:%[89A-F][0-9A-F])+)/i',
925 'wfExpandIRI_callback',
926 wfExpandUrl( $url )
927 );
928 }
929
930 /**
931 * Private callback for wfExpandIRI
932 * @param array $matches
933 * @return string
934 */
935 function wfExpandIRI_callback( $matches ) {
936 return urldecode( $matches[1] );
937 }
938
939 /**
940 * Make URL indexes, appropriate for the el_index field of externallinks.
941 *
942 * @param string $url
943 * @return array
944 */
945 function wfMakeUrlIndexes( $url ) {
946 $bits = wfParseUrl( $url );
947
948 // Reverse the labels in the hostname, convert to lower case
949 // For emails reverse domainpart only
950 if ( $bits['scheme'] == 'mailto' ) {
951 $mailparts = explode( '@', $bits['host'], 2 );
952 if ( count( $mailparts ) === 2 ) {
953 $domainpart = strtolower( implode( '.', array_reverse( explode( '.', $mailparts[1] ) ) ) );
954 } else {
955 // No domain specified, don't mangle it
956 $domainpart = '';
957 }
958 $reversedHost = $domainpart . '@' . $mailparts[0];
959 } else {
960 $reversedHost = strtolower( implode( '.', array_reverse( explode( '.', $bits['host'] ) ) ) );
961 }
962 // Add an extra dot to the end
963 // Why? Is it in wrong place in mailto links?
964 if ( substr( $reversedHost, -1, 1 ) !== '.' ) {
965 $reversedHost .= '.';
966 }
967 // Reconstruct the pseudo-URL
968 $prot = $bits['scheme'];
969 $index = $prot . $bits['delimiter'] . $reversedHost;
970 // Leave out user and password. Add the port, path, query and fragment
971 if ( isset( $bits['port'] ) ) {
972 $index .= ':' . $bits['port'];
973 }
974 if ( isset( $bits['path'] ) ) {
975 $index .= $bits['path'];
976 } else {
977 $index .= '/';
978 }
979 if ( isset( $bits['query'] ) ) {
980 $index .= '?' . $bits['query'];
981 }
982 if ( isset( $bits['fragment'] ) ) {
983 $index .= '#' . $bits['fragment'];
984 }
985
986 if ( $prot == '' ) {
987 return array( "http:$index", "https:$index" );
988 } else {
989 return array( $index );
990 }
991 }
992
993 /**
994 * Check whether a given URL has a domain that occurs in a given set of domains
995 * @param string $url URL
996 * @param array $domains Array of domains (strings)
997 * @return bool True if the host part of $url ends in one of the strings in $domains
998 */
999 function wfMatchesDomainList( $url, $domains ) {
1000 $bits = wfParseUrl( $url );
1001 if ( is_array( $bits ) && isset( $bits['host'] ) ) {
1002 $host = '.' . $bits['host'];
1003 foreach ( (array)$domains as $domain ) {
1004 $domain = '.' . $domain;
1005 if ( substr( $host, -strlen( $domain ) ) === $domain ) {
1006 return true;
1007 }
1008 }
1009 }
1010 return false;
1011 }
1012
1013 /**
1014 * Sends a line to the debug log if enabled or, optionally, to a comment in output.
1015 * In normal operation this is a NOP.
1016 *
1017 * Controlling globals:
1018 * $wgDebugLogFile - points to the log file
1019 * $wgDebugRawPage - if false, 'action=raw' hits will not result in debug output.
1020 * $wgDebugComments - if on, some debug items may appear in comments in the HTML output.
1021 *
1022 * @since 1.25 support for additional context data
1023 *
1024 * @param string $text
1025 * @param string|bool $dest Unused
1026 * @param array $context Additional logging context data
1027 */
1028 function wfDebug( $text, $dest = 'all', array $context = array() ) {
1029 global $wgDebugRawPage, $wgDebugLogPrefix;
1030 global $wgDebugTimestamps, $wgRequestTime;
1031
1032 if ( !$wgDebugRawPage && wfIsDebugRawPage() ) {
1033 return;
1034 }
1035
1036 $text = trim( $text );
1037
1038 // Inline logic from deprecated wfDebugTimer()
1039 if ( $wgDebugTimestamps ) {
1040 $context['seconds_elapsed'] = sprintf(
1041 '%6.4f',
1042 microtime( true ) - $wgRequestTime
1043 );
1044 $context['memory_used'] = sprintf(
1045 '%5.1fM',
1046 ( memory_get_usage( true ) / ( 1024 * 1024 ) )
1047 );
1048 }
1049
1050 if ( $wgDebugLogPrefix !== '' ) {
1051 $context['prefix'] = $wgDebugLogPrefix;
1052 }
1053
1054 $logger = MWLoggerFactory::getInstance( 'wfDebug' );
1055 $logger->debug( $text, $context );
1056 }
1057
1058 /**
1059 * Returns true if debug logging should be suppressed if $wgDebugRawPage = false
1060 * @return bool
1061 */
1062 function wfIsDebugRawPage() {
1063 static $cache;
1064 if ( $cache !== null ) {
1065 return $cache;
1066 }
1067 # Check for raw action using $_GET not $wgRequest, since the latter might not be initialised yet
1068 if ( ( isset( $_GET['action'] ) && $_GET['action'] == 'raw' )
1069 || (
1070 isset( $_SERVER['SCRIPT_NAME'] )
1071 && substr( $_SERVER['SCRIPT_NAME'], -8 ) == 'load.php'
1072 )
1073 ) {
1074 $cache = true;
1075 } else {
1076 $cache = false;
1077 }
1078 return $cache;
1079 }
1080
1081 /**
1082 * Get microsecond timestamps for debug logs
1083 *
1084 * @deprecated since 1.25
1085 * @return string
1086 */
1087 function wfDebugTimer() {
1088 global $wgDebugTimestamps, $wgRequestTime;
1089
1090 wfDeprecated( __METHOD__, '1.25' );
1091
1092 if ( !$wgDebugTimestamps ) {
1093 return '';
1094 }
1095
1096 $prefix = sprintf( "%6.4f", microtime( true ) - $wgRequestTime );
1097 $mem = sprintf( "%5.1fM", ( memory_get_usage( true ) / ( 1024 * 1024 ) ) );
1098 return "$prefix $mem ";
1099 }
1100
1101 /**
1102 * Send a line giving PHP memory usage.
1103 *
1104 * @param bool $exact Print exact byte values instead of kibibytes (default: false)
1105 */
1106 function wfDebugMem( $exact = false ) {
1107 $mem = memory_get_usage();
1108 if ( !$exact ) {
1109 $mem = floor( $mem / 1024 ) . ' KiB';
1110 } else {
1111 $mem .= ' B';
1112 }
1113 wfDebug( "Memory usage: $mem\n" );
1114 }
1115
1116 /**
1117 * Send a line to a supplementary debug log file, if configured, or main debug
1118 * log if not.
1119 *
1120 * To configure a supplementary log file, set $wgDebugLogGroups[$logGroup] to
1121 * a string filename or an associative array mapping 'destination' to the
1122 * desired filename. The associative array may also contain a 'sample' key
1123 * with an integer value, specifying a sampling factor. Sampled log events
1124 * will be emitted with a 1 in N random chance.
1125 *
1126 * @since 1.23 support for sampling log messages via $wgDebugLogGroups.
1127 * @since 1.25 support for additional context data
1128 * @since 1.25 sample behavior dependent on configured $wgMWLoggerDefaultSpi
1129 *
1130 * @param string $logGroup
1131 * @param string $text
1132 * @param string|bool $dest Destination of the message:
1133 * - 'all': both to the log and HTML (debug toolbar or HTML comments)
1134 * - 'log': only to the log and not in HTML
1135 * - 'private': only to the specific log if set in $wgDebugLogGroups and
1136 * discarded otherwise
1137 * For backward compatibility, it can also take a boolean:
1138 * - true: same as 'all'
1139 * - false: same as 'private'
1140 * @param array $context Additional logging context data
1141 */
1142 function wfDebugLog(
1143 $logGroup, $text, $dest = 'all', array $context = array()
1144 ) {
1145 // Turn $dest into a string if it's a boolean (for b/c)
1146 if ( $dest === true ) {
1147 $dest = 'all';
1148 } elseif ( $dest === false ) {
1149 $dest = 'private';
1150 }
1151
1152 $text = trim( $text );
1153
1154 $logger = MWLoggerFactory::getInstance( $logGroup );
1155 $context['private'] = ( $dest === 'private' );
1156 $logger->info( $text, $context );
1157 }
1158
1159 /**
1160 * Log for database errors
1161 *
1162 * @since 1.25 support for additional context data
1163 *
1164 * @param string $text Database error message.
1165 * @param array $context Additional logging context data
1166 */
1167 function wfLogDBError( $text, array $context = array() ) {
1168 $logger = MWLoggerFactory::getInstance( 'wfLogDBError' );
1169 $logger->error( trim( $text ), $context );
1170 }
1171
1172 /**
1173 * Throws a warning that $function is deprecated
1174 *
1175 * @param string $function
1176 * @param string|bool $version Version of MediaWiki that the function
1177 * was deprecated in (Added in 1.19).
1178 * @param string|bool $component Added in 1.19.
1179 * @param int $callerOffset How far up the call stack is the original
1180 * caller. 2 = function that called the function that called
1181 * wfDeprecated (Added in 1.20)
1182 *
1183 * @return null
1184 */
1185 function wfDeprecated( $function, $version = false, $component = false, $callerOffset = 2 ) {
1186 MWDebug::deprecated( $function, $version, $component, $callerOffset + 1 );
1187 }
1188
1189 /**
1190 * Send a warning either to the debug log or in a PHP error depending on
1191 * $wgDevelopmentWarnings. To log warnings in production, use wfLogWarning() instead.
1192 *
1193 * @param string $msg Message to send
1194 * @param int $callerOffset Number of items to go back in the backtrace to
1195 * find the correct caller (1 = function calling wfWarn, ...)
1196 * @param int $level PHP error level; defaults to E_USER_NOTICE;
1197 * only used when $wgDevelopmentWarnings is true
1198 */
1199 function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE ) {
1200 MWDebug::warning( $msg, $callerOffset + 1, $level, 'auto' );
1201 }
1202
1203 /**
1204 * Send a warning as a PHP error and the debug log. This is intended for logging
1205 * warnings in production. For logging development warnings, use WfWarn instead.
1206 *
1207 * @param string $msg Message to send
1208 * @param int $callerOffset Number of items to go back in the backtrace to
1209 * find the correct caller (1 = function calling wfLogWarning, ...)
1210 * @param int $level PHP error level; defaults to E_USER_WARNING
1211 */
1212 function wfLogWarning( $msg, $callerOffset = 1, $level = E_USER_WARNING ) {
1213 MWDebug::warning( $msg, $callerOffset + 1, $level, 'production' );
1214 }
1215
1216 /**
1217 * Log to a file without getting "file size exceeded" signals.
1218 *
1219 * Can also log to TCP or UDP with the syntax udp://host:port/prefix. This will
1220 * send lines to the specified port, prefixed by the specified prefix and a space.
1221 * @since 1.25 support for additional context data
1222 *
1223 * @param string $text
1224 * @param string $file Filename
1225 * @param array $context Additional logging context data
1226 * @throws MWException
1227 * @deprecated since 1.25 Use MWLoggerLegacyLogger::emit or UDPTransport
1228 */
1229 function wfErrorLog( $text, $file, array $context = array() ) {
1230 wfDeprecated( __METHOD__, '1.25' );
1231 $logger = MWLoggerFactory::getInstance( 'wfErrorLog' );
1232 $context['destination'] = $file;
1233 $logger->info( trim( $text ), $context );
1234 }
1235
1236 /**
1237 * @todo document
1238 */
1239 function wfLogProfilingData() {
1240 global $wgDebugLogGroups, $wgDebugRawPage;
1241
1242 $context = RequestContext::getMain();
1243 $request = $context->getRequest();
1244
1245 $profiler = Profiler::instance();
1246 $profiler->setContext( $context );
1247 $profiler->logData();
1248
1249 $config = $context->getConfig();
1250 if ( $config->has( 'StatsdServer' ) ) {
1251 $statsdServer = explode( ':', $config->get( 'StatsdServer' ) );
1252 $statsdHost = $statsdServer[0];
1253 $statsdPort = isset( $statsdServer[1] ) ? $statsdServer[1] : 8125;
1254 $statsdSender = new SocketSender( $statsdHost, $statsdPort );
1255 $statsdClient = new StatsdClient( $statsdSender );
1256 $statsdClient->send( $context->getStats()->getBuffer() );
1257 }
1258
1259 # Profiling must actually be enabled...
1260 if ( $profiler instanceof ProfilerStub ) {
1261 return;
1262 }
1263
1264 if ( isset( $wgDebugLogGroups['profileoutput'] )
1265 && $wgDebugLogGroups['profileoutput'] === false
1266 ) {
1267 // Explicitly disabled
1268 return;
1269 }
1270 if ( !$wgDebugRawPage && wfIsDebugRawPage() ) {
1271 return;
1272 }
1273
1274 $ctx = array( 'elapsed' => $request->getElapsedTime() );
1275 if ( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
1276 $ctx['forwarded_for'] = $_SERVER['HTTP_X_FORWARDED_FOR'];
1277 }
1278 if ( !empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
1279 $ctx['client_ip'] = $_SERVER['HTTP_CLIENT_IP'];
1280 }
1281 if ( !empty( $_SERVER['HTTP_FROM'] ) ) {
1282 $ctx['from'] = $_SERVER['HTTP_FROM'];
1283 }
1284 if ( isset( $ctx['forwarded_for'] ) ||
1285 isset( $ctx['client_ip'] ) ||
1286 isset( $ctx['from'] ) ) {
1287 $ctx['proxy'] = $_SERVER['REMOTE_ADDR'];
1288 }
1289
1290 // Don't load $wgUser at this late stage just for statistics purposes
1291 // @todo FIXME: We can detect some anons even if it is not loaded.
1292 // See User::getId()
1293 $user = $context->getUser();
1294 $ctx['anon'] = $user->isItemLoaded( 'id' ) && $user->isAnon();
1295
1296 // Command line script uses a FauxRequest object which does not have
1297 // any knowledge about an URL and throw an exception instead.
1298 try {
1299 $ctx['url'] = urldecode( $request->getRequestURL() );
1300 } catch ( Exception $ignored ) {
1301 // no-op
1302 }
1303
1304 $ctx['output'] = $profiler->getOutput();
1305
1306 $log = MWLoggerFactory::getInstance( 'profileoutput' );
1307 $log->info( "Elapsed: {elapsed}; URL: <{url}>\n{output}", $ctx );
1308 }
1309
1310 /**
1311 * Increment a statistics counter
1312 *
1313 * @param string $key
1314 * @param int $count
1315 * @return void
1316 */
1317 function wfIncrStats( $key, $count = 1 ) {
1318 $stats = RequestContext::getMain()->getStats();
1319 $stats->updateCount( $key, $count );
1320 }
1321
1322 /**
1323 * Check whether the wiki is in read-only mode.
1324 *
1325 * @return bool
1326 */
1327 function wfReadOnly() {
1328 return wfReadOnlyReason() !== false;
1329 }
1330
1331 /**
1332 * Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
1333 *
1334 * @return string|bool String when in read-only mode; false otherwise
1335 */
1336 function wfReadOnlyReason() {
1337 global $wgReadOnly, $wgReadOnlyFile;
1338
1339 if ( $wgReadOnly === null ) {
1340 // Set $wgReadOnly for faster access next time
1341 if ( is_file( $wgReadOnlyFile ) && filesize( $wgReadOnlyFile ) > 0 ) {
1342 $wgReadOnly = file_get_contents( $wgReadOnlyFile );
1343 } else {
1344 $wgReadOnly = false;
1345 }
1346 }
1347
1348 return $wgReadOnly;
1349 }
1350
1351 /**
1352 * Return a Language object from $langcode
1353 *
1354 * @param Language|string|bool $langcode Either:
1355 * - a Language object
1356 * - code of the language to get the message for, if it is
1357 * a valid code create a language for that language, if
1358 * it is a string but not a valid code then make a basic
1359 * language object
1360 * - a boolean: if it's false then use the global object for
1361 * the current user's language (as a fallback for the old parameter
1362 * functionality), or if it is true then use global object
1363 * for the wiki's content language.
1364 * @return Language
1365 */
1366 function wfGetLangObj( $langcode = false ) {
1367 # Identify which language to get or create a language object for.
1368 # Using is_object here due to Stub objects.
1369 if ( is_object( $langcode ) ) {
1370 # Great, we already have the object (hopefully)!
1371 return $langcode;
1372 }
1373
1374 global $wgContLang, $wgLanguageCode;
1375 if ( $langcode === true || $langcode === $wgLanguageCode ) {
1376 # $langcode is the language code of the wikis content language object.
1377 # or it is a boolean and value is true
1378 return $wgContLang;
1379 }
1380
1381 global $wgLang;
1382 if ( $langcode === false || $langcode === $wgLang->getCode() ) {
1383 # $langcode is the language code of user language object.
1384 # or it was a boolean and value is false
1385 return $wgLang;
1386 }
1387
1388 $validCodes = array_keys( Language::fetchLanguageNames() );
1389 if ( in_array( $langcode, $validCodes ) ) {
1390 # $langcode corresponds to a valid language.
1391 return Language::factory( $langcode );
1392 }
1393
1394 # $langcode is a string, but not a valid language code; use content language.
1395 wfDebug( "Invalid language code passed to wfGetLangObj, falling back to content language.\n" );
1396 return $wgContLang;
1397 }
1398
1399 /**
1400 * This is the function for getting translated interface messages.
1401 *
1402 * @see Message class for documentation how to use them.
1403 * @see https://www.mediawiki.org/wiki/Manual:Messages_API
1404 *
1405 * This function replaces all old wfMsg* functions.
1406 *
1407 * @param string|string[] $key Message key, or array of keys
1408 * @param mixed $params,... Normal message parameters
1409 * @return Message
1410 *
1411 * @since 1.17
1412 *
1413 * @see Message::__construct
1414 */
1415 function wfMessage( $key /*...*/ ) {
1416 $params = func_get_args();
1417 array_shift( $params );
1418 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
1419 $params = $params[0];
1420 }
1421 return new Message( $key, $params );
1422 }
1423
1424 /**
1425 * This function accepts multiple message keys and returns a message instance
1426 * for the first message which is non-empty. If all messages are empty then an
1427 * instance of the first message key is returned.
1428 *
1429 * @param string|string[] $keys,... Message keys
1430 * @return Message
1431 *
1432 * @since 1.18
1433 *
1434 * @see Message::newFallbackSequence
1435 */
1436 function wfMessageFallback( /*...*/ ) {
1437 $args = func_get_args();
1438 return call_user_func_array( 'Message::newFallbackSequence', $args );
1439 }
1440
1441 /**
1442 * Get a message from anywhere, for the current user language.
1443 *
1444 * Use wfMsgForContent() instead if the message should NOT
1445 * change depending on the user preferences.
1446 *
1447 * @deprecated since 1.18
1448 *
1449 * @param string $key Lookup key for the message, usually
1450 * defined in languages/Language.php
1451 *
1452 * Parameters to the message, which can be used to insert variable text into
1453 * it, can be passed to this function in the following formats:
1454 * - One per argument, starting at the second parameter
1455 * - As an array in the second parameter
1456 * These are not shown in the function definition.
1457 *
1458 * @return string
1459 */
1460 function wfMsg( $key ) {
1461 wfDeprecated( __METHOD__, '1.21' );
1462
1463 $args = func_get_args();
1464 array_shift( $args );
1465 return wfMsgReal( $key, $args );
1466 }
1467
1468 /**
1469 * Same as above except doesn't transform the message
1470 *
1471 * @deprecated since 1.18
1472 *
1473 * @param string $key
1474 * @return string
1475 */
1476 function wfMsgNoTrans( $key ) {
1477 wfDeprecated( __METHOD__, '1.21' );
1478
1479 $args = func_get_args();
1480 array_shift( $args );
1481 return wfMsgReal( $key, $args, true, false, false );
1482 }
1483
1484 /**
1485 * Get a message from anywhere, for the current global language
1486 * set with $wgLanguageCode.
1487 *
1488 * Use this if the message should NOT change dependent on the
1489 * language set in the user's preferences. This is the case for
1490 * most text written into logs, as well as link targets (such as
1491 * the name of the copyright policy page). Link titles, on the
1492 * other hand, should be shown in the UI language.
1493 *
1494 * Note that MediaWiki allows users to change the user interface
1495 * language in their preferences, but a single installation
1496 * typically only contains content in one language.
1497 *
1498 * Be wary of this distinction: If you use wfMsg() where you should
1499 * use wfMsgForContent(), a user of the software may have to
1500 * customize potentially hundreds of messages in
1501 * order to, e.g., fix a link in every possible language.
1502 *
1503 * @deprecated since 1.18
1504 *
1505 * @param string $key Lookup key for the message, usually
1506 * defined in languages/Language.php
1507 * @return string
1508 */
1509 function wfMsgForContent( $key ) {
1510 wfDeprecated( __METHOD__, '1.21' );
1511
1512 global $wgForceUIMsgAsContentMsg;
1513 $args = func_get_args();
1514 array_shift( $args );
1515 $forcontent = true;
1516 if ( is_array( $wgForceUIMsgAsContentMsg )
1517 && in_array( $key, $wgForceUIMsgAsContentMsg )
1518 ) {
1519 $forcontent = false;
1520 }
1521 return wfMsgReal( $key, $args, true, $forcontent );
1522 }
1523
1524 /**
1525 * Same as above except doesn't transform the message
1526 *
1527 * @deprecated since 1.18
1528 *
1529 * @param string $key
1530 * @return string
1531 */
1532 function wfMsgForContentNoTrans( $key ) {
1533 wfDeprecated( __METHOD__, '1.21' );
1534
1535 global $wgForceUIMsgAsContentMsg;
1536 $args = func_get_args();
1537 array_shift( $args );
1538 $forcontent = true;
1539 if ( is_array( $wgForceUIMsgAsContentMsg )
1540 && in_array( $key, $wgForceUIMsgAsContentMsg )
1541 ) {
1542 $forcontent = false;
1543 }
1544 return wfMsgReal( $key, $args, true, $forcontent, false );
1545 }
1546
1547 /**
1548 * Really get a message
1549 *
1550 * @deprecated since 1.18
1551 *
1552 * @param string $key Key to get.
1553 * @param array $args
1554 * @param bool $useDB
1555 * @param string|bool $forContent Language code, or false for user lang, true for content lang.
1556 * @param bool $transform Whether or not to transform the message.
1557 * @return string The requested message.
1558 */
1559 function wfMsgReal( $key, $args, $useDB = true, $forContent = false, $transform = true ) {
1560 wfDeprecated( __METHOD__, '1.21' );
1561
1562 $message = wfMsgGetKey( $key, $useDB, $forContent, $transform );
1563 $message = wfMsgReplaceArgs( $message, $args );
1564 return $message;
1565 }
1566
1567 /**
1568 * Fetch a message string value, but don't replace any keys yet.
1569 *
1570 * @deprecated since 1.18
1571 *
1572 * @param string $key
1573 * @param bool $useDB
1574 * @param string|bool $langCode Code of the language to get the message for, or
1575 * behaves as a content language switch if it is a boolean.
1576 * @param bool $transform Whether to parse magic words, etc.
1577 * @return string
1578 */
1579 function wfMsgGetKey( $key, $useDB = true, $langCode = false, $transform = true ) {
1580 wfDeprecated( __METHOD__, '1.21' );
1581
1582 Hooks::run( 'NormalizeMessageKey', array( &$key, &$useDB, &$langCode, &$transform ) );
1583
1584 $cache = MessageCache::singleton();
1585 $message = $cache->get( $key, $useDB, $langCode );
1586 if ( $message === false ) {
1587 $message = '&lt;' . htmlspecialchars( $key ) . '&gt;';
1588 } elseif ( $transform ) {
1589 $message = $cache->transform( $message );
1590 }
1591 return $message;
1592 }
1593
1594 /**
1595 * Replace message parameter keys on the given formatted output.
1596 *
1597 * @param string $message
1598 * @param array $args
1599 * @return string
1600 * @private
1601 */
1602 function wfMsgReplaceArgs( $message, $args ) {
1603 # Fix windows line-endings
1604 # Some messages are split with explode("\n", $msg)
1605 $message = str_replace( "\r", '', $message );
1606
1607 // Replace arguments
1608 if ( count( $args ) ) {
1609 if ( is_array( $args[0] ) ) {
1610 $args = array_values( $args[0] );
1611 }
1612 $replacementKeys = array();
1613 foreach ( $args as $n => $param ) {
1614 $replacementKeys['$' . ( $n + 1 )] = $param;
1615 }
1616 $message = strtr( $message, $replacementKeys );
1617 }
1618
1619 return $message;
1620 }
1621
1622 /**
1623 * Return an HTML-escaped version of a message.
1624 * Parameter replacements, if any, are done *after* the HTML-escaping,
1625 * so parameters may contain HTML (eg links or form controls). Be sure
1626 * to pre-escape them if you really do want plaintext, or just wrap
1627 * the whole thing in htmlspecialchars().
1628 *
1629 * @deprecated since 1.18
1630 *
1631 * @param string $key
1632 * @param string $args,... Parameters
1633 * @return string
1634 */
1635 function wfMsgHtml( $key ) {
1636 wfDeprecated( __METHOD__, '1.21' );
1637
1638 $args = func_get_args();
1639 array_shift( $args );
1640 return wfMsgReplaceArgs( htmlspecialchars( wfMsgGetKey( $key ) ), $args );
1641 }
1642
1643 /**
1644 * Return an HTML version of message
1645 * Parameter replacements, if any, are done *after* parsing the wiki-text message,
1646 * so parameters may contain HTML (eg links or form controls). Be sure
1647 * to pre-escape them if you really do want plaintext, or just wrap
1648 * the whole thing in htmlspecialchars().
1649 *
1650 * @deprecated since 1.18
1651 *
1652 * @param string $key
1653 * @param string $args,... Parameters
1654 * @return string
1655 */
1656 function wfMsgWikiHtml( $key ) {
1657 wfDeprecated( __METHOD__, '1.21' );
1658
1659 $args = func_get_args();
1660 array_shift( $args );
1661 return wfMsgReplaceArgs(
1662 MessageCache::singleton()->parse( wfMsgGetKey( $key ), null,
1663 /* can't be set to false */ true, /* interface */ true )->getText(),
1664 $args );
1665 }
1666
1667 /**
1668 * Returns message in the requested format
1669 *
1670 * @deprecated since 1.18
1671 *
1672 * @param string $key Key of the message
1673 * @param array $options Processing rules.
1674 * Can take the following options:
1675 * parse: parses wikitext to HTML
1676 * parseinline: parses wikitext to HTML and removes the surrounding
1677 * p's added by parser or tidy
1678 * escape: filters message through htmlspecialchars
1679 * escapenoentities: same, but allows entity references like &#160; through
1680 * replaceafter: parameters are substituted after parsing or escaping
1681 * parsemag: transform the message using magic phrases
1682 * content: fetch message for content language instead of interface
1683 * Also can accept a single associative argument, of the form 'language' => 'xx':
1684 * language: Language object or language code to fetch message for
1685 * (overridden by content).
1686 * Behavior for conflicting options (e.g., parse+parseinline) is undefined.
1687 *
1688 * @return string
1689 */
1690 function wfMsgExt( $key, $options ) {
1691 wfDeprecated( __METHOD__, '1.21' );
1692
1693 $args = func_get_args();
1694 array_shift( $args );
1695 array_shift( $args );
1696 $options = (array)$options;
1697 $validOptions = array( 'parse', 'parseinline', 'escape', 'escapenoentities', 'replaceafter',
1698 'parsemag', 'content' );
1699
1700 foreach ( $options as $arrayKey => $option ) {
1701 if ( !preg_match( '/^[0-9]+|language$/', $arrayKey ) ) {
1702 // An unknown index, neither numeric nor "language"
1703 wfWarn( "wfMsgExt called with incorrect parameter key $arrayKey", 1, E_USER_WARNING );
1704 } elseif ( preg_match( '/^[0-9]+$/', $arrayKey ) && !in_array( $option, $validOptions ) ) {
1705 // A numeric index with unknown value
1706 wfWarn( "wfMsgExt called with incorrect parameter $option", 1, E_USER_WARNING );
1707 }
1708 }
1709
1710 if ( in_array( 'content', $options, true ) ) {
1711 $forContent = true;
1712 $langCode = true;
1713 $langCodeObj = null;
1714 } elseif ( array_key_exists( 'language', $options ) ) {
1715 $forContent = false;
1716 $langCode = wfGetLangObj( $options['language'] );
1717 $langCodeObj = $langCode;
1718 } else {
1719 $forContent = false;
1720 $langCode = false;
1721 $langCodeObj = null;
1722 }
1723
1724 $string = wfMsgGetKey( $key, /*DB*/true, $langCode, /*Transform*/false );
1725
1726 if ( !in_array( 'replaceafter', $options, true ) ) {
1727 $string = wfMsgReplaceArgs( $string, $args );
1728 }
1729
1730 $messageCache = MessageCache::singleton();
1731 $parseInline = in_array( 'parseinline', $options, true );
1732 if ( in_array( 'parse', $options, true ) || $parseInline ) {
1733 $string = $messageCache->parse( $string, null, true, !$forContent, $langCodeObj );
1734 if ( $string instanceof ParserOutput ) {
1735 $string = $string->getText();
1736 }
1737
1738 if ( $parseInline ) {
1739 $string = Parser::stripOuterParagraph( $string );
1740 }
1741 } elseif ( in_array( 'parsemag', $options, true ) ) {
1742 $string = $messageCache->transform( $string,
1743 !$forContent, $langCodeObj );
1744 }
1745
1746 if ( in_array( 'escape', $options, true ) ) {
1747 $string = htmlspecialchars ( $string );
1748 } elseif ( in_array( 'escapenoentities', $options, true ) ) {
1749 $string = Sanitizer::escapeHtmlAllowEntities( $string );
1750 }
1751
1752 if ( in_array( 'replaceafter', $options, true ) ) {
1753 $string = wfMsgReplaceArgs( $string, $args );
1754 }
1755
1756 return $string;
1757 }
1758
1759 /**
1760 * Since wfMsg() and co suck, they don't return false if the message key they
1761 * looked up didn't exist but instead the key wrapped in <>'s, this function checks for the
1762 * nonexistence of messages by checking the MessageCache::get() result directly.
1763 *
1764 * @deprecated since 1.18. Use Message::isDisabled().
1765 *
1766 * @param string $key The message key looked up
1767 * @return bool True if the message *doesn't* exist.
1768 */
1769 function wfEmptyMsg( $key ) {
1770 wfDeprecated( __METHOD__, '1.21' );
1771
1772 return MessageCache::singleton()->get( $key, /*useDB*/true, /*content*/false ) === false;
1773 }
1774
1775 /**
1776 * Fetch server name for use in error reporting etc.
1777 * Use real server name if available, so we know which machine
1778 * in a server farm generated the current page.
1779 *
1780 * @return string
1781 */
1782 function wfHostname() {
1783 static $host;
1784 if ( is_null( $host ) ) {
1785
1786 # Hostname overriding
1787 global $wgOverrideHostname;
1788 if ( $wgOverrideHostname !== false ) {
1789 # Set static and skip any detection
1790 $host = $wgOverrideHostname;
1791 return $host;
1792 }
1793
1794 if ( function_exists( 'posix_uname' ) ) {
1795 // This function not present on Windows
1796 $uname = posix_uname();
1797 } else {
1798 $uname = false;
1799 }
1800 if ( is_array( $uname ) && isset( $uname['nodename'] ) ) {
1801 $host = $uname['nodename'];
1802 } elseif ( getenv( 'COMPUTERNAME' ) ) {
1803 # Windows computer name
1804 $host = getenv( 'COMPUTERNAME' );
1805 } else {
1806 # This may be a virtual server.
1807 $host = $_SERVER['SERVER_NAME'];
1808 }
1809 }
1810 return $host;
1811 }
1812
1813 /**
1814 * Returns a script tag that stores the amount of time it took MediaWiki to
1815 * handle the request in milliseconds as 'wgBackendResponseTime'.
1816 *
1817 * If $wgShowHostnames is true, the script will also set 'wgHostname' to the
1818 * hostname of the server handling the request.
1819 *
1820 * @return string
1821 */
1822 function wfReportTime() {
1823 global $wgRequestTime, $wgShowHostnames;
1824
1825 $responseTime = round( ( microtime( true ) - $wgRequestTime ) * 1000 );
1826 $reportVars = array( 'wgBackendResponseTime' => $responseTime );
1827 if ( $wgShowHostnames ) {
1828 $reportVars['wgHostname'] = wfHostname();
1829 }
1830 return Skin::makeVariablesScript( $reportVars );
1831 }
1832
1833 /**
1834 * Safety wrapper for debug_backtrace().
1835 *
1836 * Will return an empty array if debug_backtrace is disabled, otherwise
1837 * the output from debug_backtrace() (trimmed).
1838 *
1839 * @param int $limit This parameter can be used to limit the number of stack frames returned
1840 *
1841 * @return array Array of backtrace information
1842 */
1843 function wfDebugBacktrace( $limit = 0 ) {
1844 static $disabled = null;
1845
1846 if ( is_null( $disabled ) ) {
1847 $disabled = !function_exists( 'debug_backtrace' );
1848 if ( $disabled ) {
1849 wfDebug( "debug_backtrace() is disabled\n" );
1850 }
1851 }
1852 if ( $disabled ) {
1853 return array();
1854 }
1855
1856 if ( $limit && version_compare( PHP_VERSION, '5.4.0', '>=' ) ) {
1857 return array_slice( debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT, $limit + 1 ), 1 );
1858 } else {
1859 return array_slice( debug_backtrace(), 1 );
1860 }
1861 }
1862
1863 /**
1864 * Get a debug backtrace as a string
1865 *
1866 * @param bool|null $raw If true, the return value is plain text. If false, HTML.
1867 * Defaults to $wgCommandLineMode if unset.
1868 * @return string
1869 * @since 1.25 Supports $raw parameter.
1870 */
1871 function wfBacktrace( $raw = null ) {
1872 global $wgCommandLineMode;
1873
1874 if ( $raw === null ) {
1875 $raw = $wgCommandLineMode;
1876 }
1877
1878 if ( $raw ) {
1879 $frameFormat = "%s line %s calls %s()\n";
1880 $traceFormat = "%s";
1881 } else {
1882 $frameFormat = "<li>%s line %s calls %s()</li>\n";
1883 $traceFormat = "<ul>\n%s</ul>\n";
1884 }
1885
1886 $frames = array_map( function ( $frame ) use ( $frameFormat ) {
1887 $file = !empty( $frame['file'] ) ? basename( $frame['file'] ) : '-';
1888 $line = isset( $frame['line'] ) ? $frame['line'] : '-';
1889 $call = $frame['function'];
1890 if ( !empty( $frame['class'] ) ) {
1891 $call = $frame['class'] . $frame['type'] . $call;
1892 }
1893 return sprintf( $frameFormat, $file, $line, $call );
1894 }, wfDebugBacktrace() );
1895
1896 return sprintf( $traceFormat, implode( '', $frames ) );
1897 }
1898
1899 /**
1900 * Get the name of the function which called this function
1901 * wfGetCaller( 1 ) is the function with the wfGetCaller() call (ie. __FUNCTION__)
1902 * wfGetCaller( 2 ) [default] is the caller of the function running wfGetCaller()
1903 * wfGetCaller( 3 ) is the parent of that.
1904 *
1905 * @param int $level
1906 * @return string
1907 */
1908 function wfGetCaller( $level = 2 ) {
1909 $backtrace = wfDebugBacktrace( $level + 1 );
1910 if ( isset( $backtrace[$level] ) ) {
1911 return wfFormatStackFrame( $backtrace[$level] );
1912 } else {
1913 return 'unknown';
1914 }
1915 }
1916
1917 /**
1918 * Return a string consisting of callers in the stack. Useful sometimes
1919 * for profiling specific points.
1920 *
1921 * @param int $limit The maximum depth of the stack frame to return, or false for the entire stack.
1922 * @return string
1923 */
1924 function wfGetAllCallers( $limit = 3 ) {
1925 $trace = array_reverse( wfDebugBacktrace() );
1926 if ( !$limit || $limit > count( $trace ) - 1 ) {
1927 $limit = count( $trace ) - 1;
1928 }
1929 $trace = array_slice( $trace, -$limit - 1, $limit );
1930 return implode( '/', array_map( 'wfFormatStackFrame', $trace ) );
1931 }
1932
1933 /**
1934 * Return a string representation of frame
1935 *
1936 * @param array $frame
1937 * @return string
1938 */
1939 function wfFormatStackFrame( $frame ) {
1940 return isset( $frame['class'] ) ?
1941 $frame['class'] . '::' . $frame['function'] :
1942 $frame['function'];
1943 }
1944
1945 /* Some generic result counters, pulled out of SearchEngine */
1946
1947 /**
1948 * @todo document
1949 *
1950 * @param int $offset
1951 * @param int $limit
1952 * @return string
1953 */
1954 function wfShowingResults( $offset, $limit ) {
1955 return wfMessage( 'showingresults' )->numParams( $limit, $offset + 1 )->parse();
1956 }
1957
1958 /**
1959 * @todo document
1960 * @todo FIXME: We may want to blacklist some broken browsers
1961 *
1962 * @param bool $force
1963 * @return bool Whereas client accept gzip compression
1964 */
1965 function wfClientAcceptsGzip( $force = false ) {
1966 static $result = null;
1967 if ( $result === null || $force ) {
1968 $result = false;
1969 if ( isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) ) {
1970 # @todo FIXME: We may want to blacklist some broken browsers
1971 $m = array();
1972 if ( preg_match(
1973 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
1974 $_SERVER['HTTP_ACCEPT_ENCODING'],
1975 $m
1976 )
1977 ) {
1978 if ( isset( $m[2] ) && ( $m[1] == 'q' ) && ( $m[2] == 0 ) ) {
1979 $result = false;
1980 return $result;
1981 }
1982 wfDebug( "wfClientAcceptsGzip: client accepts gzip.\n" );
1983 $result = true;
1984 }
1985 }
1986 }
1987 return $result;
1988 }
1989
1990 /**
1991 * Obtain the offset and limit values from the request string;
1992 * used in special pages
1993 *
1994 * @param int $deflimit Default limit if none supplied
1995 * @param string $optionname Name of a user preference to check against
1996 * @return array
1997 * @deprecated since 1.24, just call WebRequest::getLimitOffset() directly
1998 */
1999 function wfCheckLimits( $deflimit = 50, $optionname = 'rclimit' ) {
2000 global $wgRequest;
2001 wfDeprecated( __METHOD__, '1.24' );
2002 return $wgRequest->getLimitOffset( $deflimit, $optionname );
2003 }
2004
2005 /**
2006 * Escapes the given text so that it may be output using addWikiText()
2007 * without any linking, formatting, etc. making its way through. This
2008 * is achieved by substituting certain characters with HTML entities.
2009 * As required by the callers, "<nowiki>" is not used.
2010 *
2011 * @param string $text Text to be escaped
2012 * @return string
2013 */
2014 function wfEscapeWikiText( $text ) {
2015 static $repl = null, $repl2 = null;
2016 if ( $repl === null ) {
2017 $repl = array(
2018 '"' => '&#34;', '&' => '&#38;', "'" => '&#39;', '<' => '&#60;',
2019 '=' => '&#61;', '>' => '&#62;', '[' => '&#91;', ']' => '&#93;',
2020 '{' => '&#123;', '|' => '&#124;', '}' => '&#125;', ';' => '&#59;',
2021 "\n#" => "\n&#35;", "\r#" => "\r&#35;",
2022 "\n*" => "\n&#42;", "\r*" => "\r&#42;",
2023 "\n:" => "\n&#58;", "\r:" => "\r&#58;",
2024 "\n " => "\n&#32;", "\r " => "\r&#32;",
2025 "\n\n" => "\n&#10;", "\r\n" => "&#13;\n",
2026 "\n\r" => "\n&#13;", "\r\r" => "\r&#13;",
2027 "\n\t" => "\n&#9;", "\r\t" => "\r&#9;", // "\n\t\n" is treated like "\n\n"
2028 "\n----" => "\n&#45;---", "\r----" => "\r&#45;---",
2029 '__' => '_&#95;', '://' => '&#58;//',
2030 );
2031
2032 // We have to catch everything "\s" matches in PCRE
2033 foreach ( array( 'ISBN', 'RFC', 'PMID' ) as $magic ) {
2034 $repl["$magic "] = "$magic&#32;";
2035 $repl["$magic\t"] = "$magic&#9;";
2036 $repl["$magic\r"] = "$magic&#13;";
2037 $repl["$magic\n"] = "$magic&#10;";
2038 $repl["$magic\f"] = "$magic&#12;";
2039 }
2040
2041 // And handle protocols that don't use "://"
2042 global $wgUrlProtocols;
2043 $repl2 = array();
2044 foreach ( $wgUrlProtocols as $prot ) {
2045 if ( substr( $prot, -1 ) === ':' ) {
2046 $repl2[] = preg_quote( substr( $prot, 0, -1 ), '/' );
2047 }
2048 }
2049 $repl2 = $repl2 ? '/\b(' . join( '|', $repl2 ) . '):/i' : '/^(?!)/';
2050 }
2051 $text = substr( strtr( "\n$text", $repl ), 1 );
2052 $text = preg_replace( $repl2, '$1&#58;', $text );
2053 return $text;
2054 }
2055
2056 /**
2057 * Sets dest to source and returns the original value of dest
2058 * If source is NULL, it just returns the value, it doesn't set the variable
2059 * If force is true, it will set the value even if source is NULL
2060 *
2061 * @param mixed $dest
2062 * @param mixed $source
2063 * @param bool $force
2064 * @return mixed
2065 */
2066 function wfSetVar( &$dest, $source, $force = false ) {
2067 $temp = $dest;
2068 if ( !is_null( $source ) || $force ) {
2069 $dest = $source;
2070 }
2071 return $temp;
2072 }
2073
2074 /**
2075 * As for wfSetVar except setting a bit
2076 *
2077 * @param int $dest
2078 * @param int $bit
2079 * @param bool $state
2080 *
2081 * @return bool
2082 */
2083 function wfSetBit( &$dest, $bit, $state = true ) {
2084 $temp = (bool)( $dest & $bit );
2085 if ( !is_null( $state ) ) {
2086 if ( $state ) {
2087 $dest |= $bit;
2088 } else {
2089 $dest &= ~$bit;
2090 }
2091 }
2092 return $temp;
2093 }
2094
2095 /**
2096 * A wrapper around the PHP function var_export().
2097 * Either print it or add it to the regular output ($wgOut).
2098 *
2099 * @param mixed $var A PHP variable to dump.
2100 */
2101 function wfVarDump( $var ) {
2102 global $wgOut;
2103 $s = str_replace( "\n", "<br />\n", var_export( $var, true ) . "\n" );
2104 if ( headers_sent() || !isset( $wgOut ) || !is_object( $wgOut ) ) {
2105 print $s;
2106 } else {
2107 $wgOut->addHTML( $s );
2108 }
2109 }
2110
2111 /**
2112 * Provide a simple HTTP error.
2113 *
2114 * @param int|string $code
2115 * @param string $label
2116 * @param string $desc
2117 */
2118 function wfHttpError( $code, $label, $desc ) {
2119 global $wgOut;
2120 header( "HTTP/1.0 $code $label" );
2121 header( "Status: $code $label" );
2122 if ( $wgOut ) {
2123 $wgOut->disable();
2124 $wgOut->sendCacheControl();
2125 }
2126
2127 header( 'Content-type: text/html; charset=utf-8' );
2128 print "<!doctype html>" .
2129 '<html><head><title>' .
2130 htmlspecialchars( $label ) .
2131 '</title></head><body><h1>' .
2132 htmlspecialchars( $label ) .
2133 '</h1><p>' .
2134 nl2br( htmlspecialchars( $desc ) ) .
2135 "</p></body></html>\n";
2136 }
2137
2138 /**
2139 * Clear away any user-level output buffers, discarding contents.
2140 *
2141 * Suitable for 'starting afresh', for instance when streaming
2142 * relatively large amounts of data without buffering, or wanting to
2143 * output image files without ob_gzhandler's compression.
2144 *
2145 * The optional $resetGzipEncoding parameter controls suppression of
2146 * the Content-Encoding header sent by ob_gzhandler; by default it
2147 * is left. See comments for wfClearOutputBuffers() for why it would
2148 * be used.
2149 *
2150 * Note that some PHP configuration options may add output buffer
2151 * layers which cannot be removed; these are left in place.
2152 *
2153 * @param bool $resetGzipEncoding
2154 */
2155 function wfResetOutputBuffers( $resetGzipEncoding = true ) {
2156 if ( $resetGzipEncoding ) {
2157 // Suppress Content-Encoding and Content-Length
2158 // headers from 1.10+s wfOutputHandler
2159 global $wgDisableOutputCompression;
2160 $wgDisableOutputCompression = true;
2161 }
2162 while ( $status = ob_get_status() ) {
2163 if ( $status['type'] == 0 /* PHP_OUTPUT_HANDLER_INTERNAL */ ) {
2164 // Probably from zlib.output_compression or other
2165 // PHP-internal setting which can't be removed.
2166 //
2167 // Give up, and hope the result doesn't break
2168 // output behavior.
2169 break;
2170 }
2171 if ( !ob_end_clean() ) {
2172 // Could not remove output buffer handler; abort now
2173 // to avoid getting in some kind of infinite loop.
2174 break;
2175 }
2176 if ( $resetGzipEncoding ) {
2177 if ( $status['name'] == 'ob_gzhandler' ) {
2178 // Reset the 'Content-Encoding' field set by this handler
2179 // so we can start fresh.
2180 header_remove( 'Content-Encoding' );
2181 break;
2182 }
2183 }
2184 }
2185 }
2186
2187 /**
2188 * More legible than passing a 'false' parameter to wfResetOutputBuffers():
2189 *
2190 * Clear away output buffers, but keep the Content-Encoding header
2191 * produced by ob_gzhandler, if any.
2192 *
2193 * This should be used for HTTP 304 responses, where you need to
2194 * preserve the Content-Encoding header of the real result, but
2195 * also need to suppress the output of ob_gzhandler to keep to spec
2196 * and avoid breaking Firefox in rare cases where the headers and
2197 * body are broken over two packets.
2198 */
2199 function wfClearOutputBuffers() {
2200 wfResetOutputBuffers( false );
2201 }
2202
2203 /**
2204 * Converts an Accept-* header into an array mapping string values to quality
2205 * factors
2206 *
2207 * @param string $accept
2208 * @param string $def Default
2209 * @return float[] Associative array of string => float pairs
2210 */
2211 function wfAcceptToPrefs( $accept, $def = '*/*' ) {
2212 # No arg means accept anything (per HTTP spec)
2213 if ( !$accept ) {
2214 return array( $def => 1.0 );
2215 }
2216
2217 $prefs = array();
2218
2219 $parts = explode( ',', $accept );
2220
2221 foreach ( $parts as $part ) {
2222 # @todo FIXME: Doesn't deal with params like 'text/html; level=1'
2223 $values = explode( ';', trim( $part ) );
2224 $match = array();
2225 if ( count( $values ) == 1 ) {
2226 $prefs[$values[0]] = 1.0;
2227 } elseif ( preg_match( '/q\s*=\s*(\d*\.\d+)/', $values[1], $match ) ) {
2228 $prefs[$values[0]] = floatval( $match[1] );
2229 }
2230 }
2231
2232 return $prefs;
2233 }
2234
2235 /**
2236 * Checks if a given MIME type matches any of the keys in the given
2237 * array. Basic wildcards are accepted in the array keys.
2238 *
2239 * Returns the matching MIME type (or wildcard) if a match, otherwise
2240 * NULL if no match.
2241 *
2242 * @param string $type
2243 * @param array $avail
2244 * @return string
2245 * @private
2246 */
2247 function mimeTypeMatch( $type, $avail ) {
2248 if ( array_key_exists( $type, $avail ) ) {
2249 return $type;
2250 } else {
2251 $parts = explode( '/', $type );
2252 if ( array_key_exists( $parts[0] . '/*', $avail ) ) {
2253 return $parts[0] . '/*';
2254 } elseif ( array_key_exists( '*/*', $avail ) ) {
2255 return '*/*';
2256 } else {
2257 return null;
2258 }
2259 }
2260 }
2261
2262 /**
2263 * Returns the 'best' match between a client's requested internet media types
2264 * and the server's list of available types. Each list should be an associative
2265 * array of type to preference (preference is a float between 0.0 and 1.0).
2266 * Wildcards in the types are acceptable.
2267 *
2268 * @param array $cprefs Client's acceptable type list
2269 * @param array $sprefs Server's offered types
2270 * @return string
2271 *
2272 * @todo FIXME: Doesn't handle params like 'text/plain; charset=UTF-8'
2273 * XXX: generalize to negotiate other stuff
2274 */
2275 function wfNegotiateType( $cprefs, $sprefs ) {
2276 $combine = array();
2277
2278 foreach ( array_keys( $sprefs ) as $type ) {
2279 $parts = explode( '/', $type );
2280 if ( $parts[1] != '*' ) {
2281 $ckey = mimeTypeMatch( $type, $cprefs );
2282 if ( $ckey ) {
2283 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
2284 }
2285 }
2286 }
2287
2288 foreach ( array_keys( $cprefs ) as $type ) {
2289 $parts = explode( '/', $type );
2290 if ( $parts[1] != '*' && !array_key_exists( $type, $sprefs ) ) {
2291 $skey = mimeTypeMatch( $type, $sprefs );
2292 if ( $skey ) {
2293 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
2294 }
2295 }
2296 }
2297
2298 $bestq = 0;
2299 $besttype = null;
2300
2301 foreach ( array_keys( $combine ) as $type ) {
2302 if ( $combine[$type] > $bestq ) {
2303 $besttype = $type;
2304 $bestq = $combine[$type];
2305 }
2306 }
2307
2308 return $besttype;
2309 }
2310
2311 /**
2312 * Reference-counted warning suppression
2313 *
2314 * @param bool $end
2315 */
2316 function wfSuppressWarnings( $end = false ) {
2317 static $suppressCount = 0;
2318 static $originalLevel = false;
2319
2320 if ( $end ) {
2321 if ( $suppressCount ) {
2322 --$suppressCount;
2323 if ( !$suppressCount ) {
2324 error_reporting( $originalLevel );
2325 }
2326 }
2327 } else {
2328 if ( !$suppressCount ) {
2329 $originalLevel = error_reporting( E_ALL & ~(
2330 E_WARNING |
2331 E_NOTICE |
2332 E_USER_WARNING |
2333 E_USER_NOTICE |
2334 E_DEPRECATED |
2335 E_USER_DEPRECATED |
2336 E_STRICT
2337 ) );
2338 }
2339 ++$suppressCount;
2340 }
2341 }
2342
2343 /**
2344 * Restore error level to previous value
2345 */
2346 function wfRestoreWarnings() {
2347 wfSuppressWarnings( true );
2348 }
2349
2350 # Autodetect, convert and provide timestamps of various types
2351
2352 /**
2353 * Unix time - the number of seconds since 1970-01-01 00:00:00 UTC
2354 */
2355 define( 'TS_UNIX', 0 );
2356
2357 /**
2358 * MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
2359 */
2360 define( 'TS_MW', 1 );
2361
2362 /**
2363 * MySQL DATETIME (YYYY-MM-DD HH:MM:SS)
2364 */
2365 define( 'TS_DB', 2 );
2366
2367 /**
2368 * RFC 2822 format, for E-mail and HTTP headers
2369 */
2370 define( 'TS_RFC2822', 3 );
2371
2372 /**
2373 * ISO 8601 format with no timezone: 1986-02-09T20:00:00Z
2374 *
2375 * This is used by Special:Export
2376 */
2377 define( 'TS_ISO_8601', 4 );
2378
2379 /**
2380 * An Exif timestamp (YYYY:MM:DD HH:MM:SS)
2381 *
2382 * @see http://exif.org/Exif2-2.PDF The Exif 2.2 spec, see page 28 for the
2383 * DateTime tag and page 36 for the DateTimeOriginal and
2384 * DateTimeDigitized tags.
2385 */
2386 define( 'TS_EXIF', 5 );
2387
2388 /**
2389 * Oracle format time.
2390 */
2391 define( 'TS_ORACLE', 6 );
2392
2393 /**
2394 * Postgres format time.
2395 */
2396 define( 'TS_POSTGRES', 7 );
2397
2398 /**
2399 * ISO 8601 basic format with no timezone: 19860209T200000Z. This is used by ResourceLoader
2400 */
2401 define( 'TS_ISO_8601_BASIC', 9 );
2402
2403 /**
2404 * Get a timestamp string in one of various formats
2405 *
2406 * @param mixed $outputtype A timestamp in one of the supported formats, the
2407 * function will autodetect which format is supplied and act accordingly.
2408 * @param mixed $ts Optional timestamp to convert, default 0 for the current time
2409 * @return string|bool String / false The same date in the format specified in $outputtype or false
2410 */
2411 function wfTimestamp( $outputtype = TS_UNIX, $ts = 0 ) {
2412 try {
2413 $timestamp = new MWTimestamp( $ts );
2414 return $timestamp->getTimestamp( $outputtype );
2415 } catch ( TimestampException $e ) {
2416 wfDebug( "wfTimestamp() fed bogus time value: TYPE=$outputtype; VALUE=$ts\n" );
2417 return false;
2418 }
2419 }
2420
2421 /**
2422 * Return a formatted timestamp, or null if input is null.
2423 * For dealing with nullable timestamp columns in the database.
2424 *
2425 * @param int $outputtype
2426 * @param string $ts
2427 * @return string
2428 */
2429 function wfTimestampOrNull( $outputtype = TS_UNIX, $ts = null ) {
2430 if ( is_null( $ts ) ) {
2431 return null;
2432 } else {
2433 return wfTimestamp( $outputtype, $ts );
2434 }
2435 }
2436
2437 /**
2438 * Convenience function; returns MediaWiki timestamp for the present time.
2439 *
2440 * @return string
2441 */
2442 function wfTimestampNow() {
2443 # return NOW
2444 return wfTimestamp( TS_MW, time() );
2445 }
2446
2447 /**
2448 * Check if the operating system is Windows
2449 *
2450 * @return bool True if it's Windows, false otherwise.
2451 */
2452 function wfIsWindows() {
2453 static $isWindows = null;
2454 if ( $isWindows === null ) {
2455 $isWindows = substr( php_uname(), 0, 7 ) == 'Windows';
2456 }
2457 return $isWindows;
2458 }
2459
2460 /**
2461 * Check if we are running under HHVM
2462 *
2463 * @return bool
2464 */
2465 function wfIsHHVM() {
2466 return defined( 'HHVM_VERSION' );
2467 }
2468
2469 /**
2470 * Swap two variables
2471 *
2472 * @deprecated since 1.24
2473 * @param mixed $x
2474 * @param mixed $y
2475 */
2476 function swap( &$x, &$y ) {
2477 wfDeprecated( __FUNCTION__, '1.24' );
2478 $z = $x;
2479 $x = $y;
2480 $y = $z;
2481 }
2482
2483 /**
2484 * Tries to get the system directory for temporary files. First
2485 * $wgTmpDirectory is checked, and then the TMPDIR, TMP, and TEMP
2486 * environment variables are then checked in sequence, and if none are
2487 * set try sys_get_temp_dir().
2488 *
2489 * NOTE: When possible, use instead the tmpfile() function to create
2490 * temporary files to avoid race conditions on file creation, etc.
2491 *
2492 * @return string
2493 */
2494 function wfTempDir() {
2495 global $wgTmpDirectory;
2496
2497 if ( $wgTmpDirectory !== false ) {
2498 return $wgTmpDirectory;
2499 }
2500
2501 $tmpDir = array_map( "getenv", array( 'TMPDIR', 'TMP', 'TEMP' ) );
2502
2503 foreach ( $tmpDir as $tmp ) {
2504 if ( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
2505 return $tmp;
2506 }
2507 }
2508 return sys_get_temp_dir();
2509 }
2510
2511 /**
2512 * Make directory, and make all parent directories if they don't exist
2513 *
2514 * @param string $dir Full path to directory to create
2515 * @param int $mode Chmod value to use, default is $wgDirectoryMode
2516 * @param string $caller Optional caller param for debugging.
2517 * @throws MWException
2518 * @return bool
2519 */
2520 function wfMkdirParents( $dir, $mode = null, $caller = null ) {
2521 global $wgDirectoryMode;
2522
2523 if ( FileBackend::isStoragePath( $dir ) ) { // sanity
2524 throw new MWException( __FUNCTION__ . " given storage path '$dir'." );
2525 }
2526
2527 if ( !is_null( $caller ) ) {
2528 wfDebug( "$caller: called wfMkdirParents($dir)\n" );
2529 }
2530
2531 if ( strval( $dir ) === '' || ( file_exists( $dir ) && is_dir( $dir ) ) ) {
2532 return true;
2533 }
2534
2535 $dir = str_replace( array( '\\', '/' ), DIRECTORY_SEPARATOR, $dir );
2536
2537 if ( is_null( $mode ) ) {
2538 $mode = $wgDirectoryMode;
2539 }
2540
2541 // Turn off the normal warning, we're doing our own below
2542 wfSuppressWarnings();
2543 $ok = mkdir( $dir, $mode, true ); // PHP5 <3
2544 wfRestoreWarnings();
2545
2546 if ( !$ok ) {
2547 //directory may have been created on another request since we last checked
2548 if ( is_dir( $dir ) ) {
2549 return true;
2550 }
2551
2552 // PHP doesn't report the path in its warning message, so add our own to aid in diagnosis.
2553 wfLogWarning( sprintf( "failed to mkdir \"%s\" mode 0%o", $dir, $mode ) );
2554 }
2555 return $ok;
2556 }
2557
2558 /**
2559 * Remove a directory and all its content.
2560 * Does not hide error.
2561 * @param string $dir
2562 */
2563 function wfRecursiveRemoveDir( $dir ) {
2564 wfDebug( __FUNCTION__ . "( $dir )\n" );
2565 // taken from http://de3.php.net/manual/en/function.rmdir.php#98622
2566 if ( is_dir( $dir ) ) {
2567 $objects = scandir( $dir );
2568 foreach ( $objects as $object ) {
2569 if ( $object != "." && $object != ".." ) {
2570 if ( filetype( $dir . '/' . $object ) == "dir" ) {
2571 wfRecursiveRemoveDir( $dir . '/' . $object );
2572 } else {
2573 unlink( $dir . '/' . $object );
2574 }
2575 }
2576 }
2577 reset( $objects );
2578 rmdir( $dir );
2579 }
2580 }
2581
2582 /**
2583 * @param int $nr The number to format
2584 * @param int $acc The number of digits after the decimal point, default 2
2585 * @param bool $round Whether or not to round the value, default true
2586 * @return string
2587 */
2588 function wfPercent( $nr, $acc = 2, $round = true ) {
2589 $ret = sprintf( "%.${acc}f", $nr );
2590 return $round ? round( $ret, $acc ) . '%' : "$ret%";
2591 }
2592
2593 /**
2594 * Safety wrapper around ini_get() for boolean settings.
2595 * The values returned from ini_get() are pre-normalized for settings
2596 * set via php.ini or php_flag/php_admin_flag... but *not*
2597 * for those set via php_value/php_admin_value.
2598 *
2599 * It's fairly common for people to use php_value instead of php_flag,
2600 * which can leave you with an 'off' setting giving a false positive
2601 * for code that just takes the ini_get() return value as a boolean.
2602 *
2603 * To make things extra interesting, setting via php_value accepts
2604 * "true" and "yes" as true, but php.ini and php_flag consider them false. :)
2605 * Unrecognized values go false... again opposite PHP's own coercion
2606 * from string to bool.
2607 *
2608 * Luckily, 'properly' set settings will always come back as '0' or '1',
2609 * so we only have to worry about them and the 'improper' settings.
2610 *
2611 * I frickin' hate PHP... :P
2612 *
2613 * @param string $setting
2614 * @return bool
2615 */
2616 function wfIniGetBool( $setting ) {
2617 $val = strtolower( ini_get( $setting ) );
2618 // 'on' and 'true' can't have whitespace around them, but '1' can.
2619 return $val == 'on'
2620 || $val == 'true'
2621 || $val == 'yes'
2622 || preg_match( "/^\s*[+-]?0*[1-9]/", $val ); // approx C atoi() function
2623 }
2624
2625 /**
2626 * Windows-compatible version of escapeshellarg()
2627 * Windows doesn't recognise single-quotes in the shell, but the escapeshellarg()
2628 * function puts single quotes in regardless of OS.
2629 *
2630 * Also fixes the locale problems on Linux in PHP 5.2.6+ (bug backported to
2631 * earlier distro releases of PHP)
2632 *
2633 * @param string ... strings to escape and glue together, or a single array of strings parameter
2634 * @return string
2635 */
2636 function wfEscapeShellArg( /*...*/ ) {
2637 wfInitShellLocale();
2638
2639 $args = func_get_args();
2640 if ( count( $args ) === 1 && is_array( reset( $args ) ) ) {
2641 // If only one argument has been passed, and that argument is an array,
2642 // treat it as a list of arguments
2643 $args = reset( $args );
2644 }
2645
2646 $first = true;
2647 $retVal = '';
2648 foreach ( $args as $arg ) {
2649 if ( !$first ) {
2650 $retVal .= ' ';
2651 } else {
2652 $first = false;
2653 }
2654
2655 if ( wfIsWindows() ) {
2656 // Escaping for an MSVC-style command line parser and CMD.EXE
2657 // @codingStandardsIgnoreStart For long URLs
2658 // Refs:
2659 // * http://web.archive.org/web/20020708081031/http://mailman.lyra.org/pipermail/scite-interest/2002-March/000436.html
2660 // * http://technet.microsoft.com/en-us/library/cc723564.aspx
2661 // * Bug #13518
2662 // * CR r63214
2663 // Double the backslashes before any double quotes. Escape the double quotes.
2664 // @codingStandardsIgnoreEnd
2665 $tokens = preg_split( '/(\\\\*")/', $arg, -1, PREG_SPLIT_DELIM_CAPTURE );
2666 $arg = '';
2667 $iteration = 0;
2668 foreach ( $tokens as $token ) {
2669 if ( $iteration % 2 == 1 ) {
2670 // Delimiter, a double quote preceded by zero or more slashes
2671 $arg .= str_replace( '\\', '\\\\', substr( $token, 0, -1 ) ) . '\\"';
2672 } elseif ( $iteration % 4 == 2 ) {
2673 // ^ in $token will be outside quotes, need to be escaped
2674 $arg .= str_replace( '^', '^^', $token );
2675 } else { // $iteration % 4 == 0
2676 // ^ in $token will appear inside double quotes, so leave as is
2677 $arg .= $token;
2678 }
2679 $iteration++;
2680 }
2681 // Double the backslashes before the end of the string, because
2682 // we will soon add a quote
2683 $m = array();
2684 if ( preg_match( '/^(.*?)(\\\\+)$/', $arg, $m ) ) {
2685 $arg = $m[1] . str_replace( '\\', '\\\\', $m[2] );
2686 }
2687
2688 // Add surrounding quotes
2689 $retVal .= '"' . $arg . '"';
2690 } else {
2691 $retVal .= escapeshellarg( $arg );
2692 }
2693 }
2694 return $retVal;
2695 }
2696
2697 /**
2698 * Check if wfShellExec() is effectively disabled via php.ini config
2699 *
2700 * @return bool|string False or one of (safemode,disabled)
2701 * @since 1.22
2702 */
2703 function wfShellExecDisabled() {
2704 static $disabled = null;
2705 if ( is_null( $disabled ) ) {
2706 if ( wfIniGetBool( 'safe_mode' ) ) {
2707 wfDebug( "wfShellExec can't run in safe_mode, PHP's exec functions are too broken.\n" );
2708 $disabled = 'safemode';
2709 } elseif ( !function_exists( 'proc_open' ) ) {
2710 wfDebug( "proc_open() is disabled\n" );
2711 $disabled = 'disabled';
2712 } else {
2713 $disabled = false;
2714 }
2715 }
2716 return $disabled;
2717 }
2718
2719 /**
2720 * Execute a shell command, with time and memory limits mirrored from the PHP
2721 * configuration if supported.
2722 *
2723 * @param string|string[] $cmd If string, a properly shell-escaped command line,
2724 * or an array of unescaped arguments, in which case each value will be escaped
2725 * Example: [ 'convert', '-font', 'font name' ] would produce "'convert' '-font' 'font name'"
2726 * @param null|mixed &$retval Optional, will receive the program's exit code.
2727 * (non-zero is usually failure). If there is an error from
2728 * read, select, or proc_open(), this will be set to -1.
2729 * @param array $environ Optional environment variables which should be
2730 * added to the executed command environment.
2731 * @param array $limits Optional array with limits(filesize, memory, time, walltime)
2732 * this overwrites the global wgMaxShell* limits.
2733 * @param array $options Array of options:
2734 * - duplicateStderr: Set this to true to duplicate stderr to stdout,
2735 * including errors from limit.sh
2736 * - profileMethod: By default this function will profile based on the calling
2737 * method. Set this to a string for an alternative method to profile from
2738 *
2739 * @return string Collected stdout as a string
2740 */
2741 function wfShellExec( $cmd, &$retval = null, $environ = array(),
2742 $limits = array(), $options = array()
2743 ) {
2744 global $IP, $wgMaxShellMemory, $wgMaxShellFileSize, $wgMaxShellTime,
2745 $wgMaxShellWallClockTime, $wgShellCgroup;
2746
2747 $disabled = wfShellExecDisabled();
2748 if ( $disabled ) {
2749 $retval = 1;
2750 return $disabled == 'safemode' ?
2751 'Unable to run external programs in safe mode.' :
2752 'Unable to run external programs, proc_open() is disabled.';
2753 }
2754
2755 $includeStderr = isset( $options['duplicateStderr'] ) && $options['duplicateStderr'];
2756 $profileMethod = isset( $options['profileMethod'] ) ? $options['profileMethod'] : wfGetCaller();
2757
2758 wfInitShellLocale();
2759
2760 $envcmd = '';
2761 foreach ( $environ as $k => $v ) {
2762 if ( wfIsWindows() ) {
2763 /* Surrounding a set in quotes (method used by wfEscapeShellArg) makes the quotes themselves
2764 * appear in the environment variable, so we must use carat escaping as documented in
2765 * http://technet.microsoft.com/en-us/library/cc723564.aspx
2766 * Note however that the quote isn't listed there, but is needed, and the parentheses
2767 * are listed there but doesn't appear to need it.
2768 */
2769 $envcmd .= "set $k=" . preg_replace( '/([&|()<>^"])/', '^\\1', $v ) . '&& ';
2770 } else {
2771 /* Assume this is a POSIX shell, thus required to accept variable assignments before the command
2772 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_09_01
2773 */
2774 $envcmd .= "$k=" . escapeshellarg( $v ) . ' ';
2775 }
2776 }
2777 if ( is_array( $cmd ) ) {
2778 $cmd = wfEscapeShellArg( $cmd );
2779 }
2780
2781 $cmd = $envcmd . $cmd;
2782
2783 $useLogPipe = false;
2784 if ( is_executable( '/bin/bash' ) ) {
2785 $time = intval ( isset( $limits['time'] ) ? $limits['time'] : $wgMaxShellTime );
2786 if ( isset( $limits['walltime'] ) ) {
2787 $wallTime = intval( $limits['walltime'] );
2788 } elseif ( isset( $limits['time'] ) ) {
2789 $wallTime = $time;
2790 } else {
2791 $wallTime = intval( $wgMaxShellWallClockTime );
2792 }
2793 $mem = intval ( isset( $limits['memory'] ) ? $limits['memory'] : $wgMaxShellMemory );
2794 $filesize = intval ( isset( $limits['filesize'] ) ? $limits['filesize'] : $wgMaxShellFileSize );
2795
2796 if ( $time > 0 || $mem > 0 || $filesize > 0 || $wallTime > 0 ) {
2797 $cmd = '/bin/bash ' . escapeshellarg( "$IP/includes/limit.sh" ) . ' ' .
2798 escapeshellarg( $cmd ) . ' ' .
2799 escapeshellarg(
2800 "MW_INCLUDE_STDERR=" . ( $includeStderr ? '1' : '' ) . ';' .
2801 "MW_CPU_LIMIT=$time; " .
2802 'MW_CGROUP=' . escapeshellarg( $wgShellCgroup ) . '; ' .
2803 "MW_MEM_LIMIT=$mem; " .
2804 "MW_FILE_SIZE_LIMIT=$filesize; " .
2805 "MW_WALL_CLOCK_LIMIT=$wallTime; " .
2806 "MW_USE_LOG_PIPE=yes"
2807 );
2808 $useLogPipe = true;
2809 } elseif ( $includeStderr ) {
2810 $cmd .= ' 2>&1';
2811 }
2812 } elseif ( $includeStderr ) {
2813 $cmd .= ' 2>&1';
2814 }
2815 wfDebug( "wfShellExec: $cmd\n" );
2816
2817 $desc = array(
2818 0 => array( 'file', 'php://stdin', 'r' ),
2819 1 => array( 'pipe', 'w' ),
2820 2 => array( 'file', 'php://stderr', 'w' ) );
2821 if ( $useLogPipe ) {
2822 $desc[3] = array( 'pipe', 'w' );
2823 }
2824 $pipes = null;
2825 $scoped = Profiler::instance()->scopedProfileIn( __FUNCTION__ . '-' . $profileMethod );
2826 $proc = proc_open( $cmd, $desc, $pipes );
2827 if ( !$proc ) {
2828 wfDebugLog( 'exec', "proc_open() failed: $cmd" );
2829 $retval = -1;
2830 return '';
2831 }
2832 $outBuffer = $logBuffer = '';
2833 $emptyArray = array();
2834 $status = false;
2835 $logMsg = false;
2836
2837 // According to the documentation, it is possible for stream_select()
2838 // to fail due to EINTR. I haven't managed to induce this in testing
2839 // despite sending various signals. If it did happen, the error
2840 // message would take the form:
2841 //
2842 // stream_select(): unable to select [4]: Interrupted system call (max_fd=5)
2843 //
2844 // where [4] is the value of the macro EINTR and "Interrupted system
2845 // call" is string which according to the Linux manual is "possibly"
2846 // localised according to LC_MESSAGES.
2847 $eintr = defined( 'SOCKET_EINTR' ) ? SOCKET_EINTR : 4;
2848 $eintrMessage = "stream_select(): unable to select [$eintr]";
2849
2850 // Build a table mapping resource IDs to pipe FDs to work around a
2851 // PHP 5.3 issue in which stream_select() does not preserve array keys
2852 // <https://bugs.php.net/bug.php?id=53427>.
2853 $fds = array();
2854 foreach ( $pipes as $fd => $pipe ) {
2855 $fds[(int)$pipe] = $fd;
2856 }
2857
2858 $running = true;
2859 $timeout = null;
2860 $numReadyPipes = 0;
2861
2862 while ( $running === true || $numReadyPipes !== 0 ) {
2863 if ( $running ) {
2864 $status = proc_get_status( $proc );
2865 // If the process has terminated, switch to nonblocking selects
2866 // for getting any data still waiting to be read.
2867 if ( !$status['running'] ) {
2868 $running = false;
2869 $timeout = 0;
2870 }
2871 }
2872
2873 $readyPipes = $pipes;
2874
2875 // Clear last error
2876 // @codingStandardsIgnoreStart Generic.PHP.NoSilencedErrors.Discouraged
2877 @trigger_error( '' );
2878 $numReadyPipes = @stream_select( $readyPipes, $emptyArray, $emptyArray, $timeout );
2879 if ( $numReadyPipes === false ) {
2880 // @codingStandardsIgnoreEnd
2881 $error = error_get_last();
2882 if ( strncmp( $error['message'], $eintrMessage, strlen( $eintrMessage ) ) == 0 ) {
2883 continue;
2884 } else {
2885 trigger_error( $error['message'], E_USER_WARNING );
2886 $logMsg = $error['message'];
2887 break;
2888 }
2889 }
2890 foreach ( $readyPipes as $pipe ) {
2891 $block = fread( $pipe, 65536 );
2892 $fd = $fds[(int)$pipe];
2893 if ( $block === '' ) {
2894 // End of file
2895 fclose( $pipes[$fd] );
2896 unset( $pipes[$fd] );
2897 if ( !$pipes ) {
2898 break 2;
2899 }
2900 } elseif ( $block === false ) {
2901 // Read error
2902 $logMsg = "Error reading from pipe";
2903 break 2;
2904 } elseif ( $fd == 1 ) {
2905 // From stdout
2906 $outBuffer .= $block;
2907 } elseif ( $fd == 3 ) {
2908 // From log FD
2909 $logBuffer .= $block;
2910 if ( strpos( $block, "\n" ) !== false ) {
2911 $lines = explode( "\n", $logBuffer );
2912 $logBuffer = array_pop( $lines );
2913 foreach ( $lines as $line ) {
2914 wfDebugLog( 'exec', $line );
2915 }
2916 }
2917 }
2918 }
2919 }
2920
2921 foreach ( $pipes as $pipe ) {
2922 fclose( $pipe );
2923 }
2924
2925 // Use the status previously collected if possible, since proc_get_status()
2926 // just calls waitpid() which will not return anything useful the second time.
2927 if ( $running ) {
2928 $status = proc_get_status( $proc );
2929 }
2930
2931 if ( $logMsg !== false ) {
2932 // Read/select error
2933 $retval = -1;
2934 proc_close( $proc );
2935 } elseif ( $status['signaled'] ) {
2936 $logMsg = "Exited with signal {$status['termsig']}";
2937 $retval = 128 + $status['termsig'];
2938 proc_close( $proc );
2939 } else {
2940 if ( $status['running'] ) {
2941 $retval = proc_close( $proc );
2942 } else {
2943 $retval = $status['exitcode'];
2944 proc_close( $proc );
2945 }
2946 if ( $retval == 127 ) {
2947 $logMsg = "Possibly missing executable file";
2948 } elseif ( $retval >= 129 && $retval <= 192 ) {
2949 $logMsg = "Probably exited with signal " . ( $retval - 128 );
2950 }
2951 }
2952
2953 if ( $logMsg !== false ) {
2954 wfDebugLog( 'exec', "$logMsg: $cmd" );
2955 }
2956
2957 return $outBuffer;
2958 }
2959
2960 /**
2961 * Execute a shell command, returning both stdout and stderr. Convenience
2962 * function, as all the arguments to wfShellExec can become unwieldy.
2963 *
2964 * @note This also includes errors from limit.sh, e.g. if $wgMaxShellFileSize is exceeded.
2965 * @param string|string[] $cmd If string, a properly shell-escaped command line,
2966 * or an array of unescaped arguments, in which case each value will be escaped
2967 * Example: [ 'convert', '-font', 'font name' ] would produce "'convert' '-font' 'font name'"
2968 * @param null|mixed &$retval Optional, will receive the program's exit code.
2969 * (non-zero is usually failure)
2970 * @param array $environ Optional environment variables which should be
2971 * added to the executed command environment.
2972 * @param array $limits Optional array with limits(filesize, memory, time, walltime)
2973 * this overwrites the global wgMaxShell* limits.
2974 * @return string Collected stdout and stderr as a string
2975 */
2976 function wfShellExecWithStderr( $cmd, &$retval = null, $environ = array(), $limits = array() ) {
2977 return wfShellExec( $cmd, $retval, $environ, $limits,
2978 array( 'duplicateStderr' => true, 'profileMethod' => wfGetCaller() ) );
2979 }
2980
2981 /**
2982 * Workaround for http://bugs.php.net/bug.php?id=45132
2983 * escapeshellarg() destroys non-ASCII characters if LANG is not a UTF-8 locale
2984 */
2985 function wfInitShellLocale() {
2986 static $done = false;
2987 if ( $done ) {
2988 return;
2989 }
2990 $done = true;
2991 global $wgShellLocale;
2992 if ( !wfIniGetBool( 'safe_mode' ) ) {
2993 putenv( "LC_CTYPE=$wgShellLocale" );
2994 setlocale( LC_CTYPE, $wgShellLocale );
2995 }
2996 }
2997
2998 /**
2999 * Generate a shell-escaped command line string to run a MediaWiki cli script.
3000 * Note that $parameters should be a flat array and an option with an argument
3001 * should consist of two consecutive items in the array (do not use "--option value").
3002 *
3003 * @param string $script MediaWiki cli script path
3004 * @param array $parameters Arguments and options to the script
3005 * @param array $options Associative array of options:
3006 * 'php': The path to the php executable
3007 * 'wrapper': Path to a PHP wrapper to handle the maintenance script
3008 * @return string
3009 */
3010 function wfShellWikiCmd( $script, array $parameters = array(), array $options = array() ) {
3011 global $wgPhpCli;
3012 // Give site config file a chance to run the script in a wrapper.
3013 // The caller may likely want to call wfBasename() on $script.
3014 Hooks::run( 'wfShellWikiCmd', array( &$script, &$parameters, &$options ) );
3015 $cmd = isset( $options['php'] ) ? array( $options['php'] ) : array( $wgPhpCli );
3016 if ( isset( $options['wrapper'] ) ) {
3017 $cmd[] = $options['wrapper'];
3018 }
3019 $cmd[] = $script;
3020 // Escape each parameter for shell
3021 return wfEscapeShellArg( array_merge( $cmd, $parameters ) );
3022 }
3023
3024 /**
3025 * wfMerge attempts to merge differences between three texts.
3026 * Returns true for a clean merge and false for failure or a conflict.
3027 *
3028 * @param string $old
3029 * @param string $mine
3030 * @param string $yours
3031 * @param string $result
3032 * @return bool
3033 */
3034 function wfMerge( $old, $mine, $yours, &$result ) {
3035 global $wgDiff3;
3036
3037 # This check may also protect against code injection in
3038 # case of broken installations.
3039 wfSuppressWarnings();
3040 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
3041 wfRestoreWarnings();
3042
3043 if ( !$haveDiff3 ) {
3044 wfDebug( "diff3 not found\n" );
3045 return false;
3046 }
3047
3048 # Make temporary files
3049 $td = wfTempDir();
3050 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
3051 $mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
3052 $yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
3053
3054 # NOTE: diff3 issues a warning to stderr if any of the files does not end with
3055 # a newline character. To avoid this, we normalize the trailing whitespace before
3056 # creating the diff.
3057
3058 fwrite( $oldtextFile, rtrim( $old ) . "\n" );
3059 fclose( $oldtextFile );
3060 fwrite( $mytextFile, rtrim( $mine ) . "\n" );
3061 fclose( $mytextFile );
3062 fwrite( $yourtextFile, rtrim( $yours ) . "\n" );
3063 fclose( $yourtextFile );
3064
3065 # Check for a conflict
3066 $cmd = wfEscapeShellArg( $wgDiff3, '-a', '--overlap-only', $mytextName, $oldtextName, $yourtextName );
3067 $handle = popen( $cmd, 'r' );
3068
3069 if ( fgets( $handle, 1024 ) ) {
3070 $conflict = true;
3071 } else {
3072 $conflict = false;
3073 }
3074 pclose( $handle );
3075
3076 # Merge differences
3077 $cmd = wfEscapeShellArg( $wgDiff3, '-a', '-e', '--merge', $mytextName, $oldtextName, $yourtextName );
3078 $handle = popen( $cmd, 'r' );
3079 $result = '';
3080 do {
3081 $data = fread( $handle, 8192 );
3082 if ( strlen( $data ) == 0 ) {
3083 break;
3084 }
3085 $result .= $data;
3086 } while ( true );
3087 pclose( $handle );
3088 unlink( $mytextName );
3089 unlink( $oldtextName );
3090 unlink( $yourtextName );
3091
3092 if ( $result === '' && $old !== '' && !$conflict ) {
3093 wfDebug( "Unexpected null result from diff3. Command: $cmd\n" );
3094 $conflict = true;
3095 }
3096 return !$conflict;
3097 }
3098
3099 /**
3100 * Returns unified plain-text diff of two texts.
3101 * "Useful" for machine processing of diffs.
3102 *
3103 * @deprecated since 1.25, use DiffEngine/UnifiedDiffFormatter directly
3104 *
3105 * @param string $before The text before the changes.
3106 * @param string $after The text after the changes.
3107 * @param string $params Command-line options for the diff command.
3108 * @return string Unified diff of $before and $after
3109 */
3110 function wfDiff( $before, $after, $params = '-u' ) {
3111 if ( $before == $after ) {
3112 return '';
3113 }
3114
3115 global $wgDiff;
3116 wfSuppressWarnings();
3117 $haveDiff = $wgDiff && file_exists( $wgDiff );
3118 wfRestoreWarnings();
3119
3120 # This check may also protect against code injection in
3121 # case of broken installations.
3122 if ( !$haveDiff ) {
3123 wfDebug( "diff executable not found\n" );
3124 $diffs = new Diff( explode( "\n", $before ), explode( "\n", $after ) );
3125 $format = new UnifiedDiffFormatter();
3126 return $format->format( $diffs );
3127 }
3128
3129 # Make temporary files
3130 $td = wfTempDir();
3131 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
3132 $newtextFile = fopen( $newtextName = tempnam( $td, 'merge-your-' ), 'w' );
3133
3134 fwrite( $oldtextFile, $before );
3135 fclose( $oldtextFile );
3136 fwrite( $newtextFile, $after );
3137 fclose( $newtextFile );
3138
3139 // Get the diff of the two files
3140 $cmd = "$wgDiff " . $params . ' ' . wfEscapeShellArg( $oldtextName, $newtextName );
3141
3142 $h = popen( $cmd, 'r' );
3143 if ( !$h ) {
3144 unlink( $oldtextName );
3145 unlink( $newtextName );
3146 throw new Exception( __METHOD__ . '(): popen() failed' );
3147 }
3148
3149 $diff = '';
3150
3151 do {
3152 $data = fread( $h, 8192 );
3153 if ( strlen( $data ) == 0 ) {
3154 break;
3155 }
3156 $diff .= $data;
3157 } while ( true );
3158
3159 // Clean up
3160 pclose( $h );
3161 unlink( $oldtextName );
3162 unlink( $newtextName );
3163
3164 // Kill the --- and +++ lines. They're not useful.
3165 $diff_lines = explode( "\n", $diff );
3166 if ( isset( $diff_lines[0] ) && strpos( $diff_lines[0], '---' ) === 0 ) {
3167 unset( $diff_lines[0] );
3168 }
3169 if ( isset( $diff_lines[1] ) && strpos( $diff_lines[1], '+++' ) === 0 ) {
3170 unset( $diff_lines[1] );
3171 }
3172
3173 $diff = implode( "\n", $diff_lines );
3174
3175 return $diff;
3176 }
3177
3178 /**
3179 * This function works like "use VERSION" in Perl, the program will die with a
3180 * backtrace if the current version of PHP is less than the version provided
3181 *
3182 * This is useful for extensions which due to their nature are not kept in sync
3183 * with releases, and might depend on other versions of PHP than the main code
3184 *
3185 * Note: PHP might die due to parsing errors in some cases before it ever
3186 * manages to call this function, such is life
3187 *
3188 * @see perldoc -f use
3189 *
3190 * @param string|int|float $req_ver The version to check, can be a string, an integer, or a float
3191 * @throws MWException
3192 */
3193 function wfUsePHP( $req_ver ) {
3194 $php_ver = PHP_VERSION;
3195
3196 if ( version_compare( $php_ver, (string)$req_ver, '<' ) ) {
3197 throw new MWException( "PHP $req_ver required--this is only $php_ver" );
3198 }
3199 }
3200
3201 /**
3202 * This function works like "use VERSION" in Perl except it checks the version
3203 * of MediaWiki, the program will die with a backtrace if the current version
3204 * of MediaWiki is less than the version provided.
3205 *
3206 * This is useful for extensions which due to their nature are not kept in sync
3207 * with releases
3208 *
3209 * Note: Due to the behavior of PHP's version_compare() which is used in this
3210 * function, if you want to allow the 'wmf' development versions add a 'c' (or
3211 * any single letter other than 'a', 'b' or 'p') as a post-fix to your
3212 * targeted version number. For example if you wanted to allow any variation
3213 * of 1.22 use `wfUseMW( '1.22c' )`. Using an 'a' or 'b' instead of 'c' will
3214 * not result in the same comparison due to the internal logic of
3215 * version_compare().
3216 *
3217 * @see perldoc -f use
3218 *
3219 * @param string|int|float $req_ver The version to check, can be a string, an integer, or a float
3220 * @throws MWException
3221 */
3222 function wfUseMW( $req_ver ) {
3223 global $wgVersion;
3224
3225 if ( version_compare( $wgVersion, (string)$req_ver, '<' ) ) {
3226 throw new MWException( "MediaWiki $req_ver required--this is only $wgVersion" );
3227 }
3228 }
3229
3230 /**
3231 * Return the final portion of a pathname.
3232 * Reimplemented because PHP5's "basename()" is buggy with multibyte text.
3233 * http://bugs.php.net/bug.php?id=33898
3234 *
3235 * PHP's basename() only considers '\' a pathchar on Windows and Netware.
3236 * We'll consider it so always, as we don't want '\s' in our Unix paths either.
3237 *
3238 * @param string $path
3239 * @param string $suffix String to remove if present
3240 * @return string
3241 */
3242 function wfBaseName( $path, $suffix = '' ) {
3243 if ( $suffix == '' ) {
3244 $encSuffix = '';
3245 } else {
3246 $encSuffix = '(?:' . preg_quote( $suffix, '#' ) . ')?';
3247 }
3248
3249 $matches = array();
3250 if ( preg_match( "#([^/\\\\]*?){$encSuffix}[/\\\\]*$#", $path, $matches ) ) {
3251 return $matches[1];
3252 } else {
3253 return '';
3254 }
3255 }
3256
3257 /**
3258 * Generate a relative path name to the given file.
3259 * May explode on non-matching case-insensitive paths,
3260 * funky symlinks, etc.
3261 *
3262 * @param string $path Absolute destination path including target filename
3263 * @param string $from Absolute source path, directory only
3264 * @return string
3265 */
3266 function wfRelativePath( $path, $from ) {
3267 // Normalize mixed input on Windows...
3268 $path = str_replace( '/', DIRECTORY_SEPARATOR, $path );
3269 $from = str_replace( '/', DIRECTORY_SEPARATOR, $from );
3270
3271 // Trim trailing slashes -- fix for drive root
3272 $path = rtrim( $path, DIRECTORY_SEPARATOR );
3273 $from = rtrim( $from, DIRECTORY_SEPARATOR );
3274
3275 $pieces = explode( DIRECTORY_SEPARATOR, dirname( $path ) );
3276 $against = explode( DIRECTORY_SEPARATOR, $from );
3277
3278 if ( $pieces[0] !== $against[0] ) {
3279 // Non-matching Windows drive letters?
3280 // Return a full path.
3281 return $path;
3282 }
3283
3284 // Trim off common prefix
3285 while ( count( $pieces ) && count( $against )
3286 && $pieces[0] == $against[0] ) {
3287 array_shift( $pieces );
3288 array_shift( $against );
3289 }
3290
3291 // relative dots to bump us to the parent
3292 while ( count( $against ) ) {
3293 array_unshift( $pieces, '..' );
3294 array_shift( $against );
3295 }
3296
3297 array_push( $pieces, wfBaseName( $path ) );
3298
3299 return implode( DIRECTORY_SEPARATOR, $pieces );
3300 }
3301
3302 /**
3303 * Convert an arbitrarily-long digit string from one numeric base
3304 * to another, optionally zero-padding to a minimum column width.
3305 *
3306 * Supports base 2 through 36; digit values 10-36 are represented
3307 * as lowercase letters a-z. Input is case-insensitive.
3308 *
3309 * @param string $input Input number
3310 * @param int $sourceBase Base of the input number
3311 * @param int $destBase Desired base of the output
3312 * @param int $pad Minimum number of digits in the output (pad with zeroes)
3313 * @param bool $lowercase Whether to output in lowercase or uppercase
3314 * @param string $engine Either "gmp", "bcmath", or "php"
3315 * @return string|bool The output number as a string, or false on error
3316 */
3317 function wfBaseConvert( $input, $sourceBase, $destBase, $pad = 1,
3318 $lowercase = true, $engine = 'auto'
3319 ) {
3320 $input = (string)$input;
3321 if (
3322 $sourceBase < 2 ||
3323 $sourceBase > 36 ||
3324 $destBase < 2 ||
3325 $destBase > 36 ||
3326 $sourceBase != (int)$sourceBase ||
3327 $destBase != (int)$destBase ||
3328 $pad != (int)$pad ||
3329 !preg_match(
3330 "/^[" . substr( '0123456789abcdefghijklmnopqrstuvwxyz', 0, $sourceBase ) . "]+$/i",
3331 $input
3332 )
3333 ) {
3334 return false;
3335 }
3336
3337 static $baseChars = array(
3338 10 => 'a', 11 => 'b', 12 => 'c', 13 => 'd', 14 => 'e', 15 => 'f',
3339 16 => 'g', 17 => 'h', 18 => 'i', 19 => 'j', 20 => 'k', 21 => 'l',
3340 22 => 'm', 23 => 'n', 24 => 'o', 25 => 'p', 26 => 'q', 27 => 'r',
3341 28 => 's', 29 => 't', 30 => 'u', 31 => 'v', 32 => 'w', 33 => 'x',
3342 34 => 'y', 35 => 'z',
3343
3344 '0' => 0, '1' => 1, '2' => 2, '3' => 3, '4' => 4, '5' => 5,
3345 '6' => 6, '7' => 7, '8' => 8, '9' => 9, 'a' => 10, 'b' => 11,
3346 'c' => 12, 'd' => 13, 'e' => 14, 'f' => 15, 'g' => 16, 'h' => 17,
3347 'i' => 18, 'j' => 19, 'k' => 20, 'l' => 21, 'm' => 22, 'n' => 23,
3348 'o' => 24, 'p' => 25, 'q' => 26, 'r' => 27, 's' => 28, 't' => 29,
3349 'u' => 30, 'v' => 31, 'w' => 32, 'x' => 33, 'y' => 34, 'z' => 35
3350 );
3351
3352 if ( extension_loaded( 'gmp' ) && ( $engine == 'auto' || $engine == 'gmp' ) ) {
3353 // Removing leading zeros works around broken base detection code in
3354 // some PHP versions (see <https://bugs.php.net/bug.php?id=50175> and
3355 // <https://bugs.php.net/bug.php?id=55398>).
3356 $result = gmp_strval( gmp_init( ltrim( $input, '0' ), $sourceBase ), $destBase );
3357 } elseif ( extension_loaded( 'bcmath' ) && ( $engine == 'auto' || $engine == 'bcmath' ) ) {
3358 $decimal = '0';
3359 foreach ( str_split( strtolower( $input ) ) as $char ) {
3360 $decimal = bcmul( $decimal, $sourceBase );
3361 $decimal = bcadd( $decimal, $baseChars[$char] );
3362 }
3363
3364 // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
3365 for ( $result = ''; bccomp( $decimal, 0 ); $decimal = bcdiv( $decimal, $destBase, 0 ) ) {
3366 $result .= $baseChars[bcmod( $decimal, $destBase )];
3367 }
3368 // @codingStandardsIgnoreEnd
3369
3370 $result = strrev( $result );
3371 } else {
3372 $inDigits = array();
3373 foreach ( str_split( strtolower( $input ) ) as $char ) {
3374 $inDigits[] = $baseChars[$char];
3375 }
3376
3377 // Iterate over the input, modulo-ing out an output digit
3378 // at a time until input is gone.
3379 $result = '';
3380 while ( $inDigits ) {
3381 $work = 0;
3382 $workDigits = array();
3383
3384 // Long division...
3385 foreach ( $inDigits as $digit ) {
3386 $work *= $sourceBase;
3387 $work += $digit;
3388
3389 if ( $workDigits || $work >= $destBase ) {
3390 $workDigits[] = (int)( $work / $destBase );
3391 }
3392 $work %= $destBase;
3393 }
3394
3395 // All that division leaves us with a remainder,
3396 // which is conveniently our next output digit.
3397 $result .= $baseChars[$work];
3398
3399 // And we continue!
3400 $inDigits = $workDigits;
3401 }
3402
3403 $result = strrev( $result );
3404 }
3405
3406 if ( !$lowercase ) {
3407 $result = strtoupper( $result );
3408 }
3409
3410 return str_pad( $result, $pad, '0', STR_PAD_LEFT );
3411 }
3412
3413 /**
3414 * Check if there is sufficient entropy in php's built-in session generation
3415 *
3416 * @return bool True = there is sufficient entropy
3417 */
3418 function wfCheckEntropy() {
3419 return (
3420 ( wfIsWindows() && version_compare( PHP_VERSION, '5.3.3', '>=' ) )
3421 || ini_get( 'session.entropy_file' )
3422 )
3423 && intval( ini_get( 'session.entropy_length' ) ) >= 32;
3424 }
3425
3426 /**
3427 * Override session_id before session startup if php's built-in
3428 * session generation code is not secure.
3429 */
3430 function wfFixSessionID() {
3431 // If the cookie or session id is already set we already have a session and should abort
3432 if ( isset( $_COOKIE[session_name()] ) || session_id() ) {
3433 return;
3434 }
3435
3436 // PHP's built-in session entropy is enabled if:
3437 // - entropy_file is set or you're on Windows with php 5.3.3+
3438 // - AND entropy_length is > 0
3439 // We treat it as disabled if it doesn't have an entropy length of at least 32
3440 $entropyEnabled = wfCheckEntropy();
3441
3442 // If built-in entropy is not enabled or not sufficient override PHP's
3443 // built in session id generation code
3444 if ( !$entropyEnabled ) {
3445 wfDebug( __METHOD__ . ": PHP's built in entropy is disabled or not sufficient, " .
3446 "overriding session id generation using our cryptrand source.\n" );
3447 session_id( MWCryptRand::generateHex( 32 ) );
3448 }
3449 }
3450
3451 /**
3452 * Reset the session_id
3453 *
3454 * @since 1.22
3455 */
3456 function wfResetSessionID() {
3457 global $wgCookieSecure;
3458 $oldSessionId = session_id();
3459 $cookieParams = session_get_cookie_params();
3460 if ( wfCheckEntropy() && $wgCookieSecure == $cookieParams['secure'] ) {
3461 session_regenerate_id( false );
3462 } else {
3463 $tmp = $_SESSION;
3464 session_destroy();
3465 wfSetupSession( MWCryptRand::generateHex( 32 ) );
3466 $_SESSION = $tmp;
3467 }
3468 $newSessionId = session_id();
3469 Hooks::run( 'ResetSessionID', array( $oldSessionId, $newSessionId ) );
3470 }
3471
3472 /**
3473 * Initialise php session
3474 *
3475 * @param bool $sessionId
3476 */
3477 function wfSetupSession( $sessionId = false ) {
3478 global $wgSessionsInMemcached, $wgSessionsInObjectCache, $wgCookiePath, $wgCookieDomain,
3479 $wgCookieSecure, $wgCookieHttpOnly, $wgSessionHandler;
3480 if ( $wgSessionsInObjectCache || $wgSessionsInMemcached ) {
3481 ObjectCacheSessionHandler::install();
3482 } elseif ( $wgSessionHandler && $wgSessionHandler != ini_get( 'session.save_handler' ) ) {
3483 # Only set this if $wgSessionHandler isn't null and session.save_handler
3484 # hasn't already been set to the desired value (that causes errors)
3485 ini_set( 'session.save_handler', $wgSessionHandler );
3486 }
3487 session_set_cookie_params(
3488 0, $wgCookiePath, $wgCookieDomain, $wgCookieSecure, $wgCookieHttpOnly );
3489 session_cache_limiter( 'private, must-revalidate' );
3490 if ( $sessionId ) {
3491 session_id( $sessionId );
3492 } else {
3493 wfFixSessionID();
3494 }
3495 wfSuppressWarnings();
3496 session_start();
3497 wfRestoreWarnings();
3498 }
3499
3500 /**
3501 * Get an object from the precompiled serialized directory
3502 *
3503 * @param string $name
3504 * @return mixed The variable on success, false on failure
3505 */
3506 function wfGetPrecompiledData( $name ) {
3507 global $IP;
3508
3509 $file = "$IP/serialized/$name";
3510 if ( file_exists( $file ) ) {
3511 $blob = file_get_contents( $file );
3512 if ( $blob ) {
3513 return unserialize( $blob );
3514 }
3515 }
3516 return false;
3517 }
3518
3519 /**
3520 * Get a cache key
3521 *
3522 * @param string $args,...
3523 * @return string
3524 */
3525 function wfMemcKey( /*...*/ ) {
3526 global $wgCachePrefix;
3527 $prefix = $wgCachePrefix === false ? wfWikiID() : $wgCachePrefix;
3528 $args = func_get_args();
3529 $key = $prefix . ':' . implode( ':', $args );
3530 $key = str_replace( ' ', '_', $key );
3531 return $key;
3532 }
3533
3534 /**
3535 * Get a cache key for a foreign DB
3536 *
3537 * @param string $db
3538 * @param string $prefix
3539 * @param string $args,...
3540 * @return string
3541 */
3542 function wfForeignMemcKey( $db, $prefix /*...*/ ) {
3543 $args = array_slice( func_get_args(), 2 );
3544 if ( $prefix ) {
3545 $key = "$db-$prefix:" . implode( ':', $args );
3546 } else {
3547 $key = $db . ':' . implode( ':', $args );
3548 }
3549 return str_replace( ' ', '_', $key );
3550 }
3551
3552 /**
3553 * Get an ASCII string identifying this wiki
3554 * This is used as a prefix in memcached keys
3555 *
3556 * @return string
3557 */
3558 function wfWikiID() {
3559 global $wgDBprefix, $wgDBname;
3560 if ( $wgDBprefix ) {
3561 return "$wgDBname-$wgDBprefix";
3562 } else {
3563 return $wgDBname;
3564 }
3565 }
3566
3567 /**
3568 * Split a wiki ID into DB name and table prefix
3569 *
3570 * @param string $wiki
3571 *
3572 * @return array
3573 */
3574 function wfSplitWikiID( $wiki ) {
3575 $bits = explode( '-', $wiki, 2 );
3576 if ( count( $bits ) < 2 ) {
3577 $bits[] = '';
3578 }
3579 return $bits;
3580 }
3581
3582 /**
3583 * Get a Database object.
3584 *
3585 * @param int $db Index of the connection to get. May be DB_MASTER for the
3586 * master (for write queries), DB_SLAVE for potentially lagged read
3587 * queries, or an integer >= 0 for a particular server.
3588 *
3589 * @param string|string[] $groups Query groups. An array of group names that this query
3590 * belongs to. May contain a single string if the query is only
3591 * in one group.
3592 *
3593 * @param string|bool $wiki The wiki ID, or false for the current wiki
3594 *
3595 * Note: multiple calls to wfGetDB(DB_SLAVE) during the course of one request
3596 * will always return the same object, unless the underlying connection or load
3597 * balancer is manually destroyed.
3598 *
3599 * Note 2: use $this->getDB() in maintenance scripts that may be invoked by
3600 * updater to ensure that a proper database is being updated.
3601 *
3602 * @return DatabaseBase
3603 */
3604 function wfGetDB( $db, $groups = array(), $wiki = false ) {
3605 return wfGetLB( $wiki )->getConnection( $db, $groups, $wiki );
3606 }
3607
3608 /**
3609 * Get a load balancer object.
3610 *
3611 * @param string|bool $wiki Wiki ID, or false for the current wiki
3612 * @return LoadBalancer
3613 */
3614 function wfGetLB( $wiki = false ) {
3615 return wfGetLBFactory()->getMainLB( $wiki );
3616 }
3617
3618 /**
3619 * Get the load balancer factory object
3620 *
3621 * @return LBFactory
3622 */
3623 function wfGetLBFactory() {
3624 return LBFactory::singleton();
3625 }
3626
3627 /**
3628 * Find a file.
3629 * Shortcut for RepoGroup::singleton()->findFile()
3630 *
3631 * @param string $title String or Title object
3632 * @param array $options Associative array of options (see RepoGroup::findFile)
3633 * @return File|bool File, or false if the file does not exist
3634 */
3635 function wfFindFile( $title, $options = array() ) {
3636 return RepoGroup::singleton()->findFile( $title, $options );
3637 }
3638
3639 /**
3640 * Get an object referring to a locally registered file.
3641 * Returns a valid placeholder object if the file does not exist.
3642 *
3643 * @param Title|string $title
3644 * @return LocalFile|null A File, or null if passed an invalid Title
3645 */
3646 function wfLocalFile( $title ) {
3647 return RepoGroup::singleton()->getLocalRepo()->newFile( $title );
3648 }
3649
3650 /**
3651 * Should low-performance queries be disabled?
3652 *
3653 * @return bool
3654 * @codeCoverageIgnore
3655 */
3656 function wfQueriesMustScale() {
3657 global $wgMiserMode;
3658 return $wgMiserMode
3659 || ( SiteStats::pages() > 100000
3660 && SiteStats::edits() > 1000000
3661 && SiteStats::users() > 10000 );
3662 }
3663
3664 /**
3665 * Get the path to a specified script file, respecting file
3666 * extensions; this is a wrapper around $wgScriptExtension etc.
3667 * except for 'index' and 'load' which use $wgScript/$wgLoadScript
3668 *
3669 * @param string $script Script filename, sans extension
3670 * @return string
3671 */
3672 function wfScript( $script = 'index' ) {
3673 global $wgScriptPath, $wgScriptExtension, $wgScript, $wgLoadScript;
3674 if ( $script === 'index' ) {
3675 return $wgScript;
3676 } elseif ( $script === 'load' ) {
3677 return $wgLoadScript;
3678 } else {
3679 return "{$wgScriptPath}/{$script}{$wgScriptExtension}";
3680 }
3681 }
3682
3683 /**
3684 * Get the script URL.
3685 *
3686 * @return string Script URL
3687 */
3688 function wfGetScriptUrl() {
3689 if ( isset( $_SERVER['SCRIPT_NAME'] ) ) {
3690 #
3691 # as it was called, minus the query string.
3692 #
3693 # Some sites use Apache rewrite rules to handle subdomains,
3694 # and have PHP set up in a weird way that causes PHP_SELF
3695 # to contain the rewritten URL instead of the one that the
3696 # outside world sees.
3697 #
3698 # If in this mode, use SCRIPT_URL instead, which mod_rewrite
3699 # provides containing the "before" URL.
3700 return $_SERVER['SCRIPT_NAME'];
3701 } else {
3702 return $_SERVER['URL'];
3703 }
3704 }
3705
3706 /**
3707 * Convenience function converts boolean values into "true"
3708 * or "false" (string) values
3709 *
3710 * @param bool $value
3711 * @return string
3712 */
3713 function wfBoolToStr( $value ) {
3714 return $value ? 'true' : 'false';
3715 }
3716
3717 /**
3718 * Get a platform-independent path to the null file, e.g. /dev/null
3719 *
3720 * @return string
3721 */
3722 function wfGetNull() {
3723 return wfIsWindows() ? 'NUL' : '/dev/null';
3724 }
3725
3726 /**
3727 * Waits for the slaves to catch up to the master position
3728 *
3729 * Use this when updating very large numbers of rows, as in maintenance scripts,
3730 * to avoid causing too much lag. Of course, this is a no-op if there are no slaves.
3731 *
3732 * By default this waits on the main DB cluster of the current wiki.
3733 * If $cluster is set to "*" it will wait on all DB clusters, including
3734 * external ones. If the lag being waiting on is caused by the code that
3735 * does this check, it makes since to use $ifWritesSince, particularly if
3736 * cluster is "*", to avoid excess overhead.
3737 *
3738 * Never call this function after a big DB write that is still in a transaction.
3739 * This only makes sense after the possible lag inducing changes were committed.
3740 *
3741 * @param float|null $ifWritesSince Only wait if writes were done since this UNIX timestamp
3742 * @param string|bool $wiki Wiki identifier accepted by wfGetLB
3743 * @param string|bool $cluster Cluster name accepted by LBFactory. Default: false.
3744 * @param int|null $timeout Max wait time. Default: 1 day (cli), ~10 seconds (web)
3745 * @return bool Success (able to connect and no timeouts reached)
3746 */
3747 function wfWaitForSlaves(
3748 $ifWritesSince = null, $wiki = false, $cluster = false, $timeout = null
3749 ) {
3750 // B/C: first argument used to be "max seconds of lag"; ignore such values
3751 $ifWritesSince = ( $ifWritesSince > 1e9 ) ? $ifWritesSince : null;
3752
3753 if ( $timeout === null ) {
3754 $timeout = ( PHP_SAPI === 'cli' ) ? 86400 : 10;
3755 }
3756
3757 // Figure out which clusters need to be checked
3758 $lbs = array();
3759 if ( $cluster === '*' ) {
3760 wfGetLBFactory()->forEachLB( function ( LoadBalancer $lb ) use ( &$lbs ) {
3761 $lbs[] = $lb;
3762 } );
3763 } elseif ( $cluster !== false ) {
3764 $lbs[] = wfGetLBFactory()->getExternalLB( $cluster );
3765 } else {
3766 $lbs[] = wfGetLB( $wiki );
3767 }
3768
3769 // Get all the master positions of applicable DBs right now.
3770 // This can be faster since waiting on one cluster reduces the
3771 // time needed to wait on the next clusters.
3772 $masterPositions = array_fill( 0, count( $lbs ), false );
3773 foreach ( $lbs as $i => $lb ) {
3774 // bug 27975 - Don't try to wait for slaves if there are none
3775 // Prevents permission error when getting master position
3776 if ( $lb->getServerCount() > 1 ) {
3777 if ( $ifWritesSince && !$lb->hasMasterConnection() ) {
3778 continue; // assume no writes done
3779 }
3780 // Use the empty string to not trigger selectDB() since the connection
3781 // may have been to a server that does not have a DB for the current wiki.
3782 $dbw = $lb->getConnection( DB_MASTER, array(), '' );
3783 if ( $ifWritesSince && $dbw->lastDoneWrites() < $ifWritesSince ) {
3784 continue; // no writes since the last wait
3785 }
3786 $masterPositions[$i] = $dbw->getMasterPos();
3787 }
3788 }
3789
3790 $ok = true;
3791 foreach ( $lbs as $i => $lb ) {
3792 if ( $masterPositions[$i] ) {
3793 // The DBMS may not support getMasterPos() or the whole
3794 // load balancer might be fake (e.g. $wgAllDBsAreLocalhost).
3795 $ok = $lb->waitForAll( $masterPositions[$i], $timeout ) && $ok;
3796 }
3797 }
3798
3799 return $ok;
3800 }
3801
3802 /**
3803 * Count down from $seconds to zero on the terminal, with a one-second pause
3804 * between showing each number. For use in command-line scripts.
3805 *
3806 * @codeCoverageIgnore
3807 * @param int $seconds
3808 */
3809 function wfCountDown( $seconds ) {
3810 for ( $i = $seconds; $i >= 0; $i-- ) {
3811 if ( $i != $seconds ) {
3812 echo str_repeat( "\x08", strlen( $i + 1 ) );
3813 }
3814 echo $i;
3815 flush();
3816 if ( $i ) {
3817 sleep( 1 );
3818 }
3819 }
3820 echo "\n";
3821 }
3822
3823 /**
3824 * Replace all invalid characters with -
3825 * Additional characters can be defined in $wgIllegalFileChars (see bug 20489)
3826 * By default, $wgIllegalFileChars = ':'
3827 *
3828 * @param string $name Filename to process
3829 * @return string
3830 */
3831 function wfStripIllegalFilenameChars( $name ) {
3832 global $wgIllegalFileChars;
3833 $illegalFileChars = $wgIllegalFileChars ? "|[" . $wgIllegalFileChars . "]" : '';
3834 $name = wfBaseName( $name );
3835 $name = preg_replace(
3836 "/[^" . Title::legalChars() . "]" . $illegalFileChars . "/",
3837 '-',
3838 $name
3839 );
3840 return $name;
3841 }
3842
3843 /**
3844 * Set PHP's memory limit to the larger of php.ini or $wgMemoryLimit;
3845 *
3846 * @return int Value the memory limit was set to.
3847 */
3848 function wfMemoryLimit() {
3849 global $wgMemoryLimit;
3850 $memlimit = wfShorthandToInteger( ini_get( 'memory_limit' ) );
3851 if ( $memlimit != -1 ) {
3852 $conflimit = wfShorthandToInteger( $wgMemoryLimit );
3853 if ( $conflimit == -1 ) {
3854 wfDebug( "Removing PHP's memory limit\n" );
3855 wfSuppressWarnings();
3856 ini_set( 'memory_limit', $conflimit );
3857 wfRestoreWarnings();
3858 return $conflimit;
3859 } elseif ( $conflimit > $memlimit ) {
3860 wfDebug( "Raising PHP's memory limit to $conflimit bytes\n" );
3861 wfSuppressWarnings();
3862 ini_set( 'memory_limit', $conflimit );
3863 wfRestoreWarnings();
3864 return $conflimit;
3865 }
3866 }
3867 return $memlimit;
3868 }
3869
3870 /**
3871 * Converts shorthand byte notation to integer form
3872 *
3873 * @param string $string
3874 * @return int
3875 */
3876 function wfShorthandToInteger( $string = '' ) {
3877 $string = trim( $string );
3878 if ( $string === '' ) {
3879 return -1;
3880 }
3881 $last = $string[strlen( $string ) - 1];
3882 $val = intval( $string );
3883 switch ( $last ) {
3884 case 'g':
3885 case 'G':
3886 $val *= 1024;
3887 // break intentionally missing
3888 case 'm':
3889 case 'M':
3890 $val *= 1024;
3891 // break intentionally missing
3892 case 'k':
3893 case 'K':
3894 $val *= 1024;
3895 }
3896
3897 return $val;
3898 }
3899
3900 /**
3901 * Get the normalised IETF language tag
3902 * See unit test for examples.
3903 *
3904 * @param string $code The language code.
3905 * @return string The language code which complying with BCP 47 standards.
3906 */
3907 function wfBCP47( $code ) {
3908 $codeSegment = explode( '-', $code );
3909 $codeBCP = array();
3910 foreach ( $codeSegment as $segNo => $seg ) {
3911 // when previous segment is x, it is a private segment and should be lc
3912 if ( $segNo > 0 && strtolower( $codeSegment[( $segNo - 1 )] ) == 'x' ) {
3913 $codeBCP[$segNo] = strtolower( $seg );
3914 // ISO 3166 country code
3915 } elseif ( ( strlen( $seg ) == 2 ) && ( $segNo > 0 ) ) {
3916 $codeBCP[$segNo] = strtoupper( $seg );
3917 // ISO 15924 script code
3918 } elseif ( ( strlen( $seg ) == 4 ) && ( $segNo > 0 ) ) {
3919 $codeBCP[$segNo] = ucfirst( strtolower( $seg ) );
3920 // Use lowercase for other cases
3921 } else {
3922 $codeBCP[$segNo] = strtolower( $seg );
3923 }
3924 }
3925 $langCode = implode( '-', $codeBCP );
3926 return $langCode;
3927 }
3928
3929 /**
3930 * Get a cache object.
3931 *
3932 * @param int $inputType Cache type, one of the CACHE_* constants.
3933 * @return BagOStuff
3934 */
3935 function wfGetCache( $inputType ) {
3936 return ObjectCache::getInstance( $inputType );
3937 }
3938
3939 /**
3940 * Get the main cache object
3941 *
3942 * @return BagOStuff
3943 */
3944 function wfGetMainCache() {
3945 global $wgMainCacheType;
3946 return ObjectCache::getInstance( $wgMainCacheType );
3947 }
3948
3949 /**
3950 * Get the cache object used by the message cache
3951 *
3952 * @return BagOStuff
3953 */
3954 function wfGetMessageCacheStorage() {
3955 global $wgMessageCacheType;
3956 return ObjectCache::getInstance( $wgMessageCacheType );
3957 }
3958
3959 /**
3960 * Get the cache object used by the parser cache
3961 *
3962 * @return BagOStuff
3963 */
3964 function wfGetParserCacheStorage() {
3965 global $wgParserCacheType;
3966 return ObjectCache::getInstance( $wgParserCacheType );
3967 }
3968
3969 /**
3970 * Call hook functions defined in $wgHooks
3971 *
3972 * @param string $event Event name
3973 * @param array $args Parameters passed to hook functions
3974 * @param string|null $deprecatedVersion Optionally mark hook as deprecated with version number
3975 *
3976 * @return bool True if no handler aborted the hook
3977 * @deprecated 1.25 - use Hooks::run
3978 */
3979 function wfRunHooks( $event, array $args = array(), $deprecatedVersion = null ) {
3980 return Hooks::run( $event, $args, $deprecatedVersion );
3981 }
3982
3983 /**
3984 * Wrapper around php's unpack.
3985 *
3986 * @param string $format The format string (See php's docs)
3987 * @param string $data A binary string of binary data
3988 * @param int|bool $length The minimum length of $data or false. This is to
3989 * prevent reading beyond the end of $data. false to disable the check.
3990 *
3991 * Also be careful when using this function to read unsigned 32 bit integer
3992 * because php might make it negative.
3993 *
3994 * @throws MWException If $data not long enough, or if unpack fails
3995 * @return array Associative array of the extracted data
3996 */
3997 function wfUnpack( $format, $data, $length = false ) {
3998 if ( $length !== false ) {
3999 $realLen = strlen( $data );
4000 if ( $realLen < $length ) {
4001 throw new MWException( "Tried to use wfUnpack on a "
4002 . "string of length $realLen, but needed one "
4003 . "of at least length $length."
4004 );
4005 }
4006 }
4007
4008 wfSuppressWarnings();
4009 $result = unpack( $format, $data );
4010 wfRestoreWarnings();
4011
4012 if ( $result === false ) {
4013 // If it cannot extract the packed data.
4014 throw new MWException( "unpack could not unpack binary data" );
4015 }
4016 return $result;
4017 }
4018
4019 /**
4020 * Determine if an image exists on the 'bad image list'.
4021 *
4022 * The format of MediaWiki:Bad_image_list is as follows:
4023 * * Only list items (lines starting with "*") are considered
4024 * * The first link on a line must be a link to a bad image
4025 * * Any subsequent links on the same line are considered to be exceptions,
4026 * i.e. articles where the image may occur inline.
4027 *
4028 * @param string $name The image name to check
4029 * @param Title|bool $contextTitle The page on which the image occurs, if known
4030 * @param string $blacklist Wikitext of a file blacklist
4031 * @return bool
4032 */
4033 function wfIsBadImage( $name, $contextTitle = false, $blacklist = null ) {
4034 static $badImageCache = null; // based on bad_image_list msg
4035
4036 # Handle redirects
4037 $redirectTitle = RepoGroup::singleton()->checkRedirect( Title::makeTitle( NS_FILE, $name ) );
4038 if ( $redirectTitle ) {
4039 $name = $redirectTitle->getDBkey();
4040 }
4041
4042 # Run the extension hook
4043 $bad = false;
4044 if ( !Hooks::run( 'BadImage', array( $name, &$bad ) ) ) {
4045 return $bad;
4046 }
4047
4048 $cacheable = ( $blacklist === null );
4049 if ( $cacheable && $badImageCache !== null ) {
4050 $badImages = $badImageCache;
4051 } else { // cache miss
4052 if ( $blacklist === null ) {
4053 $blacklist = wfMessage( 'bad_image_list' )->inContentLanguage()->plain(); // site list
4054 }
4055 # Build the list now
4056 $badImages = array();
4057 $lines = explode( "\n", $blacklist );
4058 foreach ( $lines as $line ) {
4059 # List items only
4060 if ( substr( $line, 0, 1 ) !== '*' ) {
4061 continue;
4062 }
4063
4064 # Find all links
4065 $m = array();
4066 if ( !preg_match_all( '/\[\[:?(.*?)\]\]/', $line, $m ) ) {
4067 continue;
4068 }
4069
4070 $exceptions = array();
4071 $imageDBkey = false;
4072 foreach ( $m[1] as $i => $titleText ) {
4073 $title = Title::newFromText( $titleText );
4074 if ( !is_null( $title ) ) {
4075 if ( $i == 0 ) {
4076 $imageDBkey = $title->getDBkey();
4077 } else {
4078 $exceptions[$title->getPrefixedDBkey()] = true;
4079 }
4080 }
4081 }
4082
4083 if ( $imageDBkey !== false ) {
4084 $badImages[$imageDBkey] = $exceptions;
4085 }
4086 }
4087 if ( $cacheable ) {
4088 $badImageCache = $badImages;
4089 }
4090 }
4091
4092 $contextKey = $contextTitle ? $contextTitle->getPrefixedDBkey() : false;
4093 $bad = isset( $badImages[$name] ) && !isset( $badImages[$name][$contextKey] );
4094 return $bad;
4095 }
4096
4097 /**
4098 * Determine whether the client at a given source IP is likely to be able to
4099 * access the wiki via HTTPS.
4100 *
4101 * @param string $ip The IPv4/6 address in the normal human-readable form
4102 * @return bool
4103 */
4104 function wfCanIPUseHTTPS( $ip ) {
4105 $canDo = true;
4106 Hooks::run( 'CanIPUseHTTPS', array( $ip, &$canDo ) );
4107 return !!$canDo;
4108 }
4109
4110 /**
4111 * Determine input string is represents as infinity
4112 *
4113 * @param string $str The string to determine
4114 * @return bool
4115 * @since 1.25
4116 */
4117 function wfIsInfinity( $str ) {
4118 $infinityValues = array( 'infinite', 'indefinite', 'infinity', 'never' );
4119 return in_array( $str, $infinityValues );
4120 }
4121
4122 /**
4123 * Work out the IP address based on various globals
4124 * For trusted proxies, use the XFF client IP (first of the chain)
4125 *
4126 * @deprecated since 1.19; call $wgRequest->getIP() directly.
4127 * @return string
4128 */
4129 function wfGetIP() {
4130 wfDeprecated( __METHOD__, '1.19' );
4131 global $wgRequest;
4132 return $wgRequest->getIP();
4133 }
4134
4135 /**
4136 * Checks if an IP is a trusted proxy provider.
4137 * Useful to tell if X-Forwarded-For data is possibly bogus.
4138 * Squid cache servers for the site are whitelisted.
4139 * @deprecated Since 1.24, use IP::isTrustedProxy()
4140 *
4141 * @param string $ip
4142 * @return bool
4143 */
4144 function wfIsTrustedProxy( $ip ) {
4145 wfDeprecated( __METHOD__, '1.24' );
4146 return IP::isTrustedProxy( $ip );
4147 }
4148
4149 /**
4150 * Checks if an IP matches a proxy we've configured.
4151 * @deprecated Since 1.24, use IP::isConfiguredProxy()
4152 *
4153 * @param string $ip
4154 * @return bool
4155 * @since 1.23 Supports CIDR ranges in $wgSquidServersNoPurge
4156 */
4157 function wfIsConfiguredProxy( $ip ) {
4158 wfDeprecated( __METHOD__, '1.24' );
4159 return IP::isConfiguredProxy( $ip );
4160 }
4161
4162 /**
4163 * Returns true if these thumbnail parameters match one that MediaWiki
4164 * requests from file description pages and/or parser output.
4165 *
4166 * $params is considered non-standard if they involve a non-standard
4167 * width or any non-default parameters aside from width and page number.
4168 * The number of possible files with standard parameters is far less than
4169 * that of all combinations; rate-limiting for them can thus be more generious.
4170 *
4171 * @param File $file
4172 * @param array $params
4173 * @return bool
4174 * @since 1.24 Moved from thumb.php to GlobalFunctions in 1.25
4175 */
4176 function wfThumbIsStandard( File $file, array $params ) {
4177 global $wgThumbLimits, $wgImageLimits, $wgResponsiveImages;
4178
4179 $multipliers = array( 1 );
4180 if ( $wgResponsiveImages ) {
4181 // These available sizes are hardcoded currently elsewhere in MediaWiki.
4182 // @see Linker::processResponsiveImages
4183 $multipliers[] = 1.5;
4184 $multipliers[] = 2;
4185 }
4186
4187 $handler = $file->getHandler();
4188 if ( !$handler || !isset( $params['width'] ) ) {
4189 return false;
4190 }
4191
4192 $basicParams = array();
4193 if ( isset( $params['page'] ) ) {
4194 $basicParams['page'] = $params['page'];
4195 }
4196
4197 $thumbLimits = array();
4198 $imageLimits = array();
4199 // Expand limits to account for multipliers
4200 foreach ( $multipliers as $multiplier ) {
4201 $thumbLimits = array_merge( $thumbLimits, array_map(
4202 function ( $width ) use ( $multiplier ) {
4203 return round( $width * $multiplier );
4204 }, $wgThumbLimits )
4205 );
4206 $imageLimits = array_merge( $imageLimits, array_map(
4207 function ( $pair ) use ( $multiplier ) {
4208 return array(
4209 round( $pair[0] * $multiplier ),
4210 round( $pair[1] * $multiplier ),
4211 );
4212 }, $wgImageLimits )
4213 );
4214 }
4215
4216 // Check if the width matches one of $wgThumbLimits
4217 if ( in_array( $params['width'], $thumbLimits ) ) {
4218 $normalParams = $basicParams + array( 'width' => $params['width'] );
4219 // Append any default values to the map (e.g. "lossy", "lossless", ...)
4220 $handler->normaliseParams( $file, $normalParams );
4221 } else {
4222 // If not, then check if the width matchs one of $wgImageLimits
4223 $match = false;
4224 foreach ( $imageLimits as $pair ) {
4225 $normalParams = $basicParams + array( 'width' => $pair[0], 'height' => $pair[1] );
4226 // Decide whether the thumbnail should be scaled on width or height.
4227 // Also append any default values to the map (e.g. "lossy", "lossless", ...)
4228 $handler->normaliseParams( $file, $normalParams );
4229 // Check if this standard thumbnail size maps to the given width
4230 if ( $normalParams['width'] == $params['width'] ) {
4231 $match = true;
4232 break;
4233 }
4234 }
4235 if ( !$match ) {
4236 return false; // not standard for description pages
4237 }
4238 }
4239
4240 // Check that the given values for non-page, non-width, params are just defaults
4241 foreach ( $params as $key => $value ) {
4242 if ( !isset( $normalParams[$key] ) || $normalParams[$key] != $value ) {
4243 return false;
4244 }
4245 }
4246
4247 return true;
4248 }