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 use MediaWiki\Logger\LoggerFactory
;
28 use MediaWiki\ProcOpenError
;
29 use MediaWiki\Session\SessionManager
;
30 use MediaWiki\MediaWikiServices
;
31 use MediaWiki\Shell\Shell
;
32 use Wikimedia\ScopedCallback
;
33 use Wikimedia\WrappedString
;
38 * This queues an extension to be loaded through
39 * the ExtensionRegistry system.
41 * @param string $ext Name of the extension to load
42 * @param string|null $path Absolute path of where to find the extension.json file
45 function wfLoadExtension( $ext, $path = null ) {
47 global $wgExtensionDirectory;
48 $path = "$wgExtensionDirectory/$ext/extension.json";
50 ExtensionRegistry
::getInstance()->queue( $path );
54 * Load multiple extensions at once
56 * Same as wfLoadExtension, but more efficient if you
57 * are loading multiple extensions.
59 * If you want to specify custom paths, you should interact with
60 * ExtensionRegistry directly.
62 * @see wfLoadExtension
63 * @param string[] $exts Array of extension names to load
66 function wfLoadExtensions( array $exts ) {
67 global $wgExtensionDirectory;
68 $registry = ExtensionRegistry
::getInstance();
69 foreach ( $exts as $ext ) {
70 $registry->queue( "$wgExtensionDirectory/$ext/extension.json" );
77 * @see wfLoadExtension
78 * @param string $skin Name of the extension to load
79 * @param string|null $path Absolute path of where to find the skin.json file
82 function wfLoadSkin( $skin, $path = null ) {
84 global $wgStyleDirectory;
85 $path = "$wgStyleDirectory/$skin/skin.json";
87 ExtensionRegistry
::getInstance()->queue( $path );
91 * Load multiple skins at once
93 * @see wfLoadExtensions
94 * @param string[] $skins Array of extension names to load
97 function wfLoadSkins( array $skins ) {
98 global $wgStyleDirectory;
99 $registry = ExtensionRegistry
::getInstance();
100 foreach ( $skins as $skin ) {
101 $registry->queue( "$wgStyleDirectory/$skin/skin.json" );
106 * Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
111 function wfArrayDiff2( $a, $b ) {
112 return array_udiff( $a, $b, 'wfArrayDiff2_cmp' );
116 * @param array|string $a
117 * @param array|string $b
120 function wfArrayDiff2_cmp( $a, $b ) {
121 if ( is_string( $a ) && is_string( $b ) ) {
122 return strcmp( $a, $b );
123 } elseif ( count( $a ) !== count( $b ) ) {
124 return count( $a ) <=> count( $b );
128 while ( key( $a ) !== null && key( $b ) !== null ) {
129 $valueA = current( $a );
130 $valueB = current( $b );
131 $cmp = strcmp( $valueA, $valueB );
143 * @deprecated since 1.32, use array_filter() with ARRAY_FILTER_USE_BOTH directly
146 * @param callable $callback Will be called with the array value and key (in that order) and
147 * should return a bool which will determine whether the array element is kept.
150 function wfArrayFilter( array $arr, callable
$callback ) {
151 return array_filter( $arr, $callback, ARRAY_FILTER_USE_BOTH
);
155 * @deprecated since 1.32, use array_filter() with ARRAY_FILTER_USE_KEY directly
158 * @param callable $callback Will be called with the array key and should return a bool which
159 * will determine whether the array element is kept.
162 function wfArrayFilterByKey( array $arr, callable
$callback ) {
163 return array_filter( $arr, $callback, ARRAY_FILTER_USE_KEY
);
167 * Appends to second array if $value differs from that in $default
169 * @param string|int $key
170 * @param mixed $value
171 * @param mixed $default
172 * @param array &$changed Array to alter
173 * @throws MWException
175 function wfAppendToArrayIfNotDefault( $key, $value, $default, &$changed ) {
176 if ( is_null( $changed ) ) {
177 throw new MWException( 'GlobalFunctions::wfAppendToArrayIfNotDefault got null' );
179 if ( $default[$key] !== $value ) {
180 $changed[$key] = $value;
185 * Merge arrays in the style of getUserPermissionsErrors, with duplicate removal
187 * wfMergeErrorArrays(
200 * @param array $array1,...
203 function wfMergeErrorArrays( /*...*/ ) {
204 $args = func_get_args();
206 foreach ( $args as $errors ) {
207 foreach ( $errors as $params ) {
208 $originalParams = $params;
209 if ( $params[0] instanceof MessageSpecifier
) {
211 $params = array_merge( [ $msg->getKey() ], $msg->getParams() );
213 # @todo FIXME: Sometimes get nested arrays for $params,
214 # which leads to E_NOTICEs
215 $spec = implode( "\t", $params );
216 $out[$spec] = $originalParams;
219 return array_values( $out );
223 * Insert array into another array after the specified *KEY*
225 * @param array $array The array.
226 * @param array $insert The array to insert.
227 * @param mixed $after The key to insert after
230 function wfArrayInsertAfter( array $array, array $insert, $after ) {
231 // Find the offset of the element to insert after.
232 $keys = array_keys( $array );
233 $offsetByKey = array_flip( $keys );
235 $offset = $offsetByKey[$after];
237 // Insert at the specified offset
238 $before = array_slice( $array, 0, $offset +
1, true );
239 $after = array_slice( $array, $offset +
1, count( $array ) - $offset, true );
241 $output = $before +
$insert +
$after;
247 * Recursively converts the parameter (an object) to an array with the same data
249 * @param object|array $objOrArray
250 * @param bool $recursive
253 function wfObjectToArray( $objOrArray, $recursive = true ) {
255 if ( is_object( $objOrArray ) ) {
256 $objOrArray = get_object_vars( $objOrArray );
258 foreach ( $objOrArray as $key => $value ) {
259 if ( $recursive && ( is_object( $value ) ||
is_array( $value ) ) ) {
260 $value = wfObjectToArray( $value );
263 $array[$key] = $value;
270 * Get a random decimal value between 0 and 1, in a way
271 * not likely to give duplicate values for any realistic
272 * number of articles.
274 * @note This is designed for use in relation to Special:RandomPage
275 * and the page_random database field.
279 function wfRandom() {
280 // The maximum random value is "only" 2^31-1, so get two random
281 // values to reduce the chance of dupes
282 $max = mt_getrandmax() +
1;
283 $rand = number_format( ( mt_rand() * $max +
mt_rand() ) / $max / $max, 12, '.', '' );
288 * Get a random string containing a number of pseudo-random hex characters.
290 * @note This is not secure, if you are trying to generate some sort
291 * of token please use MWCryptRand instead.
293 * @param int $length The length of the string to generate
297 function wfRandomString( $length = 32 ) {
299 for ( $n = 0; $n < $length; $n +
= 7 ) {
300 $str .= sprintf( '%07x', mt_rand() & 0xfffffff );
302 return substr( $str, 0, $length );
306 * We want some things to be included as literal characters in our title URLs
307 * for prettiness, which urlencode encodes by default. According to RFC 1738,
308 * all of the following should be safe:
312 * RFC 1738 says ~ is unsafe, however RFC 3986 considers it an unreserved
313 * character which should not be encoded. More importantly, google chrome
314 * always converts %7E back to ~, and converting it in this function can
315 * cause a redirect loop (T105265).
317 * But + is not safe because it's used to indicate a space; &= are only safe in
318 * paths and not in queries (and we don't distinguish here); ' seems kind of
319 * scary; and urlencode() doesn't touch -_. to begin with. Plus, although /
320 * is reserved, we don't care. So the list we unescape is:
324 * However, IIS7 redirects fail when the url contains a colon (see T24709),
325 * so no fancy : for IIS7.
327 * %2F in the page titles seems to fatally break for some reason.
332 function wfUrlencode( $s ) {
335 if ( is_null( $s ) ) {
340 if ( is_null( $needle ) ) {
341 $needle = [ '%3B', '%40', '%24', '%21', '%2A', '%28', '%29', '%2C', '%2F', '%7E' ];
342 if ( !isset( $_SERVER['SERVER_SOFTWARE'] ) ||
343 ( strpos( $_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS/7' ) === false )
349 $s = urlencode( $s );
352 [ ';', '@', '$', '!', '*', '(', ')', ',', '/', '~', ':' ],
360 * This function takes one or two arrays as input, and returns a CGI-style string, e.g.
361 * "days=7&limit=100". Options in the first array override options in the second.
362 * Options set to null or false will not be output.
364 * @param array $array1 ( String|Array )
365 * @param array|null $array2 ( String|Array )
366 * @param string $prefix
369 function wfArrayToCgi( $array1, $array2 = null, $prefix = '' ) {
370 if ( !is_null( $array2 ) ) {
371 $array1 = $array1 +
$array2;
375 foreach ( $array1 as $key => $value ) {
376 if ( !is_null( $value ) && $value !== false ) {
380 if ( $prefix !== '' ) {
381 $key = $prefix . "[$key]";
383 if ( is_array( $value ) ) {
385 foreach ( $value as $k => $v ) {
386 $cgi .= $firstTime ?
'' : '&';
387 if ( is_array( $v ) ) {
388 $cgi .= wfArrayToCgi( $v, null, $key . "[$k]" );
390 $cgi .= urlencode( $key . "[$k]" ) . '=' . urlencode( $v );
395 if ( is_object( $value ) ) {
396 $value = $value->__toString();
398 $cgi .= urlencode( $key ) . '=' . urlencode( $value );
406 * This is the logical opposite of wfArrayToCgi(): it accepts a query string as
407 * its argument and returns the same string in array form. This allows compatibility
408 * with legacy functions that accept raw query strings instead of nice
409 * arrays. Of course, keys and values are urldecode()d.
411 * @param string $query Query string
412 * @return string[] Array version of input
414 function wfCgiToArray( $query ) {
415 if ( isset( $query[0] ) && $query[0] == '?' ) {
416 $query = substr( $query, 1 );
418 $bits = explode( '&', $query );
420 foreach ( $bits as $bit ) {
424 if ( strpos( $bit, '=' ) === false ) {
425 // Pieces like &qwerty become 'qwerty' => '' (at least this is what php does)
429 list( $key, $value ) = explode( '=', $bit );
431 $key = urldecode( $key );
432 $value = urldecode( $value );
433 if ( strpos( $key, '[' ) !== false ) {
434 $keys = array_reverse( explode( '[', $key ) );
435 $key = array_pop( $keys );
437 foreach ( $keys as $k ) {
438 $k = substr( $k, 0, -1 );
439 $temp = [ $k => $temp ];
441 if ( isset( $ret[$key] ) ) {
442 $ret[$key] = array_merge( $ret[$key], $temp );
454 * Append a query string to an existing URL, which may or may not already
455 * have query string parameters already. If so, they will be combined.
458 * @param string|string[] $query String or associative array
461 function wfAppendQuery( $url, $query ) {
462 if ( is_array( $query ) ) {
463 $query = wfArrayToCgi( $query );
465 if ( $query != '' ) {
466 // Remove the fragment, if there is one
468 $hashPos = strpos( $url, '#' );
469 if ( $hashPos !== false ) {
470 $fragment = substr( $url, $hashPos );
471 $url = substr( $url, 0, $hashPos );
475 if ( false === strpos( $url, '?' ) ) {
482 // Put the fragment back
483 if ( $fragment !== false ) {
491 * Expand a potentially local URL to a fully-qualified URL. Assumes $wgServer
494 * The meaning of the PROTO_* constants is as follows:
495 * PROTO_HTTP: Output a URL starting with http://
496 * PROTO_HTTPS: Output a URL starting with https://
497 * PROTO_RELATIVE: Output a URL starting with // (protocol-relative URL)
498 * PROTO_CURRENT: Output a URL starting with either http:// or https:// , depending
499 * on which protocol was used for the current incoming request
500 * PROTO_CANONICAL: For URLs without a domain, like /w/index.php , use $wgCanonicalServer.
501 * For protocol-relative URLs, use the protocol of $wgCanonicalServer
502 * PROTO_INTERNAL: Like PROTO_CANONICAL, but uses $wgInternalServer instead of $wgCanonicalServer
504 * @todo this won't work with current-path-relative URLs
505 * like "subdir/foo.html", etc.
507 * @param string $url Either fully-qualified or a local path + query
508 * @param string|int|null $defaultProto One of the PROTO_* constants. Determines the
509 * protocol to use if $url or $wgServer is protocol-relative
510 * @return string|false Fully-qualified URL, current-path-relative URL or false if
511 * no valid URL can be constructed
513 function wfExpandUrl( $url, $defaultProto = PROTO_CURRENT
) {
514 global $wgServer, $wgCanonicalServer, $wgInternalServer, $wgRequest,
516 if ( $defaultProto === PROTO_CANONICAL
) {
517 $serverUrl = $wgCanonicalServer;
518 } elseif ( $defaultProto === PROTO_INTERNAL
&& $wgInternalServer !== false ) {
519 // Make $wgInternalServer fall back to $wgServer if not set
520 $serverUrl = $wgInternalServer;
522 $serverUrl = $wgServer;
523 if ( $defaultProto === PROTO_CURRENT
) {
524 $defaultProto = $wgRequest->getProtocol() . '://';
528 // Analyze $serverUrl to obtain its protocol
529 $bits = wfParseUrl( $serverUrl );
530 $serverHasProto = $bits && $bits['scheme'] != '';
532 if ( $defaultProto === PROTO_CANONICAL ||
$defaultProto === PROTO_INTERNAL
) {
533 if ( $serverHasProto ) {
534 $defaultProto = $bits['scheme'] . '://';
536 // $wgCanonicalServer or $wgInternalServer doesn't have a protocol.
537 // This really isn't supposed to happen. Fall back to HTTP in this
539 $defaultProto = PROTO_HTTP
;
543 $defaultProtoWithoutSlashes = substr( $defaultProto, 0, -2 );
545 if ( substr( $url, 0, 2 ) == '//' ) {
546 $url = $defaultProtoWithoutSlashes . $url;
547 } elseif ( substr( $url, 0, 1 ) == '/' ) {
548 // If $serverUrl is protocol-relative, prepend $defaultProtoWithoutSlashes,
549 // otherwise leave it alone.
550 if ( $serverHasProto ) {
551 $url = $serverUrl . $url;
553 // If an HTTPS URL is synthesized from a protocol-relative $wgServer, allow the
554 // user to override the port number (T67184)
555 if ( $defaultProto === PROTO_HTTPS
&& $wgHttpsPort != 443 ) {
556 if ( isset( $bits['port'] ) ) {
557 throw new Exception( 'A protocol-relative $wgServer may not contain a port number' );
559 $url = $defaultProtoWithoutSlashes . $serverUrl . ':' . $wgHttpsPort . $url;
561 $url = $defaultProtoWithoutSlashes . $serverUrl . $url;
566 $bits = wfParseUrl( $url );
568 if ( $bits && isset( $bits['path'] ) ) {
569 $bits['path'] = wfRemoveDotSegments( $bits['path'] );
570 return wfAssembleUrl( $bits );
574 } elseif ( substr( $url, 0, 1 ) != '/' ) {
575 # URL is a relative path
576 return wfRemoveDotSegments( $url );
579 # Expanded URL is not valid.
584 * Get the wiki's "server", i.e. the protocol and host part of the URL, with a
585 * protocol specified using a PROTO_* constant as in wfExpandUrl()
588 * @param string|int|null $proto One of the PROTO_* constants.
589 * @return string The URL
591 function wfGetServerUrl( $proto ) {
592 $url = wfExpandUrl( '/', $proto );
593 return substr( $url, 0, -1 );
597 * This function will reassemble a URL parsed with wfParseURL. This is useful
598 * if you need to edit part of a URL and put it back together.
600 * This is the basic structure used (brackets contain keys for $urlParts):
601 * [scheme][delimiter][user]:[pass]@[host]:[port][path]?[query]#[fragment]
603 * @todo Need to integrate this into wfExpandUrl (see T34168)
606 * @param array $urlParts URL parts, as output from wfParseUrl
607 * @return string URL assembled from its component parts
609 function wfAssembleUrl( $urlParts ) {
612 if ( isset( $urlParts['delimiter'] ) ) {
613 if ( isset( $urlParts['scheme'] ) ) {
614 $result .= $urlParts['scheme'];
617 $result .= $urlParts['delimiter'];
620 if ( isset( $urlParts['host'] ) ) {
621 if ( isset( $urlParts['user'] ) ) {
622 $result .= $urlParts['user'];
623 if ( isset( $urlParts['pass'] ) ) {
624 $result .= ':' . $urlParts['pass'];
629 $result .= $urlParts['host'];
631 if ( isset( $urlParts['port'] ) ) {
632 $result .= ':' . $urlParts['port'];
636 if ( isset( $urlParts['path'] ) ) {
637 $result .= $urlParts['path'];
640 if ( isset( $urlParts['query'] ) ) {
641 $result .= '?' . $urlParts['query'];
644 if ( isset( $urlParts['fragment'] ) ) {
645 $result .= '#' . $urlParts['fragment'];
652 * Remove all dot-segments in the provided URL path. For example,
653 * '/a/./b/../c/' becomes '/a/c/'. For details on the algorithm, please see
654 * RFC3986 section 5.2.4.
656 * @todo Need to integrate this into wfExpandUrl (see T34168)
660 * @param string $urlPath URL path, potentially containing dot-segments
661 * @return string URL path with all dot-segments removed
663 function wfRemoveDotSegments( $urlPath ) {
666 $inputLength = strlen( $urlPath );
668 while ( $inputOffset < $inputLength ) {
669 $prefixLengthOne = substr( $urlPath, $inputOffset, 1 );
670 $prefixLengthTwo = substr( $urlPath, $inputOffset, 2 );
671 $prefixLengthThree = substr( $urlPath, $inputOffset, 3 );
672 $prefixLengthFour = substr( $urlPath, $inputOffset, 4 );
675 if ( $prefixLengthTwo == './' ) {
676 # Step A, remove leading "./"
678 } elseif ( $prefixLengthThree == '../' ) {
679 # Step A, remove leading "../"
681 } elseif ( ( $prefixLengthTwo == '/.' ) && ( $inputOffset +
2 == $inputLength ) ) {
682 # Step B, replace leading "/.$" with "/"
684 $urlPath[$inputOffset] = '/';
685 } elseif ( $prefixLengthThree == '/./' ) {
686 # Step B, replace leading "/./" with "/"
688 } elseif ( $prefixLengthThree == '/..' && ( $inputOffset +
3 == $inputLength ) ) {
689 # Step C, replace leading "/..$" with "/" and
690 # remove last path component in output
692 $urlPath[$inputOffset] = '/';
694 } elseif ( $prefixLengthFour == '/../' ) {
695 # Step C, replace leading "/../" with "/" and
696 # remove last path component in output
699 } elseif ( ( $prefixLengthOne == '.' ) && ( $inputOffset +
1 == $inputLength ) ) {
700 # Step D, remove "^.$"
702 } elseif ( ( $prefixLengthTwo == '..' ) && ( $inputOffset +
2 == $inputLength ) ) {
703 # Step D, remove "^..$"
706 # Step E, move leading path segment to output
707 if ( $prefixLengthOne == '/' ) {
708 $slashPos = strpos( $urlPath, '/', $inputOffset +
1 );
710 $slashPos = strpos( $urlPath, '/', $inputOffset );
712 if ( $slashPos === false ) {
713 $output .= substr( $urlPath, $inputOffset );
714 $inputOffset = $inputLength;
716 $output .= substr( $urlPath, $inputOffset, $slashPos - $inputOffset );
717 $inputOffset +
= $slashPos - $inputOffset;
722 $slashPos = strrpos( $output, '/' );
723 if ( $slashPos === false ) {
726 $output = substr( $output, 0, $slashPos );
735 * Returns a regular expression of url protocols
737 * @param bool $includeProtocolRelative If false, remove '//' from the returned protocol list.
738 * DO NOT USE this directly, use wfUrlProtocolsWithoutProtRel() instead
741 function wfUrlProtocols( $includeProtocolRelative = true ) {
742 global $wgUrlProtocols;
744 // Cache return values separately based on $includeProtocolRelative
745 static $withProtRel = null, $withoutProtRel = null;
746 $cachedValue = $includeProtocolRelative ?
$withProtRel : $withoutProtRel;
747 if ( !is_null( $cachedValue ) ) {
751 // Support old-style $wgUrlProtocols strings, for backwards compatibility
752 // with LocalSettings files from 1.5
753 if ( is_array( $wgUrlProtocols ) ) {
755 foreach ( $wgUrlProtocols as $protocol ) {
756 // Filter out '//' if !$includeProtocolRelative
757 if ( $includeProtocolRelative ||
$protocol !== '//' ) {
758 $protocols[] = preg_quote( $protocol, '/' );
762 $retval = implode( '|', $protocols );
764 // Ignore $includeProtocolRelative in this case
765 // This case exists for pre-1.6 compatibility, and we can safely assume
766 // that '//' won't appear in a pre-1.6 config because protocol-relative
767 // URLs weren't supported until 1.18
768 $retval = $wgUrlProtocols;
771 // Cache return value
772 if ( $includeProtocolRelative ) {
773 $withProtRel = $retval;
775 $withoutProtRel = $retval;
781 * Like wfUrlProtocols(), but excludes '//' from the protocol list. Use this if
782 * you need a regex that matches all URL protocols but does not match protocol-
786 function wfUrlProtocolsWithoutProtRel() {
787 return wfUrlProtocols( false );
791 * parse_url() work-alike, but non-broken. Differences:
793 * 1) Does not raise warnings on bad URLs (just returns false).
794 * 2) Handles protocols that don't use :// (e.g., mailto: and news:, as well as
795 * protocol-relative URLs) correctly.
796 * 3) Adds a "delimiter" element to the array (see (2)).
797 * 4) Verifies that the protocol is on the $wgUrlProtocols whitelist.
798 * 5) Rejects some invalid URLs that parse_url doesn't, e.g. the empty string or URLs starting with
799 * a line feed character.
801 * @param string $url A URL to parse
802 * @return string[]|bool Bits of the URL in an associative array, or false on failure.
804 * - scheme: URI scheme (protocol), e.g. 'http', 'mailto'. Lowercase, always present, but can
805 * be an empty string for protocol-relative URLs.
806 * - delimiter: either '://', ':' or '//'. Always present.
807 * - host: domain name / IP. Always present, but could be an empty string, e.g. for file: URLs.
808 * - user: user name, e.g. for HTTP Basic auth URLs such as http://user:pass@example.com/
809 * Missing when there is no username.
810 * - pass: password, same as above.
811 * - path: path including the leading /. Will be missing when empty (e.g. 'http://example.com')
812 * - query: query string (as a string; see wfCgiToArray() for parsing it), can be missing.
813 * - fragment: the part after #, can be missing.
815 function wfParseUrl( $url ) {
816 global $wgUrlProtocols; // Allow all protocols defined in DefaultSettings/LocalSettings.php
818 // Protocol-relative URLs are handled really badly by parse_url(). It's so
819 // bad that the easiest way to handle them is to just prepend 'http:' and
820 // strip the protocol out later.
821 $wasRelative = substr( $url, 0, 2 ) == '//';
822 if ( $wasRelative ) {
825 Wikimedia\
suppressWarnings();
826 $bits = parse_url( $url );
827 Wikimedia\restoreWarnings
();
828 // parse_url() returns an array without scheme for some invalid URLs, e.g.
829 // parse_url("%0Ahttp://example.com") == [ 'host' => '%0Ahttp', 'path' => 'example.com' ]
830 if ( !$bits ||
!isset( $bits['scheme'] ) ) {
834 // parse_url() incorrectly handles schemes case-sensitively. Convert it to lowercase.
835 $bits['scheme'] = strtolower( $bits['scheme'] );
837 // most of the protocols are followed by ://, but mailto: and sometimes news: not, check for it
838 if ( in_array( $bits['scheme'] . '://', $wgUrlProtocols ) ) {
839 $bits['delimiter'] = '://';
840 } elseif ( in_array( $bits['scheme'] . ':', $wgUrlProtocols ) ) {
841 $bits['delimiter'] = ':';
842 // parse_url detects for news: and mailto: the host part of an url as path
843 // We have to correct this wrong detection
844 if ( isset( $bits['path'] ) ) {
845 $bits['host'] = $bits['path'];
852 /* Provide an empty host for eg. file:/// urls (see T30627) */
853 if ( !isset( $bits['host'] ) ) {
857 if ( isset( $bits['path'] ) ) {
858 /* parse_url loses the third / for file:///c:/ urls (but not on variants) */
859 if ( substr( $bits['path'], 0, 1 ) !== '/' ) {
860 $bits['path'] = '/' . $bits['path'];
867 // If the URL was protocol-relative, fix scheme and delimiter
868 if ( $wasRelative ) {
869 $bits['scheme'] = '';
870 $bits['delimiter'] = '//';
876 * Take a URL, make sure it's expanded to fully qualified, and replace any
877 * encoded non-ASCII Unicode characters with their UTF-8 original forms
878 * for more compact display and legibility for local audiences.
880 * @todo handle punycode domains too
885 function wfExpandIRI( $url ) {
886 return preg_replace_callback(
887 '/((?:%[89A-F][0-9A-F])+)/i',
888 function ( array $matches ) {
889 return urldecode( $matches[1] );
896 * Make URL indexes, appropriate for the el_index field of externallinks.
901 function wfMakeUrlIndexes( $url ) {
902 $bits = wfParseUrl( $url );
904 // Reverse the labels in the hostname, convert to lower case
905 // For emails reverse domainpart only
906 if ( $bits['scheme'] == 'mailto' ) {
907 $mailparts = explode( '@', $bits['host'], 2 );
908 if ( count( $mailparts ) === 2 ) {
909 $domainpart = strtolower( implode( '.', array_reverse( explode( '.', $mailparts[1] ) ) ) );
911 // No domain specified, don't mangle it
914 $reversedHost = $domainpart . '@' . $mailparts[0];
916 $reversedHost = strtolower( implode( '.', array_reverse( explode( '.', $bits['host'] ) ) ) );
918 // Add an extra dot to the end
919 // Why? Is it in wrong place in mailto links?
920 if ( substr( $reversedHost, -1, 1 ) !== '.' ) {
921 $reversedHost .= '.';
923 // Reconstruct the pseudo-URL
924 $prot = $bits['scheme'];
925 $index = $prot . $bits['delimiter'] . $reversedHost;
926 // Leave out user and password. Add the port, path, query and fragment
927 if ( isset( $bits['port'] ) ) {
928 $index .= ':' . $bits['port'];
930 if ( isset( $bits['path'] ) ) {
931 $index .= $bits['path'];
935 if ( isset( $bits['query'] ) ) {
936 $index .= '?' . $bits['query'];
938 if ( isset( $bits['fragment'] ) ) {
939 $index .= '#' . $bits['fragment'];
943 return [ "http:$index", "https:$index" ];
950 * Check whether a given URL has a domain that occurs in a given set of domains
952 * @param array $domains Array of domains (strings)
953 * @return bool True if the host part of $url ends in one of the strings in $domains
955 function wfMatchesDomainList( $url, $domains ) {
956 $bits = wfParseUrl( $url );
957 if ( is_array( $bits ) && isset( $bits['host'] ) ) {
958 $host = '.' . $bits['host'];
959 foreach ( (array)$domains as $domain ) {
960 $domain = '.' . $domain;
961 if ( substr( $host, -strlen( $domain ) ) === $domain ) {
970 * Sends a line to the debug log if enabled or, optionally, to a comment in output.
971 * In normal operation this is a NOP.
973 * Controlling globals:
974 * $wgDebugLogFile - points to the log file
975 * $wgDebugRawPage - if false, 'action=raw' hits will not result in debug output.
976 * $wgDebugComments - if on, some debug items may appear in comments in the HTML output.
978 * @since 1.25 support for additional context data
980 * @param string $text
981 * @param string|bool $dest Destination of the message:
982 * - 'all': both to the log and HTML (debug toolbar or HTML comments)
983 * - 'private': excluded from HTML output
984 * For backward compatibility, it can also take a boolean:
985 * - true: same as 'all'
986 * - false: same as 'private'
987 * @param array $context Additional logging context data
989 function wfDebug( $text, $dest = 'all', array $context = [] ) {
990 global $wgDebugRawPage, $wgDebugLogPrefix;
991 global $wgDebugTimestamps;
993 if ( !$wgDebugRawPage && wfIsDebugRawPage() ) {
997 $text = trim( $text );
999 if ( $wgDebugTimestamps ) {
1000 $context['seconds_elapsed'] = sprintf(
1002 microtime( true ) - $_SERVER['REQUEST_TIME_FLOAT']
1004 $context['memory_used'] = sprintf(
1006 ( memory_get_usage( true ) / ( 1024 * 1024 ) )
1010 if ( $wgDebugLogPrefix !== '' ) {
1011 $context['prefix'] = $wgDebugLogPrefix;
1013 $context['private'] = ( $dest === false ||
$dest === 'private' );
1015 $logger = LoggerFactory
::getInstance( 'wfDebug' );
1016 $logger->debug( $text, $context );
1020 * Returns true if debug logging should be suppressed if $wgDebugRawPage = false
1023 function wfIsDebugRawPage() {
1025 if ( $cache !== null ) {
1028 // Check for raw action using $_GET not $wgRequest, since the latter might not be initialised yet
1029 // phpcs:ignore MediaWiki.Usage.SuperGlobalsUsage.SuperGlobals
1030 if ( ( isset( $_GET['action'] ) && $_GET['action'] == 'raw' )
1032 isset( $_SERVER['SCRIPT_NAME'] )
1033 && substr( $_SERVER['SCRIPT_NAME'], -8 ) == 'load.php'
1044 * Send a line giving PHP memory usage.
1046 * @param bool $exact Print exact byte values instead of kibibytes (default: false)
1048 function wfDebugMem( $exact = false ) {
1049 $mem = memory_get_usage();
1051 $mem = floor( $mem / 1024 ) . ' KiB';
1055 wfDebug( "Memory usage: $mem\n" );
1059 * Send a line to a supplementary debug log file, if configured, or main debug
1062 * To configure a supplementary log file, set $wgDebugLogGroups[$logGroup] to
1063 * a string filename or an associative array mapping 'destination' to the
1064 * desired filename. The associative array may also contain a 'sample' key
1065 * with an integer value, specifying a sampling factor. Sampled log events
1066 * will be emitted with a 1 in N random chance.
1068 * @since 1.23 support for sampling log messages via $wgDebugLogGroups.
1069 * @since 1.25 support for additional context data
1070 * @since 1.25 sample behavior dependent on configured $wgMWLoggerDefaultSpi
1072 * @param string $logGroup
1073 * @param string $text
1074 * @param string|bool $dest Destination of the message:
1075 * - 'all': both to the log and HTML (debug toolbar or HTML comments)
1076 * - 'private': only to the specific log if set in $wgDebugLogGroups and
1077 * discarded otherwise
1078 * For backward compatibility, it can also take a boolean:
1079 * - true: same as 'all'
1080 * - false: same as 'private'
1081 * @param array $context Additional logging context data
1083 function wfDebugLog(
1084 $logGroup, $text, $dest = 'all', array $context = []
1086 $text = trim( $text );
1088 $logger = LoggerFactory
::getInstance( $logGroup );
1089 $context['private'] = ( $dest === false ||
$dest === 'private' );
1090 $logger->info( $text, $context );
1094 * Log for database errors
1096 * @since 1.25 support for additional context data
1098 * @param string $text Database error message.
1099 * @param array $context Additional logging context data
1101 function wfLogDBError( $text, array $context = [] ) {
1102 $logger = LoggerFactory
::getInstance( 'wfLogDBError' );
1103 $logger->error( trim( $text ), $context );
1107 * Throws a warning that $function is deprecated
1109 * @param string $function
1110 * @param string|bool $version Version of MediaWiki that the function
1111 * was deprecated in (Added in 1.19).
1112 * @param string|bool $component Added in 1.19.
1113 * @param int $callerOffset How far up the call stack is the original
1114 * caller. 2 = function that called the function that called
1115 * wfDeprecated (Added in 1.20)
1119 function wfDeprecated( $function, $version = false, $component = false, $callerOffset = 2 ) {
1120 MWDebug
::deprecated( $function, $version, $component, $callerOffset +
1 );
1124 * Send a warning either to the debug log or in a PHP error depending on
1125 * $wgDevelopmentWarnings. To log warnings in production, use wfLogWarning() instead.
1127 * @param string $msg Message to send
1128 * @param int $callerOffset Number of items to go back in the backtrace to
1129 * find the correct caller (1 = function calling wfWarn, ...)
1130 * @param int $level PHP error level; defaults to E_USER_NOTICE;
1131 * only used when $wgDevelopmentWarnings is true
1133 function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE
) {
1134 MWDebug
::warning( $msg, $callerOffset +
1, $level, 'auto' );
1138 * Send a warning as a PHP error and the debug log. This is intended for logging
1139 * warnings in production. For logging development warnings, use WfWarn instead.
1141 * @param string $msg Message to send
1142 * @param int $callerOffset Number of items to go back in the backtrace to
1143 * find the correct caller (1 = function calling wfLogWarning, ...)
1144 * @param int $level PHP error level; defaults to E_USER_WARNING
1146 function wfLogWarning( $msg, $callerOffset = 1, $level = E_USER_WARNING
) {
1147 MWDebug
::warning( $msg, $callerOffset +
1, $level, 'production' );
1151 * Log to a file without getting "file size exceeded" signals.
1153 * Can also log to TCP or UDP with the syntax udp://host:port/prefix. This will
1154 * send lines to the specified port, prefixed by the specified prefix and a space.
1155 * @since 1.25 support for additional context data
1157 * @param string $text
1158 * @param string $file Filename
1159 * @param array $context Additional logging context data
1160 * @throws MWException
1161 * @deprecated since 1.25 Use \MediaWiki\Logger\LegacyLogger::emit or UDPTransport
1163 function wfErrorLog( $text, $file, array $context = [] ) {
1164 wfDeprecated( __METHOD__
, '1.25' );
1165 $logger = LoggerFactory
::getInstance( 'wfErrorLog' );
1166 $context['destination'] = $file;
1167 $logger->info( trim( $text ), $context );
1172 * @todo Move logic to MediaWiki.php
1174 function wfLogProfilingData() {
1175 global $wgDebugLogGroups, $wgDebugRawPage;
1177 $context = RequestContext
::getMain();
1178 $request = $context->getRequest();
1180 $profiler = Profiler
::instance();
1181 $profiler->setContext( $context );
1182 $profiler->logData();
1184 // Send out any buffered statsd metrics as needed
1185 MediaWiki
::emitBufferedStatsdData(
1186 MediaWikiServices
::getInstance()->getStatsdDataFactory(),
1187 $context->getConfig()
1190 // Profiling must actually be enabled...
1191 if ( $profiler instanceof ProfilerStub
) {
1195 if ( isset( $wgDebugLogGroups['profileoutput'] )
1196 && $wgDebugLogGroups['profileoutput'] === false
1198 // Explicitly disabled
1201 if ( !$wgDebugRawPage && wfIsDebugRawPage() ) {
1205 $ctx = [ 'elapsed' => $request->getElapsedTime() ];
1206 if ( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
1207 $ctx['forwarded_for'] = $_SERVER['HTTP_X_FORWARDED_FOR'];
1209 if ( !empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
1210 $ctx['client_ip'] = $_SERVER['HTTP_CLIENT_IP'];
1212 if ( !empty( $_SERVER['HTTP_FROM'] ) ) {
1213 $ctx['from'] = $_SERVER['HTTP_FROM'];
1215 if ( isset( $ctx['forwarded_for'] ) ||
1216 isset( $ctx['client_ip'] ) ||
1217 isset( $ctx['from'] ) ) {
1218 $ctx['proxy'] = $_SERVER['REMOTE_ADDR'];
1221 // Don't load $wgUser at this late stage just for statistics purposes
1222 // @todo FIXME: We can detect some anons even if it is not loaded.
1223 // See User::getId()
1224 $user = $context->getUser();
1225 $ctx['anon'] = $user->isItemLoaded( 'id' ) && $user->isAnon();
1227 // Command line script uses a FauxRequest object which does not have
1228 // any knowledge about an URL and throw an exception instead.
1230 $ctx['url'] = urldecode( $request->getRequestURL() );
1231 } catch ( Exception
$ignored ) {
1235 $ctx['output'] = $profiler->getOutput();
1237 $log = LoggerFactory
::getInstance( 'profileoutput' );
1238 $log->info( "Elapsed: {elapsed}; URL: <{url}>\n{output}", $ctx );
1242 * Increment a statistics counter
1244 * @param string $key
1248 function wfIncrStats( $key, $count = 1 ) {
1249 $stats = MediaWikiServices
::getInstance()->getStatsdDataFactory();
1250 $stats->updateCount( $key, $count );
1254 * Check whether the wiki is in read-only mode.
1258 function wfReadOnly() {
1259 return MediaWikiServices
::getInstance()->getReadOnlyMode()
1264 * Check if the site is in read-only mode and return the message if so
1266 * This checks wfConfiguredReadOnlyReason() and the main load balancer
1267 * for replica DB lag. This may result in DB connection being made.
1269 * @return string|bool String when in read-only mode; false otherwise
1271 function wfReadOnlyReason() {
1272 return MediaWikiServices
::getInstance()->getReadOnlyMode()
1277 * Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
1279 * @return string|bool String when in read-only mode; false otherwise
1282 function wfConfiguredReadOnlyReason() {
1283 return MediaWikiServices
::getInstance()->getConfiguredReadOnlyMode()
1288 * Return a Language object from $langcode
1290 * @param Language|string|bool $langcode Either:
1291 * - a Language object
1292 * - code of the language to get the message for, if it is
1293 * a valid code create a language for that language, if
1294 * it is a string but not a valid code then make a basic
1296 * - a boolean: if it's false then use the global object for
1297 * the current user's language (as a fallback for the old parameter
1298 * functionality), or if it is true then use global object
1299 * for the wiki's content language.
1302 function wfGetLangObj( $langcode = false ) {
1303 # Identify which language to get or create a language object for.
1304 # Using is_object here due to Stub objects.
1305 if ( is_object( $langcode ) ) {
1306 # Great, we already have the object (hopefully)!
1310 global $wgLanguageCode;
1311 if ( $langcode === true ||
$langcode === $wgLanguageCode ) {
1312 # $langcode is the language code of the wikis content language object.
1313 # or it is a boolean and value is true
1314 return MediaWikiServices
::getInstance()->getContentLanguage();
1318 if ( $langcode === false ||
$langcode === $wgLang->getCode() ) {
1319 # $langcode is the language code of user language object.
1320 # or it was a boolean and value is false
1324 $validCodes = array_keys( Language
::fetchLanguageNames() );
1325 if ( in_array( $langcode, $validCodes ) ) {
1326 # $langcode corresponds to a valid language.
1327 return Language
::factory( $langcode );
1330 # $langcode is a string, but not a valid language code; use content language.
1331 wfDebug( "Invalid language code passed to wfGetLangObj, falling back to content language.\n" );
1332 return MediaWikiServices
::getInstance()->getContentLanguage();
1336 * This is the function for getting translated interface messages.
1338 * @see Message class for documentation how to use them.
1339 * @see https://www.mediawiki.org/wiki/Manual:Messages_API
1341 * This function replaces all old wfMsg* functions.
1343 * @param string|string[]|MessageSpecifier $key Message key, or array of keys, or a MessageSpecifier
1344 * @param string|string[] ...$params Normal message parameters
1349 * @see Message::__construct
1351 function wfMessage( $key, ...$params ) {
1352 $message = new Message( $key );
1354 // We call Message::params() to reduce code duplication
1356 $message->params( ...$params );
1363 * This function accepts multiple message keys and returns a message instance
1364 * for the first message which is non-empty. If all messages are empty then an
1365 * instance of the first message key is returned.
1367 * @param string ...$keys Message keys
1372 * @see Message::newFallbackSequence
1374 function wfMessageFallback( ...$keys ) {
1375 return Message
::newFallbackSequence( ...$keys );
1379 * Replace message parameter keys on the given formatted output.
1381 * @param string $message
1382 * @param array $args
1386 function wfMsgReplaceArgs( $message, $args ) {
1387 # Fix windows line-endings
1388 # Some messages are split with explode("\n", $msg)
1389 $message = str_replace( "\r", '', $message );
1391 // Replace arguments
1392 if ( is_array( $args ) && $args ) {
1393 if ( is_array( $args[0] ) ) {
1394 $args = array_values( $args[0] );
1396 $replacementKeys = [];
1397 foreach ( $args as $n => $param ) {
1398 $replacementKeys['$' . ( $n +
1 )] = $param;
1400 $message = strtr( $message, $replacementKeys );
1407 * Fetch server name for use in error reporting etc.
1408 * Use real server name if available, so we know which machine
1409 * in a server farm generated the current page.
1413 function wfHostname() {
1415 if ( is_null( $host ) ) {
1416 # Hostname overriding
1417 global $wgOverrideHostname;
1418 if ( $wgOverrideHostname !== false ) {
1419 # Set static and skip any detection
1420 $host = $wgOverrideHostname;
1424 if ( function_exists( 'posix_uname' ) ) {
1425 // This function not present on Windows
1426 $uname = posix_uname();
1430 if ( is_array( $uname ) && isset( $uname['nodename'] ) ) {
1431 $host = $uname['nodename'];
1432 } elseif ( getenv( 'COMPUTERNAME' ) ) {
1433 # Windows computer name
1434 $host = getenv( 'COMPUTERNAME' );
1436 # This may be a virtual server.
1437 $host = $_SERVER['SERVER_NAME'];
1444 * Returns a script tag that stores the amount of time it took MediaWiki to
1445 * handle the request in milliseconds as 'wgBackendResponseTime'.
1447 * If $wgShowHostnames is true, the script will also set 'wgHostname' to the
1448 * hostname of the server handling the request.
1450 * @param string|null $nonce Value from OutputPage::getCSPNonce
1451 * @return string|WrappedString HTML
1453 function wfReportTime( $nonce = null ) {
1454 global $wgShowHostnames;
1456 $elapsed = ( microtime( true ) - $_SERVER['REQUEST_TIME_FLOAT'] );
1457 // seconds to milliseconds
1458 $responseTime = round( $elapsed * 1000 );
1459 $reportVars = [ 'wgBackendResponseTime' => $responseTime ];
1460 if ( $wgShowHostnames ) {
1461 $reportVars['wgHostname'] = wfHostname();
1463 return Skin
::makeVariablesScript( $reportVars, $nonce );
1467 * Safety wrapper for debug_backtrace().
1469 * Will return an empty array if debug_backtrace is disabled, otherwise
1470 * the output from debug_backtrace() (trimmed).
1472 * @param int $limit This parameter can be used to limit the number of stack frames returned
1474 * @return array Array of backtrace information
1476 function wfDebugBacktrace( $limit = 0 ) {
1477 static $disabled = null;
1479 if ( is_null( $disabled ) ) {
1480 $disabled = !function_exists( 'debug_backtrace' );
1482 wfDebug( "debug_backtrace() is disabled\n" );
1490 return array_slice( debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT
, $limit +
1 ), 1 );
1492 return array_slice( debug_backtrace(), 1 );
1497 * Get a debug backtrace as a string
1499 * @param bool|null $raw If true, the return value is plain text. If false, HTML.
1500 * Defaults to $wgCommandLineMode if unset.
1502 * @since 1.25 Supports $raw parameter.
1504 function wfBacktrace( $raw = null ) {
1505 global $wgCommandLineMode;
1507 if ( $raw === null ) {
1508 $raw = $wgCommandLineMode;
1512 $frameFormat = "%s line %s calls %s()\n";
1513 $traceFormat = "%s";
1515 $frameFormat = "<li>%s line %s calls %s()</li>\n";
1516 $traceFormat = "<ul>\n%s</ul>\n";
1519 $frames = array_map( function ( $frame ) use ( $frameFormat ) {
1520 $file = !empty( $frame['file'] ) ?
basename( $frame['file'] ) : '-';
1521 $line = $frame['line'] ??
'-';
1522 $call = $frame['function'];
1523 if ( !empty( $frame['class'] ) ) {
1524 $call = $frame['class'] . $frame['type'] . $call;
1526 return sprintf( $frameFormat, $file, $line, $call );
1527 }, wfDebugBacktrace() );
1529 return sprintf( $traceFormat, implode( '', $frames ) );
1533 * Get the name of the function which called this function
1534 * wfGetCaller( 1 ) is the function with the wfGetCaller() call (ie. __FUNCTION__)
1535 * wfGetCaller( 2 ) [default] is the caller of the function running wfGetCaller()
1536 * wfGetCaller( 3 ) is the parent of that.
1541 function wfGetCaller( $level = 2 ) {
1542 $backtrace = wfDebugBacktrace( $level +
1 );
1543 if ( isset( $backtrace[$level] ) ) {
1544 return wfFormatStackFrame( $backtrace[$level] );
1551 * Return a string consisting of callers in the stack. Useful sometimes
1552 * for profiling specific points.
1554 * @param int $limit The maximum depth of the stack frame to return, or false for the entire stack.
1557 function wfGetAllCallers( $limit = 3 ) {
1558 $trace = array_reverse( wfDebugBacktrace() );
1559 if ( !$limit ||
$limit > count( $trace ) - 1 ) {
1560 $limit = count( $trace ) - 1;
1562 $trace = array_slice( $trace, -$limit - 1, $limit );
1563 return implode( '/', array_map( 'wfFormatStackFrame', $trace ) );
1567 * Return a string representation of frame
1569 * @param array $frame
1572 function wfFormatStackFrame( $frame ) {
1573 if ( !isset( $frame['function'] ) ) {
1574 return 'NO_FUNCTION_GIVEN';
1576 return isset( $frame['class'] ) && isset( $frame['type'] ) ?
1577 $frame['class'] . $frame['type'] . $frame['function'] :
1581 /* Some generic result counters, pulled out of SearchEngine */
1586 * @param int $offset
1590 function wfShowingResults( $offset, $limit ) {
1591 return wfMessage( 'showingresults' )->numParams( $limit, $offset +
1 )->parse();
1595 * Whether the client accept gzip encoding
1597 * Uses the Accept-Encoding header to check if the client supports gzip encoding.
1598 * Use this when considering to send a gzip-encoded response to the client.
1600 * @param bool $force Forces another check even if we already have a cached result.
1603 function wfClientAcceptsGzip( $force = false ) {
1604 static $result = null;
1605 if ( $result === null ||
$force ) {
1607 if ( isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) ) {
1608 # @todo FIXME: We may want to blacklist some broken browsers
1611 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
1612 $_SERVER['HTTP_ACCEPT_ENCODING'],
1616 if ( isset( $m[2] ) && ( $m[1] == 'q' ) && ( $m[2] == 0 ) ) {
1620 wfDebug( "wfClientAcceptsGzip: client accepts gzip.\n" );
1629 * Escapes the given text so that it may be output using addWikiText()
1630 * without any linking, formatting, etc. making its way through. This
1631 * is achieved by substituting certain characters with HTML entities.
1632 * As required by the callers, "<nowiki>" is not used.
1634 * @param string $text Text to be escaped
1635 * @param-taint $text escapes_html
1638 function wfEscapeWikiText( $text ) {
1639 global $wgEnableMagicLinks;
1640 static $repl = null, $repl2 = null;
1641 if ( $repl === null ||
defined( 'MW_PARSER_TEST' ) ||
defined( 'MW_PHPUNIT_TEST' ) ) {
1642 // Tests depend upon being able to change $wgEnableMagicLinks, so don't cache
1643 // in those situations
1645 '"' => '"', '&' => '&', "'" => ''', '<' => '<',
1646 '=' => '=', '>' => '>', '[' => '[', ']' => ']',
1647 '{' => '{', '|' => '|', '}' => '}', ';' => ';',
1648 "\n#" => "\n#", "\r#" => "\r#",
1649 "\n*" => "\n*", "\r*" => "\r*",
1650 "\n:" => "\n:", "\r:" => "\r:",
1651 "\n " => "\n ", "\r " => "\r ",
1652 "\n\n" => "\n ", "\r\n" => " \n",
1653 "\n\r" => "\n ", "\r\r" => "\r ",
1654 "\n\t" => "\n	", "\r\t" => "\r	", // "\n\t\n" is treated like "\n\n"
1655 "\n----" => "\n----", "\r----" => "\r----",
1656 '__' => '__', '://' => '://',
1659 $magicLinks = array_keys( array_filter( $wgEnableMagicLinks ) );
1660 // We have to catch everything "\s" matches in PCRE
1661 foreach ( $magicLinks as $magic ) {
1662 $repl["$magic "] = "$magic ";
1663 $repl["$magic\t"] = "$magic	";
1664 $repl["$magic\r"] = "$magic ";
1665 $repl["$magic\n"] = "$magic ";
1666 $repl["$magic\f"] = "$magic";
1669 // And handle protocols that don't use "://"
1670 global $wgUrlProtocols;
1672 foreach ( $wgUrlProtocols as $prot ) {
1673 if ( substr( $prot, -1 ) === ':' ) {
1674 $repl2[] = preg_quote( substr( $prot, 0, -1 ), '/' );
1677 $repl2 = $repl2 ?
'/\b(' . implode( '|', $repl2 ) . '):/i' : '/^(?!)/';
1679 $text = substr( strtr( "\n$text", $repl ), 1 );
1680 $text = preg_replace( $repl2, '$1:', $text );
1685 * Sets dest to source and returns the original value of dest
1686 * If source is NULL, it just returns the value, it doesn't set the variable
1687 * If force is true, it will set the value even if source is NULL
1689 * @param mixed &$dest
1690 * @param mixed $source
1691 * @param bool $force
1694 function wfSetVar( &$dest, $source, $force = false ) {
1696 if ( !is_null( $source ) ||
$force ) {
1703 * As for wfSetVar except setting a bit
1707 * @param bool $state
1711 function wfSetBit( &$dest, $bit, $state = true ) {
1712 $temp = (bool)( $dest & $bit );
1713 if ( !is_null( $state ) ) {
1724 * A wrapper around the PHP function var_export().
1725 * Either print it or add it to the regular output ($wgOut).
1727 * @param mixed $var A PHP variable to dump.
1729 function wfVarDump( $var ) {
1731 $s = str_replace( "\n", "<br />\n", var_export( $var, true ) . "\n" );
1732 if ( headers_sent() ||
!isset( $wgOut ) ||
!is_object( $wgOut ) ) {
1735 $wgOut->addHTML( $s );
1740 * Provide a simple HTTP error.
1742 * @param int|string $code
1743 * @param string $label
1744 * @param string $desc
1746 function wfHttpError( $code, $label, $desc ) {
1748 HttpStatus
::header( $code );
1751 $wgOut->sendCacheControl();
1754 MediaWiki\HeaderCallback
::warnIfHeadersSent();
1755 header( 'Content-type: text/html; charset=utf-8' );
1756 print '<!DOCTYPE html>' .
1757 '<html><head><title>' .
1758 htmlspecialchars( $label ) .
1759 '</title></head><body><h1>' .
1760 htmlspecialchars( $label ) .
1762 nl2br( htmlspecialchars( $desc ) ) .
1763 "</p></body></html>\n";
1767 * Clear away any user-level output buffers, discarding contents.
1769 * Suitable for 'starting afresh', for instance when streaming
1770 * relatively large amounts of data without buffering, or wanting to
1771 * output image files without ob_gzhandler's compression.
1773 * The optional $resetGzipEncoding parameter controls suppression of
1774 * the Content-Encoding header sent by ob_gzhandler; by default it
1775 * is left. See comments for wfClearOutputBuffers() for why it would
1778 * Note that some PHP configuration options may add output buffer
1779 * layers which cannot be removed; these are left in place.
1781 * @param bool $resetGzipEncoding
1783 function wfResetOutputBuffers( $resetGzipEncoding = true ) {
1784 if ( $resetGzipEncoding ) {
1785 // Suppress Content-Encoding and Content-Length
1786 // headers from OutputHandler::handle.
1787 global $wgDisableOutputCompression;
1788 $wgDisableOutputCompression = true;
1790 while ( $status = ob_get_status() ) {
1791 if ( isset( $status['flags'] ) ) {
1792 $flags = PHP_OUTPUT_HANDLER_CLEANABLE | PHP_OUTPUT_HANDLER_REMOVABLE
;
1793 $deleteable = ( $status['flags'] & $flags ) === $flags;
1794 } elseif ( isset( $status['del'] ) ) {
1795 $deleteable = $status['del'];
1797 // Guess that any PHP-internal setting can't be removed.
1798 $deleteable = $status['type'] !== 0; /* PHP_OUTPUT_HANDLER_INTERNAL */
1800 if ( !$deleteable ) {
1801 // Give up, and hope the result doesn't break
1805 if ( $status['name'] === 'MediaWikiTestCase::wfResetOutputBuffersBarrier' ) {
1806 // Unit testing barrier to prevent this function from breaking PHPUnit.
1809 if ( !ob_end_clean() ) {
1810 // Could not remove output buffer handler; abort now
1811 // to avoid getting in some kind of infinite loop.
1814 if ( $resetGzipEncoding ) {
1815 if ( $status['name'] == 'ob_gzhandler' ) {
1816 // Reset the 'Content-Encoding' field set by this handler
1817 // so we can start fresh.
1818 header_remove( 'Content-Encoding' );
1826 * More legible than passing a 'false' parameter to wfResetOutputBuffers():
1828 * Clear away output buffers, but keep the Content-Encoding header
1829 * produced by ob_gzhandler, if any.
1831 * This should be used for HTTP 304 responses, where you need to
1832 * preserve the Content-Encoding header of the real result, but
1833 * also need to suppress the output of ob_gzhandler to keep to spec
1834 * and avoid breaking Firefox in rare cases where the headers and
1835 * body are broken over two packets.
1837 function wfClearOutputBuffers() {
1838 wfResetOutputBuffers( false );
1842 * Converts an Accept-* header into an array mapping string values to quality
1845 * @param string $accept
1846 * @param string $def Default
1847 * @return float[] Associative array of string => float pairs
1849 function wfAcceptToPrefs( $accept, $def = '*/*' ) {
1850 # No arg means accept anything (per HTTP spec)
1852 return [ $def => 1.0 ];
1857 $parts = explode( ',', $accept );
1859 foreach ( $parts as $part ) {
1860 # @todo FIXME: Doesn't deal with params like 'text/html; level=1'
1861 $values = explode( ';', trim( $part ) );
1863 if ( count( $values ) == 1 ) {
1864 $prefs[$values[0]] = 1.0;
1865 } elseif ( preg_match( '/q\s*=\s*(\d*\.\d+)/', $values[1], $match ) ) {
1866 $prefs[$values[0]] = floatval( $match[1] );
1874 * Checks if a given MIME type matches any of the keys in the given
1875 * array. Basic wildcards are accepted in the array keys.
1877 * Returns the matching MIME type (or wildcard) if a match, otherwise
1880 * @param string $type
1881 * @param array $avail
1885 function mimeTypeMatch( $type, $avail ) {
1886 if ( array_key_exists( $type, $avail ) ) {
1889 $mainType = explode( '/', $type )[0];
1890 if ( array_key_exists( "$mainType/*", $avail ) ) {
1891 return "$mainType/*";
1892 } elseif ( array_key_exists( '*/*', $avail ) ) {
1901 * Returns the 'best' match between a client's requested internet media types
1902 * and the server's list of available types. Each list should be an associative
1903 * array of type to preference (preference is a float between 0.0 and 1.0).
1904 * Wildcards in the types are acceptable.
1906 * @param array $cprefs Client's acceptable type list
1907 * @param array $sprefs Server's offered types
1910 * @todo FIXME: Doesn't handle params like 'text/plain; charset=UTF-8'
1911 * XXX: generalize to negotiate other stuff
1913 function wfNegotiateType( $cprefs, $sprefs ) {
1916 foreach ( array_keys( $sprefs ) as $type ) {
1917 $subType = explode( '/', $type )[1];
1918 if ( $subType != '*' ) {
1919 $ckey = mimeTypeMatch( $type, $cprefs );
1921 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1926 foreach ( array_keys( $cprefs ) as $type ) {
1927 $subType = explode( '/', $type )[1];
1928 if ( $subType != '*' && !array_key_exists( $type, $sprefs ) ) {
1929 $skey = mimeTypeMatch( $type, $sprefs );
1931 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1939 foreach ( array_keys( $combine ) as $type ) {
1940 if ( $combine[$type] > $bestq ) {
1942 $bestq = $combine[$type];
1950 * Reference-counted warning suppression
1952 * @deprecated since 1.26, use Wikimedia\suppressWarnings() directly
1955 function wfSuppressWarnings( $end = false ) {
1956 Wikimedia\
suppressWarnings( $end );
1960 * @deprecated since 1.26, use Wikimedia\restoreWarnings() directly
1961 * Restore error level to previous value
1963 function wfRestoreWarnings() {
1964 Wikimedia\restoreWarnings
();
1968 * Get a timestamp string in one of various formats
1970 * @param mixed $outputtype A timestamp in one of the supported formats, the
1971 * function will autodetect which format is supplied and act accordingly.
1972 * @param mixed $ts Optional timestamp to convert, default 0 for the current time
1973 * @return string|bool String / false The same date in the format specified in $outputtype or false
1975 function wfTimestamp( $outputtype = TS_UNIX
, $ts = 0 ) {
1976 $ret = MWTimestamp
::convert( $outputtype, $ts );
1977 if ( $ret === false ) {
1978 wfDebug( "wfTimestamp() fed bogus time value: TYPE=$outputtype; VALUE=$ts\n" );
1984 * Return a formatted timestamp, or null if input is null.
1985 * For dealing with nullable timestamp columns in the database.
1987 * @param int $outputtype
1988 * @param string|null $ts
1991 function wfTimestampOrNull( $outputtype = TS_UNIX
, $ts = null ) {
1992 if ( is_null( $ts ) ) {
1995 return wfTimestamp( $outputtype, $ts );
2000 * Convenience function; returns MediaWiki timestamp for the present time.
2004 function wfTimestampNow() {
2006 return MWTimestamp
::now( TS_MW
);
2010 * Check if the operating system is Windows
2012 * @return bool True if it's Windows, false otherwise.
2014 function wfIsWindows() {
2015 static $isWindows = null;
2016 if ( $isWindows === null ) {
2017 $isWindows = strtoupper( substr( PHP_OS
, 0, 3 ) ) === 'WIN';
2023 * Check if we are running under HHVM
2027 function wfIsHHVM() {
2028 return defined( 'HHVM_VERSION' );
2032 * Check if we are running from the commandline
2037 function wfIsCLI() {
2038 return PHP_SAPI
=== 'cli' || PHP_SAPI
=== 'phpdbg';
2042 * Tries to get the system directory for temporary files. First
2043 * $wgTmpDirectory is checked, and then the TMPDIR, TMP, and TEMP
2044 * environment variables are then checked in sequence, then
2045 * sys_get_temp_dir(), then upload_tmp_dir from php.ini.
2047 * NOTE: When possible, use instead the tmpfile() function to create
2048 * temporary files to avoid race conditions on file creation, etc.
2052 function wfTempDir() {
2053 global $wgTmpDirectory;
2055 if ( $wgTmpDirectory !== false ) {
2056 return $wgTmpDirectory;
2059 return TempFSFile
::getUsableTempDirectory();
2063 * Make directory, and make all parent directories if they don't exist
2065 * @param string $dir Full path to directory to create
2066 * @param int|null $mode Chmod value to use, default is $wgDirectoryMode
2067 * @param string|null $caller Optional caller param for debugging.
2068 * @throws MWException
2071 function wfMkdirParents( $dir, $mode = null, $caller = null ) {
2072 global $wgDirectoryMode;
2074 if ( FileBackend
::isStoragePath( $dir ) ) { // sanity
2075 throw new MWException( __FUNCTION__
. " given storage path '$dir'." );
2078 if ( !is_null( $caller ) ) {
2079 wfDebug( "$caller: called wfMkdirParents($dir)\n" );
2082 if ( strval( $dir ) === '' ||
is_dir( $dir ) ) {
2086 $dir = str_replace( [ '\\', '/' ], DIRECTORY_SEPARATOR
, $dir );
2088 if ( is_null( $mode ) ) {
2089 $mode = $wgDirectoryMode;
2092 // Turn off the normal warning, we're doing our own below
2093 Wikimedia\
suppressWarnings();
2094 $ok = mkdir( $dir, $mode, true ); // PHP5 <3
2095 Wikimedia\restoreWarnings
();
2098 // directory may have been created on another request since we last checked
2099 if ( is_dir( $dir ) ) {
2103 // PHP doesn't report the path in its warning message, so add our own to aid in diagnosis.
2104 wfLogWarning( sprintf( "failed to mkdir \"%s\" mode 0%o", $dir, $mode ) );
2110 * Remove a directory and all its content.
2111 * Does not hide error.
2112 * @param string $dir
2114 function wfRecursiveRemoveDir( $dir ) {
2115 wfDebug( __FUNCTION__
. "( $dir )\n" );
2116 // taken from https://secure.php.net/manual/en/function.rmdir.php#98622
2117 if ( is_dir( $dir ) ) {
2118 $objects = scandir( $dir );
2119 foreach ( $objects as $object ) {
2120 if ( $object != "." && $object != ".." ) {
2121 if ( filetype( $dir . '/' . $object ) == "dir" ) {
2122 wfRecursiveRemoveDir( $dir . '/' . $object );
2124 unlink( $dir . '/' . $object );
2134 * @param int $nr The number to format
2135 * @param int $acc The number of digits after the decimal point, default 2
2136 * @param bool $round Whether or not to round the value, default true
2139 function wfPercent( $nr, $acc = 2, $round = true ) {
2140 $ret = sprintf( "%.${acc}f", $nr );
2141 return $round ?
round( $ret, $acc ) . '%' : "$ret%";
2145 * Safety wrapper around ini_get() for boolean settings.
2146 * The values returned from ini_get() are pre-normalized for settings
2147 * set via php.ini or php_flag/php_admin_flag... but *not*
2148 * for those set via php_value/php_admin_value.
2150 * It's fairly common for people to use php_value instead of php_flag,
2151 * which can leave you with an 'off' setting giving a false positive
2152 * for code that just takes the ini_get() return value as a boolean.
2154 * To make things extra interesting, setting via php_value accepts
2155 * "true" and "yes" as true, but php.ini and php_flag consider them false. :)
2156 * Unrecognized values go false... again opposite PHP's own coercion
2157 * from string to bool.
2159 * Luckily, 'properly' set settings will always come back as '0' or '1',
2160 * so we only have to worry about them and the 'improper' settings.
2162 * I frickin' hate PHP... :P
2164 * @param string $setting
2167 function wfIniGetBool( $setting ) {
2168 return wfStringToBool( ini_get( $setting ) );
2172 * Convert string value to boolean, when the following are interpreted as true:
2176 * - Any number, except 0
2177 * All other strings are interpreted as false.
2179 * @param string $val
2183 function wfStringToBool( $val ) {
2184 $val = strtolower( $val );
2185 // 'on' and 'true' can't have whitespace around them, but '1' can.
2189 ||
preg_match( "/^\s*[+-]?0*[1-9]/", $val ); // approx C atoi() function
2193 * Version of escapeshellarg() that works better on Windows.
2195 * Originally, this fixed the incorrect use of single quotes on Windows
2196 * (https://bugs.php.net/bug.php?id=26285) and the locale problems on Linux in
2197 * PHP 5.2.6+ (bug backported to earlier distro releases of PHP).
2199 * @param string $args,... strings to escape and glue together,
2200 * or a single array of strings parameter
2202 * @deprecated since 1.30 use MediaWiki\Shell::escape()
2204 function wfEscapeShellArg( /*...*/ ) {
2205 return Shell
::escape( ...func_get_args() );
2209 * Execute a shell command, with time and memory limits mirrored from the PHP
2210 * configuration if supported.
2212 * @param string|string[] $cmd If string, a properly shell-escaped command line,
2213 * or an array of unescaped arguments, in which case each value will be escaped
2214 * Example: [ 'convert', '-font', 'font name' ] would produce "'convert' '-font' 'font name'"
2215 * @param null|mixed &$retval Optional, will receive the program's exit code.
2216 * (non-zero is usually failure). If there is an error from
2217 * read, select, or proc_open(), this will be set to -1.
2218 * @param array $environ Optional environment variables which should be
2219 * added to the executed command environment.
2220 * @param array $limits Optional array with limits(filesize, memory, time, walltime)
2221 * this overwrites the global wgMaxShell* limits.
2222 * @param array $options Array of options:
2223 * - duplicateStderr: Set this to true to duplicate stderr to stdout,
2224 * including errors from limit.sh
2225 * - profileMethod: By default this function will profile based on the calling
2226 * method. Set this to a string for an alternative method to profile from
2228 * @return string Collected stdout as a string
2229 * @deprecated since 1.30 use class MediaWiki\Shell\Shell
2231 function wfShellExec( $cmd, &$retval = null, $environ = [],
2232 $limits = [], $options = []
2234 if ( Shell
::isDisabled() ) {
2236 // Backwards compatibility be upon us...
2237 return 'Unable to run external programs, proc_open() is disabled.';
2240 if ( is_array( $cmd ) ) {
2241 $cmd = Shell
::escape( $cmd );
2244 $includeStderr = isset( $options['duplicateStderr'] ) && $options['duplicateStderr'];
2245 $profileMethod = $options['profileMethod'] ??
wfGetCaller();
2248 $result = Shell
::command( [] )
2249 ->unsafeParams( (array)$cmd )
2250 ->environment( $environ )
2252 ->includeStderr( $includeStderr )
2253 ->profileMethod( $profileMethod )
2255 ->restrict( Shell
::RESTRICT_NONE
)
2257 } catch ( ProcOpenError
$ex ) {
2262 $retval = $result->getExitCode();
2264 return $result->getStdout();
2268 * Execute a shell command, returning both stdout and stderr. Convenience
2269 * function, as all the arguments to wfShellExec can become unwieldy.
2271 * @note This also includes errors from limit.sh, e.g. if $wgMaxShellFileSize is exceeded.
2272 * @param string|string[] $cmd If string, a properly shell-escaped command line,
2273 * or an array of unescaped arguments, in which case each value will be escaped
2274 * Example: [ 'convert', '-font', 'font name' ] would produce "'convert' '-font' 'font name'"
2275 * @param null|mixed &$retval Optional, will receive the program's exit code.
2276 * (non-zero is usually failure)
2277 * @param array $environ Optional environment variables which should be
2278 * added to the executed command environment.
2279 * @param array $limits Optional array with limits(filesize, memory, time, walltime)
2280 * this overwrites the global wgMaxShell* limits.
2281 * @return string Collected stdout and stderr as a string
2282 * @deprecated since 1.30 use class MediaWiki\Shell\Shell
2284 function wfShellExecWithStderr( $cmd, &$retval = null, $environ = [], $limits = [] ) {
2285 return wfShellExec( $cmd, $retval, $environ, $limits,
2286 [ 'duplicateStderr' => true, 'profileMethod' => wfGetCaller() ] );
2290 * Generate a shell-escaped command line string to run a MediaWiki cli script.
2291 * Note that $parameters should be a flat array and an option with an argument
2292 * should consist of two consecutive items in the array (do not use "--option value").
2294 * @deprecated since 1.31, use Shell::makeScriptCommand()
2296 * @param string $script MediaWiki cli script path
2297 * @param array $parameters Arguments and options to the script
2298 * @param array $options Associative array of options:
2299 * 'php': The path to the php executable
2300 * 'wrapper': Path to a PHP wrapper to handle the maintenance script
2303 function wfShellWikiCmd( $script, array $parameters = [], array $options = [] ) {
2305 // Give site config file a chance to run the script in a wrapper.
2306 // The caller may likely want to call wfBasename() on $script.
2307 Hooks
::run( 'wfShellWikiCmd', [ &$script, &$parameters, &$options ] );
2308 $cmd = [ $options['php'] ??
$wgPhpCli ];
2309 if ( isset( $options['wrapper'] ) ) {
2310 $cmd[] = $options['wrapper'];
2313 // Escape each parameter for shell
2314 return Shell
::escape( array_merge( $cmd, $parameters ) );
2318 * wfMerge attempts to merge differences between three texts.
2319 * Returns true for a clean merge and false for failure or a conflict.
2321 * @param string $old
2322 * @param string $mine
2323 * @param string $yours
2324 * @param string &$result
2325 * @param string|null &$mergeAttemptResult
2328 function wfMerge( $old, $mine, $yours, &$result, &$mergeAttemptResult = null ) {
2331 # This check may also protect against code injection in
2332 # case of broken installations.
2333 Wikimedia\
suppressWarnings();
2334 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
2335 Wikimedia\restoreWarnings
();
2337 if ( !$haveDiff3 ) {
2338 wfDebug( "diff3 not found\n" );
2342 # Make temporary files
2344 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
2345 $mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
2346 $yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
2348 # NOTE: diff3 issues a warning to stderr if any of the files does not end with
2349 # a newline character. To avoid this, we normalize the trailing whitespace before
2350 # creating the diff.
2352 fwrite( $oldtextFile, rtrim( $old ) . "\n" );
2353 fclose( $oldtextFile );
2354 fwrite( $mytextFile, rtrim( $mine ) . "\n" );
2355 fclose( $mytextFile );
2356 fwrite( $yourtextFile, rtrim( $yours ) . "\n" );
2357 fclose( $yourtextFile );
2359 # Check for a conflict
2360 $cmd = Shell
::escape( $wgDiff3, '-a', '--overlap-only', $mytextName,
2361 $oldtextName, $yourtextName );
2362 $handle = popen( $cmd, 'r' );
2364 $mergeAttemptResult = '';
2366 $data = fread( $handle, 8192 );
2367 if ( strlen( $data ) == 0 ) {
2370 $mergeAttemptResult .= $data;
2374 $conflict = $mergeAttemptResult !== '';
2377 $cmd = Shell
::escape( $wgDiff3, '-a', '-e', '--merge', $mytextName,
2378 $oldtextName, $yourtextName );
2379 $handle = popen( $cmd, 'r' );
2382 $data = fread( $handle, 8192 );
2383 if ( strlen( $data ) == 0 ) {
2389 unlink( $mytextName );
2390 unlink( $oldtextName );
2391 unlink( $yourtextName );
2393 if ( $result === '' && $old !== '' && !$conflict ) {
2394 wfDebug( "Unexpected null result from diff3. Command: $cmd\n" );
2401 * Returns unified plain-text diff of two texts.
2402 * "Useful" for machine processing of diffs.
2404 * @deprecated since 1.25, use DiffEngine/UnifiedDiffFormatter directly
2406 * @param string $before The text before the changes.
2407 * @param string $after The text after the changes.
2408 * @param string $params Command-line options for the diff command.
2409 * @return string Unified diff of $before and $after
2411 function wfDiff( $before, $after, $params = '-u' ) {
2412 if ( $before == $after ) {
2417 Wikimedia\
suppressWarnings();
2418 $haveDiff = $wgDiff && file_exists( $wgDiff );
2419 Wikimedia\restoreWarnings
();
2421 # This check may also protect against code injection in
2422 # case of broken installations.
2424 wfDebug( "diff executable not found\n" );
2425 $diffs = new Diff( explode( "\n", $before ), explode( "\n", $after ) );
2426 $format = new UnifiedDiffFormatter();
2427 return $format->format( $diffs );
2430 # Make temporary files
2432 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
2433 $newtextFile = fopen( $newtextName = tempnam( $td, 'merge-your-' ), 'w' );
2435 fwrite( $oldtextFile, $before );
2436 fclose( $oldtextFile );
2437 fwrite( $newtextFile, $after );
2438 fclose( $newtextFile );
2440 // Get the diff of the two files
2441 $cmd = "$wgDiff " . $params . ' ' . Shell
::escape( $oldtextName, $newtextName );
2443 $h = popen( $cmd, 'r' );
2445 unlink( $oldtextName );
2446 unlink( $newtextName );
2447 throw new Exception( __METHOD__
. '(): popen() failed' );
2453 $data = fread( $h, 8192 );
2454 if ( strlen( $data ) == 0 ) {
2462 unlink( $oldtextName );
2463 unlink( $newtextName );
2465 // Kill the --- and +++ lines. They're not useful.
2466 $diff_lines = explode( "\n", $diff );
2467 if ( isset( $diff_lines[0] ) && strpos( $diff_lines[0], '---' ) === 0 ) {
2468 unset( $diff_lines[0] );
2470 if ( isset( $diff_lines[1] ) && strpos( $diff_lines[1], '+++' ) === 0 ) {
2471 unset( $diff_lines[1] );
2474 $diff = implode( "\n", $diff_lines );
2480 * This function works like "use VERSION" in Perl, the program will die with a
2481 * backtrace if the current version of PHP is less than the version provided
2483 * This is useful for extensions which due to their nature are not kept in sync
2484 * with releases, and might depend on other versions of PHP than the main code
2486 * Note: PHP might die due to parsing errors in some cases before it ever
2487 * manages to call this function, such is life
2489 * @see perldoc -f use
2491 * @param string|int|float $req_ver The version to check, can be a string, an integer, or a float
2493 * @deprecated since 1.30
2495 * @throws MWException
2497 function wfUsePHP( $req_ver ) {
2498 wfDeprecated( __FUNCTION__
, '1.30' );
2499 $php_ver = PHP_VERSION
;
2501 if ( version_compare( $php_ver, (string)$req_ver, '<' ) ) {
2502 throw new MWException( "PHP $req_ver required--this is only $php_ver" );
2507 * Return the final portion of a pathname.
2508 * Reimplemented because PHP5's "basename()" is buggy with multibyte text.
2509 * https://bugs.php.net/bug.php?id=33898
2511 * PHP's basename() only considers '\' a pathchar on Windows and Netware.
2512 * We'll consider it so always, as we don't want '\s' in our Unix paths either.
2514 * @param string $path
2515 * @param string $suffix String to remove if present
2518 function wfBaseName( $path, $suffix = '' ) {
2519 if ( $suffix == '' ) {
2522 $encSuffix = '(?:' . preg_quote( $suffix, '#' ) . ')?';
2526 if ( preg_match( "#([^/\\\\]*?){$encSuffix}[/\\\\]*$#", $path, $matches ) ) {
2534 * Generate a relative path name to the given file.
2535 * May explode on non-matching case-insensitive paths,
2536 * funky symlinks, etc.
2538 * @param string $path Absolute destination path including target filename
2539 * @param string $from Absolute source path, directory only
2542 function wfRelativePath( $path, $from ) {
2543 // Normalize mixed input on Windows...
2544 $path = str_replace( '/', DIRECTORY_SEPARATOR
, $path );
2545 $from = str_replace( '/', DIRECTORY_SEPARATOR
, $from );
2547 // Trim trailing slashes -- fix for drive root
2548 $path = rtrim( $path, DIRECTORY_SEPARATOR
);
2549 $from = rtrim( $from, DIRECTORY_SEPARATOR
);
2551 $pieces = explode( DIRECTORY_SEPARATOR
, dirname( $path ) );
2552 $against = explode( DIRECTORY_SEPARATOR
, $from );
2554 if ( $pieces[0] !== $against[0] ) {
2555 // Non-matching Windows drive letters?
2556 // Return a full path.
2560 // Trim off common prefix
2561 while ( count( $pieces ) && count( $against )
2562 && $pieces[0] == $against[0] ) {
2563 array_shift( $pieces );
2564 array_shift( $against );
2567 // relative dots to bump us to the parent
2568 while ( count( $against ) ) {
2569 array_unshift( $pieces, '..' );
2570 array_shift( $against );
2573 array_push( $pieces, wfBaseName( $path ) );
2575 return implode( DIRECTORY_SEPARATOR
, $pieces );
2579 * Reset the session id
2581 * @deprecated since 1.27, use MediaWiki\Session\SessionManager instead
2584 function wfResetSessionID() {
2585 wfDeprecated( __FUNCTION__
, '1.27' );
2586 $session = SessionManager
::getGlobalSession();
2587 $delay = $session->delaySave();
2589 $session->resetId();
2591 // Make sure a session is started, since that's what the old
2592 // wfResetSessionID() did.
2593 if ( session_id() !== $session->getId() ) {
2594 wfSetupSession( $session->getId() );
2597 ScopedCallback
::consume( $delay );
2601 * Initialise php session
2603 * @deprecated since 1.27, use MediaWiki\Session\SessionManager instead.
2604 * Generally, "using" SessionManager will be calling ->getSessionById() or
2605 * ::getGlobalSession() (depending on whether you were passing $sessionId
2606 * here), then calling $session->persist().
2607 * @param bool|string $sessionId
2609 function wfSetupSession( $sessionId = false ) {
2610 wfDeprecated( __FUNCTION__
, '1.27' );
2613 session_id( $sessionId );
2616 $session = SessionManager
::getGlobalSession();
2617 $session->persist();
2619 if ( session_id() !== $session->getId() ) {
2620 session_id( $session->getId() );
2622 Wikimedia\
quietCall( 'session_start' );
2626 * Get an object from the precompiled serialized directory
2628 * @param string $name
2629 * @return mixed The variable on success, false on failure
2631 function wfGetPrecompiledData( $name ) {
2634 $file = "$IP/serialized/$name";
2635 if ( file_exists( $file ) ) {
2636 $blob = file_get_contents( $file );
2638 return unserialize( $blob );
2645 * Make a cache key for the local wiki.
2647 * @deprecated since 1.30 Call makeKey on a BagOStuff instance
2648 * @param string $args,...
2651 function wfMemcKey( /*...*/ ) {
2652 return ObjectCache
::getLocalClusterInstance()->makeKey( ...func_get_args() );
2656 * Make a cache key for a foreign DB.
2658 * Must match what wfMemcKey() would produce in context of the foreign wiki.
2661 * @param string $prefix
2662 * @param string $args,...
2665 function wfForeignMemcKey( $db, $prefix /*...*/ ) {
2666 $args = array_slice( func_get_args(), 2 );
2667 $keyspace = $prefix ?
"$db-$prefix" : $db;
2668 return ObjectCache
::getLocalClusterInstance()->makeKeyInternal( $keyspace, $args );
2672 * Make a cache key with database-agnostic prefix.
2674 * Doesn't have a wiki-specific namespace. Uses a generic 'global' prefix
2675 * instead. Must have a prefix as otherwise keys that use a database name
2676 * in the first segment will clash with wfMemcKey/wfForeignMemcKey.
2678 * @deprecated since 1.30 Call makeGlobalKey on a BagOStuff instance
2680 * @param string $args,...
2683 function wfGlobalCacheKey( /*...*/ ) {
2684 return ObjectCache
::getLocalClusterInstance()->makeGlobalKey( ...func_get_args() );
2688 * Get an ASCII string identifying this wiki
2689 * This is used as a prefix in memcached keys
2693 function wfWikiID() {
2694 global $wgDBprefix, $wgDBname;
2695 if ( $wgDBprefix ) {
2696 return "$wgDBname-$wgDBprefix";
2703 * Split a wiki ID into DB name and table prefix
2705 * @param string $wiki
2709 function wfSplitWikiID( $wiki ) {
2710 $bits = explode( '-', $wiki, 2 );
2711 if ( count( $bits ) < 2 ) {
2718 * Get a Database object.
2720 * @param int $db Index of the connection to get. May be DB_MASTER for the
2721 * master (for write queries), DB_REPLICA for potentially lagged read
2722 * queries, or an integer >= 0 for a particular server.
2724 * @param string|string[] $groups Query groups. An array of group names that this query
2725 * belongs to. May contain a single string if the query is only
2728 * @param string|bool $wiki The wiki ID, or false for the current wiki
2730 * Note: multiple calls to wfGetDB(DB_REPLICA) during the course of one request
2731 * will always return the same object, unless the underlying connection or load
2732 * balancer is manually destroyed.
2734 * Note 2: use $this->getDB() in maintenance scripts that may be invoked by
2735 * updater to ensure that a proper database is being updated.
2737 * @todo Replace calls to wfGetDB with calls to LoadBalancer::getConnection()
2738 * on an injected instance of LoadBalancer.
2740 * @return \Wikimedia\Rdbms\Database
2742 function wfGetDB( $db, $groups = [], $wiki = false ) {
2743 return wfGetLB( $wiki )->getConnection( $db, $groups, $wiki );
2747 * Get a load balancer object.
2749 * @deprecated since 1.27, use MediaWikiServices::getDBLoadBalancer()
2750 * or MediaWikiServices::getDBLoadBalancerFactory() instead.
2752 * @param string|bool $wiki Wiki ID, or false for the current wiki
2753 * @return \Wikimedia\Rdbms\LoadBalancer
2755 function wfGetLB( $wiki = false ) {
2756 if ( $wiki === false ) {
2757 return MediaWikiServices
::getInstance()->getDBLoadBalancer();
2759 $factory = MediaWikiServices
::getInstance()->getDBLoadBalancerFactory();
2760 return $factory->getMainLB( $wiki );
2765 * Get the load balancer factory object
2767 * @deprecated since 1.27, use MediaWikiServices::getDBLoadBalancerFactory() instead.
2769 * @return \Wikimedia\Rdbms\LBFactory
2771 function wfGetLBFactory() {
2772 return MediaWikiServices
::getInstance()->getDBLoadBalancerFactory();
2777 * Shortcut for RepoGroup::singleton()->findFile()
2779 * @param string|Title $title String or Title object
2780 * @param array $options Associative array of options (see RepoGroup::findFile)
2781 * @return File|bool File, or false if the file does not exist
2783 function wfFindFile( $title, $options = [] ) {
2784 return RepoGroup
::singleton()->findFile( $title, $options );
2788 * Get an object referring to a locally registered file.
2789 * Returns a valid placeholder object if the file does not exist.
2791 * @param Title|string $title
2792 * @return LocalFile|null A File, or null if passed an invalid Title
2794 function wfLocalFile( $title ) {
2795 return RepoGroup
::singleton()->getLocalRepo()->newFile( $title );
2799 * Should low-performance queries be disabled?
2802 * @codeCoverageIgnore
2804 function wfQueriesMustScale() {
2805 global $wgMiserMode;
2807 ||
( SiteStats
::pages() > 100000
2808 && SiteStats
::edits() > 1000000
2809 && SiteStats
::users() > 10000 );
2813 * Get the path to a specified script file, respecting file
2814 * extensions; this is a wrapper around $wgScriptPath etc.
2815 * except for 'index' and 'load' which use $wgScript/$wgLoadScript
2817 * @param string $script Script filename, sans extension
2820 function wfScript( $script = 'index' ) {
2821 global $wgScriptPath, $wgScript, $wgLoadScript;
2822 if ( $script === 'index' ) {
2824 } elseif ( $script === 'load' ) {
2825 return $wgLoadScript;
2827 return "{$wgScriptPath}/{$script}.php";
2832 * Get the script URL.
2834 * @return string Script URL
2836 function wfGetScriptUrl() {
2837 if ( isset( $_SERVER['SCRIPT_NAME'] ) ) {
2838 /* as it was called, minus the query string.
2840 * Some sites use Apache rewrite rules to handle subdomains,
2841 * and have PHP set up in a weird way that causes PHP_SELF
2842 * to contain the rewritten URL instead of the one that the
2843 * outside world sees.
2845 * If in this mode, use SCRIPT_URL instead, which mod_rewrite
2846 * provides containing the "before" URL.
2848 return $_SERVER['SCRIPT_NAME'];
2850 return $_SERVER['URL'];
2855 * Convenience function converts boolean values into "true"
2856 * or "false" (string) values
2858 * @param bool $value
2861 function wfBoolToStr( $value ) {
2862 return $value ?
'true' : 'false';
2866 * Get a platform-independent path to the null file, e.g. /dev/null
2870 function wfGetNull() {
2871 return wfIsWindows() ?
'NUL' : '/dev/null';
2875 * Waits for the replica DBs to catch up to the master position
2877 * Use this when updating very large numbers of rows, as in maintenance scripts,
2878 * to avoid causing too much lag. Of course, this is a no-op if there are no replica DBs.
2880 * By default this waits on the main DB cluster of the current wiki.
2881 * If $cluster is set to "*" it will wait on all DB clusters, including
2882 * external ones. If the lag being waiting on is caused by the code that
2883 * does this check, it makes since to use $ifWritesSince, particularly if
2884 * cluster is "*", to avoid excess overhead.
2886 * Never call this function after a big DB write that is still in a transaction.
2887 * This only makes sense after the possible lag inducing changes were committed.
2889 * @param float|null $ifWritesSince Only wait if writes were done since this UNIX timestamp
2890 * @param string|bool $wiki Wiki identifier accepted by wfGetLB
2891 * @param string|bool $cluster Cluster name accepted by LBFactory. Default: false.
2892 * @param int|null $timeout Max wait time. Default: 60 seconds (cli), 1 second (web)
2893 * @return bool Success (able to connect and no timeouts reached)
2894 * @deprecated since 1.27 Use LBFactory::waitForReplication
2896 function wfWaitForSlaves(
2897 $ifWritesSince = null, $wiki = false, $cluster = false, $timeout = null
2899 if ( $cluster === '*' ) {
2902 } elseif ( $wiki === false ) {
2908 'cluster' => $cluster,
2909 // B/C: first argument used to be "max seconds of lag"; ignore such values
2910 'ifWritesSince' => ( $ifWritesSince > 1e9
) ?
$ifWritesSince : null
2912 if ( $timeout !== null ) {
2913 $opts['timeout'] = $timeout;
2916 $lbFactory = MediaWikiServices
::getInstance()->getDBLoadBalancerFactory();
2917 return $lbFactory->waitForReplication( $opts );
2921 * Count down from $seconds to zero on the terminal, with a one-second pause
2922 * between showing each number. For use in command-line scripts.
2924 * @deprecated since 1.31, use Maintenance::countDown()
2926 * @codeCoverageIgnore
2927 * @param int $seconds
2929 function wfCountDown( $seconds ) {
2930 wfDeprecated( __FUNCTION__
, '1.31' );
2931 for ( $i = $seconds; $i >= 0; $i-- ) {
2932 if ( $i != $seconds ) {
2933 echo str_repeat( "\x08", strlen( $i +
1 ) );
2945 * Replace all invalid characters with '-'.
2946 * Additional characters can be defined in $wgIllegalFileChars (see T22489).
2947 * By default, $wgIllegalFileChars includes ':', '/', '\'.
2949 * @param string $name Filename to process
2952 function wfStripIllegalFilenameChars( $name ) {
2953 global $wgIllegalFileChars;
2954 $illegalFileChars = $wgIllegalFileChars ?
"|[" . $wgIllegalFileChars . "]" : '';
2955 $name = preg_replace(
2956 "/[^" . Title
::legalChars() . "]" . $illegalFileChars . "/",
2960 // $wgIllegalFileChars may not include '/' and '\', so we still need to do this
2961 $name = wfBaseName( $name );
2966 * Set PHP's memory limit to the larger of php.ini or $wgMemoryLimit
2968 * @return int Resulting value of the memory limit.
2970 function wfMemoryLimit() {
2971 global $wgMemoryLimit;
2972 $memlimit = wfShorthandToInteger( ini_get( 'memory_limit' ) );
2973 if ( $memlimit != -1 ) {
2974 $conflimit = wfShorthandToInteger( $wgMemoryLimit );
2975 if ( $conflimit == -1 ) {
2976 wfDebug( "Removing PHP's memory limit\n" );
2977 Wikimedia\
suppressWarnings();
2978 ini_set( 'memory_limit', $conflimit );
2979 Wikimedia\restoreWarnings
();
2981 } elseif ( $conflimit > $memlimit ) {
2982 wfDebug( "Raising PHP's memory limit to $conflimit bytes\n" );
2983 Wikimedia\
suppressWarnings();
2984 ini_set( 'memory_limit', $conflimit );
2985 Wikimedia\restoreWarnings
();
2993 * Set PHP's time limit to the larger of php.ini or $wgTransactionalTimeLimit
2995 * @return int Prior time limit
2998 function wfTransactionalTimeLimit() {
2999 global $wgTransactionalTimeLimit;
3001 $timeLimit = ini_get( 'max_execution_time' );
3002 // Note that CLI scripts use 0
3003 if ( $timeLimit > 0 && $wgTransactionalTimeLimit > $timeLimit ) {
3004 set_time_limit( $wgTransactionalTimeLimit );
3007 ignore_user_abort( true ); // ignore client disconnects
3013 * Converts shorthand byte notation to integer form
3015 * @param string $string
3016 * @param int $default Returned if $string is empty
3019 function wfShorthandToInteger( $string = '', $default = -1 ) {
3020 $string = trim( $string );
3021 if ( $string === '' ) {
3024 $last = $string[strlen( $string ) - 1];
3025 $val = intval( $string );
3030 // break intentionally missing
3034 // break intentionally missing
3044 * Get the normalised IETF language tag
3045 * See unit test for examples.
3046 * See mediawiki.language.bcp47 for the JavaScript implementation.
3048 * @deprecated since 1.31, use LanguageCode::bcp47() directly.
3050 * @param string $code The language code.
3051 * @return string The language code which complying with BCP 47 standards.
3053 function wfBCP47( $code ) {
3054 wfDeprecated( __METHOD__
, '1.31' );
3055 return LanguageCode
::bcp47( $code );
3059 * Get a specific cache object.
3061 * @deprecated since 1.32, use ObjectCache::getInstance() instead
3062 * @param int|string $cacheType A CACHE_* constants, or other key in $wgObjectCaches
3065 function wfGetCache( $cacheType ) {