Profile wfShellExec() calls by caller
[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 = MWLoggerFactory::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 = MWLoggerFactory::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 = MWLoggerFactory::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 = MWLoggerFactory::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 ( Exception $ignored ) {
1332 // no-op
1333 }
1334
1335 $ctx['output'] = $profiler->getOutput();
1336
1337 $log = MWLoggerFactory::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 header( "HTTP/1.0 $code $label" );
2151 header( "Status: $code $label" );
2152 if ( $wgOut ) {
2153 $wgOut->disable();
2154 $wgOut->sendCacheControl();
2155 }
2156
2157 header( 'Content-type: text/html; charset=utf-8' );
2158 print "<!doctype html>" .
2159 '<html><head><title>' .
2160 htmlspecialchars( $label ) .
2161 '</title></head><body><h1>' .
2162 htmlspecialchars( $label ) .
2163 '</h1><p>' .
2164 nl2br( htmlspecialchars( $desc ) ) .
2165 "</p></body></html>\n";
2166 }
2167
2168 /**
2169 * Clear away any user-level output buffers, discarding contents.
2170 *
2171 * Suitable for 'starting afresh', for instance when streaming
2172 * relatively large amounts of data without buffering, or wanting to
2173 * output image files without ob_gzhandler's compression.
2174 *
2175 * The optional $resetGzipEncoding parameter controls suppression of
2176 * the Content-Encoding header sent by ob_gzhandler; by default it
2177 * is left. See comments for wfClearOutputBuffers() for why it would
2178 * be used.
2179 *
2180 * Note that some PHP configuration options may add output buffer
2181 * layers which cannot be removed; these are left in place.
2182 *
2183 * @param bool $resetGzipEncoding
2184 */
2185 function wfResetOutputBuffers( $resetGzipEncoding = true ) {
2186 if ( $resetGzipEncoding ) {
2187 // Suppress Content-Encoding and Content-Length
2188 // headers from 1.10+s wfOutputHandler
2189 global $wgDisableOutputCompression;
2190 $wgDisableOutputCompression = true;
2191 }
2192 while ( $status = ob_get_status() ) {
2193 if ( $status['type'] == 0 /* PHP_OUTPUT_HANDLER_INTERNAL */ ) {
2194 // Probably from zlib.output_compression or other
2195 // PHP-internal setting which can't be removed.
2196 //
2197 // Give up, and hope the result doesn't break
2198 // output behavior.
2199 break;
2200 }
2201 if ( !ob_end_clean() ) {
2202 // Could not remove output buffer handler; abort now
2203 // to avoid getting in some kind of infinite loop.
2204 break;
2205 }
2206 if ( $resetGzipEncoding ) {
2207 if ( $status['name'] == 'ob_gzhandler' ) {
2208 // Reset the 'Content-Encoding' field set by this handler
2209 // so we can start fresh.
2210 header_remove( 'Content-Encoding' );
2211 break;
2212 }
2213 }
2214 }
2215 }
2216
2217 /**
2218 * More legible than passing a 'false' parameter to wfResetOutputBuffers():
2219 *
2220 * Clear away output buffers, but keep the Content-Encoding header
2221 * produced by ob_gzhandler, if any.
2222 *
2223 * This should be used for HTTP 304 responses, where you need to
2224 * preserve the Content-Encoding header of the real result, but
2225 * also need to suppress the output of ob_gzhandler to keep to spec
2226 * and avoid breaking Firefox in rare cases where the headers and
2227 * body are broken over two packets.
2228 */
2229 function wfClearOutputBuffers() {
2230 wfResetOutputBuffers( false );
2231 }
2232
2233 /**
2234 * Converts an Accept-* header into an array mapping string values to quality
2235 * factors
2236 *
2237 * @param string $accept
2238 * @param string $def Default
2239 * @return float[] Associative array of string => float pairs
2240 */
2241 function wfAcceptToPrefs( $accept, $def = '*/*' ) {
2242 # No arg means accept anything (per HTTP spec)
2243 if ( !$accept ) {
2244 return array( $def => 1.0 );
2245 }
2246
2247 $prefs = array();
2248
2249 $parts = explode( ',', $accept );
2250
2251 foreach ( $parts as $part ) {
2252 # @todo FIXME: Doesn't deal with params like 'text/html; level=1'
2253 $values = explode( ';', trim( $part ) );
2254 $match = array();
2255 if ( count( $values ) == 1 ) {
2256 $prefs[$values[0]] = 1.0;
2257 } elseif ( preg_match( '/q\s*=\s*(\d*\.\d+)/', $values[1], $match ) ) {
2258 $prefs[$values[0]] = floatval( $match[1] );
2259 }
2260 }
2261
2262 return $prefs;
2263 }
2264
2265 /**
2266 * Checks if a given MIME type matches any of the keys in the given
2267 * array. Basic wildcards are accepted in the array keys.
2268 *
2269 * Returns the matching MIME type (or wildcard) if a match, otherwise
2270 * NULL if no match.
2271 *
2272 * @param string $type
2273 * @param array $avail
2274 * @return string
2275 * @private
2276 */
2277 function mimeTypeMatch( $type, $avail ) {
2278 if ( array_key_exists( $type, $avail ) ) {
2279 return $type;
2280 } else {
2281 $parts = explode( '/', $type );
2282 if ( array_key_exists( $parts[0] . '/*', $avail ) ) {
2283 return $parts[0] . '/*';
2284 } elseif ( array_key_exists( '*/*', $avail ) ) {
2285 return '*/*';
2286 } else {
2287 return null;
2288 }
2289 }
2290 }
2291
2292 /**
2293 * Returns the 'best' match between a client's requested internet media types
2294 * and the server's list of available types. Each list should be an associative
2295 * array of type to preference (preference is a float between 0.0 and 1.0).
2296 * Wildcards in the types are acceptable.
2297 *
2298 * @param array $cprefs Client's acceptable type list
2299 * @param array $sprefs Server's offered types
2300 * @return string
2301 *
2302 * @todo FIXME: Doesn't handle params like 'text/plain; charset=UTF-8'
2303 * XXX: generalize to negotiate other stuff
2304 */
2305 function wfNegotiateType( $cprefs, $sprefs ) {
2306 $combine = array();
2307
2308 foreach ( array_keys( $sprefs ) as $type ) {
2309 $parts = explode( '/', $type );
2310 if ( $parts[1] != '*' ) {
2311 $ckey = mimeTypeMatch( $type, $cprefs );
2312 if ( $ckey ) {
2313 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
2314 }
2315 }
2316 }
2317
2318 foreach ( array_keys( $cprefs ) as $type ) {
2319 $parts = explode( '/', $type );
2320 if ( $parts[1] != '*' && !array_key_exists( $type, $sprefs ) ) {
2321 $skey = mimeTypeMatch( $type, $sprefs );
2322 if ( $skey ) {
2323 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
2324 }
2325 }
2326 }
2327
2328 $bestq = 0;
2329 $besttype = null;
2330
2331 foreach ( array_keys( $combine ) as $type ) {
2332 if ( $combine[$type] > $bestq ) {
2333 $besttype = $type;
2334 $bestq = $combine[$type];
2335 }
2336 }
2337
2338 return $besttype;
2339 }
2340
2341 /**
2342 * Reference-counted warning suppression
2343 *
2344 * @param bool $end
2345 */
2346 function wfSuppressWarnings( $end = false ) {
2347 static $suppressCount = 0;
2348 static $originalLevel = false;
2349
2350 if ( $end ) {
2351 if ( $suppressCount ) {
2352 --$suppressCount;
2353 if ( !$suppressCount ) {
2354 error_reporting( $originalLevel );
2355 }
2356 }
2357 } else {
2358 if ( !$suppressCount ) {
2359 $originalLevel = error_reporting( E_ALL & ~(
2360 E_WARNING |
2361 E_NOTICE |
2362 E_USER_WARNING |
2363 E_USER_NOTICE |
2364 E_DEPRECATED |
2365 E_USER_DEPRECATED |
2366 E_STRICT
2367 ) );
2368 }
2369 ++$suppressCount;
2370 }
2371 }
2372
2373 /**
2374 * Restore error level to previous value
2375 */
2376 function wfRestoreWarnings() {
2377 wfSuppressWarnings( true );
2378 }
2379
2380 # Autodetect, convert and provide timestamps of various types
2381
2382 /**
2383 * Unix time - the number of seconds since 1970-01-01 00:00:00 UTC
2384 */
2385 define( 'TS_UNIX', 0 );
2386
2387 /**
2388 * MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
2389 */
2390 define( 'TS_MW', 1 );
2391
2392 /**
2393 * MySQL DATETIME (YYYY-MM-DD HH:MM:SS)
2394 */
2395 define( 'TS_DB', 2 );
2396
2397 /**
2398 * RFC 2822 format, for E-mail and HTTP headers
2399 */
2400 define( 'TS_RFC2822', 3 );
2401
2402 /**
2403 * ISO 8601 format with no timezone: 1986-02-09T20:00:00Z
2404 *
2405 * This is used by Special:Export
2406 */
2407 define( 'TS_ISO_8601', 4 );
2408
2409 /**
2410 * An Exif timestamp (YYYY:MM:DD HH:MM:SS)
2411 *
2412 * @see http://exif.org/Exif2-2.PDF The Exif 2.2 spec, see page 28 for the
2413 * DateTime tag and page 36 for the DateTimeOriginal and
2414 * DateTimeDigitized tags.
2415 */
2416 define( 'TS_EXIF', 5 );
2417
2418 /**
2419 * Oracle format time.
2420 */
2421 define( 'TS_ORACLE', 6 );
2422
2423 /**
2424 * Postgres format time.
2425 */
2426 define( 'TS_POSTGRES', 7 );
2427
2428 /**
2429 * ISO 8601 basic format with no timezone: 19860209T200000Z. This is used by ResourceLoader
2430 */
2431 define( 'TS_ISO_8601_BASIC', 9 );
2432
2433 /**
2434 * Get a timestamp string in one of various formats
2435 *
2436 * @param mixed $outputtype A timestamp in one of the supported formats, the
2437 * function will autodetect which format is supplied and act accordingly.
2438 * @param mixed $ts Optional timestamp to convert, default 0 for the current time
2439 * @return string|bool String / false The same date in the format specified in $outputtype or false
2440 */
2441 function wfTimestamp( $outputtype = TS_UNIX, $ts = 0 ) {
2442 try {
2443 $timestamp = new MWTimestamp( $ts );
2444 return $timestamp->getTimestamp( $outputtype );
2445 } catch ( TimestampException $e ) {
2446 wfDebug( "wfTimestamp() fed bogus time value: TYPE=$outputtype; VALUE=$ts\n" );
2447 return false;
2448 }
2449 }
2450
2451 /**
2452 * Return a formatted timestamp, or null if input is null.
2453 * For dealing with nullable timestamp columns in the database.
2454 *
2455 * @param int $outputtype
2456 * @param string $ts
2457 * @return string
2458 */
2459 function wfTimestampOrNull( $outputtype = TS_UNIX, $ts = null ) {
2460 if ( is_null( $ts ) ) {
2461 return null;
2462 } else {
2463 return wfTimestamp( $outputtype, $ts );
2464 }
2465 }
2466
2467 /**
2468 * Convenience function; returns MediaWiki timestamp for the present time.
2469 *
2470 * @return string
2471 */
2472 function wfTimestampNow() {
2473 # return NOW
2474 return wfTimestamp( TS_MW, time() );
2475 }
2476
2477 /**
2478 * Check if the operating system is Windows
2479 *
2480 * @return bool True if it's Windows, false otherwise.
2481 */
2482 function wfIsWindows() {
2483 static $isWindows = null;
2484 if ( $isWindows === null ) {
2485 $isWindows = substr( php_uname(), 0, 7 ) == 'Windows';
2486 }
2487 return $isWindows;
2488 }
2489
2490 /**
2491 * Check if we are running under HHVM
2492 *
2493 * @return bool
2494 */
2495 function wfIsHHVM() {
2496 return defined( 'HHVM_VERSION' );
2497 }
2498
2499 /**
2500 * Swap two variables
2501 *
2502 * @deprecated since 1.24
2503 * @param mixed $x
2504 * @param mixed $y
2505 */
2506 function swap( &$x, &$y ) {
2507 wfDeprecated( __FUNCTION__, '1.24' );
2508 $z = $x;
2509 $x = $y;
2510 $y = $z;
2511 }
2512
2513 /**
2514 * Tries to get the system directory for temporary files. First
2515 * $wgTmpDirectory is checked, and then the TMPDIR, TMP, and TEMP
2516 * environment variables are then checked in sequence, and if none are
2517 * set try sys_get_temp_dir().
2518 *
2519 * NOTE: When possible, use instead the tmpfile() function to create
2520 * temporary files to avoid race conditions on file creation, etc.
2521 *
2522 * @return string
2523 */
2524 function wfTempDir() {
2525 global $wgTmpDirectory;
2526
2527 if ( $wgTmpDirectory !== false ) {
2528 return $wgTmpDirectory;
2529 }
2530
2531 $tmpDir = array_map( "getenv", array( 'TMPDIR', 'TMP', 'TEMP' ) );
2532
2533 foreach ( $tmpDir as $tmp ) {
2534 if ( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
2535 return $tmp;
2536 }
2537 }
2538 return sys_get_temp_dir();
2539 }
2540
2541 /**
2542 * Make directory, and make all parent directories if they don't exist
2543 *
2544 * @param string $dir Full path to directory to create
2545 * @param int $mode Chmod value to use, default is $wgDirectoryMode
2546 * @param string $caller Optional caller param for debugging.
2547 * @throws MWException
2548 * @return bool
2549 */
2550 function wfMkdirParents( $dir, $mode = null, $caller = null ) {
2551 global $wgDirectoryMode;
2552
2553 if ( FileBackend::isStoragePath( $dir ) ) { // sanity
2554 throw new MWException( __FUNCTION__ . " given storage path '$dir'." );
2555 }
2556
2557 if ( !is_null( $caller ) ) {
2558 wfDebug( "$caller: called wfMkdirParents($dir)\n" );
2559 }
2560
2561 if ( strval( $dir ) === '' || ( file_exists( $dir ) && is_dir( $dir ) ) ) {
2562 return true;
2563 }
2564
2565 $dir = str_replace( array( '\\', '/' ), DIRECTORY_SEPARATOR, $dir );
2566
2567 if ( is_null( $mode ) ) {
2568 $mode = $wgDirectoryMode;
2569 }
2570
2571 // Turn off the normal warning, we're doing our own below
2572 wfSuppressWarnings();
2573 $ok = mkdir( $dir, $mode, true ); // PHP5 <3
2574 wfRestoreWarnings();
2575
2576 if ( !$ok ) {
2577 //directory may have been created on another request since we last checked
2578 if ( is_dir( $dir ) ) {
2579 return true;
2580 }
2581
2582 // PHP doesn't report the path in its warning message, so add our own to aid in diagnosis.
2583 wfLogWarning( sprintf( "failed to mkdir \"%s\" mode 0%o", $dir, $mode ) );
2584 }
2585 return $ok;
2586 }
2587
2588 /**
2589 * Remove a directory and all its content.
2590 * Does not hide error.
2591 * @param string $dir
2592 */
2593 function wfRecursiveRemoveDir( $dir ) {
2594 wfDebug( __FUNCTION__ . "( $dir )\n" );
2595 // taken from http://de3.php.net/manual/en/function.rmdir.php#98622
2596 if ( is_dir( $dir ) ) {
2597 $objects = scandir( $dir );
2598 foreach ( $objects as $object ) {
2599 if ( $object != "." && $object != ".." ) {
2600 if ( filetype( $dir . '/' . $object ) == "dir" ) {
2601 wfRecursiveRemoveDir( $dir . '/' . $object );
2602 } else {
2603 unlink( $dir . '/' . $object );
2604 }
2605 }
2606 }
2607 reset( $objects );
2608 rmdir( $dir );
2609 }
2610 }
2611
2612 /**
2613 * @param int $nr The number to format
2614 * @param int $acc The number of digits after the decimal point, default 2
2615 * @param bool $round Whether or not to round the value, default true
2616 * @return string
2617 */
2618 function wfPercent( $nr, $acc = 2, $round = true ) {
2619 $ret = sprintf( "%.${acc}f", $nr );
2620 return $round ? round( $ret, $acc ) . '%' : "$ret%";
2621 }
2622
2623 /**
2624 * Safety wrapper around ini_get() for boolean settings.
2625 * The values returned from ini_get() are pre-normalized for settings
2626 * set via php.ini or php_flag/php_admin_flag... but *not*
2627 * for those set via php_value/php_admin_value.
2628 *
2629 * It's fairly common for people to use php_value instead of php_flag,
2630 * which can leave you with an 'off' setting giving a false positive
2631 * for code that just takes the ini_get() return value as a boolean.
2632 *
2633 * To make things extra interesting, setting via php_value accepts
2634 * "true" and "yes" as true, but php.ini and php_flag consider them false. :)
2635 * Unrecognized values go false... again opposite PHP's own coercion
2636 * from string to bool.
2637 *
2638 * Luckily, 'properly' set settings will always come back as '0' or '1',
2639 * so we only have to worry about them and the 'improper' settings.
2640 *
2641 * I frickin' hate PHP... :P
2642 *
2643 * @param string $setting
2644 * @return bool
2645 */
2646 function wfIniGetBool( $setting ) {
2647 $val = strtolower( ini_get( $setting ) );
2648 // 'on' and 'true' can't have whitespace around them, but '1' can.
2649 return $val == 'on'
2650 || $val == 'true'
2651 || $val == 'yes'
2652 || preg_match( "/^\s*[+-]?0*[1-9]/", $val ); // approx C atoi() function
2653 }
2654
2655 /**
2656 * Windows-compatible version of escapeshellarg()
2657 * Windows doesn't recognise single-quotes in the shell, but the escapeshellarg()
2658 * function puts single quotes in regardless of OS.
2659 *
2660 * Also fixes the locale problems on Linux in PHP 5.2.6+ (bug backported to
2661 * earlier distro releases of PHP)
2662 *
2663 * @param string $args,...
2664 * @return string
2665 */
2666 function wfEscapeShellArg( /*...*/ ) {
2667 wfInitShellLocale();
2668
2669 $args = func_get_args();
2670 $first = true;
2671 $retVal = '';
2672 foreach ( $args as $arg ) {
2673 if ( !$first ) {
2674 $retVal .= ' ';
2675 } else {
2676 $first = false;
2677 }
2678
2679 if ( wfIsWindows() ) {
2680 // Escaping for an MSVC-style command line parser and CMD.EXE
2681 // @codingStandardsIgnoreStart For long URLs
2682 // Refs:
2683 // * http://web.archive.org/web/20020708081031/http://mailman.lyra.org/pipermail/scite-interest/2002-March/000436.html
2684 // * http://technet.microsoft.com/en-us/library/cc723564.aspx
2685 // * Bug #13518
2686 // * CR r63214
2687 // Double the backslashes before any double quotes. Escape the double quotes.
2688 // @codingStandardsIgnoreEnd
2689 $tokens = preg_split( '/(\\\\*")/', $arg, -1, PREG_SPLIT_DELIM_CAPTURE );
2690 $arg = '';
2691 $iteration = 0;
2692 foreach ( $tokens as $token ) {
2693 if ( $iteration % 2 == 1 ) {
2694 // Delimiter, a double quote preceded by zero or more slashes
2695 $arg .= str_replace( '\\', '\\\\', substr( $token, 0, -1 ) ) . '\\"';
2696 } elseif ( $iteration % 4 == 2 ) {
2697 // ^ in $token will be outside quotes, need to be escaped
2698 $arg .= str_replace( '^', '^^', $token );
2699 } else { // $iteration % 4 == 0
2700 // ^ in $token will appear inside double quotes, so leave as is
2701 $arg .= $token;
2702 }
2703 $iteration++;
2704 }
2705 // Double the backslashes before the end of the string, because
2706 // we will soon add a quote
2707 $m = array();
2708 if ( preg_match( '/^(.*?)(\\\\+)$/', $arg, $m ) ) {
2709 $arg = $m[1] . str_replace( '\\', '\\\\', $m[2] );
2710 }
2711
2712 // Add surrounding quotes
2713 $retVal .= '"' . $arg . '"';
2714 } else {
2715 $retVal .= escapeshellarg( $arg );
2716 }
2717 }
2718 return $retVal;
2719 }
2720
2721 /**
2722 * Check if wfShellExec() is effectively disabled via php.ini config
2723 *
2724 * @return bool|string False or one of (safemode,disabled)
2725 * @since 1.22
2726 */
2727 function wfShellExecDisabled() {
2728 static $disabled = null;
2729 if ( is_null( $disabled ) ) {
2730 if ( wfIniGetBool( 'safe_mode' ) ) {
2731 wfDebug( "wfShellExec can't run in safe_mode, PHP's exec functions are too broken.\n" );
2732 $disabled = 'safemode';
2733 } elseif ( !function_exists( 'proc_open' ) ) {
2734 wfDebug( "proc_open() is disabled\n" );
2735 $disabled = 'disabled';
2736 } else {
2737 $disabled = false;
2738 }
2739 }
2740 return $disabled;
2741 }
2742
2743 /**
2744 * Execute a shell command, with time and memory limits mirrored from the PHP
2745 * configuration if supported.
2746 *
2747 * @param string|string[] $cmd If string, a properly shell-escaped command line,
2748 * or an array of unescaped arguments, in which case each value will be escaped
2749 * Example: [ 'convert', '-font', 'font name' ] would produce "'convert' '-font' 'font name'"
2750 * @param null|mixed &$retval Optional, will receive the program's exit code.
2751 * (non-zero is usually failure). If there is an error from
2752 * read, select, or proc_open(), this will be set to -1.
2753 * @param array $environ Optional environment variables which should be
2754 * added to the executed command environment.
2755 * @param array $limits Optional array with limits(filesize, memory, time, walltime)
2756 * this overwrites the global wgMaxShell* limits.
2757 * @param array $options Array of options:
2758 * - duplicateStderr: Set this to true to duplicate stderr to stdout,
2759 * including errors from limit.sh
2760 * - profileMethod: By default this function will profile based on the calling
2761 * method. Set this to a string for an alternative method to profile from
2762 *
2763 * @return string Collected stdout as a string
2764 */
2765 function wfShellExec( $cmd, &$retval = null, $environ = array(),
2766 $limits = array(), $options = array()
2767 ) {
2768 global $IP, $wgMaxShellMemory, $wgMaxShellFileSize, $wgMaxShellTime,
2769 $wgMaxShellWallClockTime, $wgShellCgroup;
2770
2771 $disabled = wfShellExecDisabled();
2772 if ( $disabled ) {
2773 $retval = 1;
2774 return $disabled == 'safemode' ?
2775 'Unable to run external programs in safe mode.' :
2776 'Unable to run external programs, proc_open() is disabled.';
2777 }
2778
2779 $includeStderr = isset( $options['duplicateStderr'] ) && $options['duplicateStderr'];
2780 $profileMethod = isset( $options['profileMethod'] ) ? $options['profileMethod'] : wfGetCaller();
2781
2782 wfInitShellLocale();
2783
2784 $envcmd = '';
2785 foreach ( $environ as $k => $v ) {
2786 if ( wfIsWindows() ) {
2787 /* Surrounding a set in quotes (method used by wfEscapeShellArg) makes the quotes themselves
2788 * appear in the environment variable, so we must use carat escaping as documented in
2789 * http://technet.microsoft.com/en-us/library/cc723564.aspx
2790 * Note however that the quote isn't listed there, but is needed, and the parentheses
2791 * are listed there but doesn't appear to need it.
2792 */
2793 $envcmd .= "set $k=" . preg_replace( '/([&|()<>^"])/', '^\\1', $v ) . '&& ';
2794 } else {
2795 /* Assume this is a POSIX shell, thus required to accept variable assignments before the command
2796 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_09_01
2797 */
2798 $envcmd .= "$k=" . escapeshellarg( $v ) . ' ';
2799 }
2800 }
2801 if ( is_array( $cmd ) ) {
2802 // Command line may be given as an array, escape each value and glue them together with a space
2803 $cmdVals = array();
2804 foreach ( $cmd as $val ) {
2805 $cmdVals[] = wfEscapeShellArg( $val );
2806 }
2807 $cmd = implode( ' ', $cmdVals );
2808 }
2809
2810 $cmd = $envcmd . $cmd;
2811
2812 $useLogPipe = false;
2813 if ( is_executable( '/bin/bash' ) ) {
2814 $time = intval ( isset( $limits['time'] ) ? $limits['time'] : $wgMaxShellTime );
2815 if ( isset( $limits['walltime'] ) ) {
2816 $wallTime = intval( $limits['walltime'] );
2817 } elseif ( isset( $limits['time'] ) ) {
2818 $wallTime = $time;
2819 } else {
2820 $wallTime = intval( $wgMaxShellWallClockTime );
2821 }
2822 $mem = intval ( isset( $limits['memory'] ) ? $limits['memory'] : $wgMaxShellMemory );
2823 $filesize = intval ( isset( $limits['filesize'] ) ? $limits['filesize'] : $wgMaxShellFileSize );
2824
2825 if ( $time > 0 || $mem > 0 || $filesize > 0 || $wallTime > 0 ) {
2826 $cmd = '/bin/bash ' . escapeshellarg( "$IP/includes/limit.sh" ) . ' ' .
2827 escapeshellarg( $cmd ) . ' ' .
2828 escapeshellarg(
2829 "MW_INCLUDE_STDERR=" . ( $includeStderr ? '1' : '' ) . ';' .
2830 "MW_CPU_LIMIT=$time; " .
2831 'MW_CGROUP=' . escapeshellarg( $wgShellCgroup ) . '; ' .
2832 "MW_MEM_LIMIT=$mem; " .
2833 "MW_FILE_SIZE_LIMIT=$filesize; " .
2834 "MW_WALL_CLOCK_LIMIT=$wallTime; " .
2835 "MW_USE_LOG_PIPE=yes"
2836 );
2837 $useLogPipe = true;
2838 } elseif ( $includeStderr ) {
2839 $cmd .= ' 2>&1';
2840 }
2841 } elseif ( $includeStderr ) {
2842 $cmd .= ' 2>&1';
2843 }
2844 wfDebug( "wfShellExec: $cmd\n" );
2845
2846 $desc = array(
2847 0 => array( 'file', 'php://stdin', 'r' ),
2848 1 => array( 'pipe', 'w' ),
2849 2 => array( 'file', 'php://stderr', 'w' ) );
2850 if ( $useLogPipe ) {
2851 $desc[3] = array( 'pipe', 'w' );
2852 }
2853 $pipes = null;
2854 $scoped = Profiler::instance()->scopedProfileIn( __FUNCTION__ . '-' . $profileMethod );
2855 $proc = proc_open( $cmd, $desc, $pipes );
2856 if ( !$proc ) {
2857 wfDebugLog( 'exec', "proc_open() failed: $cmd" );
2858 $retval = -1;
2859 return '';
2860 }
2861 $outBuffer = $logBuffer = '';
2862 $emptyArray = array();
2863 $status = false;
2864 $logMsg = false;
2865
2866 // According to the documentation, it is possible for stream_select()
2867 // to fail due to EINTR. I haven't managed to induce this in testing
2868 // despite sending various signals. If it did happen, the error
2869 // message would take the form:
2870 //
2871 // stream_select(): unable to select [4]: Interrupted system call (max_fd=5)
2872 //
2873 // where [4] is the value of the macro EINTR and "Interrupted system
2874 // call" is string which according to the Linux manual is "possibly"
2875 // localised according to LC_MESSAGES.
2876 $eintr = defined( 'SOCKET_EINTR' ) ? SOCKET_EINTR : 4;
2877 $eintrMessage = "stream_select(): unable to select [$eintr]";
2878
2879 // Build a table mapping resource IDs to pipe FDs to work around a
2880 // PHP 5.3 issue in which stream_select() does not preserve array keys
2881 // <https://bugs.php.net/bug.php?id=53427>.
2882 $fds = array();
2883 foreach ( $pipes as $fd => $pipe ) {
2884 $fds[(int)$pipe] = $fd;
2885 }
2886
2887 $running = true;
2888 $timeout = null;
2889 $numReadyPipes = 0;
2890
2891 while ( $running === true || $numReadyPipes !== 0 ) {
2892 if ( $running ) {
2893 $status = proc_get_status( $proc );
2894 // If the process has terminated, switch to nonblocking selects
2895 // for getting any data still waiting to be read.
2896 if ( !$status['running'] ) {
2897 $running = false;
2898 $timeout = 0;
2899 }
2900 }
2901
2902 $readyPipes = $pipes;
2903
2904 // Clear last error
2905 // @codingStandardsIgnoreStart Generic.PHP.NoSilencedErrors.Discouraged
2906 @trigger_error( '' );
2907 $numReadyPipes = @stream_select( $readyPipes, $emptyArray, $emptyArray, $timeout );
2908 if ( $numReadyPipes === false ) {
2909 // @codingStandardsIgnoreEnd
2910 $error = error_get_last();
2911 if ( strncmp( $error['message'], $eintrMessage, strlen( $eintrMessage ) ) == 0 ) {
2912 continue;
2913 } else {
2914 trigger_error( $error['message'], E_USER_WARNING );
2915 $logMsg = $error['message'];
2916 break;
2917 }
2918 }
2919 foreach ( $readyPipes as $pipe ) {
2920 $block = fread( $pipe, 65536 );
2921 $fd = $fds[(int)$pipe];
2922 if ( $block === '' ) {
2923 // End of file
2924 fclose( $pipes[$fd] );
2925 unset( $pipes[$fd] );
2926 if ( !$pipes ) {
2927 break 2;
2928 }
2929 } elseif ( $block === false ) {
2930 // Read error
2931 $logMsg = "Error reading from pipe";
2932 break 2;
2933 } elseif ( $fd == 1 ) {
2934 // From stdout
2935 $outBuffer .= $block;
2936 } elseif ( $fd == 3 ) {
2937 // From log FD
2938 $logBuffer .= $block;
2939 if ( strpos( $block, "\n" ) !== false ) {
2940 $lines = explode( "\n", $logBuffer );
2941 $logBuffer = array_pop( $lines );
2942 foreach ( $lines as $line ) {
2943 wfDebugLog( 'exec', $line );
2944 }
2945 }
2946 }
2947 }
2948 }
2949
2950 foreach ( $pipes as $pipe ) {
2951 fclose( $pipe );
2952 }
2953
2954 // Use the status previously collected if possible, since proc_get_status()
2955 // just calls waitpid() which will not return anything useful the second time.
2956 if ( $running ) {
2957 $status = proc_get_status( $proc );
2958 }
2959
2960 if ( $logMsg !== false ) {
2961 // Read/select error
2962 $retval = -1;
2963 proc_close( $proc );
2964 } elseif ( $status['signaled'] ) {
2965 $logMsg = "Exited with signal {$status['termsig']}";
2966 $retval = 128 + $status['termsig'];
2967 proc_close( $proc );
2968 } else {
2969 if ( $status['running'] ) {
2970 $retval = proc_close( $proc );
2971 } else {
2972 $retval = $status['exitcode'];
2973 proc_close( $proc );
2974 }
2975 if ( $retval == 127 ) {
2976 $logMsg = "Possibly missing executable file";
2977 } elseif ( $retval >= 129 && $retval <= 192 ) {
2978 $logMsg = "Probably exited with signal " . ( $retval - 128 );
2979 }
2980 }
2981
2982 if ( $logMsg !== false ) {
2983 wfDebugLog( 'exec', "$logMsg: $cmd" );
2984 }
2985
2986 return $outBuffer;
2987 }
2988
2989 /**
2990 * Execute a shell command, returning both stdout and stderr. Convenience
2991 * function, as all the arguments to wfShellExec can become unwieldy.
2992 *
2993 * @note This also includes errors from limit.sh, e.g. if $wgMaxShellFileSize is exceeded.
2994 * @param string|string[] $cmd If string, a properly shell-escaped command line,
2995 * or an array of unescaped arguments, in which case each value will be escaped
2996 * Example: [ 'convert', '-font', 'font name' ] would produce "'convert' '-font' 'font name'"
2997 * @param null|mixed &$retval Optional, will receive the program's exit code.
2998 * (non-zero is usually failure)
2999 * @param array $environ Optional environment variables which should be
3000 * added to the executed command environment.
3001 * @param array $limits Optional array with limits(filesize, memory, time, walltime)
3002 * this overwrites the global wgMaxShell* limits.
3003 * @return string Collected stdout and stderr as a string
3004 */
3005 function wfShellExecWithStderr( $cmd, &$retval = null, $environ = array(), $limits = array() ) {
3006 return wfShellExec( $cmd, $retval, $environ, $limits,
3007 array( 'duplicateStderr' => true, 'profileMethod' => wfGetCaller() ) );
3008 }
3009
3010 /**
3011 * Workaround for http://bugs.php.net/bug.php?id=45132
3012 * escapeshellarg() destroys non-ASCII characters if LANG is not a UTF-8 locale
3013 */
3014 function wfInitShellLocale() {
3015 static $done = false;
3016 if ( $done ) {
3017 return;
3018 }
3019 $done = true;
3020 global $wgShellLocale;
3021 if ( !wfIniGetBool( 'safe_mode' ) ) {
3022 putenv( "LC_CTYPE=$wgShellLocale" );
3023 setlocale( LC_CTYPE, $wgShellLocale );
3024 }
3025 }
3026
3027 /**
3028 * Alias to wfShellWikiCmd()
3029 *
3030 * @see wfShellWikiCmd()
3031 */
3032 function wfShellMaintenanceCmd( $script, array $parameters = array(), array $options = array() ) {
3033 return wfShellWikiCmd( $script, $parameters, $options );
3034 }
3035
3036 /**
3037 * Generate a shell-escaped command line string to run a MediaWiki cli script.
3038 * Note that $parameters should be a flat array and an option with an argument
3039 * should consist of two consecutive items in the array (do not use "--option value").
3040 *
3041 * @param string $script MediaWiki cli script path
3042 * @param array $parameters Arguments and options to the script
3043 * @param array $options Associative array of options:
3044 * 'php': The path to the php executable
3045 * 'wrapper': Path to a PHP wrapper to handle the maintenance script
3046 * @return string
3047 */
3048 function wfShellWikiCmd( $script, array $parameters = array(), array $options = array() ) {
3049 global $wgPhpCli;
3050 // Give site config file a chance to run the script in a wrapper.
3051 // The caller may likely want to call wfBasename() on $script.
3052 Hooks::run( 'wfShellWikiCmd', array( &$script, &$parameters, &$options ) );
3053 $cmd = isset( $options['php'] ) ? array( $options['php'] ) : array( $wgPhpCli );
3054 if ( isset( $options['wrapper'] ) ) {
3055 $cmd[] = $options['wrapper'];
3056 }
3057 $cmd[] = $script;
3058 // Escape each parameter for shell
3059 return implode( " ", array_map( 'wfEscapeShellArg', array_merge( $cmd, $parameters ) ) );
3060 }
3061
3062 /**
3063 * wfMerge attempts to merge differences between three texts.
3064 * Returns true for a clean merge and false for failure or a conflict.
3065 *
3066 * @param string $old
3067 * @param string $mine
3068 * @param string $yours
3069 * @param string $result
3070 * @return bool
3071 */
3072 function wfMerge( $old, $mine, $yours, &$result ) {
3073 global $wgDiff3;
3074
3075 # This check may also protect against code injection in
3076 # case of broken installations.
3077 wfSuppressWarnings();
3078 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
3079 wfRestoreWarnings();
3080
3081 if ( !$haveDiff3 ) {
3082 wfDebug( "diff3 not found\n" );
3083 return false;
3084 }
3085
3086 # Make temporary files
3087 $td = wfTempDir();
3088 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
3089 $mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
3090 $yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
3091
3092 # NOTE: diff3 issues a warning to stderr if any of the files does not end with
3093 # a newline character. To avoid this, we normalize the trailing whitespace before
3094 # creating the diff.
3095
3096 fwrite( $oldtextFile, rtrim( $old ) . "\n" );
3097 fclose( $oldtextFile );
3098 fwrite( $mytextFile, rtrim( $mine ) . "\n" );
3099 fclose( $mytextFile );
3100 fwrite( $yourtextFile, rtrim( $yours ) . "\n" );
3101 fclose( $yourtextFile );
3102
3103 # Check for a conflict
3104 $cmd = wfEscapeShellArg( $wgDiff3 ) . ' -a --overlap-only ' .
3105 wfEscapeShellArg( $mytextName ) . ' ' .
3106 wfEscapeShellArg( $oldtextName ) . ' ' .
3107 wfEscapeShellArg( $yourtextName );
3108 $handle = popen( $cmd, 'r' );
3109
3110 if ( fgets( $handle, 1024 ) ) {
3111 $conflict = true;
3112 } else {
3113 $conflict = false;
3114 }
3115 pclose( $handle );
3116
3117 # Merge differences
3118 $cmd = wfEscapeShellArg( $wgDiff3 ) . ' -a -e --merge ' .
3119 wfEscapeShellArg( $mytextName, $oldtextName, $yourtextName );
3120 $handle = popen( $cmd, 'r' );
3121 $result = '';
3122 do {
3123 $data = fread( $handle, 8192 );
3124 if ( strlen( $data ) == 0 ) {
3125 break;
3126 }
3127 $result .= $data;
3128 } while ( true );
3129 pclose( $handle );
3130 unlink( $mytextName );
3131 unlink( $oldtextName );
3132 unlink( $yourtextName );
3133
3134 if ( $result === '' && $old !== '' && !$conflict ) {
3135 wfDebug( "Unexpected null result from diff3. Command: $cmd\n" );
3136 $conflict = true;
3137 }
3138 return !$conflict;
3139 }
3140
3141 /**
3142 * Returns unified plain-text diff of two texts.
3143 * Useful for machine processing of diffs.
3144 *
3145 * @param string $before The text before the changes.
3146 * @param string $after The text after the changes.
3147 * @param string $params Command-line options for the diff command.
3148 * @return string Unified diff of $before and $after
3149 */
3150 function wfDiff( $before, $after, $params = '-u' ) {
3151 if ( $before == $after ) {
3152 return '';
3153 }
3154
3155 global $wgDiff;
3156 wfSuppressWarnings();
3157 $haveDiff = $wgDiff && file_exists( $wgDiff );
3158 wfRestoreWarnings();
3159
3160 # This check may also protect against code injection in
3161 # case of broken installations.
3162 if ( !$haveDiff ) {
3163 wfDebug( "diff executable not found\n" );
3164 $diffs = new Diff( explode( "\n", $before ), explode( "\n", $after ) );
3165 $format = new UnifiedDiffFormatter();
3166 return $format->format( $diffs );
3167 }
3168
3169 # Make temporary files
3170 $td = wfTempDir();
3171 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
3172 $newtextFile = fopen( $newtextName = tempnam( $td, 'merge-your-' ), 'w' );
3173
3174 fwrite( $oldtextFile, $before );
3175 fclose( $oldtextFile );
3176 fwrite( $newtextFile, $after );
3177 fclose( $newtextFile );
3178
3179 // Get the diff of the two files
3180 $cmd = "$wgDiff " . $params . ' ' . wfEscapeShellArg( $oldtextName, $newtextName );
3181
3182 $h = popen( $cmd, 'r' );
3183
3184 $diff = '';
3185
3186 do {
3187 $data = fread( $h, 8192 );
3188 if ( strlen( $data ) == 0 ) {
3189 break;
3190 }
3191 $diff .= $data;
3192 } while ( true );
3193
3194 // Clean up
3195 pclose( $h );
3196 unlink( $oldtextName );
3197 unlink( $newtextName );
3198
3199 // Kill the --- and +++ lines. They're not useful.
3200 $diff_lines = explode( "\n", $diff );
3201 if ( isset( $diff_lines[0] ) && strpos( $diff_lines[0], '---' ) === 0 ) {
3202 unset( $diff_lines[0] );
3203 }
3204 if ( isset( $diff_lines[1] ) && strpos( $diff_lines[1], '+++' ) === 0 ) {
3205 unset( $diff_lines[1] );
3206 }
3207
3208 $diff = implode( "\n", $diff_lines );
3209
3210 return $diff;
3211 }
3212
3213 /**
3214 * This function works like "use VERSION" in Perl, the program will die with a
3215 * backtrace if the current version of PHP is less than the version provided
3216 *
3217 * This is useful for extensions which due to their nature are not kept in sync
3218 * with releases, and might depend on other versions of PHP than the main code
3219 *
3220 * Note: PHP might die due to parsing errors in some cases before it ever
3221 * manages to call this function, such is life
3222 *
3223 * @see perldoc -f use
3224 *
3225 * @param string|int|float $req_ver The version to check, can be a string, an integer, or a float
3226 * @throws MWException
3227 */
3228 function wfUsePHP( $req_ver ) {
3229 $php_ver = PHP_VERSION;
3230
3231 if ( version_compare( $php_ver, (string)$req_ver, '<' ) ) {
3232 throw new MWException( "PHP $req_ver required--this is only $php_ver" );
3233 }
3234 }
3235
3236 /**
3237 * This function works like "use VERSION" in Perl except it checks the version
3238 * of MediaWiki, the program will die with a backtrace if the current version
3239 * of MediaWiki is less than the version provided.
3240 *
3241 * This is useful for extensions which due to their nature are not kept in sync
3242 * with releases
3243 *
3244 * Note: Due to the behavior of PHP's version_compare() which is used in this
3245 * function, if you want to allow the 'wmf' development versions add a 'c' (or
3246 * any single letter other than 'a', 'b' or 'p') as a post-fix to your
3247 * targeted version number. For example if you wanted to allow any variation
3248 * of 1.22 use `wfUseMW( '1.22c' )`. Using an 'a' or 'b' instead of 'c' will
3249 * not result in the same comparison due to the internal logic of
3250 * version_compare().
3251 *
3252 * @see perldoc -f use
3253 *
3254 * @param string|int|float $req_ver The version to check, can be a string, an integer, or a float
3255 * @throws MWException
3256 */
3257 function wfUseMW( $req_ver ) {
3258 global $wgVersion;
3259
3260 if ( version_compare( $wgVersion, (string)$req_ver, '<' ) ) {
3261 throw new MWException( "MediaWiki $req_ver required--this is only $wgVersion" );
3262 }
3263 }
3264
3265 /**
3266 * Return the final portion of a pathname.
3267 * Reimplemented because PHP5's "basename()" is buggy with multibyte text.
3268 * http://bugs.php.net/bug.php?id=33898
3269 *
3270 * PHP's basename() only considers '\' a pathchar on Windows and Netware.
3271 * We'll consider it so always, as we don't want '\s' in our Unix paths either.
3272 *
3273 * @param string $path
3274 * @param string $suffix String to remove if present
3275 * @return string
3276 */
3277 function wfBaseName( $path, $suffix = '' ) {
3278 if ( $suffix == '' ) {
3279 $encSuffix = '';
3280 } else {
3281 $encSuffix = '(?:' . preg_quote( $suffix, '#' ) . ')?';
3282 }
3283
3284 $matches = array();
3285 if ( preg_match( "#([^/\\\\]*?){$encSuffix}[/\\\\]*$#", $path, $matches ) ) {
3286 return $matches[1];
3287 } else {
3288 return '';
3289 }
3290 }
3291
3292 /**
3293 * Generate a relative path name to the given file.
3294 * May explode on non-matching case-insensitive paths,
3295 * funky symlinks, etc.
3296 *
3297 * @param string $path Absolute destination path including target filename
3298 * @param string $from Absolute source path, directory only
3299 * @return string
3300 */
3301 function wfRelativePath( $path, $from ) {
3302 // Normalize mixed input on Windows...
3303 $path = str_replace( '/', DIRECTORY_SEPARATOR, $path );
3304 $from = str_replace( '/', DIRECTORY_SEPARATOR, $from );
3305
3306 // Trim trailing slashes -- fix for drive root
3307 $path = rtrim( $path, DIRECTORY_SEPARATOR );
3308 $from = rtrim( $from, DIRECTORY_SEPARATOR );
3309
3310 $pieces = explode( DIRECTORY_SEPARATOR, dirname( $path ) );
3311 $against = explode( DIRECTORY_SEPARATOR, $from );
3312
3313 if ( $pieces[0] !== $against[0] ) {
3314 // Non-matching Windows drive letters?
3315 // Return a full path.
3316 return $path;
3317 }
3318
3319 // Trim off common prefix
3320 while ( count( $pieces ) && count( $against )
3321 && $pieces[0] == $against[0] ) {
3322 array_shift( $pieces );
3323 array_shift( $against );
3324 }
3325
3326 // relative dots to bump us to the parent
3327 while ( count( $against ) ) {
3328 array_unshift( $pieces, '..' );
3329 array_shift( $against );
3330 }
3331
3332 array_push( $pieces, wfBaseName( $path ) );
3333
3334 return implode( DIRECTORY_SEPARATOR, $pieces );
3335 }
3336
3337 /**
3338 * Convert an arbitrarily-long digit string from one numeric base
3339 * to another, optionally zero-padding to a minimum column width.
3340 *
3341 * Supports base 2 through 36; digit values 10-36 are represented
3342 * as lowercase letters a-z. Input is case-insensitive.
3343 *
3344 * @param string $input Input number
3345 * @param int $sourceBase Base of the input number
3346 * @param int $destBase Desired base of the output
3347 * @param int $pad Minimum number of digits in the output (pad with zeroes)
3348 * @param bool $lowercase Whether to output in lowercase or uppercase
3349 * @param string $engine Either "gmp", "bcmath", or "php"
3350 * @return string|bool The output number as a string, or false on error
3351 */
3352 function wfBaseConvert( $input, $sourceBase, $destBase, $pad = 1,
3353 $lowercase = true, $engine = 'auto'
3354 ) {
3355 $input = (string)$input;
3356 if (
3357 $sourceBase < 2 ||
3358 $sourceBase > 36 ||
3359 $destBase < 2 ||
3360 $destBase > 36 ||
3361 $sourceBase != (int)$sourceBase ||
3362 $destBase != (int)$destBase ||
3363 $pad != (int)$pad ||
3364 !preg_match(
3365 "/^[" . substr( '0123456789abcdefghijklmnopqrstuvwxyz', 0, $sourceBase ) . "]+$/i",
3366 $input
3367 )
3368 ) {
3369 return false;
3370 }
3371
3372 static $baseChars = array(
3373 10 => 'a', 11 => 'b', 12 => 'c', 13 => 'd', 14 => 'e', 15 => 'f',
3374 16 => 'g', 17 => 'h', 18 => 'i', 19 => 'j', 20 => 'k', 21 => 'l',
3375 22 => 'm', 23 => 'n', 24 => 'o', 25 => 'p', 26 => 'q', 27 => 'r',
3376 28 => 's', 29 => 't', 30 => 'u', 31 => 'v', 32 => 'w', 33 => 'x',
3377 34 => 'y', 35 => 'z',
3378
3379 '0' => 0, '1' => 1, '2' => 2, '3' => 3, '4' => 4, '5' => 5,
3380 '6' => 6, '7' => 7, '8' => 8, '9' => 9, 'a' => 10, 'b' => 11,
3381 'c' => 12, 'd' => 13, 'e' => 14, 'f' => 15, 'g' => 16, 'h' => 17,
3382 'i' => 18, 'j' => 19, 'k' => 20, 'l' => 21, 'm' => 22, 'n' => 23,
3383 'o' => 24, 'p' => 25, 'q' => 26, 'r' => 27, 's' => 28, 't' => 29,
3384 'u' => 30, 'v' => 31, 'w' => 32, 'x' => 33, 'y' => 34, 'z' => 35
3385 );
3386
3387 if ( extension_loaded( 'gmp' ) && ( $engine == 'auto' || $engine == 'gmp' ) ) {
3388 // Removing leading zeros works around broken base detection code in
3389 // some PHP versions (see <https://bugs.php.net/bug.php?id=50175> and
3390 // <https://bugs.php.net/bug.php?id=55398>).
3391 $result = gmp_strval( gmp_init( ltrim( $input, '0' ), $sourceBase ), $destBase );
3392 } elseif ( extension_loaded( 'bcmath' ) && ( $engine == 'auto' || $engine == 'bcmath' ) ) {
3393 $decimal = '0';
3394 foreach ( str_split( strtolower( $input ) ) as $char ) {
3395 $decimal = bcmul( $decimal, $sourceBase );
3396 $decimal = bcadd( $decimal, $baseChars[$char] );
3397 }
3398
3399 // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
3400 for ( $result = ''; bccomp( $decimal, 0 ); $decimal = bcdiv( $decimal, $destBase, 0 ) ) {
3401 $result .= $baseChars[bcmod( $decimal, $destBase )];
3402 }
3403 // @codingStandardsIgnoreEnd
3404
3405 $result = strrev( $result );
3406 } else {
3407 $inDigits = array();
3408 foreach ( str_split( strtolower( $input ) ) as $char ) {
3409 $inDigits[] = $baseChars[$char];
3410 }
3411
3412 // Iterate over the input, modulo-ing out an output digit
3413 // at a time until input is gone.
3414 $result = '';
3415 while ( $inDigits ) {
3416 $work = 0;
3417 $workDigits = array();
3418
3419 // Long division...
3420 foreach ( $inDigits as $digit ) {
3421 $work *= $sourceBase;
3422 $work += $digit;
3423
3424 if ( $workDigits || $work >= $destBase ) {
3425 $workDigits[] = (int)( $work / $destBase );
3426 }
3427 $work %= $destBase;
3428 }
3429
3430 // All that division leaves us with a remainder,
3431 // which is conveniently our next output digit.
3432 $result .= $baseChars[$work];
3433
3434 // And we continue!
3435 $inDigits = $workDigits;
3436 }
3437
3438 $result = strrev( $result );
3439 }
3440
3441 if ( !$lowercase ) {
3442 $result = strtoupper( $result );
3443 }
3444
3445 return str_pad( $result, $pad, '0', STR_PAD_LEFT );
3446 }
3447
3448 /**
3449 * Check if there is sufficient entropy in php's built-in session generation
3450 *
3451 * @return bool True = there is sufficient entropy
3452 */
3453 function wfCheckEntropy() {
3454 return (
3455 ( wfIsWindows() && version_compare( PHP_VERSION, '5.3.3', '>=' ) )
3456 || ini_get( 'session.entropy_file' )
3457 )
3458 && intval( ini_get( 'session.entropy_length' ) ) >= 32;
3459 }
3460
3461 /**
3462 * Override session_id before session startup if php's built-in
3463 * session generation code is not secure.
3464 */
3465 function wfFixSessionID() {
3466 // If the cookie or session id is already set we already have a session and should abort
3467 if ( isset( $_COOKIE[session_name()] ) || session_id() ) {
3468 return;
3469 }
3470
3471 // PHP's built-in session entropy is enabled if:
3472 // - entropy_file is set or you're on Windows with php 5.3.3+
3473 // - AND entropy_length is > 0
3474 // We treat it as disabled if it doesn't have an entropy length of at least 32
3475 $entropyEnabled = wfCheckEntropy();
3476
3477 // If built-in entropy is not enabled or not sufficient override PHP's
3478 // built in session id generation code
3479 if ( !$entropyEnabled ) {
3480 wfDebug( __METHOD__ . ": PHP's built in entropy is disabled or not sufficient, " .
3481 "overriding session id generation using our cryptrand source.\n" );
3482 session_id( MWCryptRand::generateHex( 32 ) );
3483 }
3484 }
3485
3486 /**
3487 * Reset the session_id
3488 *
3489 * @since 1.22
3490 */
3491 function wfResetSessionID() {
3492 global $wgCookieSecure;
3493 $oldSessionId = session_id();
3494 $cookieParams = session_get_cookie_params();
3495 if ( wfCheckEntropy() && $wgCookieSecure == $cookieParams['secure'] ) {
3496 session_regenerate_id( false );
3497 } else {
3498 $tmp = $_SESSION;
3499 session_destroy();
3500 wfSetupSession( MWCryptRand::generateHex( 32 ) );
3501 $_SESSION = $tmp;
3502 }
3503 $newSessionId = session_id();
3504 Hooks::run( 'ResetSessionID', array( $oldSessionId, $newSessionId ) );
3505 }
3506
3507 /**
3508 * Initialise php session
3509 *
3510 * @param bool $sessionId
3511 */
3512 function wfSetupSession( $sessionId = false ) {
3513 global $wgSessionsInMemcached, $wgSessionsInObjectCache, $wgCookiePath, $wgCookieDomain,
3514 $wgCookieSecure, $wgCookieHttpOnly, $wgSessionHandler;
3515 if ( $wgSessionsInObjectCache || $wgSessionsInMemcached ) {
3516 ObjectCacheSessionHandler::install();
3517 } elseif ( $wgSessionHandler && $wgSessionHandler != ini_get( 'session.save_handler' ) ) {
3518 # Only set this if $wgSessionHandler isn't null and session.save_handler
3519 # hasn't already been set to the desired value (that causes errors)
3520 ini_set( 'session.save_handler', $wgSessionHandler );
3521 }
3522 session_set_cookie_params(
3523 0, $wgCookiePath, $wgCookieDomain, $wgCookieSecure, $wgCookieHttpOnly );
3524 session_cache_limiter( 'private, must-revalidate' );
3525 if ( $sessionId ) {
3526 session_id( $sessionId );
3527 } else {
3528 wfFixSessionID();
3529 }
3530 wfSuppressWarnings();
3531 session_start();
3532 wfRestoreWarnings();
3533 }
3534
3535 /**
3536 * Get an object from the precompiled serialized directory
3537 *
3538 * @param string $name
3539 * @return mixed The variable on success, false on failure
3540 */
3541 function wfGetPrecompiledData( $name ) {
3542 global $IP;
3543
3544 $file = "$IP/serialized/$name";
3545 if ( file_exists( $file ) ) {
3546 $blob = file_get_contents( $file );
3547 if ( $blob ) {
3548 return unserialize( $blob );
3549 }
3550 }
3551 return false;
3552 }
3553
3554 /**
3555 * Get a cache key
3556 *
3557 * @param string $args,...
3558 * @return string
3559 */
3560 function wfMemcKey( /*...*/ ) {
3561 global $wgCachePrefix;
3562 $prefix = $wgCachePrefix === false ? wfWikiID() : $wgCachePrefix;
3563 $args = func_get_args();
3564 $key = $prefix . ':' . implode( ':', $args );
3565 $key = str_replace( ' ', '_', $key );
3566 return $key;
3567 }
3568
3569 /**
3570 * Get a cache key for a foreign DB
3571 *
3572 * @param string $db
3573 * @param string $prefix
3574 * @param string $args,...
3575 * @return string
3576 */
3577 function wfForeignMemcKey( $db, $prefix /*...*/ ) {
3578 $args = array_slice( func_get_args(), 2 );
3579 if ( $prefix ) {
3580 $key = "$db-$prefix:" . implode( ':', $args );
3581 } else {
3582 $key = $db . ':' . implode( ':', $args );
3583 }
3584 return str_replace( ' ', '_', $key );
3585 }
3586
3587 /**
3588 * Get an ASCII string identifying this wiki
3589 * This is used as a prefix in memcached keys
3590 *
3591 * @return string
3592 */
3593 function wfWikiID() {
3594 global $wgDBprefix, $wgDBname;
3595 if ( $wgDBprefix ) {
3596 return "$wgDBname-$wgDBprefix";
3597 } else {
3598 return $wgDBname;
3599 }
3600 }
3601
3602 /**
3603 * Split a wiki ID into DB name and table prefix
3604 *
3605 * @param string $wiki
3606 *
3607 * @return array
3608 */
3609 function wfSplitWikiID( $wiki ) {
3610 $bits = explode( '-', $wiki, 2 );
3611 if ( count( $bits ) < 2 ) {
3612 $bits[] = '';
3613 }
3614 return $bits;
3615 }
3616
3617 /**
3618 * Get a Database object.
3619 *
3620 * @param int $db Index of the connection to get. May be DB_MASTER for the
3621 * master (for write queries), DB_SLAVE for potentially lagged read
3622 * queries, or an integer >= 0 for a particular server.
3623 *
3624 * @param string|string[] $groups Query groups. An array of group names that this query
3625 * belongs to. May contain a single string if the query is only
3626 * in one group.
3627 *
3628 * @param string|bool $wiki The wiki ID, or false for the current wiki
3629 *
3630 * Note: multiple calls to wfGetDB(DB_SLAVE) during the course of one request
3631 * will always return the same object, unless the underlying connection or load
3632 * balancer is manually destroyed.
3633 *
3634 * Note 2: use $this->getDB() in maintenance scripts that may be invoked by
3635 * updater to ensure that a proper database is being updated.
3636 *
3637 * @return DatabaseBase
3638 */
3639 function wfGetDB( $db, $groups = array(), $wiki = false ) {
3640 return wfGetLB( $wiki )->getConnection( $db, $groups, $wiki );
3641 }
3642
3643 /**
3644 * Get a load balancer object.
3645 *
3646 * @param string|bool $wiki Wiki ID, or false for the current wiki
3647 * @return LoadBalancer
3648 */
3649 function wfGetLB( $wiki = false ) {
3650 return wfGetLBFactory()->getMainLB( $wiki );
3651 }
3652
3653 /**
3654 * Get the load balancer factory object
3655 *
3656 * @return LBFactory
3657 */
3658 function wfGetLBFactory() {
3659 return LBFactory::singleton();
3660 }
3661
3662 /**
3663 * Find a file.
3664 * Shortcut for RepoGroup::singleton()->findFile()
3665 *
3666 * @param string $title String or Title object
3667 * @param array $options Associative array of options:
3668 * time: requested time for an archived image, or false for the
3669 * current version. An image object will be returned which was
3670 * created at the specified time.
3671 *
3672 * ignoreRedirect: If true, do not follow file redirects
3673 *
3674 * private: If true, return restricted (deleted) files if the current
3675 * user is allowed to view them. Otherwise, such files will not
3676 * be found.
3677 *
3678 * bypassCache: If true, do not use the process-local cache of File objects
3679 *
3680 * @return File|bool File, or false if the file does not exist
3681 */
3682 function wfFindFile( $title, $options = array() ) {
3683 return RepoGroup::singleton()->findFile( $title, $options );
3684 }
3685
3686 /**
3687 * Get an object referring to a locally registered file.
3688 * Returns a valid placeholder object if the file does not exist.
3689 *
3690 * @param Title|string $title
3691 * @return LocalFile|null A File, or null if passed an invalid Title
3692 */
3693 function wfLocalFile( $title ) {
3694 return RepoGroup::singleton()->getLocalRepo()->newFile( $title );
3695 }
3696
3697 /**
3698 * Should low-performance queries be disabled?
3699 *
3700 * @return bool
3701 * @codeCoverageIgnore
3702 */
3703 function wfQueriesMustScale() {
3704 global $wgMiserMode;
3705 return $wgMiserMode
3706 || ( SiteStats::pages() > 100000
3707 && SiteStats::edits() > 1000000
3708 && SiteStats::users() > 10000 );
3709 }
3710
3711 /**
3712 * Get the path to a specified script file, respecting file
3713 * extensions; this is a wrapper around $wgScriptExtension etc.
3714 * except for 'index' and 'load' which use $wgScript/$wgLoadScript
3715 *
3716 * @param string $script Script filename, sans extension
3717 * @return string
3718 */
3719 function wfScript( $script = 'index' ) {
3720 global $wgScriptPath, $wgScriptExtension, $wgScript, $wgLoadScript;
3721 if ( $script === 'index' ) {
3722 return $wgScript;
3723 } elseif ( $script === 'load' ) {
3724 return $wgLoadScript;
3725 } else {
3726 return "{$wgScriptPath}/{$script}{$wgScriptExtension}";
3727 }
3728 }
3729
3730 /**
3731 * Get the script URL.
3732 *
3733 * @return string Script URL
3734 */
3735 function wfGetScriptUrl() {
3736 if ( isset( $_SERVER['SCRIPT_NAME'] ) ) {
3737 #
3738 # as it was called, minus the query string.
3739 #
3740 # Some sites use Apache rewrite rules to handle subdomains,
3741 # and have PHP set up in a weird way that causes PHP_SELF
3742 # to contain the rewritten URL instead of the one that the
3743 # outside world sees.
3744 #
3745 # If in this mode, use SCRIPT_URL instead, which mod_rewrite
3746 # provides containing the "before" URL.
3747 return $_SERVER['SCRIPT_NAME'];
3748 } else {
3749 return $_SERVER['URL'];
3750 }
3751 }
3752
3753 /**
3754 * Convenience function converts boolean values into "true"
3755 * or "false" (string) values
3756 *
3757 * @param bool $value
3758 * @return string
3759 */
3760 function wfBoolToStr( $value ) {
3761 return $value ? 'true' : 'false';
3762 }
3763
3764 /**
3765 * Get a platform-independent path to the null file, e.g. /dev/null
3766 *
3767 * @return string
3768 */
3769 function wfGetNull() {
3770 return wfIsWindows() ? 'NUL' : '/dev/null';
3771 }
3772
3773 /**
3774 * Waits for the slaves to catch up to the master position
3775 *
3776 * Use this when updating very large numbers of rows, as in maintenance scripts,
3777 * to avoid causing too much lag. Of course, this is a no-op if there are no slaves.
3778 *
3779 * By default this waits on the main DB cluster of the current wiki.
3780 * If $cluster is set to "*" it will wait on all DB clusters, including
3781 * external ones. If the lag being waiting on is caused by the code that
3782 * does this check, it makes since to use $ifWritesSince, particularly if
3783 * cluster is "*", to avoid excess overhead.
3784 *
3785 * Never call this function after a big DB write that is still in a transaction.
3786 * This only makes sense after the possible lag inducing changes were committed.
3787 *
3788 * @param float|null $ifWritesSince Only wait if writes were done since this UNIX timestamp
3789 * @param string|bool $wiki Wiki identifier accepted by wfGetLB
3790 * @param string|bool $cluster Cluster name accepted by LBFactory. Default: false.
3791 * @param int|null $timeout Max wait time. Default: 1 day (cli), ~10 seconds (web)
3792 * @return bool Success (able to connect and no timeouts reached)
3793 */
3794 function wfWaitForSlaves(
3795 $ifWritesSince = null, $wiki = false, $cluster = false, $timeout = null
3796 ) {
3797 // B/C: first argument used to be "max seconds of lag"; ignore such values
3798 $ifWritesSince = ( $ifWritesSince > 1e9 ) ? $ifWritesSince : null;
3799
3800 if ( $timeout === null ) {
3801 $timeout = ( PHP_SAPI === 'cli' ) ? 86400 : 10;
3802 }
3803
3804 // Figure out which clusters need to be checked
3805 $lbs = array();
3806 if ( $cluster === '*' ) {
3807 wfGetLBFactory()->forEachLB( function ( LoadBalancer $lb ) use ( &$lbs ) {
3808 $lbs[] = $lb;
3809 } );
3810 } elseif ( $cluster !== false ) {
3811 $lbs[] = wfGetLBFactory()->getExternalLB( $cluster );
3812 } else {
3813 $lbs[] = wfGetLB( $wiki );
3814 }
3815
3816 // Get all the master positions of applicable DBs right now.
3817 // This can be faster since waiting on one cluster reduces the
3818 // time needed to wait on the next clusters.
3819 $masterPositions = array_fill( 0, count( $lbs ), false );
3820 foreach ( $lbs as $i => $lb ) {
3821 // bug 27975 - Don't try to wait for slaves if there are none
3822 // Prevents permission error when getting master position
3823 if ( $lb->getServerCount() > 1 ) {
3824 if ( $ifWritesSince && !$lb->hasMasterConnection() ) {
3825 continue; // assume no writes done
3826 }
3827 // Use the empty string to not trigger selectDB() since the connection
3828 // may have been to a server that does not have a DB for the current wiki.
3829 $dbw = $lb->getConnection( DB_MASTER, array(), '' );
3830 if ( $ifWritesSince && $dbw->lastDoneWrites() < $ifWritesSince ) {
3831 continue; // no writes since the last wait
3832 }
3833 $masterPositions[$i] = $dbw->getMasterPos();
3834 }
3835 }
3836
3837 $ok = true;
3838 foreach ( $lbs as $i => $lb ) {
3839 if ( $masterPositions[$i] ) {
3840 // The DBMS may not support getMasterPos() or the whole
3841 // load balancer might be fake (e.g. $wgAllDBsAreLocalhost).
3842 $ok = $lb->waitForAll( $masterPositions[$i], $timeout ) && $ok;
3843 }
3844 }
3845
3846 return $ok;
3847 }
3848
3849 /**
3850 * Count down from $seconds to zero on the terminal, with a one-second pause
3851 * between showing each number. For use in command-line scripts.
3852 *
3853 * @codeCoverageIgnore
3854 * @param int $seconds
3855 */
3856 function wfCountDown( $seconds ) {
3857 for ( $i = $seconds; $i >= 0; $i-- ) {
3858 if ( $i != $seconds ) {
3859 echo str_repeat( "\x08", strlen( $i + 1 ) );
3860 }
3861 echo $i;
3862 flush();
3863 if ( $i ) {
3864 sleep( 1 );
3865 }
3866 }
3867 echo "\n";
3868 }
3869
3870 /**
3871 * Replace all invalid characters with -
3872 * Additional characters can be defined in $wgIllegalFileChars (see bug 20489)
3873 * By default, $wgIllegalFileChars = ':'
3874 *
3875 * @param string $name Filename to process
3876 * @return string
3877 */
3878 function wfStripIllegalFilenameChars( $name ) {
3879 global $wgIllegalFileChars;
3880 $illegalFileChars = $wgIllegalFileChars ? "|[" . $wgIllegalFileChars . "]" : '';
3881 $name = wfBaseName( $name );
3882 $name = preg_replace(
3883 "/[^" . Title::legalChars() . "]" . $illegalFileChars . "/",
3884 '-',
3885 $name
3886 );
3887 return $name;
3888 }
3889
3890 /**
3891 * Set PHP's memory limit to the larger of php.ini or $wgMemoryLimit;
3892 *
3893 * @return int Value the memory limit was set to.
3894 */
3895 function wfMemoryLimit() {
3896 global $wgMemoryLimit;
3897 $memlimit = wfShorthandToInteger( ini_get( 'memory_limit' ) );
3898 if ( $memlimit != -1 ) {
3899 $conflimit = wfShorthandToInteger( $wgMemoryLimit );
3900 if ( $conflimit == -1 ) {
3901 wfDebug( "Removing PHP's memory limit\n" );
3902 wfSuppressWarnings();
3903 ini_set( 'memory_limit', $conflimit );
3904 wfRestoreWarnings();
3905 return $conflimit;
3906 } elseif ( $conflimit > $memlimit ) {
3907 wfDebug( "Raising PHP's memory limit to $conflimit bytes\n" );
3908 wfSuppressWarnings();
3909 ini_set( 'memory_limit', $conflimit );
3910 wfRestoreWarnings();
3911 return $conflimit;
3912 }
3913 }
3914 return $memlimit;
3915 }
3916
3917 /**
3918 * Converts shorthand byte notation to integer form
3919 *
3920 * @param string $string
3921 * @return int
3922 */
3923 function wfShorthandToInteger( $string = '' ) {
3924 $string = trim( $string );
3925 if ( $string === '' ) {
3926 return -1;
3927 }
3928 $last = $string[strlen( $string ) - 1];
3929 $val = intval( $string );
3930 switch ( $last ) {
3931 case 'g':
3932 case 'G':
3933 $val *= 1024;
3934 // break intentionally missing
3935 case 'm':
3936 case 'M':
3937 $val *= 1024;
3938 // break intentionally missing
3939 case 'k':
3940 case 'K':
3941 $val *= 1024;
3942 }
3943
3944 return $val;
3945 }
3946
3947 /**
3948 * Get the normalised IETF language tag
3949 * See unit test for examples.
3950 *
3951 * @param string $code The language code.
3952 * @return string The language code which complying with BCP 47 standards.
3953 */
3954 function wfBCP47( $code ) {
3955 $codeSegment = explode( '-', $code );
3956 $codeBCP = array();
3957 foreach ( $codeSegment as $segNo => $seg ) {
3958 // when previous segment is x, it is a private segment and should be lc
3959 if ( $segNo > 0 && strtolower( $codeSegment[( $segNo - 1 )] ) == 'x' ) {
3960 $codeBCP[$segNo] = strtolower( $seg );
3961 // ISO 3166 country code
3962 } elseif ( ( strlen( $seg ) == 2 ) && ( $segNo > 0 ) ) {
3963 $codeBCP[$segNo] = strtoupper( $seg );
3964 // ISO 15924 script code
3965 } elseif ( ( strlen( $seg ) == 4 ) && ( $segNo > 0 ) ) {
3966 $codeBCP[$segNo] = ucfirst( strtolower( $seg ) );
3967 // Use lowercase for other cases
3968 } else {
3969 $codeBCP[$segNo] = strtolower( $seg );
3970 }
3971 }
3972 $langCode = implode( '-', $codeBCP );
3973 return $langCode;
3974 }
3975
3976 /**
3977 * Get a cache object.
3978 *
3979 * @param int $inputType Cache type, one of the CACHE_* constants.
3980 * @return BagOStuff
3981 */
3982 function wfGetCache( $inputType ) {
3983 return ObjectCache::getInstance( $inputType );
3984 }
3985
3986 /**
3987 * Get the main cache object
3988 *
3989 * @return BagOStuff
3990 */
3991 function wfGetMainCache() {
3992 global $wgMainCacheType;
3993 return ObjectCache::getInstance( $wgMainCacheType );
3994 }
3995
3996 /**
3997 * Get the cache object used by the message cache
3998 *
3999 * @return BagOStuff
4000 */
4001 function wfGetMessageCacheStorage() {
4002 global $wgMessageCacheType;
4003 return ObjectCache::getInstance( $wgMessageCacheType );
4004 }
4005
4006 /**
4007 * Get the cache object used by the parser cache
4008 *
4009 * @return BagOStuff
4010 */
4011 function wfGetParserCacheStorage() {
4012 global $wgParserCacheType;
4013 return ObjectCache::getInstance( $wgParserCacheType );
4014 }
4015
4016 /**
4017 * Call hook functions defined in $wgHooks
4018 *
4019 * @param string $event Event name
4020 * @param array $args Parameters passed to hook functions
4021 * @param string|null $deprecatedVersion Optionally mark hook as deprecated with version number
4022 *
4023 * @return bool True if no handler aborted the hook
4024 * @deprecated 1.25 - use Hooks::run
4025 */
4026 function wfRunHooks( $event, array $args = array(), $deprecatedVersion = null ) {
4027 return Hooks::run( $event, $args, $deprecatedVersion );
4028 }
4029
4030 /**
4031 * Wrapper around php's unpack.
4032 *
4033 * @param string $format The format string (See php's docs)
4034 * @param string $data A binary string of binary data
4035 * @param int|bool $length The minimum length of $data or false. This is to
4036 * prevent reading beyond the end of $data. false to disable the check.
4037 *
4038 * Also be careful when using this function to read unsigned 32 bit integer
4039 * because php might make it negative.
4040 *
4041 * @throws MWException If $data not long enough, or if unpack fails
4042 * @return array Associative array of the extracted data
4043 */
4044 function wfUnpack( $format, $data, $length = false ) {
4045 if ( $length !== false ) {
4046 $realLen = strlen( $data );
4047 if ( $realLen < $length ) {
4048 throw new MWException( "Tried to use wfUnpack on a "
4049 . "string of length $realLen, but needed one "
4050 . "of at least length $length."
4051 );
4052 }
4053 }
4054
4055 wfSuppressWarnings();
4056 $result = unpack( $format, $data );
4057 wfRestoreWarnings();
4058
4059 if ( $result === false ) {
4060 // If it cannot extract the packed data.
4061 throw new MWException( "unpack could not unpack binary data" );
4062 }
4063 return $result;
4064 }
4065
4066 /**
4067 * Determine if an image exists on the 'bad image list'.
4068 *
4069 * The format of MediaWiki:Bad_image_list is as follows:
4070 * * Only list items (lines starting with "*") are considered
4071 * * The first link on a line must be a link to a bad image
4072 * * Any subsequent links on the same line are considered to be exceptions,
4073 * i.e. articles where the image may occur inline.
4074 *
4075 * @param string $name The image name to check
4076 * @param Title|bool $contextTitle The page on which the image occurs, if known
4077 * @param string $blacklist Wikitext of a file blacklist
4078 * @return bool
4079 */
4080 function wfIsBadImage( $name, $contextTitle = false, $blacklist = null ) {
4081 static $badImageCache = null; // based on bad_image_list msg
4082
4083 # Handle redirects
4084 $redirectTitle = RepoGroup::singleton()->checkRedirect( Title::makeTitle( NS_FILE, $name ) );
4085 if ( $redirectTitle ) {
4086 $name = $redirectTitle->getDBkey();
4087 }
4088
4089 # Run the extension hook
4090 $bad = false;
4091 if ( !Hooks::run( 'BadImage', array( $name, &$bad ) ) ) {
4092 return $bad;
4093 }
4094
4095 $cacheable = ( $blacklist === null );
4096 if ( $cacheable && $badImageCache !== null ) {
4097 $badImages = $badImageCache;
4098 } else { // cache miss
4099 if ( $blacklist === null ) {
4100 $blacklist = wfMessage( 'bad_image_list' )->inContentLanguage()->plain(); // site list
4101 }
4102 # Build the list now
4103 $badImages = array();
4104 $lines = explode( "\n", $blacklist );
4105 foreach ( $lines as $line ) {
4106 # List items only
4107 if ( substr( $line, 0, 1 ) !== '*' ) {
4108 continue;
4109 }
4110
4111 # Find all links
4112 $m = array();
4113 if ( !preg_match_all( '/\[\[:?(.*?)\]\]/', $line, $m ) ) {
4114 continue;
4115 }
4116
4117 $exceptions = array();
4118 $imageDBkey = false;
4119 foreach ( $m[1] as $i => $titleText ) {
4120 $title = Title::newFromText( $titleText );
4121 if ( !is_null( $title ) ) {
4122 if ( $i == 0 ) {
4123 $imageDBkey = $title->getDBkey();
4124 } else {
4125 $exceptions[$title->getPrefixedDBkey()] = true;
4126 }
4127 }
4128 }
4129
4130 if ( $imageDBkey !== false ) {
4131 $badImages[$imageDBkey] = $exceptions;
4132 }
4133 }
4134 if ( $cacheable ) {
4135 $badImageCache = $badImages;
4136 }
4137 }
4138
4139 $contextKey = $contextTitle ? $contextTitle->getPrefixedDBkey() : false;
4140 $bad = isset( $badImages[$name] ) && !isset( $badImages[$name][$contextKey] );
4141 return $bad;
4142 }
4143
4144 /**
4145 * Determine whether the client at a given source IP is likely to be able to
4146 * access the wiki via HTTPS.
4147 *
4148 * @param string $ip The IPv4/6 address in the normal human-readable form
4149 * @return bool
4150 */
4151 function wfCanIPUseHTTPS( $ip ) {
4152 $canDo = true;
4153 Hooks::run( 'CanIPUseHTTPS', array( $ip, &$canDo ) );
4154 return !!$canDo;
4155 }
4156
4157 /**
4158 * Work out the IP address based on various globals
4159 * For trusted proxies, use the XFF client IP (first of the chain)
4160 *
4161 * @deprecated since 1.19; call $wgRequest->getIP() directly.
4162 * @return string
4163 */
4164 function wfGetIP() {
4165 wfDeprecated( __METHOD__, '1.19' );
4166 global $wgRequest;
4167 return $wgRequest->getIP();
4168 }
4169
4170 /**
4171 * Checks if an IP is a trusted proxy provider.
4172 * Useful to tell if X-Forwarded-For data is possibly bogus.
4173 * Squid cache servers for the site are whitelisted.
4174 * @deprecated Since 1.24, use IP::isTrustedProxy()
4175 *
4176 * @param string $ip
4177 * @return bool
4178 */
4179 function wfIsTrustedProxy( $ip ) {
4180 wfDeprecated( __METHOD__, '1.24' );
4181 return IP::isTrustedProxy( $ip );
4182 }
4183
4184 /**
4185 * Checks if an IP matches a proxy we've configured.
4186 * @deprecated Since 1.24, use IP::isConfiguredProxy()
4187 *
4188 * @param string $ip
4189 * @return bool
4190 * @since 1.23 Supports CIDR ranges in $wgSquidServersNoPurge
4191 */
4192 function wfIsConfiguredProxy( $ip ) {
4193 wfDeprecated( __METHOD__, '1.24' );
4194 return IP::isConfiguredProxy( $ip );
4195 }
4196
4197 /**
4198 * Returns true if these thumbnail parameters match one that MediaWiki
4199 * requests from file description pages and/or parser output.
4200 *
4201 * $params is considered non-standard if they involve a non-standard
4202 * width or any non-default parameters aside from width and page number.
4203 * The number of possible files with standard parameters is far less than
4204 * that of all combinations; rate-limiting for them can thus be more generious.
4205 *
4206 * @param File $file
4207 * @param array $params
4208 * @return bool
4209 * @since 1.24 Moved from thumb.php to GlobalFunctions in 1.25
4210 */
4211 function wfThumbIsStandard( File $file, array $params ) {
4212 global $wgThumbLimits, $wgImageLimits, $wgResponsiveImages;
4213
4214 $multipliers = array( 1 );
4215 if ( $wgResponsiveImages ) {
4216 // These available sizes are hardcoded currently elsewhere in MediaWiki.
4217 // @see Linker::processResponsiveImages
4218 $multipliers[] = 1.5;
4219 $multipliers[] = 2;
4220 }
4221
4222 $handler = $file->getHandler();
4223 if ( !$handler || !isset( $params['width'] ) ) {
4224 return false;
4225 }
4226
4227 $basicParams = array();
4228 if ( isset( $params['page'] ) ) {
4229 $basicParams['page'] = $params['page'];
4230 }
4231
4232 $thumbLimits = array();
4233 $imageLimits = array();
4234 // Expand limits to account for multipliers
4235 foreach ( $multipliers as $multiplier ) {
4236 $thumbLimits = array_merge( $thumbLimits, array_map(
4237 function ( $width ) use ( $multiplier ) {
4238 return round( $width * $multiplier );
4239 }, $wgThumbLimits )
4240 );
4241 $imageLimits = array_merge( $imageLimits, array_map(
4242 function ( $pair ) use ( $multiplier ) {
4243 return array(
4244 round( $pair[0] * $multiplier ),
4245 round( $pair[1] * $multiplier ),
4246 );
4247 }, $wgImageLimits )
4248 );
4249 }
4250
4251 // Check if the width matches one of $wgThumbLimits
4252 if ( in_array( $params['width'], $thumbLimits ) ) {
4253 $normalParams = $basicParams + array( 'width' => $params['width'] );
4254 // Append any default values to the map (e.g. "lossy", "lossless", ...)
4255 $handler->normaliseParams( $file, $normalParams );
4256 } else {
4257 // If not, then check if the width matchs one of $wgImageLimits
4258 $match = false;
4259 foreach ( $imageLimits as $pair ) {
4260 $normalParams = $basicParams + array( 'width' => $pair[0], 'height' => $pair[1] );
4261 // Decide whether the thumbnail should be scaled on width or height.
4262 // Also append any default values to the map (e.g. "lossy", "lossless", ...)
4263 $handler->normaliseParams( $file, $normalParams );
4264 // Check if this standard thumbnail size maps to the given width
4265 if ( $normalParams['width'] == $params['width'] ) {
4266 $match = true;
4267 break;
4268 }
4269 }
4270 if ( !$match ) {
4271 return false; // not standard for description pages
4272 }
4273 }
4274
4275 // Check that the given values for non-page, non-width, params are just defaults
4276 foreach ( $params as $key => $value ) {
4277 if ( !isset( $normalParams[$key] ) || $normalParams[$key] != $value ) {
4278 return false;
4279 }
4280 }
4281
4282 return true;
4283 }