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