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