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