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