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