3 * Global functions used everywhere.
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.
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.
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
23 if ( !defined( 'MEDIAWIKI' ) ) {
24 die( "This file is part of MediaWiki, it is not a valid entry point" );
27 // Hide compatibility functions from Doxygen
31 * Compatibility functions
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.
38 if ( !function_exists( 'iconv' ) ) {
43 function iconv( $from, $to, $string ) {
44 return Fallback
::iconv( $from, $to, $string );
48 if ( !function_exists( 'mb_substr' ) ) {
53 function mb_substr( $str, $start, $count = 'end' ) {
54 return Fallback
::mb_substr( $str, $start, $count );
61 function mb_substr_split_unicode( $str, $splitPos ) {
62 return Fallback
::mb_substr_split_unicode( $str, $splitPos );
66 if ( !function_exists( 'mb_strlen' ) ) {
71 function mb_strlen( $str, $enc = '' ) {
72 return Fallback
::mb_strlen( $str, $enc );
76 if ( !function_exists( 'mb_strpos' ) ) {
81 function mb_strpos( $haystack, $needle, $offset = 0, $encoding = '' ) {
82 return Fallback
::mb_strpos( $haystack, $needle, $offset, $encoding );
86 if ( !function_exists( 'mb_strrpos' ) ) {
91 function mb_strrpos( $haystack, $needle, $offset = 0, $encoding = '' ) {
92 return Fallback
::mb_strrpos( $haystack, $needle, $offset, $encoding );
96 // gzdecode function only exists in PHP >= 5.4.0
97 // http://php.net/gzdecode
98 if ( !function_exists( 'gzdecode' ) ) {
100 * @codeCoverageIgnore
103 function gzdecode( $data ) {
104 return gzinflate( substr( $data, 10, -8 ) );
110 * Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
115 function wfArrayDiff2( $a, $b ) {
116 return array_udiff( $a, $b, 'wfArrayDiff2_cmp' );
120 * @param $a array|string
121 * @param $b array|string
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;
132 while ( ( list( , $valueA ) = each( $a ) ) && ( list( , $valueB ) = each( $b ) ) ) {
133 $cmp = strcmp( $valueA, $valueB );
144 * Returns an array where the values in array $b are replaced by the
145 * values in array $a with the corresponding keys
147 * @deprecated since 1.22; use array_intersect_key()
152 function wfArrayLookup( $a, $b ) {
153 wfDeprecated( __FUNCTION__
, '1.22' );
154 return array_flip( array_intersect( array_flip( $a ), array_keys( $b ) ) );
158 * Appends to second array if $value differs from that in $default
160 * @param $key String|Int
161 * @param $value Mixed
162 * @param $default Mixed
163 * @param array $changed to alter
164 * @throws MWException
166 function wfAppendToArrayIfNotDefault( $key, $value, $default, &$changed ) {
167 if ( is_null( $changed ) ) {
168 throw new MWException( 'GlobalFunctions::wfAppendToArrayIfNotDefault got null' );
170 if ( $default[$key] !== $value ) {
171 $changed[$key] = $value;
176 * Backwards array plus for people who haven't bothered to read the PHP manual
177 * XXX: will not darn your socks for you.
179 * @deprecated since 1.22; use array_replace()
180 * @param $array1 Array
181 * @param [$array2, [...]] Arrays
184 function wfArrayMerge( $array1/* ... */ ) {
185 wfDeprecated( __FUNCTION__
, '1.22' );
186 $args = func_get_args();
187 $args = array_reverse( $args, true );
189 foreach ( $args as $arg ) {
196 * Merge arrays in the style of getUserPermissionsErrors, with duplicate removal
198 * wfMergeErrorArrays(
199 * array( array( 'x' ) ),
200 * array( array( 'x', '2' ) ),
201 * array( array( 'x' ) ),
202 * array( array( 'y' ) )
213 function wfMergeErrorArrays( /*...*/ ) {
214 $args = func_get_args();
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;
224 return array_values( $out );
228 * Insert array into another array after the specified *KEY*
230 * @param array $array The array.
231 * @param array $insert The array to insert.
232 * @param $after Mixed: The key to insert after
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 );
240 $offset = $offsetByKey[$after];
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 );
246 $output = $before +
$insert +
$after;
252 * Recursively converts the parameter (an object) to an array with the same data
254 * @param $objOrArray Object|Array
255 * @param $recursive Bool
258 function wfObjectToArray( $objOrArray, $recursive = true ) {
260 if ( is_object( $objOrArray ) ) {
261 $objOrArray = get_object_vars( $objOrArray );
263 foreach ( $objOrArray as $key => $value ) {
264 if ( $recursive && ( is_object( $value ) ||
is_array( $value ) ) ) {
265 $value = wfObjectToArray( $value );
268 $array[$key] = $value;
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.
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, '.', '' );
291 * Get a random string containing a number of pseudo-random hex
293 * @note This is not secure, if you are trying to generate some sort
294 * of token please use MWCryptRand instead.
296 * @param int $length The length of the string to generate
300 function wfRandomString( $length = 32 ) {
302 for ( $n = 0; $n < $length; $n +
= 7 ) {
303 $str .= sprintf( '%07x', mt_rand() & 0xfffffff );
305 return substr( $str, 0, $length );
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:
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:
322 * However, IIS7 redirects fail when the url contains a colon (Bug 22709),
323 * so no fancy : for IIS7.
325 * %2F in the page titles seems to fatally break for some reason.
330 function wfUrlencode( $s ) {
333 if ( is_null( $s ) ) {
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 )
347 $s = urlencode( $s );
350 array( ';', '@', '$', '!', '*', '(', ')', ',', '/', ':' ),
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.
362 * @param array $array1 ( String|Array )
363 * @param array $array2 ( String|Array )
364 * @param $prefix String
367 function wfArrayToCgi( $array1, $array2 = null, $prefix = '' ) {
368 if ( !is_null( $array2 ) ) {
369 $array1 = $array1 +
$array2;
373 foreach ( $array1 as $key => $value ) {
374 if ( !is_null( $value ) && $value !== false ) {
378 if ( $prefix !== '' ) {
379 $key = $prefix . "[$key]";
381 if ( is_array( $value ) ) {
383 foreach ( $value as $k => $v ) {
384 $cgi .= $firstTime ?
'' : '&';
385 if ( is_array( $v ) ) {
386 $cgi .= wfArrayToCgi( $v, null, $key . "[$k]" );
388 $cgi .= urlencode( $key . "[$k]" ) . '=' . urlencode( $v );
393 if ( is_object( $value ) ) {
394 $value = $value->__toString();
396 $cgi .= urlencode( $key ) . '=' . urlencode( $value );
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.
409 * @param string $query query string
410 * @return array Array version of input
412 function wfCgiToArray( $query ) {
413 if ( isset( $query[0] ) && $query[0] == '?' ) {
414 $query = substr( $query, 1 );
416 $bits = explode( '&', $query );
418 foreach ( $bits as $bit ) {
422 if ( strpos( $bit, '=' ) === false ) {
423 // Pieces like &qwerty become 'qwerty' => '' (at least this is what php does)
427 list( $key, $value ) = explode( '=', $bit );
429 $key = urldecode( $key );
430 $value = urldecode( $value );
431 if ( strpos( $key, '[' ) !== false ) {
432 $keys = array_reverse( explode( '[', $key ) );
433 $key = array_pop( $keys );
435 foreach ( $keys as $k ) {
436 $k = substr( $k, 0, -1 );
437 $temp = array( $k => $temp );
439 if ( isset( $ret[$key] ) ) {
440 $ret[$key] = array_merge( $ret[$key], $temp );
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.
456 * @param $query Mixed: string or associative array
459 function wfAppendQuery( $url, $query ) {
460 if ( is_array( $query ) ) {
461 $query = wfArrayToCgi( $query );
463 if ( $query != '' ) {
464 if ( false === strpos( $url, '?' ) ) {
475 * Expand a potentially local URL to a fully-qualified URL. Assumes $wgServer
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
488 * @todo this won't work with current-path-relative URLs
489 * like "subdir/foo.html", etc.
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
497 function wfExpandUrl( $url, $defaultProto = PROTO_CURRENT
) {
498 global $wgServer, $wgCanonicalServer, $wgInternalServer, $wgRequest;
499 $serverUrl = $wgServer;
500 if ( $defaultProto === PROTO_CANONICAL
) {
501 $serverUrl = $wgCanonicalServer;
503 // Make $wgInternalServer fall back to $wgServer if not set
504 if ( $defaultProto === PROTO_INTERNAL
&& $wgInternalServer !== false ) {
505 $serverUrl = $wgInternalServer;
507 if ( $defaultProto === PROTO_CURRENT
) {
508 $defaultProto = $wgRequest->getProtocol() . '://';
511 // Analyze $serverUrl to obtain its protocol
512 $bits = wfParseUrl( $serverUrl );
513 $serverHasProto = $bits && $bits['scheme'] != '';
515 if ( $defaultProto === PROTO_CANONICAL ||
$defaultProto === PROTO_INTERNAL
) {
516 if ( $serverHasProto ) {
517 $defaultProto = $bits['scheme'] . '://';
519 // $wgCanonicalServer or $wgInternalServer doesn't have a protocol.
520 // This really isn't supposed to happen. Fall back to HTTP in this
522 $defaultProto = PROTO_HTTP
;
526 $defaultProtoWithoutSlashes = substr( $defaultProto, 0, -2 );
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;
536 $bits = wfParseUrl( $url );
537 if ( $bits && isset( $bits['path'] ) ) {
538 $bits['path'] = wfRemoveDotSegments( $bits['path'] );
539 return wfAssembleUrl( $bits );
543 } elseif ( substr( $url, 0, 1 ) != '/' ) {
544 # URL is a relative path
545 return wfRemoveDotSegments( $url );
548 # Expanded URL is not valid.
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.
556 * This is the basic structure used (brackets contain keys for $urlParts):
557 * [scheme][delimiter][user]:[pass]@[host]:[port][path]?[query]#[fragment]
559 * @todo Need to integrate this into wfExpandUrl (bug 32168)
562 * @param array $urlParts URL parts, as output from wfParseUrl
563 * @return string URL assembled from its component parts
565 function wfAssembleUrl( $urlParts ) {
568 if ( isset( $urlParts['delimiter'] ) ) {
569 if ( isset( $urlParts['scheme'] ) ) {
570 $result .= $urlParts['scheme'];
573 $result .= $urlParts['delimiter'];
576 if ( isset( $urlParts['host'] ) ) {
577 if ( isset( $urlParts['user'] ) ) {
578 $result .= $urlParts['user'];
579 if ( isset( $urlParts['pass'] ) ) {
580 $result .= ':' . $urlParts['pass'];
585 $result .= $urlParts['host'];
587 if ( isset( $urlParts['port'] ) ) {
588 $result .= ':' . $urlParts['port'];
592 if ( isset( $urlParts['path'] ) ) {
593 $result .= $urlParts['path'];
596 if ( isset( $urlParts['query'] ) ) {
597 $result .= '?' . $urlParts['query'];
600 if ( isset( $urlParts['fragment'] ) ) {
601 $result .= '#' . $urlParts['fragment'];
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.
612 * @todo Need to integrate this into wfExpandUrl (bug 32168)
614 * @param string $urlPath URL path, potentially containing dot-segments
615 * @return string URL path with all dot-segments removed
617 function wfRemoveDotSegments( $urlPath ) {
620 $inputLength = strlen( $urlPath );
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 );
629 if ( $prefixLengthTwo == './' ) {
630 # Step A, remove leading "./"
632 } elseif ( $prefixLengthThree == '../' ) {
633 # Step A, remove leading "../"
635 } elseif ( ( $prefixLengthTwo == '/.' ) && ( $inputOffset +
2 == $inputLength ) ) {
636 # Step B, replace leading "/.$" with "/"
638 $urlPath[$inputOffset] = '/';
639 } elseif ( $prefixLengthThree == '/./' ) {
640 # Step B, replace leading "/./" with "/"
642 } elseif ( $prefixLengthThree == '/..' && ( $inputOffset +
3 == $inputLength ) ) {
643 # Step C, replace leading "/..$" with "/" and
644 # remove last path component in output
646 $urlPath[$inputOffset] = '/';
648 } elseif ( $prefixLengthFour == '/../' ) {
649 # Step C, replace leading "/../" with "/" and
650 # remove last path component in output
653 } elseif ( ( $prefixLengthOne == '.' ) && ( $inputOffset +
1 == $inputLength ) ) {
654 # Step D, remove "^.$"
656 } elseif ( ( $prefixLengthTwo == '..' ) && ( $inputOffset +
2 == $inputLength ) ) {
657 # Step D, remove "^..$"
660 # Step E, move leading path segment to output
661 if ( $prefixLengthOne == '/' ) {
662 $slashPos = strpos( $urlPath, '/', $inputOffset +
1 );
664 $slashPos = strpos( $urlPath, '/', $inputOffset );
666 if ( $slashPos === false ) {
667 $output .= substr( $urlPath, $inputOffset );
668 $inputOffset = $inputLength;
670 $output .= substr( $urlPath, $inputOffset, $slashPos - $inputOffset );
671 $inputOffset +
= $slashPos - $inputOffset;
676 $slashPos = strrpos( $output, '/' );
677 if ( $slashPos === false ) {
680 $output = substr( $output, 0, $slashPos );
689 * Returns a regular expression of url protocols
691 * @param bool $includeProtocolRelative If false, remove '//' from the returned protocol list.
692 * DO NOT USE this directly, use wfUrlProtocolsWithoutProtRel() instead
695 function wfUrlProtocols( $includeProtocolRelative = true ) {
696 global $wgUrlProtocols;
698 // Cache return values separately based on $includeProtocolRelative
699 static $withProtRel = null, $withoutProtRel = null;
700 $cachedValue = $includeProtocolRelative ?
$withProtRel : $withoutProtRel;
701 if ( !is_null( $cachedValue ) ) {
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, '/' );
716 $retval = implode( '|', $protocols );
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;
725 // Cache return value
726 if ( $includeProtocolRelative ) {
727 $withProtRel = $retval;
729 $withoutProtRel = $retval;
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-
740 function wfUrlProtocolsWithoutProtRel() {
741 return wfUrlProtocols( false );
745 * parse_url() work-alike, but non-broken. Differences:
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)).
752 * @param string $url a URL to parse
753 * @return Array: bits of the URL in an associative array, per PHP docs
755 function wfParseUrl( $url ) {
756 global $wgUrlProtocols; // Allow all protocols defined in DefaultSettings/LocalSettings.php
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 ) {
765 wfSuppressWarnings();
766 $bits = parse_url( $url );
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'] ) ) {
774 // parse_url() incorrectly handles schemes case-sensitively. Convert it to lowercase.
775 $bits['scheme'] = strtolower( $bits['scheme'] );
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'];
792 /* Provide an empty host for eg. file:/// urls (see bug 28627) */
793 if ( !isset( $bits['host'] ) ) {
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'];
807 // If the URL was protocol-relative, fix scheme and delimiter
808 if ( $wasRelative ) {
809 $bits['scheme'] = '';
810 $bits['delimiter'] = '//';
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.
820 * @todo handle punycode domains too
825 function wfExpandIRI( $url ) {
826 return preg_replace_callback(
827 '/((?:%[89A-F][0-9A-F])+)/i',
828 'wfExpandIRI_callback',
834 * Private callback for wfExpandIRI
835 * @param array $matches
838 function wfExpandIRI_callback( $matches ) {
839 return urldecode( $matches[1] );
843 * Make URL indexes, appropriate for the el_index field of externallinks.
848 function wfMakeUrlIndexes( $url ) {
849 $bits = wfParseUrl( $url );
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] ) ) ) );
858 // No domain specified, don't mangle it
861 $reversedHost = $domainpart . '@' . $mailparts[0];
863 $reversedHost = strtolower( implode( '.', array_reverse( explode( '.', $bits['host'] ) ) ) );
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 .= '.';
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'];
877 if ( isset( $bits['path'] ) ) {
878 $index .= $bits['path'];
882 if ( isset( $bits['query'] ) ) {
883 $index .= '?' . $bits['query'];
885 if ( isset( $bits['fragment'] ) ) {
886 $index .= '#' . $bits['fragment'];
890 return array( "http:$index", "https:$index" );
892 return array( $index );
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
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 ) {
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.
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.
926 * @param $text String
927 * @param bool $logonly set true to avoid appearing in HTML when $wgDebugComments is set
929 function wfDebug( $text, $logonly = false ) {
930 global $wgDebugLogFile, $wgProfileOnly, $wgDebugRawPage, $wgDebugLogPrefix;
932 if ( !$wgDebugRawPage && wfIsDebugRawPage() ) {
936 $timer = wfDebugTimer();
937 if ( $timer !== '' ) {
938 $text = preg_replace( '/[^\n]/', $timer . '\0', $text, 1 );
942 MWDebug
::debugMsg( $text );
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 );
955 * Returns true if debug logging should be suppressed if $wgDebugRawPage = false
958 function wfIsDebugRawPage() {
960 if ( $cache !== null ) {
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' )
966 isset( $_SERVER['SCRIPT_NAME'] )
967 && substr( $_SERVER['SCRIPT_NAME'], -8 ) == 'load.php'
978 * Get microsecond timestamps for debug logs
982 function wfDebugTimer() {
983 global $wgDebugTimestamps, $wgRequestTime;
985 if ( !$wgDebugTimestamps ) {
989 $prefix = sprintf( "%6.4f", microtime( true ) - $wgRequestTime );
990 $mem = sprintf( "%5.1fM", ( memory_get_usage( true ) / ( 1024 * 1024 ) ) );
991 return "$prefix $mem ";
995 * Send a line giving PHP memory usage.
997 * @param bool $exact print exact values instead of kilobytes (default: false)
999 function wfDebugMem( $exact = false ) {
1000 $mem = memory_get_usage();
1002 $mem = floor( $mem / 1024 ) . ' kilobytes';
1006 wfDebug( "Memory usage: $mem\n" );
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.
1016 * @since 1.23 support for sampling log messages via $wgDebugLogGroups.
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)
1023 function wfDebugLog( $logGroup, $text, $public = true ) {
1024 global $wgDebugLogGroups;
1025 $text = trim( $text ) . "\n";
1027 if ( !isset( $wgDebugLogGroups[$logGroup] ) ) {
1028 if ( $public === true ) {
1029 wfDebug( "[$logGroup] $text", false );
1034 $logConfig = $wgDebugLogGroups[$logGroup];
1035 if ( is_array( $logConfig ) ) {
1036 if ( isset( $logConfig['sample'] ) && mt_rand( 1, $logConfig['sample'] ) !== 1 ) {
1039 $destination = $logConfig['destination'];
1041 $destination = strval( $logConfig );
1044 $time = wfTimestamp( TS_DB
);
1046 $host = wfHostname();
1047 wfErrorLog( "$time $host $wiki: $text", $destination );
1051 * Log for database errors
1053 * @param string $text database error message.
1055 function wfLogDBError( $text ) {
1056 global $wgDBerrorLog, $wgDBerrorLogTZ;
1057 static $logDBErrorTimeZoneObject = null;
1059 if ( $wgDBerrorLog ) {
1060 $host = wfHostname();
1063 if ( $wgDBerrorLogTZ && !$logDBErrorTimeZoneObject ) {
1064 $logDBErrorTimeZoneObject = new DateTimeZone( $wgDBerrorLogTZ );
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" );
1072 $d = date_create( "now", $logDBErrorTimeZoneObject );
1075 $date = $d->format( 'D M j G:i:s T Y' );
1077 $text = "$date\t$host\t$wiki\t$text";
1078 wfErrorLog( $text, $wgDBerrorLog );
1083 * Throws a warning that $function is deprecated
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)
1095 function wfDeprecated( $function, $version = false, $component = false, $callerOffset = 2 ) {
1096 MWDebug
::deprecated( $function, $version, $component, $callerOffset +
1 );
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.
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
1109 function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE
) {
1110 MWDebug
::warning( $msg, $callerOffset +
1, $level, 'auto' );
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.
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
1122 function wfLogWarning( $msg, $callerOffset = 1, $level = E_USER_WARNING
) {
1123 MWDebug
::warning( $msg, $callerOffset +
1, $level, 'production' );
1127 * Log to a file without getting "file size exceeded" signals.
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.
1132 * @param $text String
1133 * @param string $file filename
1134 * @throws MWException
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
1142 $port = intval( $m[3] );
1143 $prefix = isset( $m[4] ) ?
$m[4] : false;
1145 } elseif ( preg_match( '!^(tcp|udp):(?://)?([a-zA-Z0-9.-]+):(\d+)(?:/(.*))?$!', $file, $m ) ) {
1147 if ( !IP
::isIPv4( $host ) ) {
1148 $host = gethostbyname( $host );
1150 $port = intval( $m[3] );
1151 $prefix = isset( $m[4] ) ?
$m[4] : false;
1154 throw new MWException( __METHOD__
. ': Invalid UDP specification' );
1157 // Clean it up for the multiplexer
1158 if ( strval( $prefix ) !== '' ) {
1159 $text = preg_replace( '/^/m', $prefix . ' ', $text );
1162 if ( strlen( $text ) > 65506 ) {
1163 $text = substr( $text, 0, 65506 );
1166 if ( substr( $text, -1 ) != "\n" ) {
1169 } elseif ( strlen( $text ) > 65507 ) {
1170 $text = substr( $text, 0, 65507 );
1173 $sock = socket_create( $domain, SOCK_DGRAM
, SOL_UDP
);
1178 socket_sendto( $sock, $text, strlen( $text ), 0, $host, $port );
1179 socket_close( $sock );
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
);
1187 wfRestoreWarnings();
1194 function wfLogProfilingData() {
1195 global $wgRequestTime, $wgDebugLogFile, $wgDebugRawPage, $wgRequest;
1196 global $wgProfileLimit, $wgUser;
1198 StatCounter
::singleton()->flush();
1200 $profiler = Profiler
::instance();
1202 # Profiling must actually be enabled...
1203 if ( $profiler->isStub() ) {
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 ) {
1214 $profiler->logData();
1216 // Check whether this should be logged in the debug file.
1217 if ( $wgDebugLogFile == '' ||
( !$wgDebugRawPage && wfIsDebugRawPage() ) ) {
1222 if ( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
1223 $forward = ' forwarded for ' . $_SERVER['HTTP_X_FORWARDED_FOR'];
1225 if ( !empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
1226 $forward .= ' client IP ' . $_SERVER['HTTP_CLIENT_IP'];
1228 if ( !empty( $_SERVER['HTTP_FROM'] ) ) {
1229 $forward .= ' from ' . $_SERVER['HTTP_FROM'];
1232 $forward = "\t(proxied via {$_SERVER['REMOTE_ADDR']}{$forward})";
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';
1240 // Command line script uses a FauxRequest object which does not have
1241 // any knowledge about an URL and throw an exception instead.
1243 $requestUrl = $wgRequest->getRequestURL();
1244 } catch ( MWException
$e ) {
1245 $requestUrl = 'n/a';
1248 $log = sprintf( "%s\t%04.3f\t%s\n",
1249 gmdate( 'YmdHis' ), $elapsed,
1250 urldecode( $requestUrl . $forward ) );
1252 wfErrorLog( $log . $profiler->getOutput(), $wgDebugLogFile );
1256 * Increment a statistics counter
1258 * @param $key String
1262 function wfIncrStats( $key, $count = 1 ) {
1263 StatCounter
::singleton()->incr( $key, $count );
1267 * Check whether the wiki is in read-only mode.
1271 function wfReadOnly() {
1272 return wfReadOnlyReason() !== false;
1276 * Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
1278 * @return string|bool: String when in read-only mode; false otherwise
1280 function wfReadOnlyReason() {
1281 global $wgReadOnly, $wgReadOnlyFile;
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 );
1288 $wgReadOnly = false;
1296 * Return a Language object from $langcode
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
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
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)!
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
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
1332 $validCodes = array_keys( Language
::fetchLanguageNames() );
1333 if ( in_array( $langcode, $validCodes ) ) {
1334 # $langcode corresponds to a valid language.
1335 return Language
::factory( $langcode );
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" );
1344 * Old function when $wgBetterDirectionality existed
1345 * All usage removed, wfUILang can be removed in near future
1347 * @deprecated since 1.18
1350 function wfUILang() {
1351 wfDeprecated( __METHOD__
, '1.18' );
1357 * This is the function for getting translated interface messages.
1359 * @see Message class for documentation how to use them.
1360 * @see https://www.mediawiki.org/wiki/Manual:Messages_API
1362 * This function replaces all old wfMsg* functions.
1364 * @param $key \string Message key.
1365 * Varargs: normal message parameters.
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];
1375 return new Message( $key, $params );
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
1386 function wfMessageFallback( /*...*/ ) {
1387 $args = func_get_args();
1388 return call_user_func_array( 'Message::newFallbackSequence', $args );
1392 * Get a message from anywhere, for the current user language.
1394 * Use wfMsgForContent() instead if the message should NOT
1395 * change depending on the user preferences.
1397 * @deprecated since 1.18
1399 * @param string $key lookup key for the message, usually
1400 * defined in languages/Language.php
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.
1410 function wfMsg( $key ) {
1411 wfDeprecated( __METHOD__
, '1.21' );
1413 $args = func_get_args();
1414 array_shift( $args );
1415 return wfMsgReal( $key, $args );
1419 * Same as above except doesn't transform the message
1421 * @deprecated since 1.18
1423 * @param $key String
1426 function wfMsgNoTrans( $key ) {
1427 wfDeprecated( __METHOD__
, '1.21' );
1429 $args = func_get_args();
1430 array_shift( $args );
1431 return wfMsgReal( $key, $args, true, false, false );
1435 * Get a message from anywhere, for the current global language
1436 * set with $wgLanguageCode.
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.
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.
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.
1453 * @deprecated since 1.18
1455 * @param string $key lookup key for the message, usually
1456 * defined in languages/Language.php
1459 function wfMsgForContent( $key ) {
1460 wfDeprecated( __METHOD__
, '1.21' );
1462 global $wgForceUIMsgAsContentMsg;
1463 $args = func_get_args();
1464 array_shift( $args );
1466 if ( is_array( $wgForceUIMsgAsContentMsg ) &&
1467 in_array( $key, $wgForceUIMsgAsContentMsg ) )
1469 $forcontent = false;
1471 return wfMsgReal( $key, $args, true, $forcontent );
1475 * Same as above except doesn't transform the message
1477 * @deprecated since 1.18
1479 * @param $key String
1482 function wfMsgForContentNoTrans( $key ) {
1483 wfDeprecated( __METHOD__
, '1.21' );
1485 global $wgForceUIMsgAsContentMsg;
1486 $args = func_get_args();
1487 array_shift( $args );
1489 if ( is_array( $wgForceUIMsgAsContentMsg ) &&
1490 in_array( $key, $wgForceUIMsgAsContentMsg ) )
1492 $forcontent = false;
1494 return wfMsgReal( $key, $args, true, $forcontent, false );
1498 * Really get a message
1500 * @deprecated since 1.18
1502 * @param string $key key to get.
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.
1509 function wfMsgReal( $key, $args, $useDB = true, $forContent = false, $transform = true ) {
1510 wfDeprecated( __METHOD__
, '1.21' );
1512 wfProfileIn( __METHOD__
);
1513 $message = wfMsgGetKey( $key, $useDB, $forContent, $transform );
1514 $message = wfMsgReplaceArgs( $message, $args );
1515 wfProfileOut( __METHOD__
);
1520 * Fetch a message string value, but don't replace any keys yet.
1522 * @deprecated since 1.18
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.
1531 function wfMsgGetKey( $key, $useDB = true, $langCode = false, $transform = true ) {
1532 wfDeprecated( __METHOD__
, '1.21' );
1534 wfRunHooks( 'NormalizeMessageKey', array( &$key, &$useDB, &$langCode, &$transform ) );
1536 $cache = MessageCache
::singleton();
1537 $message = $cache->get( $key, $useDB, $langCode );
1538 if ( $message === false ) {
1539 $message = '<' . htmlspecialchars( $key ) . '>';
1540 } elseif ( $transform ) {
1541 $message = $cache->transform( $message );
1547 * Replace message parameter keys on the given formatted output.
1549 * @param $message String
1550 * @param $args Array
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 );
1559 // Replace arguments
1560 if ( count( $args ) ) {
1561 if ( is_array( $args[0] ) ) {
1562 $args = array_values( $args[0] );
1564 $replacementKeys = array();
1565 foreach ( $args as $n => $param ) {
1566 $replacementKeys['$' . ( $n +
1 )] = $param;
1568 $message = strtr( $message, $replacementKeys );
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().
1581 * @deprecated since 1.18
1583 * @param $key String
1584 * @param string ... parameters
1587 function wfMsgHtml( $key ) {
1588 wfDeprecated( __METHOD__
, '1.21' );
1590 $args = func_get_args();
1591 array_shift( $args );
1592 return wfMsgReplaceArgs( htmlspecialchars( wfMsgGetKey( $key ) ), $args );
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().
1602 * @deprecated since 1.18
1604 * @param $key String
1605 * @param string ... parameters
1608 function wfMsgWikiHtml( $key ) {
1609 wfDeprecated( __METHOD__
, '1.21' );
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(),
1620 * Returns message in the requested format
1622 * @deprecated since 1.18
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   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.
1641 function wfMsgExt( $key, $options ) {
1642 wfDeprecated( __METHOD__
, '1.21' );
1644 $args = func_get_args();
1645 array_shift( $args );
1646 array_shift( $args );
1647 $options = (array)$options;
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
);
1661 if ( in_array( 'content', $options, true ) ) {
1664 $langCodeObj = null;
1665 } elseif ( array_key_exists( 'language', $options ) ) {
1666 $forContent = false;
1667 $langCode = wfGetLangObj( $options['language'] );
1668 $langCodeObj = $langCode;
1670 $forContent = false;
1672 $langCodeObj = null;
1675 $string = wfMsgGetKey( $key, /*DB*/true, $langCode, /*Transform*/false );
1677 if ( !in_array( 'replaceafter', $options, true ) ) {
1678 $string = wfMsgReplaceArgs( $string, $args );
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();
1689 if ( $parseInline ) {
1691 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?$/sU', $string, $m ) ) {
1695 } elseif ( in_array( 'parsemag', $options, true ) ) {
1696 $string = $messageCache->transform( $string,
1697 !$forContent, $langCodeObj );
1700 if ( in_array( 'escape', $options, true ) ) {
1701 $string = htmlspecialchars ( $string );
1702 } elseif ( in_array( 'escapenoentities', $options, true ) ) {
1703 $string = Sanitizer
::escapeHtmlAllowEntities( $string );
1706 if ( in_array( 'replaceafter', $options, true ) ) {
1707 $string = wfMsgReplaceArgs( $string, $args );
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.
1718 * @deprecated since 1.18. Use Message::isDisabled().
1720 * @param $key String: the message key looked up
1721 * @return Boolean True if the message *doesn't* exist.
1723 function wfEmptyMsg( $key ) {
1724 wfDeprecated( __METHOD__
, '1.21' );
1726 return MessageCache
::singleton()->get( $key, /*useDB*/true, /*content*/false ) === false;
1730 * Throw a debugging exception. This function previously once exited the process,
1731 * but now throws an exception instead, with similar results.
1733 * @deprecated since 1.22; just throw an MWException yourself
1734 * @param string $msg message shown when dying.
1735 * @throws MWException
1737 function wfDebugDieBacktrace( $msg = '' ) {
1738 wfDeprecated( __FUNCTION__
, '1.22' );
1739 throw new MWException( $msg );
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.
1749 function wfHostname() {
1751 if ( is_null( $host ) ) {
1753 # Hostname overriding
1754 global $wgOverrideHostname;
1755 if ( $wgOverrideHostname !== false ) {
1756 # Set static and skip any detection
1757 $host = $wgOverrideHostname;
1761 if ( function_exists( 'posix_uname' ) ) {
1762 // This function not present on Windows
1763 $uname = posix_uname();
1767 if ( is_array( $uname ) && isset( $uname['nodename'] ) ) {
1768 $host = $uname['nodename'];
1769 } elseif ( getenv( 'COMPUTERNAME' ) ) {
1770 # Windows computer name
1771 $host = getenv( 'COMPUTERNAME' );
1773 # This may be a virtual server.
1774 $host = $_SERVER['SERVER_NAME'];
1781 * Returns a HTML comment with the elapsed time since request.
1782 * This method has no side effects.
1786 function wfReportTime() {
1787 global $wgRequestTime, $wgShowHostnames;
1789 $elapsed = microtime( true ) - $wgRequestTime;
1791 return $wgShowHostnames
1792 ?
sprintf( '<!-- Served by %s in %01.3f secs. -->', wfHostname(), $elapsed )
1793 : sprintf( '<!-- Served in %01.3f secs. -->', $elapsed );
1797 * Safety wrapper for debug_backtrace().
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'.
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).
1807 * @param int $limit This parameter can be used to limit the number of stack frames returned
1809 * @return array of backtrace information
1811 function wfDebugBacktrace( $limit = 0 ) {
1812 static $disabled = null;
1814 if ( extension_loaded( 'Zend Optimizer' ) ) {
1815 wfDebug( "Zend Optimizer detected; skipping debug_backtrace for safety.\n" );
1819 if ( is_null( $disabled ) ) {
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" );
1833 if ( $limit && version_compare( PHP_VERSION
, '5.4.0', '>=' ) ) {
1834 return array_slice( debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT
, $limit +
1 ), 1 );
1836 return array_slice( debug_backtrace(), 1 );
1841 * Get a debug backtrace as a string
1845 function wfBacktrace() {
1846 global $wgCommandLineMode;
1848 if ( $wgCommandLineMode ) {
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];
1861 if ( isset( $call['line'] ) ) {
1862 $line = $call['line'];
1866 if ( $wgCommandLineMode ) {
1867 $msg .= "$file line $line calls ";
1869 $msg .= '<li>' . $file . ' line ' . $line . ' calls ';
1871 if ( !empty( $call['class'] ) ) {
1872 $msg .= $call['class'] . $call['type'];
1874 $msg .= $call['function'] . '()';
1876 if ( $wgCommandLineMode ) {
1882 if ( $wgCommandLineMode ) {
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.
1900 function wfGetCaller( $level = 2 ) {
1901 $backtrace = wfDebugBacktrace( $level +
1 );
1902 if ( isset( $backtrace[$level] ) ) {
1903 return wfFormatStackFrame( $backtrace[$level] );
1910 * Return a string consisting of callers in the stack. Useful sometimes
1911 * for profiling specific points.
1913 * @param int $limit The maximum depth of the stack frame to return, or false for
1917 function wfGetAllCallers( $limit = 3 ) {
1918 $trace = array_reverse( wfDebugBacktrace() );
1919 if ( !$limit ||
$limit > count( $trace ) - 1 ) {
1920 $limit = count( $trace ) - 1;
1922 $trace = array_slice( $trace, -$limit - 1, $limit );
1923 return implode( '/', array_map( 'wfFormatStackFrame', $trace ) );
1927 * Return a string representation of frame
1929 * @param $frame Array
1932 function wfFormatStackFrame( $frame ) {
1933 return isset( $frame['class'] ) ?
1934 $frame['class'] . '::' . $frame['function'] :
1938 /* Some generic result counters, pulled out of SearchEngine */
1943 * @param $offset Int
1947 function wfShowingResults( $offset, $limit ) {
1948 return wfMessage( 'showingresults' )->numParams( $limit, $offset +
1 )->parse();
1952 * Generate (prev x| next x) (20|50|100...) type links for paging
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
1960 * @deprecated in 1.19; use Language::viewPrevNext() instead
1962 function wfViewPrevNext( $offset, $limit, $link, $query = '', $atend = false ) {
1963 wfDeprecated( __METHOD__
, '1.19' );
1967 $query = wfCgiToArray( $query );
1969 if ( is_object( $link ) ) {
1972 $title = Title
::newFromText( $link );
1973 if ( is_null( $title ) ) {
1978 return $wgLang->viewPrevNext( $title, $offset, $limit, $query, $atend );
1983 * @todo FIXME: We may want to blacklist some broken browsers
1985 * @param $force Bool
1986 * @return bool Whereas client accept gzip compression
1988 function wfClientAcceptsGzip( $force = false ) {
1989 static $result = null;
1990 if ( $result === null ||
$force ) {
1992 if ( isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) ) {
1993 # @todo FIXME: We may want to blacklist some broken browsers
1996 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
1997 $_SERVER['HTTP_ACCEPT_ENCODING'],
2001 if ( isset( $m[2] ) && ( $m[1] == 'q' ) && ( $m[2] == 0 ) ) {
2005 wfDebug( "wfClientAcceptsGzip: client accepts gzip.\n" );
2014 * Obtain the offset and limit values from the request string;
2015 * used in special pages
2017 * @param int $deflimit default limit if none supplied
2018 * @param string $optionname Name of a user preference to check against
2022 function wfCheckLimits( $deflimit = 50, $optionname = 'rclimit' ) {
2024 return $wgRequest->getLimitOffset( $deflimit, $optionname );
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.
2033 * @param string $text text to be escaped
2036 function wfEscapeWikiText( $text ) {
2037 static $repl = null, $repl2 = null;
2038 if ( $repl === null ) {
2040 '"' => '"', '&' => '&', "'" => ''', '<' => '<',
2041 '=' => '=', '>' => '>', '[' => '[', ']' => ']',
2042 '{' => '{', '|' => '|', '}' => '}', ';' => ';',
2043 "\n#" => "\n#", "\r#" => "\r#",
2044 "\n*" => "\n*", "\r*" => "\r*",
2045 "\n:" => "\n:", "\r:" => "\r:",
2046 "\n " => "\n ", "\r " => "\r ",
2047 "\n\n" => "\n ", "\r\n" => " \n",
2048 "\n\r" => "\n ", "\r\r" => "\r ",
2049 "\n\t" => "\n	", "\r\t" => "\r	", // "\n\t\n" is treated like "\n\n"
2050 "\n----" => "\n----", "\r----" => "\r----",
2051 '__' => '__', '://' => '://',
2054 // We have to catch everything "\s" matches in PCRE
2055 foreach ( array( 'ISBN', 'RFC', 'PMID' ) as $magic ) {
2056 $repl["$magic "] = "$magic ";
2057 $repl["$magic\t"] = "$magic	";
2058 $repl["$magic\r"] = "$magic ";
2059 $repl["$magic\n"] = "$magic ";
2060 $repl["$magic\f"] = "$magic";
2063 // And handle protocols that don't use "://"
2064 global $wgUrlProtocols;
2066 foreach ( $wgUrlProtocols as $prot ) {
2067 if ( substr( $prot, -1 ) === ':' ) {
2068 $repl2[] = preg_quote( substr( $prot, 0, -1 ), '/' );
2071 $repl2 = $repl2 ?
'/\b(' . join( '|', $repl2 ) . '):/i' : '/^(?!)/';
2073 $text = substr( strtr( "\n$text", $repl ), 1 );
2074 $text = preg_replace( $repl2, '$1:', $text );
2079 * Get the current unix timestamp with microseconds. Useful for profiling
2080 * @deprecated since 1.22; call microtime() directly
2084 wfDeprecated( __FUNCTION__
, '1.22' );
2085 return microtime( true );
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
2093 * @param $dest Mixed
2094 * @param $source Mixed
2095 * @param $force Bool
2098 function wfSetVar( &$dest, $source, $force = false ) {
2100 if ( !is_null( $source ) ||
$force ) {
2107 * As for wfSetVar except setting a bit
2111 * @param $state Bool
2115 function wfSetBit( &$dest, $bit, $state = true ) {
2116 $temp = (bool)( $dest & $bit );
2117 if ( !is_null( $state ) ) {
2128 * A wrapper around the PHP function var_export().
2129 * Either print it or add it to the regular output ($wgOut).
2131 * @param $var mixed A PHP variable to dump.
2133 function wfVarDump( $var ) {
2135 $s = str_replace( "\n", "<br />\n", var_export( $var, true ) . "\n" );
2136 if ( headers_sent() ||
!isset( $wgOut ) ||
!is_object( $wgOut ) ) {
2139 $wgOut->addHTML( $s );
2144 * Provide a simple HTTP error.
2146 * @param $code Int|String
2147 * @param $label String
2148 * @param $desc String
2150 function wfHttpError( $code, $label, $desc ) {
2153 header( "HTTP/1.0 $code $label" );
2154 header( "Status: $code $label" );
2155 $wgOut->sendCacheControl();
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 ) .
2164 nl2br( htmlspecialchars( $desc ) ) .
2165 "</p></body></html>\n";
2169 * Clear away any user-level output buffers, discarding contents.
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.
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
2180 * Note that some PHP configuration options may add output buffer
2181 * layers which cannot be removed; these are left in place.
2183 * @param $resetGzipEncoding Bool
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;
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.
2197 // Give up, and hope the result doesn't break
2201 if ( !ob_end_clean() ) {
2202 // Could not remove output buffer handler; abort now
2203 // to avoid getting in some kind of infinite loop.
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' );
2218 * More legible than passing a 'false' parameter to wfResetOutputBuffers():
2220 * Clear away output buffers, but keep the Content-Encoding header
2221 * produced by ob_gzhandler, if any.
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.
2229 function wfClearOutputBuffers() {
2230 wfResetOutputBuffers( false );
2234 * Converts an Accept-* header into an array mapping string values to quality
2237 * @param $accept String
2238 * @param string $def default
2241 function wfAcceptToPrefs( $accept, $def = '*/*' ) {
2242 # No arg means accept anything (per HTTP spec)
2244 return array( $def => 1.0 );
2249 $parts = explode( ',', $accept );
2251 foreach ( $parts as $part ) {
2252 # @todo FIXME: Doesn't deal with params like 'text/html; level=1'
2253 $values = explode( ';', trim( $part ) );
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] );
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.
2269 * Returns the matching MIME type (or wildcard) if a match, otherwise
2272 * @param $type String
2273 * @param $avail Array
2277 function mimeTypeMatch( $type, $avail ) {
2278 if ( array_key_exists( $type, $avail ) ) {
2281 $parts = explode( '/', $type );
2282 if ( array_key_exists( $parts[0] . '/*', $avail ) ) {
2283 return $parts[0] . '/*';
2284 } elseif ( array_key_exists( '*/*', $avail ) ) {
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.
2298 * @param array $cprefs client's acceptable type list
2299 * @param array $sprefs server's offered types
2302 * @todo FIXME: Doesn't handle params like 'text/plain; charset=UTF-8'
2303 * XXX: generalize to negotiate other stuff
2305 function wfNegotiateType( $cprefs, $sprefs ) {
2308 foreach ( array_keys( $sprefs ) as $type ) {
2309 $parts = explode( '/', $type );
2310 if ( $parts[1] != '*' ) {
2311 $ckey = mimeTypeMatch( $type, $cprefs );
2313 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
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 );
2323 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
2331 foreach ( array_keys( $combine ) as $type ) {
2332 if ( $combine[$type] > $bestq ) {
2334 $bestq = $combine[$type];
2342 * Reference-counted warning suppression
2346 function wfSuppressWarnings( $end = false ) {
2347 static $suppressCount = 0;
2348 static $originalLevel = false;
2351 if ( $suppressCount ) {
2353 if ( !$suppressCount ) {
2354 error_reporting( $originalLevel );
2358 if ( !$suppressCount ) {
2359 $originalLevel = error_reporting( E_ALL
& ~
(
2374 * Restore error level to previous value
2376 function wfRestoreWarnings() {
2377 wfSuppressWarnings( true );
2380 # Autodetect, convert and provide timestamps of various types
2383 * Unix time - the number of seconds since 1970-01-01 00:00:00 UTC
2385 define( 'TS_UNIX', 0 );
2388 * MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
2390 define( 'TS_MW', 1 );
2393 * MySQL DATETIME (YYYY-MM-DD HH:MM:SS)
2395 define( 'TS_DB', 2 );
2398 * RFC 2822 format, for E-mail and HTTP headers
2400 define( 'TS_RFC2822', 3 );
2403 * ISO 8601 format with no timezone: 1986-02-09T20:00:00Z
2405 * This is used by Special:Export
2407 define( 'TS_ISO_8601', 4 );
2410 * An Exif timestamp (YYYY:MM:DD HH:MM:SS)
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.
2416 define( 'TS_EXIF', 5 );
2419 * Oracle format time.
2421 define( 'TS_ORACLE', 6 );
2424 * Postgres format time.
2426 define( 'TS_POSTGRES', 7 );
2429 * ISO 8601 basic format with no timezone: 19860209T200000Z. This is used by ResourceLoader
2431 define( 'TS_ISO_8601_BASIC', 9 );
2434 * Get a timestamp string in one of various formats
2436 * @param $outputtype Mixed: A timestamp in one of the supported formats, the
2437 * function will autodetect which format is supplied and act
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
2442 function wfTimestamp( $outputtype = TS_UNIX
, $ts = 0 ) {
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" );
2453 * Return a formatted timestamp, or null if input is null.
2454 * For dealing with nullable timestamp columns in the database.
2456 * @param $outputtype Integer
2460 function wfTimestampOrNull( $outputtype = TS_UNIX
, $ts = null ) {
2461 if ( is_null( $ts ) ) {
2464 return wfTimestamp( $outputtype, $ts );
2469 * Convenience function; returns MediaWiki timestamp for the present time.
2473 function wfTimestampNow() {
2475 return wfTimestamp( TS_MW
, time() );
2479 * Check if the operating system is Windows
2481 * @return Bool: true if it's Windows, False otherwise.
2483 function wfIsWindows() {
2484 static $isWindows = null;
2485 if ( $isWindows === null ) {
2486 $isWindows = substr( php_uname(), 0, 7 ) == 'Windows';
2492 * Check if we are running under HHVM
2496 function wfIsHHVM() {
2497 return defined( 'HHVM_VERSION' );
2501 * Swap two variables
2506 function swap( &$x, &$y ) {
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().
2518 * NOTE: When possible, use instead the tmpfile() function to create
2519 * temporary files to avoid race conditions on file creation, etc.
2523 function wfTempDir() {
2524 global $wgTmpDirectory;
2526 if ( $wgTmpDirectory !== false ) {
2527 return $wgTmpDirectory;
2530 $tmpDir = array_map( "getenv", array( 'TMPDIR', 'TMP', 'TEMP' ) );
2532 foreach ( $tmpDir as $tmp ) {
2533 if ( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
2537 return sys_get_temp_dir();
2541 * Make directory, and make all parent directories if they don't exist
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
2549 function wfMkdirParents( $dir, $mode = null, $caller = null ) {
2550 global $wgDirectoryMode;
2552 if ( FileBackend
::isStoragePath( $dir ) ) { // sanity
2553 throw new MWException( __FUNCTION__
. " given storage path '$dir'." );
2556 if ( !is_null( $caller ) ) {
2557 wfDebug( "$caller: called wfMkdirParents($dir)\n" );
2560 if ( strval( $dir ) === '' ||
( file_exists( $dir ) && is_dir( $dir ) ) ) {
2564 $dir = str_replace( array( '\\', '/' ), DIRECTORY_SEPARATOR
, $dir );
2566 if ( is_null( $mode ) ) {
2567 $mode = $wgDirectoryMode;
2570 // Turn off the normal warning, we're doing our own below
2571 wfSuppressWarnings();
2572 $ok = mkdir( $dir, $mode, true ); // PHP5 <3
2573 wfRestoreWarnings();
2576 //directory may have been created on another request since we last checked
2577 if ( is_dir( $dir ) ) {
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 ) );
2588 * Remove a directory and all its content.
2589 * Does not hide error.
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 );
2601 unlink( $dir . '/' . $object );
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
2616 function wfPercent( $nr, $acc = 2, $round = true ) {
2617 $ret = sprintf( "%.${acc}f", $nr );
2618 return $round ?
round( $ret, $acc ) . '%' : "$ret%";
2622 * Find out whether or not a mixed variable exists in a string
2624 * @deprecated Just use str(i)pos
2625 * @param $needle String
2626 * @param $str String
2627 * @param $insensitive Boolean
2630 function in_string( $needle, $str, $insensitive = false ) {
2631 wfDeprecated( __METHOD__
, '1.21' );
2633 if ( $insensitive ) {
2637 return $func( $str, $needle ) !== false;
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.
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.
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.
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.
2658 * I frickin' hate PHP... :P
2660 * @param $setting String
2663 function wfIniGetBool( $setting ) {
2664 $val = strtolower( ini_get( $setting ) );
2665 // 'on' and 'true' can't have whitespace around them, but '1' can.
2669 ||
preg_match( "/^\s*[+-]?0*[1-9]/", $val ); // approx C atoi() function
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.
2677 * Also fixes the locale problems on Linux in PHP 5.2.6+ (bug backported to
2678 * earlier distro releases of PHP)
2683 function wfEscapeShellArg() {
2684 wfInitShellLocale();
2686 $args = func_get_args();
2689 foreach ( $args as $arg ) {
2696 if ( wfIsWindows() ) {
2697 // Escaping for an MSVC-style command line parser and CMD.EXE
2698 // @codingStandardsIgnoreStart For long URLs
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
2704 // Double the backslashes before any double quotes. Escape the double quotes.
2705 // @codingStandardsIgnoreEnd
2706 $tokens = preg_split( '/(\\\\*")/', $arg, -1, PREG_SPLIT_DELIM_CAPTURE
);
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
2722 // Double the backslashes before the end of the string, because
2723 // we will soon add a quote
2725 if ( preg_match( '/^(.*?)(\\\\+)$/', $arg, $m ) ) {
2726 $arg = $m[1] . str_replace( '\\', '\\\\', $m[2] );
2729 // Add surrounding quotes
2730 $retVal .= '"' . $arg . '"';
2732 $retVal .= escapeshellarg( $arg );
2739 * Check if wfShellExec() is effectively disabled via php.ini config
2740 * @return bool|string False or one of (safemode,disabled)
2743 function wfShellExecDisabled() {
2744 static $disabled = null;
2745 if ( is_null( $disabled ) ) {
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';
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';
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
2778 * @return string collected stdout as a string
2780 function wfShellExec( $cmd, &$retval = null, $environ = array(),
2781 $limits = array(), $options = array()
2783 global $IP, $wgMaxShellMemory, $wgMaxShellFileSize, $wgMaxShellTime,
2784 $wgMaxShellWallClockTime, $wgShellCgroup;
2786 $disabled = wfShellExecDisabled();
2789 return $disabled == 'safemode' ?
2790 'Unable to run external programs in safe mode.' :
2791 'Unable to run external programs, proc_open() is disabled.';
2794 $includeStderr = isset( $options['duplicateStderr'] ) && $options['duplicateStderr'];
2796 wfInitShellLocale();
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.
2807 $envcmd .= "set $k=" . preg_replace( '/([&|()<>^"])/', '^\\1', $v ) . '&& ';
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
2812 $envcmd .= "$k=" . escapeshellarg( $v ) . ' ';
2815 $cmd = $envcmd . $cmd;
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'] ) ) {
2825 $wallTime = intval( $wgMaxShellWallClockTime );
2827 $mem = intval ( isset( $limits['memory'] ) ?
$limits['memory'] : $wgMaxShellMemory );
2828 $filesize = intval ( isset( $limits['filesize'] ) ?
$limits['filesize'] : $wgMaxShellFileSize );
2830 if ( $time > 0 ||
$mem > 0 ||
$filesize > 0 ||
$wallTime > 0 ) {
2831 $cmd = '/bin/bash ' . escapeshellarg( "$IP/includes/limit.sh" ) . ' ' .
2832 escapeshellarg( $cmd ) . ' ' .
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"
2843 } elseif ( $includeStderr ) {
2846 } elseif ( $includeStderr ) {
2849 wfDebug( "wfShellExec: $cmd\n" );
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' );
2859 # TODO/FIXME: This is a bad hack to workaround an HHVM bug that prevents
2860 # proc_open() from opening stdin/stdout, so use /dev/null *for now*
2861 # See bug 56597 / https://github.com/facebook/hhvm/issues/1247 for more info
2863 $desc[0] = array( 'file', '/dev/null', 'r' );
2864 $desc[2] = array( 'file', '/dev/null', 'w' );
2868 $proc = proc_open( $cmd, $desc, $pipes );
2870 wfDebugLog( 'exec', "proc_open() failed: $cmd\n" );
2874 $outBuffer = $logBuffer = '';
2875 $emptyArray = array();
2879 // According to the documentation, it is possible for stream_select()
2880 // to fail due to EINTR. I haven't managed to induce this in testing
2881 // despite sending various signals. If it did happen, the error
2882 // message would take the form:
2884 // stream_select(): unable to select [4]: Interrupted system call (max_fd=5)
2886 // where [4] is the value of the macro EINTR and "Interrupted system
2887 // call" is string which according to the Linux manual is "possibly"
2888 // localised according to LC_MESSAGES.
2889 $eintr = defined( 'SOCKET_EINTR' ) ? SOCKET_EINTR
: 4;
2890 $eintrMessage = "stream_select(): unable to select [$eintr]";
2892 // Build a table mapping resource IDs to pipe FDs to work around a
2893 // PHP 5.3 issue in which stream_select() does not preserve array keys
2894 // <https://bugs.php.net/bug.php?id=53427>.
2896 foreach ( $pipes as $fd => $pipe ) {
2897 $fds[(int)$pipe] = $fd;
2901 $status = proc_get_status( $proc );
2902 if ( !$status['running'] ) {
2907 $readyPipes = $pipes;
2910 @trigger_error
( '' );
2911 if ( @stream_select
( $readyPipes, $emptyArray, $emptyArray, null ) === false ) {
2912 $error = error_get_last();
2913 if ( strncmp( $error['message'], $eintrMessage, strlen( $eintrMessage ) ) == 0 ) {
2916 trigger_error( $error['message'], E_USER_WARNING
);
2917 $logMsg = $error['message'];
2921 foreach ( $readyPipes as $pipe ) {
2922 $block = fread( $pipe, 65536 );
2923 $fd = $fds[(int)$pipe];
2924 if ( $block === '' ) {
2926 fclose( $pipes[$fd] );
2927 unset( $pipes[$fd] );
2931 } elseif ( $block === false ) {
2933 $logMsg = "Error reading from pipe";
2935 } elseif ( $fd == 1 ) {
2937 $outBuffer .= $block;
2938 } elseif ( $fd == 3 ) {
2940 $logBuffer .= $block;
2941 if ( strpos( $block, "\n" ) !== false ) {
2942 $lines = explode( "\n", $logBuffer );
2943 $logBuffer = array_pop( $lines );
2944 foreach ( $lines as $line ) {
2945 wfDebugLog( 'exec', $line );
2952 foreach ( $pipes as $pipe ) {
2956 // Use the status previously collected if possible, since proc_get_status()
2957 // just calls waitpid() which will not return anything useful the second time.
2958 if ( $status === false ) {
2959 $status = proc_get_status( $proc );
2962 if ( $logMsg !== false ) {
2963 // Read/select error
2965 proc_close( $proc );
2966 } elseif ( $status['signaled'] ) {
2967 $logMsg = "Exited with signal {$status['termsig']}";
2968 $retval = 128 +
$status['termsig'];
2969 proc_close( $proc );
2971 if ( $status['running'] ) {
2972 $retval = proc_close( $proc );
2974 $retval = $status['exitcode'];
2975 proc_close( $proc );
2977 if ( $retval == 127 ) {
2978 $logMsg = "Possibly missing executable file";
2979 } elseif ( $retval >= 129 && $retval <= 192 ) {
2980 $logMsg = "Probably exited with signal " . ( $retval - 128 );
2984 if ( $logMsg !== false ) {
2985 wfDebugLog( 'exec', "$logMsg: $cmd\n" );
2992 * Execute a shell command, returning both stdout and stderr. Convenience
2993 * function, as all the arguments to wfShellExec can become unwieldy.
2995 * @note This also includes errors from limit.sh, e.g. if $wgMaxShellFileSize is exceeded.
2996 * @param string $cmd Command line, properly escaped for shell.
2997 * @param &$retval null|Mixed optional, will receive the program's exit code.
2998 * (non-zero is usually failure)
2999 * @param array $environ optional environment variables which should be
3000 * added to the executed command environment.
3001 * @param array $limits optional array with limits(filesize, memory, time, walltime)
3002 * this overwrites the global wgShellMax* limits.
3003 * @return string collected stdout and stderr as a string
3005 function wfShellExecWithStderr( $cmd, &$retval = null, $environ = array(), $limits = array() ) {
3006 return wfShellExec( $cmd, $retval, $environ, $limits, array( 'duplicateStderr' => true ) );
3010 * Workaround for http://bugs.php.net/bug.php?id=45132
3011 * escapeshellarg() destroys non-ASCII characters if LANG is not a UTF-8 locale
3013 function wfInitShellLocale() {
3014 static $done = false;
3019 global $wgShellLocale;
3020 if ( !wfIniGetBool( 'safe_mode' ) ) {
3021 putenv( "LC_CTYPE=$wgShellLocale" );
3022 setlocale( LC_CTYPE
, $wgShellLocale );
3027 * Alias to wfShellWikiCmd()
3028 * @see wfShellWikiCmd()
3030 function wfShellMaintenanceCmd( $script, array $parameters = array(), array $options = array() ) {
3031 return wfShellWikiCmd( $script, $parameters, $options );
3035 * Generate a shell-escaped command line string to run a MediaWiki cli script.
3036 * Note that $parameters should be a flat array and an option with an argument
3037 * should consist of two consecutive items in the array (do not use "--option value").
3038 * @param string $script MediaWiki cli script path
3039 * @param array $parameters Arguments and options to the script
3040 * @param array $options Associative array of options:
3041 * 'php': The path to the php executable
3042 * 'wrapper': Path to a PHP wrapper to handle the maintenance script
3045 function wfShellWikiCmd( $script, array $parameters = array(), array $options = array() ) {
3047 // Give site config file a chance to run the script in a wrapper.
3048 // The caller may likely want to call wfBasename() on $script.
3049 wfRunHooks( 'wfShellWikiCmd', array( &$script, &$parameters, &$options ) );
3050 $cmd = isset( $options['php'] ) ?
array( $options['php'] ) : array( $wgPhpCli );
3051 if ( isset( $options['wrapper'] ) ) {
3052 $cmd[] = $options['wrapper'];
3055 // Escape each parameter for shell
3056 return implode( " ", array_map( 'wfEscapeShellArg', array_merge( $cmd, $parameters ) ) );
3060 * wfMerge attempts to merge differences between three texts.
3061 * Returns true for a clean merge and false for failure or a conflict.
3063 * @param $old String
3064 * @param $mine String
3065 * @param $yours String
3066 * @param $result String
3069 function wfMerge( $old, $mine, $yours, &$result ) {
3072 # This check may also protect against code injection in
3073 # case of broken installations.
3074 wfSuppressWarnings();
3075 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
3076 wfRestoreWarnings();
3078 if ( !$haveDiff3 ) {
3079 wfDebug( "diff3 not found\n" );
3083 # Make temporary files
3085 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
3086 $mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
3087 $yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
3089 # NOTE: diff3 issues a warning to stderr if any of the files does not end with
3090 # a newline character. To avoid this, we normalize the trailing whitespace before
3091 # creating the diff.
3093 fwrite( $oldtextFile, rtrim( $old ) . "\n" );
3094 fclose( $oldtextFile );
3095 fwrite( $mytextFile, rtrim( $mine ) . "\n" );
3096 fclose( $mytextFile );
3097 fwrite( $yourtextFile, rtrim( $yours ) . "\n" );
3098 fclose( $yourtextFile );
3100 # Check for a conflict
3101 $cmd = wfEscapeShellArg( $wgDiff3 ) . ' -a --overlap-only ' .
3102 wfEscapeShellArg( $mytextName ) . ' ' .
3103 wfEscapeShellArg( $oldtextName ) . ' ' .
3104 wfEscapeShellArg( $yourtextName );
3105 $handle = popen( $cmd, 'r' );
3107 if ( fgets( $handle, 1024 ) ) {
3115 $cmd = wfEscapeShellArg( $wgDiff3 ) . ' -a -e --merge ' .
3116 wfEscapeShellArg( $mytextName, $oldtextName, $yourtextName );
3117 $handle = popen( $cmd, 'r' );
3120 $data = fread( $handle, 8192 );
3121 if ( strlen( $data ) == 0 ) {
3127 unlink( $mytextName );
3128 unlink( $oldtextName );
3129 unlink( $yourtextName );
3131 if ( $result === '' && $old !== '' && !$conflict ) {
3132 wfDebug( "Unexpected null result from diff3. Command: $cmd\n" );
3139 * Returns unified plain-text diff of two texts.
3140 * Useful for machine processing of diffs.
3142 * @param string $before the text before the changes.
3143 * @param string $after the text after the changes.
3144 * @param string $params command-line options for the diff command.
3145 * @return String: unified diff of $before and $after
3147 function wfDiff( $before, $after, $params = '-u' ) {
3148 if ( $before == $after ) {
3153 wfSuppressWarnings();
3154 $haveDiff = $wgDiff && file_exists( $wgDiff );
3155 wfRestoreWarnings();
3157 # This check may also protect against code injection in
3158 # case of broken installations.
3160 wfDebug( "diff executable not found\n" );
3161 $diffs = new Diff( explode( "\n", $before ), explode( "\n", $after ) );
3162 $format = new UnifiedDiffFormatter();
3163 return $format->format( $diffs );
3166 # Make temporary files
3168 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
3169 $newtextFile = fopen( $newtextName = tempnam( $td, 'merge-your-' ), 'w' );
3171 fwrite( $oldtextFile, $before );
3172 fclose( $oldtextFile );
3173 fwrite( $newtextFile, $after );
3174 fclose( $newtextFile );
3176 // Get the diff of the two files
3177 $cmd = "$wgDiff " . $params . ' ' . wfEscapeShellArg( $oldtextName, $newtextName );
3179 $h = popen( $cmd, 'r' );
3184 $data = fread( $h, 8192 );
3185 if ( strlen( $data ) == 0 ) {
3193 unlink( $oldtextName );
3194 unlink( $newtextName );
3196 // Kill the --- and +++ lines. They're not useful.
3197 $diff_lines = explode( "\n", $diff );
3198 if ( strpos( $diff_lines[0], '---' ) === 0 ) {
3199 unset( $diff_lines[0] );
3201 if ( strpos( $diff_lines[1], '+++' ) === 0 ) {
3202 unset( $diff_lines[1] );
3205 $diff = implode( "\n", $diff_lines );
3211 * This function works like "use VERSION" in Perl, the program will die with a
3212 * backtrace if the current version of PHP is less than the version provided
3214 * This is useful for extensions which due to their nature are not kept in sync
3215 * with releases, and might depend on other versions of PHP than the main code
3217 * Note: PHP might die due to parsing errors in some cases before it ever
3218 * manages to call this function, such is life
3220 * @see perldoc -f use
3222 * @param $req_ver Mixed: the version to check, can be a string, an integer, or
3224 * @throws MWException
3226 function wfUsePHP( $req_ver ) {
3227 $php_ver = PHP_VERSION
;
3229 if ( version_compare( $php_ver, (string)$req_ver, '<' ) ) {
3230 throw new MWException( "PHP $req_ver required--this is only $php_ver" );
3235 * This function works like "use VERSION" in Perl except it checks the version
3236 * of MediaWiki, the program will die with a backtrace if the current version
3237 * of MediaWiki is less than the version provided.
3239 * This is useful for extensions which due to their nature are not kept in sync
3242 * Note: Due to the behavior of PHP's version_compare() which is used in this
3243 * fuction, if you want to allow the 'wmf' development versions add a 'c' (or
3244 * any single letter other than 'a', 'b' or 'p') as a post-fix to your
3245 * targeted version number. For example if you wanted to allow any variation
3246 * of 1.22 use `wfUseMW( '1.22c' )`. Using an 'a' or 'b' instead of 'c' will
3247 * not result in the same comparison due to the internal logic of
3248 * version_compare().
3250 * @see perldoc -f use
3252 * @param $req_ver Mixed: the version to check, can be a string, an integer, or
3254 * @throws MWException
3256 function wfUseMW( $req_ver ) {
3259 if ( version_compare( $wgVersion, (string)$req_ver, '<' ) ) {
3260 throw new MWException( "MediaWiki $req_ver required--this is only $wgVersion" );
3265 * Return the final portion of a pathname.
3266 * Reimplemented because PHP5's "basename()" is buggy with multibyte text.
3267 * http://bugs.php.net/bug.php?id=33898
3269 * PHP's basename() only considers '\' a pathchar on Windows and Netware.
3270 * We'll consider it so always, as we don't want '\s' in our Unix paths either.
3272 * @param $path String
3273 * @param string $suffix to remove if present
3276 function wfBaseName( $path, $suffix = '' ) {
3277 if ( $suffix == '' ) {
3280 $encSuffix = '(?:' . preg_quote( $suffix, '#' ) . ')?';
3284 if ( preg_match( "#([^/\\\\]*?){$encSuffix}[/\\\\]*$#", $path, $matches ) ) {
3292 * Generate a relative path name to the given file.
3293 * May explode on non-matching case-insensitive paths,
3294 * funky symlinks, etc.
3296 * @param string $path absolute destination path including target filename
3297 * @param string $from Absolute source path, directory only
3300 function wfRelativePath( $path, $from ) {
3301 // Normalize mixed input on Windows...
3302 $path = str_replace( '/', DIRECTORY_SEPARATOR
, $path );
3303 $from = str_replace( '/', DIRECTORY_SEPARATOR
, $from );
3305 // Trim trailing slashes -- fix for drive root
3306 $path = rtrim( $path, DIRECTORY_SEPARATOR
);
3307 $from = rtrim( $from, DIRECTORY_SEPARATOR
);
3309 $pieces = explode( DIRECTORY_SEPARATOR
, dirname( $path ) );
3310 $against = explode( DIRECTORY_SEPARATOR
, $from );
3312 if ( $pieces[0] !== $against[0] ) {
3313 // Non-matching Windows drive letters?
3314 // Return a full path.
3318 // Trim off common prefix
3319 while ( count( $pieces ) && count( $against )
3320 && $pieces[0] == $against[0] ) {
3321 array_shift( $pieces );
3322 array_shift( $against );
3325 // relative dots to bump us to the parent
3326 while ( count( $against ) ) {
3327 array_unshift( $pieces, '..' );
3328 array_shift( $against );
3331 array_push( $pieces, wfBaseName( $path ) );
3333 return implode( DIRECTORY_SEPARATOR
, $pieces );
3337 * Convert an arbitrarily-long digit string from one numeric base
3338 * to another, optionally zero-padding to a minimum column width.
3340 * Supports base 2 through 36; digit values 10-36 are represented
3341 * as lowercase letters a-z. Input is case-insensitive.
3343 * @param string $input Input number
3344 * @param int $sourceBase Base of the input number
3345 * @param int $destBase Desired base of the output
3346 * @param int $pad Minimum number of digits in the output (pad with zeroes)
3347 * @param bool $lowercase Whether to output in lowercase or uppercase
3348 * @param string $engine Either "gmp", "bcmath", or "php"
3349 * @return string|bool The output number as a string, or false on error
3351 function wfBaseConvert( $input, $sourceBase, $destBase, $pad = 1,
3352 $lowercase = true, $engine = 'auto'
3354 $input = (string)$input;
3360 $sourceBase != (int)$sourceBase ||
3361 $destBase != (int)$destBase ||
3362 $pad != (int)$pad ||
3364 "/^[" . substr( '0123456789abcdefghijklmnopqrstuvwxyz', 0, $sourceBase ) . "]+$/i",
3371 static $baseChars = array(
3372 10 => 'a', 11 => 'b', 12 => 'c', 13 => 'd', 14 => 'e', 15 => 'f',
3373 16 => 'g', 17 => 'h', 18 => 'i', 19 => 'j', 20 => 'k', 21 => 'l',
3374 22 => 'm', 23 => 'n', 24 => 'o', 25 => 'p', 26 => 'q', 27 => 'r',
3375 28 => 's', 29 => 't', 30 => 'u', 31 => 'v', 32 => 'w', 33 => 'x',
3376 34 => 'y', 35 => 'z',
3378 '0' => 0, '1' => 1, '2' => 2, '3' => 3, '4' => 4, '5' => 5,
3379 '6' => 6, '7' => 7, '8' => 8, '9' => 9, 'a' => 10, 'b' => 11,
3380 'c' => 12, 'd' => 13, 'e' => 14, 'f' => 15, 'g' => 16, 'h' => 17,
3381 'i' => 18, 'j' => 19, 'k' => 20, 'l' => 21, 'm' => 22, 'n' => 23,
3382 'o' => 24, 'p' => 25, 'q' => 26, 'r' => 27, 's' => 28, 't' => 29,
3383 'u' => 30, 'v' => 31, 'w' => 32, 'x' => 33, 'y' => 34, 'z' => 35
3386 if ( extension_loaded( 'gmp' ) && ( $engine == 'auto' ||
$engine == 'gmp' ) ) {
3387 $result = gmp_strval( gmp_init( $input, $sourceBase ), $destBase );
3388 } elseif ( extension_loaded( 'bcmath' ) && ( $engine == 'auto' ||
$engine == 'bcmath' ) ) {
3390 foreach ( str_split( strtolower( $input ) ) as $char ) {
3391 $decimal = bcmul( $decimal, $sourceBase );
3392 $decimal = bcadd( $decimal, $baseChars[$char] );
3395 for ( $result = ''; bccomp( $decimal, 0 ); $decimal = bcdiv( $decimal, $destBase, 0 ) ) {
3396 $result .= $baseChars[bcmod( $decimal, $destBase )];
3399 $result = strrev( $result );
3401 $inDigits = array();
3402 foreach ( str_split( strtolower( $input ) ) as $char ) {
3403 $inDigits[] = $baseChars[$char];
3406 // Iterate over the input, modulo-ing out an output digit
3407 // at a time until input is gone.
3409 while ( $inDigits ) {
3411 $workDigits = array();
3414 foreach ( $inDigits as $digit ) {
3415 $work *= $sourceBase;
3418 if ( $workDigits ||
$work >= $destBase ) {
3419 $workDigits[] = (int)( $work / $destBase );
3424 // All that division leaves us with a remainder,
3425 // which is conveniently our next output digit.
3426 $result .= $baseChars[$work];
3429 $inDigits = $workDigits;
3432 $result = strrev( $result );
3435 if ( !$lowercase ) {
3436 $result = strtoupper( $result );
3439 return str_pad( $result, $pad, '0', STR_PAD_LEFT
);
3445 function wfHttpOnlySafe() {
3446 global $wgHttpOnlyBlacklist;
3448 if ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) {
3449 foreach ( $wgHttpOnlyBlacklist as $regex ) {
3450 if ( preg_match( $regex, $_SERVER['HTTP_USER_AGENT'] ) ) {
3460 * Check if there is sufficient entropy in php's built-in session generation
3461 * @return bool true = there is sufficient entropy
3463 function wfCheckEntropy() {
3465 ( wfIsWindows() && version_compare( PHP_VERSION
, '5.3.3', '>=' ) )
3466 ||
ini_get( 'session.entropy_file' )
3468 && intval( ini_get( 'session.entropy_length' ) ) >= 32;
3472 * Override session_id before session startup if php's built-in
3473 * session generation code is not secure.
3475 function wfFixSessionID() {
3476 // If the cookie or session id is already set we already have a session and should abort
3477 if ( isset( $_COOKIE[session_name()] ) ||
session_id() ) {
3481 // PHP's built-in session entropy is enabled if:
3482 // - entropy_file is set or you're on Windows with php 5.3.3+
3483 // - AND entropy_length is > 0
3484 // We treat it as disabled if it doesn't have an entropy length of at least 32
3485 $entropyEnabled = wfCheckEntropy();
3487 // If built-in entropy is not enabled or not sufficient override PHP's
3488 // built in session id generation code
3489 if ( !$entropyEnabled ) {
3490 wfDebug( __METHOD__
. ": PHP's built in entropy is disabled or not sufficient, " .
3491 "overriding session id generation using our cryptrand source.\n" );
3492 session_id( MWCryptRand
::generateHex( 32 ) );
3497 * Reset the session_id
3500 function wfResetSessionID() {
3501 global $wgCookieSecure;
3502 $oldSessionId = session_id();
3503 $cookieParams = session_get_cookie_params();
3504 if ( wfCheckEntropy() && $wgCookieSecure == $cookieParams['secure'] ) {
3505 session_regenerate_id( false );
3509 wfSetupSession( MWCryptRand
::generateHex( 32 ) );
3512 $newSessionId = session_id();
3513 wfRunHooks( 'ResetSessionID', array( $oldSessionId, $newSessionId ) );
3518 * Initialise php session
3520 * @param $sessionId Bool
3522 function wfSetupSession( $sessionId = false ) {
3523 global $wgSessionsInMemcached, $wgSessionsInObjectCache, $wgCookiePath, $wgCookieDomain,
3524 $wgCookieSecure, $wgCookieHttpOnly, $wgSessionHandler;
3525 if ( $wgSessionsInObjectCache ||
$wgSessionsInMemcached ) {
3526 ObjectCacheSessionHandler
::install();
3527 } elseif ( $wgSessionHandler && $wgSessionHandler != ini_get( 'session.save_handler' ) ) {
3528 # Only set this if $wgSessionHandler isn't null and session.save_handler
3529 # hasn't already been set to the desired value (that causes errors)
3530 ini_set( 'session.save_handler', $wgSessionHandler );
3532 $httpOnlySafe = wfHttpOnlySafe() && $wgCookieHttpOnly;
3533 wfDebugLog( 'cookie',
3534 'session_set_cookie_params: "' . implode( '", "',
3540 $httpOnlySafe ) ) . '"' );
3541 session_set_cookie_params( 0, $wgCookiePath, $wgCookieDomain, $wgCookieSecure, $httpOnlySafe );
3542 session_cache_limiter( 'private, must-revalidate' );
3544 session_id( $sessionId );
3548 wfSuppressWarnings();
3550 wfRestoreWarnings();
3554 * Get an object from the precompiled serialized directory
3556 * @param $name String
3557 * @return Mixed: the variable on success, false on failure
3559 function wfGetPrecompiledData( $name ) {
3562 $file = "$IP/serialized/$name";
3563 if ( file_exists( $file ) ) {
3564 $blob = file_get_contents( $file );
3566 return unserialize( $blob );
3578 function wfMemcKey( /*... */ ) {
3579 global $wgCachePrefix;
3580 $prefix = $wgCachePrefix === false ?
wfWikiID() : $wgCachePrefix;
3581 $args = func_get_args();
3582 $key = $prefix . ':' . implode( ':', $args );
3583 $key = str_replace( ' ', '_', $key );
3588 * Get a cache key for a foreign DB
3591 * @param $prefix String
3592 * @param varargs String
3595 function wfForeignMemcKey( $db, $prefix /*, ... */ ) {
3596 $args = array_slice( func_get_args(), 2 );
3598 $key = "$db-$prefix:" . implode( ':', $args );
3600 $key = $db . ':' . implode( ':', $args );
3602 return str_replace( ' ', '_', $key );
3606 * Get an ASCII string identifying this wiki
3607 * This is used as a prefix in memcached keys
3611 function wfWikiID() {
3612 global $wgDBprefix, $wgDBname;
3613 if ( $wgDBprefix ) {
3614 return "$wgDBname-$wgDBprefix";
3621 * Split a wiki ID into DB name and table prefix
3623 * @param $wiki String
3627 function wfSplitWikiID( $wiki ) {
3628 $bits = explode( '-', $wiki, 2 );
3629 if ( count( $bits ) < 2 ) {
3636 * Get a Database object.
3638 * @param $db Integer: index of the connection to get. May be DB_MASTER for the
3639 * master (for write queries), DB_SLAVE for potentially lagged read
3640 * queries, or an integer >= 0 for a particular server.
3642 * @param $groups Mixed: query groups. An array of group names that this query
3643 * belongs to. May contain a single string if the query is only
3646 * @param string $wiki the wiki ID, or false for the current wiki
3648 * Note: multiple calls to wfGetDB(DB_SLAVE) during the course of one request
3649 * will always return the same object, unless the underlying connection or load
3650 * balancer is manually destroyed.
3652 * Note 2: use $this->getDB() in maintenance scripts that may be invoked by
3653 * updater to ensure that a proper database is being updated.
3655 * @return DatabaseBase
3657 function &wfGetDB( $db, $groups = array(), $wiki = false ) {
3658 return wfGetLB( $wiki )->getConnection( $db, $groups, $wiki );
3662 * Get a load balancer object.
3664 * @param string $wiki wiki ID, or false for the current wiki
3665 * @return LoadBalancer
3667 function wfGetLB( $wiki = false ) {
3668 return wfGetLBFactory()->getMainLB( $wiki );
3672 * Get the load balancer factory object
3676 function &wfGetLBFactory() {
3677 return LBFactory
::singleton();
3682 * Shortcut for RepoGroup::singleton()->findFile()
3684 * @param string $title or Title object
3685 * @param array $options Associative array of options:
3686 * time: requested time for an archived image, or false for the
3687 * current version. An image object will be returned which was
3688 * created at the specified time.
3690 * ignoreRedirect: If true, do not follow file redirects
3692 * private: If true, return restricted (deleted) files if the current
3693 * user is allowed to view them. Otherwise, such files will not
3696 * bypassCache: If true, do not use the process-local cache of File objects
3698 * @return File, or false if the file does not exist
3700 function wfFindFile( $title, $options = array() ) {
3701 return RepoGroup
::singleton()->findFile( $title, $options );
3705 * Get an object referring to a locally registered file.
3706 * Returns a valid placeholder object if the file does not exist.
3708 * @param $title Title|String
3709 * @return LocalFile|null A File, or null if passed an invalid Title
3711 function wfLocalFile( $title ) {
3712 return RepoGroup
::singleton()->getLocalRepo()->newFile( $title );
3716 * Stream a file to the browser. Back-compat alias for StreamFile::stream()
3717 * @deprecated since 1.19
3719 function wfStreamFile( $fname, $headers = array() ) {
3720 wfDeprecated( __FUNCTION__
, '1.19' );
3721 StreamFile
::stream( $fname, $headers );
3725 * Should low-performance queries be disabled?
3728 * @codeCoverageIgnore
3730 function wfQueriesMustScale() {
3731 global $wgMiserMode;
3733 ||
( SiteStats
::pages() > 100000
3734 && SiteStats
::edits() > 1000000
3735 && SiteStats
::users() > 10000 );
3739 * Get the path to a specified script file, respecting file
3740 * extensions; this is a wrapper around $wgScriptExtension etc.
3741 * except for 'index' and 'load' which use $wgScript/$wgLoadScript
3743 * @param string $script script filename, sans extension
3746 function wfScript( $script = 'index' ) {
3747 global $wgScriptPath, $wgScriptExtension, $wgScript, $wgLoadScript;
3748 if ( $script === 'index' ) {
3750 } elseif ( $script === 'load' ) {
3751 return $wgLoadScript;
3753 return "{$wgScriptPath}/{$script}{$wgScriptExtension}";
3758 * Get the script URL.
3760 * @return string script URL
3762 function wfGetScriptUrl() {
3763 if ( isset( $_SERVER['SCRIPT_NAME'] ) ) {
3765 # as it was called, minus the query string.
3767 # Some sites use Apache rewrite rules to handle subdomains,
3768 # and have PHP set up in a weird way that causes PHP_SELF
3769 # to contain the rewritten URL instead of the one that the
3770 # outside world sees.
3772 # If in this mode, use SCRIPT_URL instead, which mod_rewrite
3773 # provides containing the "before" URL.
3774 return $_SERVER['SCRIPT_NAME'];
3776 return $_SERVER['URL'];
3781 * Convenience function converts boolean values into "true"
3782 * or "false" (string) values
3784 * @param $value Boolean
3787 function wfBoolToStr( $value ) {
3788 return $value ?
'true' : 'false';
3792 * Get a platform-independent path to the null file, e.g. /dev/null
3796 function wfGetNull() {
3797 return wfIsWindows() ?
'NUL' : '/dev/null';
3801 * Modern version of wfWaitForSlaves(). Instead of looking at replication lag
3802 * and waiting for it to go down, this waits for the slaves to catch up to the
3803 * master position. Use this when updating very large numbers of rows, as
3804 * in maintenance scripts, to avoid causing too much lag. Of course, this is
3805 * a no-op if there are no slaves.
3807 * @param int|bool $maxLag (deprecated)
3808 * @param mixed $wiki Wiki identifier accepted by wfGetLB
3809 * @param string|bool $cluster Cluster name accepted by LBFactory. Default: false.
3811 function wfWaitForSlaves( $maxLag = false, $wiki = false, $cluster = false ) {
3812 if( $cluster !== false ) {
3813 $lb = wfGetLBFactory()->getExternalLB( $cluster );
3815 $lb = wfGetLB( $wiki );
3818 // bug 27975 - Don't try to wait for slaves if there are none
3819 // Prevents permission error when getting master position
3820 if ( $lb->getServerCount() > 1 ) {
3821 $dbw = $lb->getConnection( DB_MASTER
, array(), $wiki );
3822 $pos = $dbw->getMasterPos();
3823 // The DBMS may not support getMasterPos() or the whole
3824 // load balancer might be fake (e.g. $wgAllDBsAreLocalhost).
3825 if ( $pos !== false ) {
3826 $lb->waitForAll( $pos );
3832 * Count down from $n to zero on the terminal, with a one-second pause
3833 * between showing each number. For use in command-line scripts.
3834 * @codeCoverageIgnore
3837 function wfCountDown( $n ) {
3838 for ( $i = $n; $i >= 0; $i-- ) {
3840 echo str_repeat( "\x08", strlen( $i +
1 ) );
3852 * Generate a random 32-character hexadecimal token.
3853 * @param $salt Mixed: some sort of salt, if necessary, to add to random
3854 * characters before hashing.
3856 * @codeCoverageIgnore
3857 * @deprecated since 1.20; Please use MWCryptRand for security purposes and
3858 * wfRandomString for pseudo-random strings
3859 * @warning This method is NOT secure. Additionally it has many callers that
3860 * use it for pseudo-random purposes.
3862 function wfGenerateToken( $salt = '' ) {
3863 wfDeprecated( __METHOD__
, '1.20' );
3864 $salt = serialize( $salt );
3865 return md5( mt_rand( 0, 0x7fffffff ) . $salt );
3869 * Replace all invalid characters with -
3870 * Additional characters can be defined in $wgIllegalFileChars (see bug 20489)
3871 * By default, $wgIllegalFileChars = ':'
3873 * @param $name Mixed: filename to process
3876 function wfStripIllegalFilenameChars( $name ) {
3877 global $wgIllegalFileChars;
3878 $illegalFileChars = $wgIllegalFileChars ?
"|[" . $wgIllegalFileChars . "]" : '';
3879 $name = wfBaseName( $name );
3880 $name = preg_replace(
3881 "/[^" . Title
::legalChars() . "]" . $illegalFileChars . "/",
3889 * Set PHP's memory limit to the larger of php.ini or $wgMemoryLimit;
3891 * @return Integer value memory was set to.
3893 function wfMemoryLimit() {
3894 global $wgMemoryLimit;
3895 $memlimit = wfShorthandToInteger( ini_get( 'memory_limit' ) );
3896 if ( $memlimit != -1 ) {
3897 $conflimit = wfShorthandToInteger( $wgMemoryLimit );
3898 if ( $conflimit == -1 ) {
3899 wfDebug( "Removing PHP's memory limit\n" );
3900 wfSuppressWarnings();
3901 ini_set( 'memory_limit', $conflimit );
3902 wfRestoreWarnings();
3904 } elseif ( $conflimit > $memlimit ) {
3905 wfDebug( "Raising PHP's memory limit to $conflimit bytes\n" );
3906 wfSuppressWarnings();
3907 ini_set( 'memory_limit', $conflimit );
3908 wfRestoreWarnings();
3916 * Converts shorthand byte notation to integer form
3918 * @param $string String
3921 function wfShorthandToInteger( $string = '' ) {
3922 $string = trim( $string );
3923 if ( $string === '' ) {
3926 $last = $string[strlen( $string ) - 1];
3927 $val = intval( $string );
3932 // break intentionally missing
3936 // break intentionally missing
3946 * Get the normalised IETF language tag
3947 * See unit test for examples.
3949 * @param string $code The language code.
3950 * @return String: The language code which complying with BCP 47 standards.
3952 function wfBCP47( $code ) {
3953 $codeSegment = explode( '-', $code );
3955 foreach ( $codeSegment as $segNo => $seg ) {
3956 // when previous segment is x, it is a private segment and should be lc
3957 if ( $segNo > 0 && strtolower( $codeSegment[( $segNo - 1 )] ) == 'x' ) {
3958 $codeBCP[$segNo] = strtolower( $seg );
3959 // ISO 3166 country code
3960 } elseif ( ( strlen( $seg ) == 2 ) && ( $segNo > 0 ) ) {
3961 $codeBCP[$segNo] = strtoupper( $seg );
3962 // ISO 15924 script code
3963 } elseif ( ( strlen( $seg ) == 4 ) && ( $segNo > 0 ) ) {
3964 $codeBCP[$segNo] = ucfirst( strtolower( $seg ) );
3965 // Use lowercase for other cases
3967 $codeBCP[$segNo] = strtolower( $seg );
3970 $langCode = implode( '-', $codeBCP );
3975 * Get a cache object.
3977 * @param $inputType integer Cache type, one the the CACHE_* constants.
3980 function wfGetCache( $inputType ) {
3981 return ObjectCache
::getInstance( $inputType );
3985 * Get the main cache object
3989 function wfGetMainCache() {
3990 global $wgMainCacheType;
3991 return ObjectCache
::getInstance( $wgMainCacheType );
3995 * Get the cache object used by the message cache
3999 function wfGetMessageCacheStorage() {
4000 global $wgMessageCacheType;
4001 return ObjectCache
::getInstance( $wgMessageCacheType );
4005 * Get the cache object used by the parser cache
4009 function wfGetParserCacheStorage() {
4010 global $wgParserCacheType;
4011 return ObjectCache
::getInstance( $wgParserCacheType );
4015 * Get the cache object used by the language converter
4019 function wfGetLangConverterCacheStorage() {
4020 global $wgLanguageConverterCacheType;
4021 return ObjectCache
::getInstance( $wgLanguageConverterCacheType );
4025 * Call hook functions defined in $wgHooks
4027 * @param string $event event name
4028 * @param array $args parameters passed to hook functions
4029 * @return Boolean True if no handler aborted the hook
4031 function wfRunHooks( $event, array $args = array() ) {
4032 return Hooks
::run( $event, $args );
4036 * Wrapper around php's unpack.
4038 * @param string $format The format string (See php's docs)
4039 * @param $data: A binary string of binary data
4040 * @param $length integer or false: The minimum length of $data. This is to
4041 * prevent reading beyond the end of $data. false to disable the check.
4043 * Also be careful when using this function to read unsigned 32 bit integer
4044 * because php might make it negative.
4046 * @throws MWException if $data not long enough, or if unpack fails
4047 * @return array Associative array of the extracted data
4049 function wfUnpack( $format, $data, $length = false ) {
4050 if ( $length !== false ) {
4051 $realLen = strlen( $data );
4052 if ( $realLen < $length ) {
4053 throw new MWException( "Tried to use wfUnpack on a "
4054 . "string of length $realLen, but needed one "
4055 . "of at least length $length."
4060 wfSuppressWarnings();
4061 $result = unpack( $format, $data );
4062 wfRestoreWarnings();
4064 if ( $result === false ) {
4065 // If it cannot extract the packed data.
4066 throw new MWException( "unpack could not unpack binary data" );
4072 * Determine if an image exists on the 'bad image list'.
4074 * The format of MediaWiki:Bad_image_list is as follows:
4075 * * Only list items (lines starting with "*") are considered
4076 * * The first link on a line must be a link to a bad image
4077 * * Any subsequent links on the same line are considered to be exceptions,
4078 * i.e. articles where the image may occur inline.
4080 * @param string $name the image name to check
4081 * @param $contextTitle Title|bool the page on which the image occurs, if known
4082 * @param string $blacklist wikitext of a file blacklist
4085 function wfIsBadImage( $name, $contextTitle = false, $blacklist = null ) {
4086 static $badImageCache = null; // based on bad_image_list msg
4087 wfProfileIn( __METHOD__
);
4090 $redirectTitle = RepoGroup
::singleton()->checkRedirect( Title
::makeTitle( NS_FILE
, $name ) );
4091 if ( $redirectTitle ) {
4092 $name = $redirectTitle->getDBkey();
4095 # Run the extension hook
4097 if ( !wfRunHooks( 'BadImage', array( $name, &$bad ) ) ) {
4098 wfProfileOut( __METHOD__
);
4102 $cacheable = ( $blacklist === null );
4103 if ( $cacheable && $badImageCache !== null ) {
4104 $badImages = $badImageCache;
4105 } else { // cache miss
4106 if ( $blacklist === null ) {
4107 $blacklist = wfMessage( 'bad_image_list' )->inContentLanguage()->plain(); // site list
4109 # Build the list now
4110 $badImages = array();
4111 $lines = explode( "\n", $blacklist );
4112 foreach ( $lines as $line ) {
4114 if ( substr( $line, 0, 1 ) !== '*' ) {
4120 if ( !preg_match_all( '/\[\[:?(.*?)\]\]/', $line, $m ) ) {
4124 $exceptions = array();
4125 $imageDBkey = false;
4126 foreach ( $m[1] as $i => $titleText ) {
4127 $title = Title
::newFromText( $titleText );
4128 if ( !is_null( $title ) ) {
4130 $imageDBkey = $title->getDBkey();
4132 $exceptions[$title->getPrefixedDBkey()] = true;
4137 if ( $imageDBkey !== false ) {
4138 $badImages[$imageDBkey] = $exceptions;
4142 $badImageCache = $badImages;
4146 $contextKey = $contextTitle ?
$contextTitle->getPrefixedDBkey() : false;
4147 $bad = isset( $badImages[$name] ) && !isset( $badImages[$name][$contextKey] );
4148 wfProfileOut( __METHOD__
);
4153 * Determine whether the client at a given source IP is likely to be able to
4154 * access the wiki via HTTPS.
4156 * @param string $ip The IPv4/6 address in the normal human-readable form
4159 function wfCanIPUseHTTPS( $ip ) {
4161 wfRunHooks( 'CanIPUseHTTPS', array( $ip, &$canDo ) );