Merge "RCFilters: Move parameter operations to ViewModel"
[lhc/web/wiklou.git] / includes / GlobalFunctions.php
1 <?php
2 /**
3 * Global functions used everywhere.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 if ( !defined( 'MEDIAWIKI' ) ) {
24 die( "This file is part of MediaWiki, it is not a valid entry point" );
25 }
26
27 use Liuggio\StatsdClient\Sender\SocketSender;
28 use MediaWiki\Logger\LoggerFactory;
29 use MediaWiki\ProcOpenError;
30 use MediaWiki\Session\SessionManager;
31 use MediaWiki\MediaWikiServices;
32 use MediaWiki\Shell\Shell;
33 use Wikimedia\ScopedCallback;
34 use Wikimedia\Rdbms\DBReplicationWaitError;
35
36 // Hide compatibility functions from Doxygen
37 /// @cond
38 /**
39 * Compatibility functions
40 *
41 * We support PHP 5.5.9 and up.
42 * Re-implementations of newer functions or functions in non-standard
43 * PHP extensions may be included here.
44 */
45
46 // hash_equals function only exists in PHP >= 5.6.0
47 // https://secure.php.net/hash_equals
48 if ( !function_exists( 'hash_equals' ) ) {
49 /**
50 * Check whether a user-provided string is equal to a fixed-length secret string
51 * without revealing bytes of the secret string through timing differences.
52 *
53 * The usual way to compare strings (PHP's === operator or the underlying memcmp()
54 * function in C) is to compare corresponding bytes and stop at the first difference,
55 * which would take longer for a partial match than for a complete mismatch. This
56 * is not secure when one of the strings (e.g. an HMAC or token) must remain secret
57 * and the other may come from an attacker. Statistical analysis of timing measurements
58 * over many requests may allow the attacker to guess the string's bytes one at a time
59 * (and check his guesses) even if the timing differences are extremely small.
60 *
61 * When making such a security-sensitive comparison, it is essential that the sequence
62 * in which instructions are executed and memory locations are accessed not depend on
63 * the secret string's value. HOWEVER, for simplicity, we do not attempt to minimize
64 * the inevitable leakage of the string's length. That is generally known anyway as
65 * a chararacteristic of the hash function used to compute the secret value.
66 *
67 * Longer explanation: http://www.emerose.com/timing-attacks-explained
68 *
69 * @codeCoverageIgnore
70 * @param string $known_string Fixed-length secret string to compare against
71 * @param string $user_string User-provided string
72 * @return bool True if the strings are the same, false otherwise
73 */
74 function hash_equals( $known_string, $user_string ) {
75 // Strict type checking as in PHP's native implementation
76 if ( !is_string( $known_string ) ) {
77 trigger_error( 'hash_equals(): Expected known_string to be a string, ' .
78 gettype( $known_string ) . ' given', E_USER_WARNING );
79
80 return false;
81 }
82
83 if ( !is_string( $user_string ) ) {
84 trigger_error( 'hash_equals(): Expected user_string to be a string, ' .
85 gettype( $user_string ) . ' given', E_USER_WARNING );
86
87 return false;
88 }
89
90 $known_string_len = strlen( $known_string );
91 if ( $known_string_len !== strlen( $user_string ) ) {
92 return false;
93 }
94
95 $result = 0;
96 for ( $i = 0; $i < $known_string_len; $i++ ) {
97 $result |= ord( $known_string[$i] ) ^ ord( $user_string[$i] );
98 }
99
100 return ( $result === 0 );
101 }
102 }
103 /// @endcond
104
105 /**
106 * Load an extension
107 *
108 * This queues an extension to be loaded through
109 * the ExtensionRegistry system.
110 *
111 * @param string $ext Name of the extension to load
112 * @param string|null $path Absolute path of where to find the extension.json file
113 * @since 1.25
114 */
115 function wfLoadExtension( $ext, $path = null ) {
116 if ( !$path ) {
117 global $wgExtensionDirectory;
118 $path = "$wgExtensionDirectory/$ext/extension.json";
119 }
120 ExtensionRegistry::getInstance()->queue( $path );
121 }
122
123 /**
124 * Load multiple extensions at once
125 *
126 * Same as wfLoadExtension, but more efficient if you
127 * are loading multiple extensions.
128 *
129 * If you want to specify custom paths, you should interact with
130 * ExtensionRegistry directly.
131 *
132 * @see wfLoadExtension
133 * @param string[] $exts Array of extension names to load
134 * @since 1.25
135 */
136 function wfLoadExtensions( array $exts ) {
137 global $wgExtensionDirectory;
138 $registry = ExtensionRegistry::getInstance();
139 foreach ( $exts as $ext ) {
140 $registry->queue( "$wgExtensionDirectory/$ext/extension.json" );
141 }
142 }
143
144 /**
145 * Load a skin
146 *
147 * @see wfLoadExtension
148 * @param string $skin Name of the extension to load
149 * @param string|null $path Absolute path of where to find the skin.json file
150 * @since 1.25
151 */
152 function wfLoadSkin( $skin, $path = null ) {
153 if ( !$path ) {
154 global $wgStyleDirectory;
155 $path = "$wgStyleDirectory/$skin/skin.json";
156 }
157 ExtensionRegistry::getInstance()->queue( $path );
158 }
159
160 /**
161 * Load multiple skins at once
162 *
163 * @see wfLoadExtensions
164 * @param string[] $skins Array of extension names to load
165 * @since 1.25
166 */
167 function wfLoadSkins( array $skins ) {
168 global $wgStyleDirectory;
169 $registry = ExtensionRegistry::getInstance();
170 foreach ( $skins as $skin ) {
171 $registry->queue( "$wgStyleDirectory/$skin/skin.json" );
172 }
173 }
174
175 /**
176 * Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
177 * @param array $a
178 * @param array $b
179 * @return array
180 */
181 function wfArrayDiff2( $a, $b ) {
182 return array_udiff( $a, $b, 'wfArrayDiff2_cmp' );
183 }
184
185 /**
186 * @param array|string $a
187 * @param array|string $b
188 * @return int
189 */
190 function wfArrayDiff2_cmp( $a, $b ) {
191 if ( is_string( $a ) && is_string( $b ) ) {
192 return strcmp( $a, $b );
193 } elseif ( count( $a ) !== count( $b ) ) {
194 return count( $a ) < count( $b ) ? -1 : 1;
195 } else {
196 reset( $a );
197 reset( $b );
198 while ( key( $a ) !== null && key( $b ) !== null ) {
199 $valueA = current( $a );
200 $valueB = current( $b );
201 $cmp = strcmp( $valueA, $valueB );
202 if ( $cmp !== 0 ) {
203 return $cmp;
204 }
205 next( $a );
206 next( $b );
207 }
208 return 0;
209 }
210 }
211
212 /**
213 * Like array_filter with ARRAY_FILTER_USE_BOTH, but works pre-5.6.
214 *
215 * @param array $arr
216 * @param callable $callback Will be called with the array value and key (in that order) and
217 * should return a bool which will determine whether the array element is kept.
218 * @return array
219 */
220 function wfArrayFilter( array $arr, callable $callback ) {
221 if ( defined( 'ARRAY_FILTER_USE_BOTH' ) ) {
222 return array_filter( $arr, $callback, ARRAY_FILTER_USE_BOTH );
223 }
224 $filteredKeys = array_filter( array_keys( $arr ), function ( $key ) use ( $arr, $callback ) {
225 return call_user_func( $callback, $arr[$key], $key );
226 } );
227 return array_intersect_key( $arr, array_fill_keys( $filteredKeys, true ) );
228 }
229
230 /**
231 * Like array_filter with ARRAY_FILTER_USE_KEY, but works pre-5.6.
232 *
233 * @param array $arr
234 * @param callable $callback Will be called with the array key and should return a bool which
235 * will determine whether the array element is kept.
236 * @return array
237 */
238 function wfArrayFilterByKey( array $arr, callable $callback ) {
239 return wfArrayFilter( $arr, function ( $val, $key ) use ( $callback ) {
240 return call_user_func( $callback, $key );
241 } );
242 }
243
244 /**
245 * Appends to second array if $value differs from that in $default
246 *
247 * @param string|int $key
248 * @param mixed $value
249 * @param mixed $default
250 * @param array &$changed Array to alter
251 * @throws MWException
252 */
253 function wfAppendToArrayIfNotDefault( $key, $value, $default, &$changed ) {
254 if ( is_null( $changed ) ) {
255 throw new MWException( 'GlobalFunctions::wfAppendToArrayIfNotDefault got null' );
256 }
257 if ( $default[$key] !== $value ) {
258 $changed[$key] = $value;
259 }
260 }
261
262 /**
263 * Merge arrays in the style of getUserPermissionsErrors, with duplicate removal
264 * e.g.
265 * wfMergeErrorArrays(
266 * [ [ 'x' ] ],
267 * [ [ 'x', '2' ] ],
268 * [ [ 'x' ] ],
269 * [ [ 'y' ] ]
270 * );
271 * returns:
272 * [
273 * [ 'x', '2' ],
274 * [ 'x' ],
275 * [ 'y' ]
276 * ]
277 *
278 * @param array $array1,...
279 * @return array
280 */
281 function wfMergeErrorArrays( /*...*/ ) {
282 $args = func_get_args();
283 $out = [];
284 foreach ( $args as $errors ) {
285 foreach ( $errors as $params ) {
286 $originalParams = $params;
287 if ( $params[0] instanceof MessageSpecifier ) {
288 $msg = $params[0];
289 $params = array_merge( [ $msg->getKey() ], $msg->getParams() );
290 }
291 # @todo FIXME: Sometimes get nested arrays for $params,
292 # which leads to E_NOTICEs
293 $spec = implode( "\t", $params );
294 $out[$spec] = $originalParams;
295 }
296 }
297 return array_values( $out );
298 }
299
300 /**
301 * Insert array into another array after the specified *KEY*
302 *
303 * @param array $array The array.
304 * @param array $insert The array to insert.
305 * @param mixed $after The key to insert after
306 * @return array
307 */
308 function wfArrayInsertAfter( array $array, array $insert, $after ) {
309 // Find the offset of the element to insert after.
310 $keys = array_keys( $array );
311 $offsetByKey = array_flip( $keys );
312
313 $offset = $offsetByKey[$after];
314
315 // Insert at the specified offset
316 $before = array_slice( $array, 0, $offset + 1, true );
317 $after = array_slice( $array, $offset + 1, count( $array ) - $offset, true );
318
319 $output = $before + $insert + $after;
320
321 return $output;
322 }
323
324 /**
325 * Recursively converts the parameter (an object) to an array with the same data
326 *
327 * @param object|array $objOrArray
328 * @param bool $recursive
329 * @return array
330 */
331 function wfObjectToArray( $objOrArray, $recursive = true ) {
332 $array = [];
333 if ( is_object( $objOrArray ) ) {
334 $objOrArray = get_object_vars( $objOrArray );
335 }
336 foreach ( $objOrArray as $key => $value ) {
337 if ( $recursive && ( is_object( $value ) || is_array( $value ) ) ) {
338 $value = wfObjectToArray( $value );
339 }
340
341 $array[$key] = $value;
342 }
343
344 return $array;
345 }
346
347 /**
348 * Get a random decimal value between 0 and 1, in a way
349 * not likely to give duplicate values for any realistic
350 * number of articles.
351 *
352 * @note This is designed for use in relation to Special:RandomPage
353 * and the page_random database field.
354 *
355 * @return string
356 */
357 function wfRandom() {
358 // The maximum random value is "only" 2^31-1, so get two random
359 // values to reduce the chance of dupes
360 $max = mt_getrandmax() + 1;
361 $rand = number_format( ( mt_rand() * $max + mt_rand() ) / $max / $max, 12, '.', '' );
362 return $rand;
363 }
364
365 /**
366 * Get a random string containing a number of pseudo-random hex characters.
367 *
368 * @note This is not secure, if you are trying to generate some sort
369 * of token please use MWCryptRand instead.
370 *
371 * @param int $length The length of the string to generate
372 * @return string
373 * @since 1.20
374 */
375 function wfRandomString( $length = 32 ) {
376 $str = '';
377 for ( $n = 0; $n < $length; $n += 7 ) {
378 $str .= sprintf( '%07x', mt_rand() & 0xfffffff );
379 }
380 return substr( $str, 0, $length );
381 }
382
383 /**
384 * We want some things to be included as literal characters in our title URLs
385 * for prettiness, which urlencode encodes by default. According to RFC 1738,
386 * all of the following should be safe:
387 *
388 * ;:@&=$-_.+!*'(),
389 *
390 * RFC 1738 says ~ is unsafe, however RFC 3986 considers it an unreserved
391 * character which should not be encoded. More importantly, google chrome
392 * always converts %7E back to ~, and converting it in this function can
393 * cause a redirect loop (T105265).
394 *
395 * But + is not safe because it's used to indicate a space; &= are only safe in
396 * paths and not in queries (and we don't distinguish here); ' seems kind of
397 * scary; and urlencode() doesn't touch -_. to begin with. Plus, although /
398 * is reserved, we don't care. So the list we unescape is:
399 *
400 * ;:@$!*(),/~
401 *
402 * However, IIS7 redirects fail when the url contains a colon (see T24709),
403 * so no fancy : for IIS7.
404 *
405 * %2F in the page titles seems to fatally break for some reason.
406 *
407 * @param string $s
408 * @return string
409 */
410 function wfUrlencode( $s ) {
411 static $needle;
412
413 if ( is_null( $s ) ) {
414 $needle = null;
415 return '';
416 }
417
418 if ( is_null( $needle ) ) {
419 $needle = [ '%3B', '%40', '%24', '%21', '%2A', '%28', '%29', '%2C', '%2F', '%7E' ];
420 if ( !isset( $_SERVER['SERVER_SOFTWARE'] ) ||
421 ( strpos( $_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS/7' ) === false )
422 ) {
423 $needle[] = '%3A';
424 }
425 }
426
427 $s = urlencode( $s );
428 $s = str_ireplace(
429 $needle,
430 [ ';', '@', '$', '!', '*', '(', ')', ',', '/', '~', ':' ],
431 $s
432 );
433
434 return $s;
435 }
436
437 /**
438 * This function takes one or two arrays as input, and returns a CGI-style string, e.g.
439 * "days=7&limit=100". Options in the first array override options in the second.
440 * Options set to null or false will not be output.
441 *
442 * @param array $array1 ( String|Array )
443 * @param array|null $array2 ( String|Array )
444 * @param string $prefix
445 * @return string
446 */
447 function wfArrayToCgi( $array1, $array2 = null, $prefix = '' ) {
448 if ( !is_null( $array2 ) ) {
449 $array1 = $array1 + $array2;
450 }
451
452 $cgi = '';
453 foreach ( $array1 as $key => $value ) {
454 if ( !is_null( $value ) && $value !== false ) {
455 if ( $cgi != '' ) {
456 $cgi .= '&';
457 }
458 if ( $prefix !== '' ) {
459 $key = $prefix . "[$key]";
460 }
461 if ( is_array( $value ) ) {
462 $firstTime = true;
463 foreach ( $value as $k => $v ) {
464 $cgi .= $firstTime ? '' : '&';
465 if ( is_array( $v ) ) {
466 $cgi .= wfArrayToCgi( $v, null, $key . "[$k]" );
467 } else {
468 $cgi .= urlencode( $key . "[$k]" ) . '=' . urlencode( $v );
469 }
470 $firstTime = false;
471 }
472 } else {
473 if ( is_object( $value ) ) {
474 $value = $value->__toString();
475 }
476 $cgi .= urlencode( $key ) . '=' . urlencode( $value );
477 }
478 }
479 }
480 return $cgi;
481 }
482
483 /**
484 * This is the logical opposite of wfArrayToCgi(): it accepts a query string as
485 * its argument and returns the same string in array form. This allows compatibility
486 * with legacy functions that accept raw query strings instead of nice
487 * arrays. Of course, keys and values are urldecode()d.
488 *
489 * @param string $query Query string
490 * @return string[] Array version of input
491 */
492 function wfCgiToArray( $query ) {
493 if ( isset( $query[0] ) && $query[0] == '?' ) {
494 $query = substr( $query, 1 );
495 }
496 $bits = explode( '&', $query );
497 $ret = [];
498 foreach ( $bits as $bit ) {
499 if ( $bit === '' ) {
500 continue;
501 }
502 if ( strpos( $bit, '=' ) === false ) {
503 // Pieces like &qwerty become 'qwerty' => '' (at least this is what php does)
504 $key = $bit;
505 $value = '';
506 } else {
507 list( $key, $value ) = explode( '=', $bit );
508 }
509 $key = urldecode( $key );
510 $value = urldecode( $value );
511 if ( strpos( $key, '[' ) !== false ) {
512 $keys = array_reverse( explode( '[', $key ) );
513 $key = array_pop( $keys );
514 $temp = $value;
515 foreach ( $keys as $k ) {
516 $k = substr( $k, 0, -1 );
517 $temp = [ $k => $temp ];
518 }
519 if ( isset( $ret[$key] ) ) {
520 $ret[$key] = array_merge( $ret[$key], $temp );
521 } else {
522 $ret[$key] = $temp;
523 }
524 } else {
525 $ret[$key] = $value;
526 }
527 }
528 return $ret;
529 }
530
531 /**
532 * Append a query string to an existing URL, which may or may not already
533 * have query string parameters already. If so, they will be combined.
534 *
535 * @param string $url
536 * @param string|string[] $query String or associative array
537 * @return string
538 */
539 function wfAppendQuery( $url, $query ) {
540 if ( is_array( $query ) ) {
541 $query = wfArrayToCgi( $query );
542 }
543 if ( $query != '' ) {
544 // Remove the fragment, if there is one
545 $fragment = false;
546 $hashPos = strpos( $url, '#' );
547 if ( $hashPos !== false ) {
548 $fragment = substr( $url, $hashPos );
549 $url = substr( $url, 0, $hashPos );
550 }
551
552 // Add parameter
553 if ( false === strpos( $url, '?' ) ) {
554 $url .= '?';
555 } else {
556 $url .= '&';
557 }
558 $url .= $query;
559
560 // Put the fragment back
561 if ( $fragment !== false ) {
562 $url .= $fragment;
563 }
564 }
565 return $url;
566 }
567
568 /**
569 * Expand a potentially local URL to a fully-qualified URL. Assumes $wgServer
570 * is correct.
571 *
572 * The meaning of the PROTO_* constants is as follows:
573 * PROTO_HTTP: Output a URL starting with http://
574 * PROTO_HTTPS: Output a URL starting with https://
575 * PROTO_RELATIVE: Output a URL starting with // (protocol-relative URL)
576 * PROTO_CURRENT: Output a URL starting with either http:// or https:// , depending
577 * on which protocol was used for the current incoming request
578 * PROTO_CANONICAL: For URLs without a domain, like /w/index.php , use $wgCanonicalServer.
579 * For protocol-relative URLs, use the protocol of $wgCanonicalServer
580 * PROTO_INTERNAL: Like PROTO_CANONICAL, but uses $wgInternalServer instead of $wgCanonicalServer
581 *
582 * @todo this won't work with current-path-relative URLs
583 * like "subdir/foo.html", etc.
584 *
585 * @param string $url Either fully-qualified or a local path + query
586 * @param string $defaultProto One of the PROTO_* constants. Determines the
587 * protocol to use if $url or $wgServer is protocol-relative
588 * @return string|false Fully-qualified URL, current-path-relative URL or false if
589 * no valid URL can be constructed
590 */
591 function wfExpandUrl( $url, $defaultProto = PROTO_CURRENT ) {
592 global $wgServer, $wgCanonicalServer, $wgInternalServer, $wgRequest,
593 $wgHttpsPort;
594 if ( $defaultProto === PROTO_CANONICAL ) {
595 $serverUrl = $wgCanonicalServer;
596 } elseif ( $defaultProto === PROTO_INTERNAL && $wgInternalServer !== false ) {
597 // Make $wgInternalServer fall back to $wgServer if not set
598 $serverUrl = $wgInternalServer;
599 } else {
600 $serverUrl = $wgServer;
601 if ( $defaultProto === PROTO_CURRENT ) {
602 $defaultProto = $wgRequest->getProtocol() . '://';
603 }
604 }
605
606 // Analyze $serverUrl to obtain its protocol
607 $bits = wfParseUrl( $serverUrl );
608 $serverHasProto = $bits && $bits['scheme'] != '';
609
610 if ( $defaultProto === PROTO_CANONICAL || $defaultProto === PROTO_INTERNAL ) {
611 if ( $serverHasProto ) {
612 $defaultProto = $bits['scheme'] . '://';
613 } else {
614 // $wgCanonicalServer or $wgInternalServer doesn't have a protocol.
615 // This really isn't supposed to happen. Fall back to HTTP in this
616 // ridiculous case.
617 $defaultProto = PROTO_HTTP;
618 }
619 }
620
621 $defaultProtoWithoutSlashes = substr( $defaultProto, 0, -2 );
622
623 if ( substr( $url, 0, 2 ) == '//' ) {
624 $url = $defaultProtoWithoutSlashes . $url;
625 } elseif ( substr( $url, 0, 1 ) == '/' ) {
626 // If $serverUrl is protocol-relative, prepend $defaultProtoWithoutSlashes,
627 // otherwise leave it alone.
628 $url = ( $serverHasProto ? '' : $defaultProtoWithoutSlashes ) . $serverUrl . $url;
629 }
630
631 $bits = wfParseUrl( $url );
632
633 // ensure proper port for HTTPS arrives in URL
634 // https://phabricator.wikimedia.org/T67184
635 if ( $defaultProto === PROTO_HTTPS && $wgHttpsPort != 443 ) {
636 $bits['port'] = $wgHttpsPort;
637 }
638
639 if ( $bits && isset( $bits['path'] ) ) {
640 $bits['path'] = wfRemoveDotSegments( $bits['path'] );
641 return wfAssembleUrl( $bits );
642 } elseif ( $bits ) {
643 # No path to expand
644 return $url;
645 } elseif ( substr( $url, 0, 1 ) != '/' ) {
646 # URL is a relative path
647 return wfRemoveDotSegments( $url );
648 }
649
650 # Expanded URL is not valid.
651 return false;
652 }
653
654 /**
655 * This function will reassemble a URL parsed with wfParseURL. This is useful
656 * if you need to edit part of a URL and put it back together.
657 *
658 * This is the basic structure used (brackets contain keys for $urlParts):
659 * [scheme][delimiter][user]:[pass]@[host]:[port][path]?[query]#[fragment]
660 *
661 * @todo Need to integrate this into wfExpandUrl (see T34168)
662 *
663 * @since 1.19
664 * @param array $urlParts URL parts, as output from wfParseUrl
665 * @return string URL assembled from its component parts
666 */
667 function wfAssembleUrl( $urlParts ) {
668 $result = '';
669
670 if ( isset( $urlParts['delimiter'] ) ) {
671 if ( isset( $urlParts['scheme'] ) ) {
672 $result .= $urlParts['scheme'];
673 }
674
675 $result .= $urlParts['delimiter'];
676 }
677
678 if ( isset( $urlParts['host'] ) ) {
679 if ( isset( $urlParts['user'] ) ) {
680 $result .= $urlParts['user'];
681 if ( isset( $urlParts['pass'] ) ) {
682 $result .= ':' . $urlParts['pass'];
683 }
684 $result .= '@';
685 }
686
687 $result .= $urlParts['host'];
688
689 if ( isset( $urlParts['port'] ) ) {
690 $result .= ':' . $urlParts['port'];
691 }
692 }
693
694 if ( isset( $urlParts['path'] ) ) {
695 $result .= $urlParts['path'];
696 }
697
698 if ( isset( $urlParts['query'] ) ) {
699 $result .= '?' . $urlParts['query'];
700 }
701
702 if ( isset( $urlParts['fragment'] ) ) {
703 $result .= '#' . $urlParts['fragment'];
704 }
705
706 return $result;
707 }
708
709 /**
710 * Remove all dot-segments in the provided URL path. For example,
711 * '/a/./b/../c/' becomes '/a/c/'. For details on the algorithm, please see
712 * RFC3986 section 5.2.4.
713 *
714 * @todo Need to integrate this into wfExpandUrl (see T34168)
715 *
716 * @param string $urlPath URL path, potentially containing dot-segments
717 * @return string URL path with all dot-segments removed
718 */
719 function wfRemoveDotSegments( $urlPath ) {
720 $output = '';
721 $inputOffset = 0;
722 $inputLength = strlen( $urlPath );
723
724 while ( $inputOffset < $inputLength ) {
725 $prefixLengthOne = substr( $urlPath, $inputOffset, 1 );
726 $prefixLengthTwo = substr( $urlPath, $inputOffset, 2 );
727 $prefixLengthThree = substr( $urlPath, $inputOffset, 3 );
728 $prefixLengthFour = substr( $urlPath, $inputOffset, 4 );
729 $trimOutput = false;
730
731 if ( $prefixLengthTwo == './' ) {
732 # Step A, remove leading "./"
733 $inputOffset += 2;
734 } elseif ( $prefixLengthThree == '../' ) {
735 # Step A, remove leading "../"
736 $inputOffset += 3;
737 } elseif ( ( $prefixLengthTwo == '/.' ) && ( $inputOffset + 2 == $inputLength ) ) {
738 # Step B, replace leading "/.$" with "/"
739 $inputOffset += 1;
740 $urlPath[$inputOffset] = '/';
741 } elseif ( $prefixLengthThree == '/./' ) {
742 # Step B, replace leading "/./" with "/"
743 $inputOffset += 2;
744 } elseif ( $prefixLengthThree == '/..' && ( $inputOffset + 3 == $inputLength ) ) {
745 # Step C, replace leading "/..$" with "/" and
746 # remove last path component in output
747 $inputOffset += 2;
748 $urlPath[$inputOffset] = '/';
749 $trimOutput = true;
750 } elseif ( $prefixLengthFour == '/../' ) {
751 # Step C, replace leading "/../" with "/" and
752 # remove last path component in output
753 $inputOffset += 3;
754 $trimOutput = true;
755 } elseif ( ( $prefixLengthOne == '.' ) && ( $inputOffset + 1 == $inputLength ) ) {
756 # Step D, remove "^.$"
757 $inputOffset += 1;
758 } elseif ( ( $prefixLengthTwo == '..' ) && ( $inputOffset + 2 == $inputLength ) ) {
759 # Step D, remove "^..$"
760 $inputOffset += 2;
761 } else {
762 # Step E, move leading path segment to output
763 if ( $prefixLengthOne == '/' ) {
764 $slashPos = strpos( $urlPath, '/', $inputOffset + 1 );
765 } else {
766 $slashPos = strpos( $urlPath, '/', $inputOffset );
767 }
768 if ( $slashPos === false ) {
769 $output .= substr( $urlPath, $inputOffset );
770 $inputOffset = $inputLength;
771 } else {
772 $output .= substr( $urlPath, $inputOffset, $slashPos - $inputOffset );
773 $inputOffset += $slashPos - $inputOffset;
774 }
775 }
776
777 if ( $trimOutput ) {
778 $slashPos = strrpos( $output, '/' );
779 if ( $slashPos === false ) {
780 $output = '';
781 } else {
782 $output = substr( $output, 0, $slashPos );
783 }
784 }
785 }
786
787 return $output;
788 }
789
790 /**
791 * Returns a regular expression of url protocols
792 *
793 * @param bool $includeProtocolRelative If false, remove '//' from the returned protocol list.
794 * DO NOT USE this directly, use wfUrlProtocolsWithoutProtRel() instead
795 * @return string
796 */
797 function wfUrlProtocols( $includeProtocolRelative = true ) {
798 global $wgUrlProtocols;
799
800 // Cache return values separately based on $includeProtocolRelative
801 static $withProtRel = null, $withoutProtRel = null;
802 $cachedValue = $includeProtocolRelative ? $withProtRel : $withoutProtRel;
803 if ( !is_null( $cachedValue ) ) {
804 return $cachedValue;
805 }
806
807 // Support old-style $wgUrlProtocols strings, for backwards compatibility
808 // with LocalSettings files from 1.5
809 if ( is_array( $wgUrlProtocols ) ) {
810 $protocols = [];
811 foreach ( $wgUrlProtocols as $protocol ) {
812 // Filter out '//' if !$includeProtocolRelative
813 if ( $includeProtocolRelative || $protocol !== '//' ) {
814 $protocols[] = preg_quote( $protocol, '/' );
815 }
816 }
817
818 $retval = implode( '|', $protocols );
819 } else {
820 // Ignore $includeProtocolRelative in this case
821 // This case exists for pre-1.6 compatibility, and we can safely assume
822 // that '//' won't appear in a pre-1.6 config because protocol-relative
823 // URLs weren't supported until 1.18
824 $retval = $wgUrlProtocols;
825 }
826
827 // Cache return value
828 if ( $includeProtocolRelative ) {
829 $withProtRel = $retval;
830 } else {
831 $withoutProtRel = $retval;
832 }
833 return $retval;
834 }
835
836 /**
837 * Like wfUrlProtocols(), but excludes '//' from the protocol list. Use this if
838 * you need a regex that matches all URL protocols but does not match protocol-
839 * relative URLs
840 * @return string
841 */
842 function wfUrlProtocolsWithoutProtRel() {
843 return wfUrlProtocols( false );
844 }
845
846 /**
847 * parse_url() work-alike, but non-broken. Differences:
848 *
849 * 1) Does not raise warnings on bad URLs (just returns false).
850 * 2) Handles protocols that don't use :// (e.g., mailto: and news:, as well as
851 * protocol-relative URLs) correctly.
852 * 3) Adds a "delimiter" element to the array (see (2)).
853 * 4) Verifies that the protocol is on the $wgUrlProtocols whitelist.
854 * 5) Rejects some invalid URLs that parse_url doesn't, e.g. the empty string or URLs starting with
855 * a line feed character.
856 *
857 * @param string $url A URL to parse
858 * @return string[]|bool Bits of the URL in an associative array, or false on failure.
859 * Possible fields:
860 * - scheme: URI scheme (protocol), e.g. 'http', 'mailto'. Lowercase, always present, but can
861 * be an empty string for protocol-relative URLs.
862 * - delimiter: either '://', ':' or '//'. Always present.
863 * - host: domain name / IP. Always present, but could be an empty string, e.g. for file: URLs.
864 * - user: user name, e.g. for HTTP Basic auth URLs such as http://user:pass@example.com/
865 * Missing when there is no username.
866 * - pass: password, same as above.
867 * - path: path including the leading /. Will be missing when empty (e.g. 'http://example.com')
868 * - query: query string (as a string; see wfCgiToArray() for parsing it), can be missing.
869 * - fragment: the part after #, can be missing.
870 */
871 function wfParseUrl( $url ) {
872 global $wgUrlProtocols; // Allow all protocols defined in DefaultSettings/LocalSettings.php
873
874 // Protocol-relative URLs are handled really badly by parse_url(). It's so
875 // bad that the easiest way to handle them is to just prepend 'http:' and
876 // strip the protocol out later.
877 $wasRelative = substr( $url, 0, 2 ) == '//';
878 if ( $wasRelative ) {
879 $url = "http:$url";
880 }
881 MediaWiki\suppressWarnings();
882 $bits = parse_url( $url );
883 MediaWiki\restoreWarnings();
884 // parse_url() returns an array without scheme for some invalid URLs, e.g.
885 // parse_url("%0Ahttp://example.com") == [ 'host' => '%0Ahttp', 'path' => 'example.com' ]
886 if ( !$bits || !isset( $bits['scheme'] ) ) {
887 return false;
888 }
889
890 // parse_url() incorrectly handles schemes case-sensitively. Convert it to lowercase.
891 $bits['scheme'] = strtolower( $bits['scheme'] );
892
893 // most of the protocols are followed by ://, but mailto: and sometimes news: not, check for it
894 if ( in_array( $bits['scheme'] . '://', $wgUrlProtocols ) ) {
895 $bits['delimiter'] = '://';
896 } elseif ( in_array( $bits['scheme'] . ':', $wgUrlProtocols ) ) {
897 $bits['delimiter'] = ':';
898 // parse_url detects for news: and mailto: the host part of an url as path
899 // We have to correct this wrong detection
900 if ( isset( $bits['path'] ) ) {
901 $bits['host'] = $bits['path'];
902 $bits['path'] = '';
903 }
904 } else {
905 return false;
906 }
907
908 /* Provide an empty host for eg. file:/// urls (see T30627) */
909 if ( !isset( $bits['host'] ) ) {
910 $bits['host'] = '';
911
912 // See T47069
913 if ( isset( $bits['path'] ) ) {
914 /* parse_url loses the third / for file:///c:/ urls (but not on variants) */
915 if ( substr( $bits['path'], 0, 1 ) !== '/' ) {
916 $bits['path'] = '/' . $bits['path'];
917 }
918 } else {
919 $bits['path'] = '';
920 }
921 }
922
923 // If the URL was protocol-relative, fix scheme and delimiter
924 if ( $wasRelative ) {
925 $bits['scheme'] = '';
926 $bits['delimiter'] = '//';
927 }
928 return $bits;
929 }
930
931 /**
932 * Take a URL, make sure it's expanded to fully qualified, and replace any
933 * encoded non-ASCII Unicode characters with their UTF-8 original forms
934 * for more compact display and legibility for local audiences.
935 *
936 * @todo handle punycode domains too
937 *
938 * @param string $url
939 * @return string
940 */
941 function wfExpandIRI( $url ) {
942 return preg_replace_callback(
943 '/((?:%[89A-F][0-9A-F])+)/i',
944 'wfExpandIRI_callback',
945 wfExpandUrl( $url )
946 );
947 }
948
949 /**
950 * Private callback for wfExpandIRI
951 * @param array $matches
952 * @return string
953 */
954 function wfExpandIRI_callback( $matches ) {
955 return urldecode( $matches[1] );
956 }
957
958 /**
959 * Make URL indexes, appropriate for the el_index field of externallinks.
960 *
961 * @param string $url
962 * @return array
963 */
964 function wfMakeUrlIndexes( $url ) {
965 $bits = wfParseUrl( $url );
966
967 // Reverse the labels in the hostname, convert to lower case
968 // For emails reverse domainpart only
969 if ( $bits['scheme'] == 'mailto' ) {
970 $mailparts = explode( '@', $bits['host'], 2 );
971 if ( count( $mailparts ) === 2 ) {
972 $domainpart = strtolower( implode( '.', array_reverse( explode( '.', $mailparts[1] ) ) ) );
973 } else {
974 // No domain specified, don't mangle it
975 $domainpart = '';
976 }
977 $reversedHost = $domainpart . '@' . $mailparts[0];
978 } else {
979 $reversedHost = strtolower( implode( '.', array_reverse( explode( '.', $bits['host'] ) ) ) );
980 }
981 // Add an extra dot to the end
982 // Why? Is it in wrong place in mailto links?
983 if ( substr( $reversedHost, -1, 1 ) !== '.' ) {
984 $reversedHost .= '.';
985 }
986 // Reconstruct the pseudo-URL
987 $prot = $bits['scheme'];
988 $index = $prot . $bits['delimiter'] . $reversedHost;
989 // Leave out user and password. Add the port, path, query and fragment
990 if ( isset( $bits['port'] ) ) {
991 $index .= ':' . $bits['port'];
992 }
993 if ( isset( $bits['path'] ) ) {
994 $index .= $bits['path'];
995 } else {
996 $index .= '/';
997 }
998 if ( isset( $bits['query'] ) ) {
999 $index .= '?' . $bits['query'];
1000 }
1001 if ( isset( $bits['fragment'] ) ) {
1002 $index .= '#' . $bits['fragment'];
1003 }
1004
1005 if ( $prot == '' ) {
1006 return [ "http:$index", "https:$index" ];
1007 } else {
1008 return [ $index ];
1009 }
1010 }
1011
1012 /**
1013 * Check whether a given URL has a domain that occurs in a given set of domains
1014 * @param string $url URL
1015 * @param array $domains Array of domains (strings)
1016 * @return bool True if the host part of $url ends in one of the strings in $domains
1017 */
1018 function wfMatchesDomainList( $url, $domains ) {
1019 $bits = wfParseUrl( $url );
1020 if ( is_array( $bits ) && isset( $bits['host'] ) ) {
1021 $host = '.' . $bits['host'];
1022 foreach ( (array)$domains as $domain ) {
1023 $domain = '.' . $domain;
1024 if ( substr( $host, -strlen( $domain ) ) === $domain ) {
1025 return true;
1026 }
1027 }
1028 }
1029 return false;
1030 }
1031
1032 /**
1033 * Sends a line to the debug log if enabled or, optionally, to a comment in output.
1034 * In normal operation this is a NOP.
1035 *
1036 * Controlling globals:
1037 * $wgDebugLogFile - points to the log file
1038 * $wgDebugRawPage - if false, 'action=raw' hits will not result in debug output.
1039 * $wgDebugComments - if on, some debug items may appear in comments in the HTML output.
1040 *
1041 * @since 1.25 support for additional context data
1042 *
1043 * @param string $text
1044 * @param string|bool $dest Destination of the message:
1045 * - 'all': both to the log and HTML (debug toolbar or HTML comments)
1046 * - 'private': excluded from HTML output
1047 * For backward compatibility, it can also take a boolean:
1048 * - true: same as 'all'
1049 * - false: same as 'private'
1050 * @param array $context Additional logging context data
1051 */
1052 function wfDebug( $text, $dest = 'all', array $context = [] ) {
1053 global $wgDebugRawPage, $wgDebugLogPrefix;
1054 global $wgDebugTimestamps, $wgRequestTime;
1055
1056 if ( !$wgDebugRawPage && wfIsDebugRawPage() ) {
1057 return;
1058 }
1059
1060 $text = trim( $text );
1061
1062 if ( $wgDebugTimestamps ) {
1063 $context['seconds_elapsed'] = sprintf(
1064 '%6.4f',
1065 microtime( true ) - $wgRequestTime
1066 );
1067 $context['memory_used'] = sprintf(
1068 '%5.1fM',
1069 ( memory_get_usage( true ) / ( 1024 * 1024 ) )
1070 );
1071 }
1072
1073 if ( $wgDebugLogPrefix !== '' ) {
1074 $context['prefix'] = $wgDebugLogPrefix;
1075 }
1076 $context['private'] = ( $dest === false || $dest === 'private' );
1077
1078 $logger = LoggerFactory::getInstance( 'wfDebug' );
1079 $logger->debug( $text, $context );
1080 }
1081
1082 /**
1083 * Returns true if debug logging should be suppressed if $wgDebugRawPage = false
1084 * @return bool
1085 */
1086 function wfIsDebugRawPage() {
1087 static $cache;
1088 if ( $cache !== null ) {
1089 return $cache;
1090 }
1091 # Check for raw action using $_GET not $wgRequest, since the latter might not be initialised yet
1092 if ( ( isset( $_GET['action'] ) && $_GET['action'] == 'raw' )
1093 || (
1094 isset( $_SERVER['SCRIPT_NAME'] )
1095 && substr( $_SERVER['SCRIPT_NAME'], -8 ) == 'load.php'
1096 )
1097 ) {
1098 $cache = true;
1099 } else {
1100 $cache = false;
1101 }
1102 return $cache;
1103 }
1104
1105 /**
1106 * Send a line giving PHP memory usage.
1107 *
1108 * @param bool $exact Print exact byte values instead of kibibytes (default: false)
1109 */
1110 function wfDebugMem( $exact = false ) {
1111 $mem = memory_get_usage();
1112 if ( !$exact ) {
1113 $mem = floor( $mem / 1024 ) . ' KiB';
1114 } else {
1115 $mem .= ' B';
1116 }
1117 wfDebug( "Memory usage: $mem\n" );
1118 }
1119
1120 /**
1121 * Send a line to a supplementary debug log file, if configured, or main debug
1122 * log if not.
1123 *
1124 * To configure a supplementary log file, set $wgDebugLogGroups[$logGroup] to
1125 * a string filename or an associative array mapping 'destination' to the
1126 * desired filename. The associative array may also contain a 'sample' key
1127 * with an integer value, specifying a sampling factor. Sampled log events
1128 * will be emitted with a 1 in N random chance.
1129 *
1130 * @since 1.23 support for sampling log messages via $wgDebugLogGroups.
1131 * @since 1.25 support for additional context data
1132 * @since 1.25 sample behavior dependent on configured $wgMWLoggerDefaultSpi
1133 *
1134 * @param string $logGroup
1135 * @param string $text
1136 * @param string|bool $dest Destination of the message:
1137 * - 'all': both to the log and HTML (debug toolbar or HTML comments)
1138 * - 'private': only to the specific log if set in $wgDebugLogGroups and
1139 * discarded otherwise
1140 * For backward compatibility, it can also take a boolean:
1141 * - true: same as 'all'
1142 * - false: same as 'private'
1143 * @param array $context Additional logging context data
1144 */
1145 function wfDebugLog(
1146 $logGroup, $text, $dest = 'all', array $context = []
1147 ) {
1148 $text = trim( $text );
1149
1150 $logger = LoggerFactory::getInstance( $logGroup );
1151 $context['private'] = ( $dest === false || $dest === 'private' );
1152 $logger->info( $text, $context );
1153 }
1154
1155 /**
1156 * Log for database errors
1157 *
1158 * @since 1.25 support for additional context data
1159 *
1160 * @param string $text Database error message.
1161 * @param array $context Additional logging context data
1162 */
1163 function wfLogDBError( $text, array $context = [] ) {
1164 $logger = LoggerFactory::getInstance( 'wfLogDBError' );
1165 $logger->error( trim( $text ), $context );
1166 }
1167
1168 /**
1169 * Throws a warning that $function is deprecated
1170 *
1171 * @param string $function
1172 * @param string|bool $version Version of MediaWiki that the function
1173 * was deprecated in (Added in 1.19).
1174 * @param string|bool $component Added in 1.19.
1175 * @param int $callerOffset How far up the call stack is the original
1176 * caller. 2 = function that called the function that called
1177 * wfDeprecated (Added in 1.20)
1178 *
1179 * @return null
1180 */
1181 function wfDeprecated( $function, $version = false, $component = false, $callerOffset = 2 ) {
1182 MWDebug::deprecated( $function, $version, $component, $callerOffset + 1 );
1183 }
1184
1185 /**
1186 * Send a warning either to the debug log or in a PHP error depending on
1187 * $wgDevelopmentWarnings. To log warnings in production, use wfLogWarning() instead.
1188 *
1189 * @param string $msg Message to send
1190 * @param int $callerOffset Number of items to go back in the backtrace to
1191 * find the correct caller (1 = function calling wfWarn, ...)
1192 * @param int $level PHP error level; defaults to E_USER_NOTICE;
1193 * only used when $wgDevelopmentWarnings is true
1194 */
1195 function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE ) {
1196 MWDebug::warning( $msg, $callerOffset + 1, $level, 'auto' );
1197 }
1198
1199 /**
1200 * Send a warning as a PHP error and the debug log. This is intended for logging
1201 * warnings in production. For logging development warnings, use WfWarn instead.
1202 *
1203 * @param string $msg Message to send
1204 * @param int $callerOffset Number of items to go back in the backtrace to
1205 * find the correct caller (1 = function calling wfLogWarning, ...)
1206 * @param int $level PHP error level; defaults to E_USER_WARNING
1207 */
1208 function wfLogWarning( $msg, $callerOffset = 1, $level = E_USER_WARNING ) {
1209 MWDebug::warning( $msg, $callerOffset + 1, $level, 'production' );
1210 }
1211
1212 /**
1213 * Log to a file without getting "file size exceeded" signals.
1214 *
1215 * Can also log to TCP or UDP with the syntax udp://host:port/prefix. This will
1216 * send lines to the specified port, prefixed by the specified prefix and a space.
1217 * @since 1.25 support for additional context data
1218 *
1219 * @param string $text
1220 * @param string $file Filename
1221 * @param array $context Additional logging context data
1222 * @throws MWException
1223 * @deprecated since 1.25 Use \MediaWiki\Logger\LegacyLogger::emit or UDPTransport
1224 */
1225 function wfErrorLog( $text, $file, array $context = [] ) {
1226 wfDeprecated( __METHOD__, '1.25' );
1227 $logger = LoggerFactory::getInstance( 'wfErrorLog' );
1228 $context['destination'] = $file;
1229 $logger->info( trim( $text ), $context );
1230 }
1231
1232 /**
1233 * @todo document
1234 */
1235 function wfLogProfilingData() {
1236 global $wgDebugLogGroups, $wgDebugRawPage;
1237
1238 $context = RequestContext::getMain();
1239 $request = $context->getRequest();
1240
1241 $profiler = Profiler::instance();
1242 $profiler->setContext( $context );
1243 $profiler->logData();
1244
1245 $config = $context->getConfig();
1246 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
1247 if ( $config->get( 'StatsdServer' ) && $stats->hasData() ) {
1248 try {
1249 $statsdServer = explode( ':', $config->get( 'StatsdServer' ) );
1250 $statsdHost = $statsdServer[0];
1251 $statsdPort = isset( $statsdServer[1] ) ? $statsdServer[1] : 8125;
1252 $statsdSender = new SocketSender( $statsdHost, $statsdPort );
1253 $statsdClient = new SamplingStatsdClient( $statsdSender, true, false );
1254 $statsdClient->setSamplingRates( $config->get( 'StatsdSamplingRates' ) );
1255 $statsdClient->send( $stats->getData() );
1256 } catch ( Exception $ex ) {
1257 MWExceptionHandler::logException( $ex );
1258 }
1259 }
1260
1261 # Profiling must actually be enabled...
1262 if ( $profiler instanceof ProfilerStub ) {
1263 return;
1264 }
1265
1266 if ( isset( $wgDebugLogGroups['profileoutput'] )
1267 && $wgDebugLogGroups['profileoutput'] === false
1268 ) {
1269 // Explicitly disabled
1270 return;
1271 }
1272 if ( !$wgDebugRawPage && wfIsDebugRawPage() ) {
1273 return;
1274 }
1275
1276 $ctx = [ 'elapsed' => $request->getElapsedTime() ];
1277 if ( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
1278 $ctx['forwarded_for'] = $_SERVER['HTTP_X_FORWARDED_FOR'];
1279 }
1280 if ( !empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
1281 $ctx['client_ip'] = $_SERVER['HTTP_CLIENT_IP'];
1282 }
1283 if ( !empty( $_SERVER['HTTP_FROM'] ) ) {
1284 $ctx['from'] = $_SERVER['HTTP_FROM'];
1285 }
1286 if ( isset( $ctx['forwarded_for'] ) ||
1287 isset( $ctx['client_ip'] ) ||
1288 isset( $ctx['from'] ) ) {
1289 $ctx['proxy'] = $_SERVER['REMOTE_ADDR'];
1290 }
1291
1292 // Don't load $wgUser at this late stage just for statistics purposes
1293 // @todo FIXME: We can detect some anons even if it is not loaded.
1294 // See User::getId()
1295 $user = $context->getUser();
1296 $ctx['anon'] = $user->isItemLoaded( 'id' ) && $user->isAnon();
1297
1298 // Command line script uses a FauxRequest object which does not have
1299 // any knowledge about an URL and throw an exception instead.
1300 try {
1301 $ctx['url'] = urldecode( $request->getRequestURL() );
1302 } catch ( Exception $ignored ) {
1303 // no-op
1304 }
1305
1306 $ctx['output'] = $profiler->getOutput();
1307
1308 $log = LoggerFactory::getInstance( 'profileoutput' );
1309 $log->info( "Elapsed: {elapsed}; URL: <{url}>\n{output}", $ctx );
1310 }
1311
1312 /**
1313 * Increment a statistics counter
1314 *
1315 * @param string $key
1316 * @param int $count
1317 * @return void
1318 */
1319 function wfIncrStats( $key, $count = 1 ) {
1320 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
1321 $stats->updateCount( $key, $count );
1322 }
1323
1324 /**
1325 * Check whether the wiki is in read-only mode.
1326 *
1327 * @return bool
1328 */
1329 function wfReadOnly() {
1330 return MediaWikiServices::getInstance()->getReadOnlyMode()
1331 ->isReadOnly();
1332 }
1333
1334 /**
1335 * Check if the site is in read-only mode and return the message if so
1336 *
1337 * This checks wfConfiguredReadOnlyReason() and the main load balancer
1338 * for replica DB lag. This may result in DB connection being made.
1339 *
1340 * @return string|bool String when in read-only mode; false otherwise
1341 */
1342 function wfReadOnlyReason() {
1343 return MediaWikiServices::getInstance()->getReadOnlyMode()
1344 ->getReason();
1345 }
1346
1347 /**
1348 * Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
1349 *
1350 * @return string|bool String when in read-only mode; false otherwise
1351 * @since 1.27
1352 */
1353 function wfConfiguredReadOnlyReason() {
1354 return MediaWikiServices::getInstance()->getConfiguredReadOnlyMode()
1355 ->getReason();
1356 }
1357
1358 /**
1359 * Return a Language object from $langcode
1360 *
1361 * @param Language|string|bool $langcode Either:
1362 * - a Language object
1363 * - code of the language to get the message for, if it is
1364 * a valid code create a language for that language, if
1365 * it is a string but not a valid code then make a basic
1366 * language object
1367 * - a boolean: if it's false then use the global object for
1368 * the current user's language (as a fallback for the old parameter
1369 * functionality), or if it is true then use global object
1370 * for the wiki's content language.
1371 * @return Language
1372 */
1373 function wfGetLangObj( $langcode = false ) {
1374 # Identify which language to get or create a language object for.
1375 # Using is_object here due to Stub objects.
1376 if ( is_object( $langcode ) ) {
1377 # Great, we already have the object (hopefully)!
1378 return $langcode;
1379 }
1380
1381 global $wgContLang, $wgLanguageCode;
1382 if ( $langcode === true || $langcode === $wgLanguageCode ) {
1383 # $langcode is the language code of the wikis content language object.
1384 # or it is a boolean and value is true
1385 return $wgContLang;
1386 }
1387
1388 global $wgLang;
1389 if ( $langcode === false || $langcode === $wgLang->getCode() ) {
1390 # $langcode is the language code of user language object.
1391 # or it was a boolean and value is false
1392 return $wgLang;
1393 }
1394
1395 $validCodes = array_keys( Language::fetchLanguageNames() );
1396 if ( in_array( $langcode, $validCodes ) ) {
1397 # $langcode corresponds to a valid language.
1398 return Language::factory( $langcode );
1399 }
1400
1401 # $langcode is a string, but not a valid language code; use content language.
1402 wfDebug( "Invalid language code passed to wfGetLangObj, falling back to content language.\n" );
1403 return $wgContLang;
1404 }
1405
1406 /**
1407 * This is the function for getting translated interface messages.
1408 *
1409 * @see Message class for documentation how to use them.
1410 * @see https://www.mediawiki.org/wiki/Manual:Messages_API
1411 *
1412 * This function replaces all old wfMsg* functions.
1413 *
1414 * @param string|string[]|MessageSpecifier $key Message key, or array of keys, or a MessageSpecifier
1415 * @param mixed $params,... Normal message parameters
1416 * @return Message
1417 *
1418 * @since 1.17
1419 *
1420 * @see Message::__construct
1421 */
1422 function wfMessage( $key /*...*/ ) {
1423 $message = new Message( $key );
1424
1425 // We call Message::params() to reduce code duplication
1426 $params = func_get_args();
1427 array_shift( $params );
1428 if ( $params ) {
1429 call_user_func_array( [ $message, 'params' ], $params );
1430 }
1431
1432 return $message;
1433 }
1434
1435 /**
1436 * This function accepts multiple message keys and returns a message instance
1437 * for the first message which is non-empty. If all messages are empty then an
1438 * instance of the first message key is returned.
1439 *
1440 * @param string|string[] $keys,... Message keys
1441 * @return Message
1442 *
1443 * @since 1.18
1444 *
1445 * @see Message::newFallbackSequence
1446 */
1447 function wfMessageFallback( /*...*/ ) {
1448 $args = func_get_args();
1449 return call_user_func_array( 'Message::newFallbackSequence', $args );
1450 }
1451
1452 /**
1453 * Replace message parameter keys on the given formatted output.
1454 *
1455 * @param string $message
1456 * @param array $args
1457 * @return string
1458 * @private
1459 */
1460 function wfMsgReplaceArgs( $message, $args ) {
1461 # Fix windows line-endings
1462 # Some messages are split with explode("\n", $msg)
1463 $message = str_replace( "\r", '', $message );
1464
1465 // Replace arguments
1466 if ( is_array( $args ) && $args ) {
1467 if ( is_array( $args[0] ) ) {
1468 $args = array_values( $args[0] );
1469 }
1470 $replacementKeys = [];
1471 foreach ( $args as $n => $param ) {
1472 $replacementKeys['$' . ( $n + 1 )] = $param;
1473 }
1474 $message = strtr( $message, $replacementKeys );
1475 }
1476
1477 return $message;
1478 }
1479
1480 /**
1481 * Fetch server name for use in error reporting etc.
1482 * Use real server name if available, so we know which machine
1483 * in a server farm generated the current page.
1484 *
1485 * @return string
1486 */
1487 function wfHostname() {
1488 static $host;
1489 if ( is_null( $host ) ) {
1490 # Hostname overriding
1491 global $wgOverrideHostname;
1492 if ( $wgOverrideHostname !== false ) {
1493 # Set static and skip any detection
1494 $host = $wgOverrideHostname;
1495 return $host;
1496 }
1497
1498 if ( function_exists( 'posix_uname' ) ) {
1499 // This function not present on Windows
1500 $uname = posix_uname();
1501 } else {
1502 $uname = false;
1503 }
1504 if ( is_array( $uname ) && isset( $uname['nodename'] ) ) {
1505 $host = $uname['nodename'];
1506 } elseif ( getenv( 'COMPUTERNAME' ) ) {
1507 # Windows computer name
1508 $host = getenv( 'COMPUTERNAME' );
1509 } else {
1510 # This may be a virtual server.
1511 $host = $_SERVER['SERVER_NAME'];
1512 }
1513 }
1514 return $host;
1515 }
1516
1517 /**
1518 * Returns a script tag that stores the amount of time it took MediaWiki to
1519 * handle the request in milliseconds as 'wgBackendResponseTime'.
1520 *
1521 * If $wgShowHostnames is true, the script will also set 'wgHostname' to the
1522 * hostname of the server handling the request.
1523 *
1524 * @return string
1525 */
1526 function wfReportTime() {
1527 global $wgRequestTime, $wgShowHostnames;
1528
1529 $responseTime = round( ( microtime( true ) - $wgRequestTime ) * 1000 );
1530 $reportVars = [ 'wgBackendResponseTime' => $responseTime ];
1531 if ( $wgShowHostnames ) {
1532 $reportVars['wgHostname'] = wfHostname();
1533 }
1534 return Skin::makeVariablesScript( $reportVars );
1535 }
1536
1537 /**
1538 * Safety wrapper for debug_backtrace().
1539 *
1540 * Will return an empty array if debug_backtrace is disabled, otherwise
1541 * the output from debug_backtrace() (trimmed).
1542 *
1543 * @param int $limit This parameter can be used to limit the number of stack frames returned
1544 *
1545 * @return array Array of backtrace information
1546 */
1547 function wfDebugBacktrace( $limit = 0 ) {
1548 static $disabled = null;
1549
1550 if ( is_null( $disabled ) ) {
1551 $disabled = !function_exists( 'debug_backtrace' );
1552 if ( $disabled ) {
1553 wfDebug( "debug_backtrace() is disabled\n" );
1554 }
1555 }
1556 if ( $disabled ) {
1557 return [];
1558 }
1559
1560 if ( $limit ) {
1561 return array_slice( debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT, $limit + 1 ), 1 );
1562 } else {
1563 return array_slice( debug_backtrace(), 1 );
1564 }
1565 }
1566
1567 /**
1568 * Get a debug backtrace as a string
1569 *
1570 * @param bool|null $raw If true, the return value is plain text. If false, HTML.
1571 * Defaults to $wgCommandLineMode if unset.
1572 * @return string
1573 * @since 1.25 Supports $raw parameter.
1574 */
1575 function wfBacktrace( $raw = null ) {
1576 global $wgCommandLineMode;
1577
1578 if ( $raw === null ) {
1579 $raw = $wgCommandLineMode;
1580 }
1581
1582 if ( $raw ) {
1583 $frameFormat = "%s line %s calls %s()\n";
1584 $traceFormat = "%s";
1585 } else {
1586 $frameFormat = "<li>%s line %s calls %s()</li>\n";
1587 $traceFormat = "<ul>\n%s</ul>\n";
1588 }
1589
1590 $frames = array_map( function ( $frame ) use ( $frameFormat ) {
1591 $file = !empty( $frame['file'] ) ? basename( $frame['file'] ) : '-';
1592 $line = isset( $frame['line'] ) ? $frame['line'] : '-';
1593 $call = $frame['function'];
1594 if ( !empty( $frame['class'] ) ) {
1595 $call = $frame['class'] . $frame['type'] . $call;
1596 }
1597 return sprintf( $frameFormat, $file, $line, $call );
1598 }, wfDebugBacktrace() );
1599
1600 return sprintf( $traceFormat, implode( '', $frames ) );
1601 }
1602
1603 /**
1604 * Get the name of the function which called this function
1605 * wfGetCaller( 1 ) is the function with the wfGetCaller() call (ie. __FUNCTION__)
1606 * wfGetCaller( 2 ) [default] is the caller of the function running wfGetCaller()
1607 * wfGetCaller( 3 ) is the parent of that.
1608 *
1609 * @param int $level
1610 * @return string
1611 */
1612 function wfGetCaller( $level = 2 ) {
1613 $backtrace = wfDebugBacktrace( $level + 1 );
1614 if ( isset( $backtrace[$level] ) ) {
1615 return wfFormatStackFrame( $backtrace[$level] );
1616 } else {
1617 return 'unknown';
1618 }
1619 }
1620
1621 /**
1622 * Return a string consisting of callers in the stack. Useful sometimes
1623 * for profiling specific points.
1624 *
1625 * @param int $limit The maximum depth of the stack frame to return, or false for the entire stack.
1626 * @return string
1627 */
1628 function wfGetAllCallers( $limit = 3 ) {
1629 $trace = array_reverse( wfDebugBacktrace() );
1630 if ( !$limit || $limit > count( $trace ) - 1 ) {
1631 $limit = count( $trace ) - 1;
1632 }
1633 $trace = array_slice( $trace, -$limit - 1, $limit );
1634 return implode( '/', array_map( 'wfFormatStackFrame', $trace ) );
1635 }
1636
1637 /**
1638 * Return a string representation of frame
1639 *
1640 * @param array $frame
1641 * @return string
1642 */
1643 function wfFormatStackFrame( $frame ) {
1644 if ( !isset( $frame['function'] ) ) {
1645 return 'NO_FUNCTION_GIVEN';
1646 }
1647 return isset( $frame['class'] ) && isset( $frame['type'] ) ?
1648 $frame['class'] . $frame['type'] . $frame['function'] :
1649 $frame['function'];
1650 }
1651
1652 /* Some generic result counters, pulled out of SearchEngine */
1653
1654 /**
1655 * @todo document
1656 *
1657 * @param int $offset
1658 * @param int $limit
1659 * @return string
1660 */
1661 function wfShowingResults( $offset, $limit ) {
1662 return wfMessage( 'showingresults' )->numParams( $limit, $offset + 1 )->parse();
1663 }
1664
1665 /**
1666 * Whether the client accept gzip encoding
1667 *
1668 * Uses the Accept-Encoding header to check if the client supports gzip encoding.
1669 * Use this when considering to send a gzip-encoded response to the client.
1670 *
1671 * @param bool $force Forces another check even if we already have a cached result.
1672 * @return bool
1673 */
1674 function wfClientAcceptsGzip( $force = false ) {
1675 static $result = null;
1676 if ( $result === null || $force ) {
1677 $result = false;
1678 if ( isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) ) {
1679 # @todo FIXME: We may want to blacklist some broken browsers
1680 $m = [];
1681 if ( preg_match(
1682 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
1683 $_SERVER['HTTP_ACCEPT_ENCODING'],
1684 $m
1685 )
1686 ) {
1687 if ( isset( $m[2] ) && ( $m[1] == 'q' ) && ( $m[2] == 0 ) ) {
1688 $result = false;
1689 return $result;
1690 }
1691 wfDebug( "wfClientAcceptsGzip: client accepts gzip.\n" );
1692 $result = true;
1693 }
1694 }
1695 }
1696 return $result;
1697 }
1698
1699 /**
1700 * Escapes the given text so that it may be output using addWikiText()
1701 * without any linking, formatting, etc. making its way through. This
1702 * is achieved by substituting certain characters with HTML entities.
1703 * As required by the callers, "<nowiki>" is not used.
1704 *
1705 * @param string $text Text to be escaped
1706 * @return string
1707 */
1708 function wfEscapeWikiText( $text ) {
1709 global $wgEnableMagicLinks;
1710 static $repl = null, $repl2 = null;
1711 if ( $repl === null || defined( 'MW_PARSER_TEST' ) || defined( 'MW_PHPUNIT_TEST' ) ) {
1712 // Tests depend upon being able to change $wgEnableMagicLinks, so don't cache
1713 // in those situations
1714 $repl = [
1715 '"' => '&#34;', '&' => '&#38;', "'" => '&#39;', '<' => '&#60;',
1716 '=' => '&#61;', '>' => '&#62;', '[' => '&#91;', ']' => '&#93;',
1717 '{' => '&#123;', '|' => '&#124;', '}' => '&#125;', ';' => '&#59;',
1718 "\n#" => "\n&#35;", "\r#" => "\r&#35;",
1719 "\n*" => "\n&#42;", "\r*" => "\r&#42;",
1720 "\n:" => "\n&#58;", "\r:" => "\r&#58;",
1721 "\n " => "\n&#32;", "\r " => "\r&#32;",
1722 "\n\n" => "\n&#10;", "\r\n" => "&#13;\n",
1723 "\n\r" => "\n&#13;", "\r\r" => "\r&#13;",
1724 "\n\t" => "\n&#9;", "\r\t" => "\r&#9;", // "\n\t\n" is treated like "\n\n"
1725 "\n----" => "\n&#45;---", "\r----" => "\r&#45;---",
1726 '__' => '_&#95;', '://' => '&#58;//',
1727 ];
1728
1729 $magicLinks = array_keys( array_filter( $wgEnableMagicLinks ) );
1730 // We have to catch everything "\s" matches in PCRE
1731 foreach ( $magicLinks as $magic ) {
1732 $repl["$magic "] = "$magic&#32;";
1733 $repl["$magic\t"] = "$magic&#9;";
1734 $repl["$magic\r"] = "$magic&#13;";
1735 $repl["$magic\n"] = "$magic&#10;";
1736 $repl["$magic\f"] = "$magic&#12;";
1737 }
1738
1739 // And handle protocols that don't use "://"
1740 global $wgUrlProtocols;
1741 $repl2 = [];
1742 foreach ( $wgUrlProtocols as $prot ) {
1743 if ( substr( $prot, -1 ) === ':' ) {
1744 $repl2[] = preg_quote( substr( $prot, 0, -1 ), '/' );
1745 }
1746 }
1747 $repl2 = $repl2 ? '/\b(' . implode( '|', $repl2 ) . '):/i' : '/^(?!)/';
1748 }
1749 $text = substr( strtr( "\n$text", $repl ), 1 );
1750 $text = preg_replace( $repl2, '$1&#58;', $text );
1751 return $text;
1752 }
1753
1754 /**
1755 * Sets dest to source and returns the original value of dest
1756 * If source is NULL, it just returns the value, it doesn't set the variable
1757 * If force is true, it will set the value even if source is NULL
1758 *
1759 * @param mixed &$dest
1760 * @param mixed $source
1761 * @param bool $force
1762 * @return mixed
1763 */
1764 function wfSetVar( &$dest, $source, $force = false ) {
1765 $temp = $dest;
1766 if ( !is_null( $source ) || $force ) {
1767 $dest = $source;
1768 }
1769 return $temp;
1770 }
1771
1772 /**
1773 * As for wfSetVar except setting a bit
1774 *
1775 * @param int &$dest
1776 * @param int $bit
1777 * @param bool $state
1778 *
1779 * @return bool
1780 */
1781 function wfSetBit( &$dest, $bit, $state = true ) {
1782 $temp = (bool)( $dest & $bit );
1783 if ( !is_null( $state ) ) {
1784 if ( $state ) {
1785 $dest |= $bit;
1786 } else {
1787 $dest &= ~$bit;
1788 }
1789 }
1790 return $temp;
1791 }
1792
1793 /**
1794 * A wrapper around the PHP function var_export().
1795 * Either print it or add it to the regular output ($wgOut).
1796 *
1797 * @param mixed $var A PHP variable to dump.
1798 */
1799 function wfVarDump( $var ) {
1800 global $wgOut;
1801 $s = str_replace( "\n", "<br />\n", var_export( $var, true ) . "\n" );
1802 if ( headers_sent() || !isset( $wgOut ) || !is_object( $wgOut ) ) {
1803 print $s;
1804 } else {
1805 $wgOut->addHTML( $s );
1806 }
1807 }
1808
1809 /**
1810 * Provide a simple HTTP error.
1811 *
1812 * @param int|string $code
1813 * @param string $label
1814 * @param string $desc
1815 */
1816 function wfHttpError( $code, $label, $desc ) {
1817 global $wgOut;
1818 HttpStatus::header( $code );
1819 if ( $wgOut ) {
1820 $wgOut->disable();
1821 $wgOut->sendCacheControl();
1822 }
1823
1824 MediaWiki\HeaderCallback::warnIfHeadersSent();
1825 header( 'Content-type: text/html; charset=utf-8' );
1826 print '<!DOCTYPE html>' .
1827 '<html><head><title>' .
1828 htmlspecialchars( $label ) .
1829 '</title></head><body><h1>' .
1830 htmlspecialchars( $label ) .
1831 '</h1><p>' .
1832 nl2br( htmlspecialchars( $desc ) ) .
1833 "</p></body></html>\n";
1834 }
1835
1836 /**
1837 * Clear away any user-level output buffers, discarding contents.
1838 *
1839 * Suitable for 'starting afresh', for instance when streaming
1840 * relatively large amounts of data without buffering, or wanting to
1841 * output image files without ob_gzhandler's compression.
1842 *
1843 * The optional $resetGzipEncoding parameter controls suppression of
1844 * the Content-Encoding header sent by ob_gzhandler; by default it
1845 * is left. See comments for wfClearOutputBuffers() for why it would
1846 * be used.
1847 *
1848 * Note that some PHP configuration options may add output buffer
1849 * layers which cannot be removed; these are left in place.
1850 *
1851 * @param bool $resetGzipEncoding
1852 */
1853 function wfResetOutputBuffers( $resetGzipEncoding = true ) {
1854 if ( $resetGzipEncoding ) {
1855 // Suppress Content-Encoding and Content-Length
1856 // headers from 1.10+s wfOutputHandler
1857 global $wgDisableOutputCompression;
1858 $wgDisableOutputCompression = true;
1859 }
1860 while ( $status = ob_get_status() ) {
1861 if ( isset( $status['flags'] ) ) {
1862 $flags = PHP_OUTPUT_HANDLER_CLEANABLE | PHP_OUTPUT_HANDLER_REMOVABLE;
1863 $deleteable = ( $status['flags'] & $flags ) === $flags;
1864 } elseif ( isset( $status['del'] ) ) {
1865 $deleteable = $status['del'];
1866 } else {
1867 // Guess that any PHP-internal setting can't be removed.
1868 $deleteable = $status['type'] !== 0; /* PHP_OUTPUT_HANDLER_INTERNAL */
1869 }
1870 if ( !$deleteable ) {
1871 // Give up, and hope the result doesn't break
1872 // output behavior.
1873 break;
1874 }
1875 if ( $status['name'] === 'MediaWikiTestCase::wfResetOutputBuffersBarrier' ) {
1876 // Unit testing barrier to prevent this function from breaking PHPUnit.
1877 break;
1878 }
1879 if ( !ob_end_clean() ) {
1880 // Could not remove output buffer handler; abort now
1881 // to avoid getting in some kind of infinite loop.
1882 break;
1883 }
1884 if ( $resetGzipEncoding ) {
1885 if ( $status['name'] == 'ob_gzhandler' ) {
1886 // Reset the 'Content-Encoding' field set by this handler
1887 // so we can start fresh.
1888 header_remove( 'Content-Encoding' );
1889 break;
1890 }
1891 }
1892 }
1893 }
1894
1895 /**
1896 * More legible than passing a 'false' parameter to wfResetOutputBuffers():
1897 *
1898 * Clear away output buffers, but keep the Content-Encoding header
1899 * produced by ob_gzhandler, if any.
1900 *
1901 * This should be used for HTTP 304 responses, where you need to
1902 * preserve the Content-Encoding header of the real result, but
1903 * also need to suppress the output of ob_gzhandler to keep to spec
1904 * and avoid breaking Firefox in rare cases where the headers and
1905 * body are broken over two packets.
1906 */
1907 function wfClearOutputBuffers() {
1908 wfResetOutputBuffers( false );
1909 }
1910
1911 /**
1912 * Converts an Accept-* header into an array mapping string values to quality
1913 * factors
1914 *
1915 * @param string $accept
1916 * @param string $def Default
1917 * @return float[] Associative array of string => float pairs
1918 */
1919 function wfAcceptToPrefs( $accept, $def = '*/*' ) {
1920 # No arg means accept anything (per HTTP spec)
1921 if ( !$accept ) {
1922 return [ $def => 1.0 ];
1923 }
1924
1925 $prefs = [];
1926
1927 $parts = explode( ',', $accept );
1928
1929 foreach ( $parts as $part ) {
1930 # @todo FIXME: Doesn't deal with params like 'text/html; level=1'
1931 $values = explode( ';', trim( $part ) );
1932 $match = [];
1933 if ( count( $values ) == 1 ) {
1934 $prefs[$values[0]] = 1.0;
1935 } elseif ( preg_match( '/q\s*=\s*(\d*\.\d+)/', $values[1], $match ) ) {
1936 $prefs[$values[0]] = floatval( $match[1] );
1937 }
1938 }
1939
1940 return $prefs;
1941 }
1942
1943 /**
1944 * Checks if a given MIME type matches any of the keys in the given
1945 * array. Basic wildcards are accepted in the array keys.
1946 *
1947 * Returns the matching MIME type (or wildcard) if a match, otherwise
1948 * NULL if no match.
1949 *
1950 * @param string $type
1951 * @param array $avail
1952 * @return string
1953 * @private
1954 */
1955 function mimeTypeMatch( $type, $avail ) {
1956 if ( array_key_exists( $type, $avail ) ) {
1957 return $type;
1958 } else {
1959 $mainType = explode( '/', $type )[0];
1960 if ( array_key_exists( "$mainType/*", $avail ) ) {
1961 return "$mainType/*";
1962 } elseif ( array_key_exists( '*/*', $avail ) ) {
1963 return '*/*';
1964 } else {
1965 return null;
1966 }
1967 }
1968 }
1969
1970 /**
1971 * Returns the 'best' match between a client's requested internet media types
1972 * and the server's list of available types. Each list should be an associative
1973 * array of type to preference (preference is a float between 0.0 and 1.0).
1974 * Wildcards in the types are acceptable.
1975 *
1976 * @param array $cprefs Client's acceptable type list
1977 * @param array $sprefs Server's offered types
1978 * @return string
1979 *
1980 * @todo FIXME: Doesn't handle params like 'text/plain; charset=UTF-8'
1981 * XXX: generalize to negotiate other stuff
1982 */
1983 function wfNegotiateType( $cprefs, $sprefs ) {
1984 $combine = [];
1985
1986 foreach ( array_keys( $sprefs ) as $type ) {
1987 $subType = explode( '/', $type )[1];
1988 if ( $subType != '*' ) {
1989 $ckey = mimeTypeMatch( $type, $cprefs );
1990 if ( $ckey ) {
1991 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1992 }
1993 }
1994 }
1995
1996 foreach ( array_keys( $cprefs ) as $type ) {
1997 $subType = explode( '/', $type )[1];
1998 if ( $subType != '*' && !array_key_exists( $type, $sprefs ) ) {
1999 $skey = mimeTypeMatch( $type, $sprefs );
2000 if ( $skey ) {
2001 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
2002 }
2003 }
2004 }
2005
2006 $bestq = 0;
2007 $besttype = null;
2008
2009 foreach ( array_keys( $combine ) as $type ) {
2010 if ( $combine[$type] > $bestq ) {
2011 $besttype = $type;
2012 $bestq = $combine[$type];
2013 }
2014 }
2015
2016 return $besttype;
2017 }
2018
2019 /**
2020 * Reference-counted warning suppression
2021 *
2022 * @deprecated since 1.26, use MediaWiki\suppressWarnings() directly
2023 * @param bool $end
2024 */
2025 function wfSuppressWarnings( $end = false ) {
2026 MediaWiki\suppressWarnings( $end );
2027 }
2028
2029 /**
2030 * @deprecated since 1.26, use MediaWiki\restoreWarnings() directly
2031 * Restore error level to previous value
2032 */
2033 function wfRestoreWarnings() {
2034 MediaWiki\suppressWarnings( true );
2035 }
2036
2037 /**
2038 * Get a timestamp string in one of various formats
2039 *
2040 * @param mixed $outputtype A timestamp in one of the supported formats, the
2041 * function will autodetect which format is supplied and act accordingly.
2042 * @param mixed $ts Optional timestamp to convert, default 0 for the current time
2043 * @return string|bool String / false The same date in the format specified in $outputtype or false
2044 */
2045 function wfTimestamp( $outputtype = TS_UNIX, $ts = 0 ) {
2046 $ret = MWTimestamp::convert( $outputtype, $ts );
2047 if ( $ret === false ) {
2048 wfDebug( "wfTimestamp() fed bogus time value: TYPE=$outputtype; VALUE=$ts\n" );
2049 }
2050 return $ret;
2051 }
2052
2053 /**
2054 * Return a formatted timestamp, or null if input is null.
2055 * For dealing with nullable timestamp columns in the database.
2056 *
2057 * @param int $outputtype
2058 * @param string $ts
2059 * @return string
2060 */
2061 function wfTimestampOrNull( $outputtype = TS_UNIX, $ts = null ) {
2062 if ( is_null( $ts ) ) {
2063 return null;
2064 } else {
2065 return wfTimestamp( $outputtype, $ts );
2066 }
2067 }
2068
2069 /**
2070 * Convenience function; returns MediaWiki timestamp for the present time.
2071 *
2072 * @return string
2073 */
2074 function wfTimestampNow() {
2075 # return NOW
2076 return MWTimestamp::now( TS_MW );
2077 }
2078
2079 /**
2080 * Check if the operating system is Windows
2081 *
2082 * @return bool True if it's Windows, false otherwise.
2083 */
2084 function wfIsWindows() {
2085 static $isWindows = null;
2086 if ( $isWindows === null ) {
2087 $isWindows = strtoupper( substr( PHP_OS, 0, 3 ) ) === 'WIN';
2088 }
2089 return $isWindows;
2090 }
2091
2092 /**
2093 * Check if we are running under HHVM
2094 *
2095 * @return bool
2096 */
2097 function wfIsHHVM() {
2098 return defined( 'HHVM_VERSION' );
2099 }
2100
2101 /**
2102 * Tries to get the system directory for temporary files. First
2103 * $wgTmpDirectory is checked, and then the TMPDIR, TMP, and TEMP
2104 * environment variables are then checked in sequence, then
2105 * sys_get_temp_dir(), then upload_tmp_dir from php.ini.
2106 *
2107 * NOTE: When possible, use instead the tmpfile() function to create
2108 * temporary files to avoid race conditions on file creation, etc.
2109 *
2110 * @return string
2111 */
2112 function wfTempDir() {
2113 global $wgTmpDirectory;
2114
2115 if ( $wgTmpDirectory !== false ) {
2116 return $wgTmpDirectory;
2117 }
2118
2119 return TempFSFile::getUsableTempDirectory();
2120 }
2121
2122 /**
2123 * Make directory, and make all parent directories if they don't exist
2124 *
2125 * @param string $dir Full path to directory to create
2126 * @param int $mode Chmod value to use, default is $wgDirectoryMode
2127 * @param string $caller Optional caller param for debugging.
2128 * @throws MWException
2129 * @return bool
2130 */
2131 function wfMkdirParents( $dir, $mode = null, $caller = null ) {
2132 global $wgDirectoryMode;
2133
2134 if ( FileBackend::isStoragePath( $dir ) ) { // sanity
2135 throw new MWException( __FUNCTION__ . " given storage path '$dir'." );
2136 }
2137
2138 if ( !is_null( $caller ) ) {
2139 wfDebug( "$caller: called wfMkdirParents($dir)\n" );
2140 }
2141
2142 if ( strval( $dir ) === '' || is_dir( $dir ) ) {
2143 return true;
2144 }
2145
2146 $dir = str_replace( [ '\\', '/' ], DIRECTORY_SEPARATOR, $dir );
2147
2148 if ( is_null( $mode ) ) {
2149 $mode = $wgDirectoryMode;
2150 }
2151
2152 // Turn off the normal warning, we're doing our own below
2153 MediaWiki\suppressWarnings();
2154 $ok = mkdir( $dir, $mode, true ); // PHP5 <3
2155 MediaWiki\restoreWarnings();
2156
2157 if ( !$ok ) {
2158 // directory may have been created on another request since we last checked
2159 if ( is_dir( $dir ) ) {
2160 return true;
2161 }
2162
2163 // PHP doesn't report the path in its warning message, so add our own to aid in diagnosis.
2164 wfLogWarning( sprintf( "failed to mkdir \"%s\" mode 0%o", $dir, $mode ) );
2165 }
2166 return $ok;
2167 }
2168
2169 /**
2170 * Remove a directory and all its content.
2171 * Does not hide error.
2172 * @param string $dir
2173 */
2174 function wfRecursiveRemoveDir( $dir ) {
2175 wfDebug( __FUNCTION__ . "( $dir )\n" );
2176 // taken from https://secure.php.net/manual/en/function.rmdir.php#98622
2177 if ( is_dir( $dir ) ) {
2178 $objects = scandir( $dir );
2179 foreach ( $objects as $object ) {
2180 if ( $object != "." && $object != ".." ) {
2181 if ( filetype( $dir . '/' . $object ) == "dir" ) {
2182 wfRecursiveRemoveDir( $dir . '/' . $object );
2183 } else {
2184 unlink( $dir . '/' . $object );
2185 }
2186 }
2187 }
2188 reset( $objects );
2189 rmdir( $dir );
2190 }
2191 }
2192
2193 /**
2194 * @param int $nr The number to format
2195 * @param int $acc The number of digits after the decimal point, default 2
2196 * @param bool $round Whether or not to round the value, default true
2197 * @return string
2198 */
2199 function wfPercent( $nr, $acc = 2, $round = true ) {
2200 $ret = sprintf( "%.${acc}f", $nr );
2201 return $round ? round( $ret, $acc ) . '%' : "$ret%";
2202 }
2203
2204 /**
2205 * Safety wrapper around ini_get() for boolean settings.
2206 * The values returned from ini_get() are pre-normalized for settings
2207 * set via php.ini or php_flag/php_admin_flag... but *not*
2208 * for those set via php_value/php_admin_value.
2209 *
2210 * It's fairly common for people to use php_value instead of php_flag,
2211 * which can leave you with an 'off' setting giving a false positive
2212 * for code that just takes the ini_get() return value as a boolean.
2213 *
2214 * To make things extra interesting, setting via php_value accepts
2215 * "true" and "yes" as true, but php.ini and php_flag consider them false. :)
2216 * Unrecognized values go false... again opposite PHP's own coercion
2217 * from string to bool.
2218 *
2219 * Luckily, 'properly' set settings will always come back as '0' or '1',
2220 * so we only have to worry about them and the 'improper' settings.
2221 *
2222 * I frickin' hate PHP... :P
2223 *
2224 * @param string $setting
2225 * @return bool
2226 */
2227 function wfIniGetBool( $setting ) {
2228 $val = strtolower( ini_get( $setting ) );
2229 // 'on' and 'true' can't have whitespace around them, but '1' can.
2230 return $val == 'on'
2231 || $val == 'true'
2232 || $val == 'yes'
2233 || preg_match( "/^\s*[+-]?0*[1-9]/", $val ); // approx C atoi() function
2234 }
2235
2236 /**
2237 * Version of escapeshellarg() that works better on Windows.
2238 *
2239 * Originally, this fixed the incorrect use of single quotes on Windows
2240 * (https://bugs.php.net/bug.php?id=26285) and the locale problems on Linux in
2241 * PHP 5.2.6+ (bug backported to earlier distro releases of PHP).
2242 *
2243 * @param string $args,... strings to escape and glue together,
2244 * or a single array of strings parameter
2245 * @return string
2246 * @deprecated since 1.30 use MediaWiki\Shell::escape()
2247 */
2248 function wfEscapeShellArg( /*...*/ ) {
2249 $args = func_get_args();
2250
2251 return call_user_func_array( Shell::class . '::escape', $args );
2252 }
2253
2254 /**
2255 * Check if wfShellExec() is effectively disabled via php.ini config
2256 *
2257 * @return bool|string False or 'disabled'
2258 * @since 1.22
2259 * @deprecated since 1.30 use MediaWiki\Shell::isDisabled()
2260 */
2261 function wfShellExecDisabled() {
2262 wfDeprecated( __FUNCTION__, '1.30' );
2263 return Shell::isDisabled() ? 'disabled' : false;
2264 }
2265
2266 /**
2267 * Execute a shell command, with time and memory limits mirrored from the PHP
2268 * configuration if supported.
2269 *
2270 * @param string|string[] $cmd If string, a properly shell-escaped command line,
2271 * or an array of unescaped arguments, in which case each value will be escaped
2272 * Example: [ 'convert', '-font', 'font name' ] would produce "'convert' '-font' 'font name'"
2273 * @param null|mixed &$retval Optional, will receive the program's exit code.
2274 * (non-zero is usually failure). If there is an error from
2275 * read, select, or proc_open(), this will be set to -1.
2276 * @param array $environ Optional environment variables which should be
2277 * added to the executed command environment.
2278 * @param array $limits Optional array with limits(filesize, memory, time, walltime)
2279 * this overwrites the global wgMaxShell* limits.
2280 * @param array $options Array of options:
2281 * - duplicateStderr: Set this to true to duplicate stderr to stdout,
2282 * including errors from limit.sh
2283 * - profileMethod: By default this function will profile based on the calling
2284 * method. Set this to a string for an alternative method to profile from
2285 *
2286 * @return string Collected stdout as a string
2287 * @deprecated since 1.30 use class MediaWiki\Shell\Shell
2288 */
2289 function wfShellExec( $cmd, &$retval = null, $environ = [],
2290 $limits = [], $options = []
2291 ) {
2292 if ( Shell::isDisabled() ) {
2293 $retval = 1;
2294 // Backwards compatibility be upon us...
2295 return 'Unable to run external programs, proc_open() is disabled.';
2296 }
2297
2298 if ( is_array( $cmd ) ) {
2299 $cmd = Shell::escape( $cmd );
2300 }
2301
2302 $includeStderr = isset( $options['duplicateStderr'] ) && $options['duplicateStderr'];
2303 $profileMethod = isset( $options['profileMethod'] ) ? $options['profileMethod'] : wfGetCaller();
2304
2305 try {
2306 $result = Shell::command( [] )
2307 ->unsafeParams( (array)$cmd )
2308 ->environment( $environ )
2309 ->limits( $limits )
2310 ->includeStderr( $includeStderr )
2311 ->profileMethod( $profileMethod )
2312 ->execute();
2313 } catch ( ProcOpenError $ex ) {
2314 $retval = -1;
2315 return '';
2316 }
2317
2318 $retval = $result->getExitCode();
2319
2320 return $result->getStdout();
2321 }
2322
2323 /**
2324 * Execute a shell command, returning both stdout and stderr. Convenience
2325 * function, as all the arguments to wfShellExec can become unwieldy.
2326 *
2327 * @note This also includes errors from limit.sh, e.g. if $wgMaxShellFileSize is exceeded.
2328 * @param string|string[] $cmd If string, a properly shell-escaped command line,
2329 * or an array of unescaped arguments, in which case each value will be escaped
2330 * Example: [ 'convert', '-font', 'font name' ] would produce "'convert' '-font' 'font name'"
2331 * @param null|mixed &$retval Optional, will receive the program's exit code.
2332 * (non-zero is usually failure)
2333 * @param array $environ Optional environment variables which should be
2334 * added to the executed command environment.
2335 * @param array $limits Optional array with limits(filesize, memory, time, walltime)
2336 * this overwrites the global wgMaxShell* limits.
2337 * @return string Collected stdout and stderr as a string
2338 * @deprecated since 1.30 use class MediaWiki\Shell\Shell
2339 */
2340 function wfShellExecWithStderr( $cmd, &$retval = null, $environ = [], $limits = [] ) {
2341 return wfShellExec( $cmd, $retval, $environ, $limits,
2342 [ 'duplicateStderr' => true, 'profileMethod' => wfGetCaller() ] );
2343 }
2344
2345 /**
2346 * Formerly set the locale for locale-sensitive operations
2347 *
2348 * This is now done in Setup.php.
2349 *
2350 * @deprecated since 1.30, no longer needed
2351 * @see $wgShellLocale
2352 */
2353 function wfInitShellLocale() {
2354 wfDeprecated( __FUNCTION__, '1.30' );
2355 }
2356
2357 /**
2358 * Generate a shell-escaped command line string to run a MediaWiki cli script.
2359 * Note that $parameters should be a flat array and an option with an argument
2360 * should consist of two consecutive items in the array (do not use "--option value").
2361 *
2362 * @param string $script MediaWiki cli script path
2363 * @param array $parameters Arguments and options to the script
2364 * @param array $options Associative array of options:
2365 * 'php': The path to the php executable
2366 * 'wrapper': Path to a PHP wrapper to handle the maintenance script
2367 * @return string
2368 */
2369 function wfShellWikiCmd( $script, array $parameters = [], array $options = [] ) {
2370 global $wgPhpCli;
2371 // Give site config file a chance to run the script in a wrapper.
2372 // The caller may likely want to call wfBasename() on $script.
2373 Hooks::run( 'wfShellWikiCmd', [ &$script, &$parameters, &$options ] );
2374 $cmd = isset( $options['php'] ) ? [ $options['php'] ] : [ $wgPhpCli ];
2375 if ( isset( $options['wrapper'] ) ) {
2376 $cmd[] = $options['wrapper'];
2377 }
2378 $cmd[] = $script;
2379 // Escape each parameter for shell
2380 return Shell::escape( array_merge( $cmd, $parameters ) );
2381 }
2382
2383 /**
2384 * wfMerge attempts to merge differences between three texts.
2385 * Returns true for a clean merge and false for failure or a conflict.
2386 *
2387 * @param string $old
2388 * @param string $mine
2389 * @param string $yours
2390 * @param string &$result
2391 * @return bool
2392 */
2393 function wfMerge( $old, $mine, $yours, &$result ) {
2394 global $wgDiff3;
2395
2396 # This check may also protect against code injection in
2397 # case of broken installations.
2398 MediaWiki\suppressWarnings();
2399 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
2400 MediaWiki\restoreWarnings();
2401
2402 if ( !$haveDiff3 ) {
2403 wfDebug( "diff3 not found\n" );
2404 return false;
2405 }
2406
2407 # Make temporary files
2408 $td = wfTempDir();
2409 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
2410 $mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
2411 $yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
2412
2413 # NOTE: diff3 issues a warning to stderr if any of the files does not end with
2414 # a newline character. To avoid this, we normalize the trailing whitespace before
2415 # creating the diff.
2416
2417 fwrite( $oldtextFile, rtrim( $old ) . "\n" );
2418 fclose( $oldtextFile );
2419 fwrite( $mytextFile, rtrim( $mine ) . "\n" );
2420 fclose( $mytextFile );
2421 fwrite( $yourtextFile, rtrim( $yours ) . "\n" );
2422 fclose( $yourtextFile );
2423
2424 # Check for a conflict
2425 $cmd = Shell::escape( $wgDiff3, '-a', '--overlap-only', $mytextName,
2426 $oldtextName, $yourtextName );
2427 $handle = popen( $cmd, 'r' );
2428
2429 if ( fgets( $handle, 1024 ) ) {
2430 $conflict = true;
2431 } else {
2432 $conflict = false;
2433 }
2434 pclose( $handle );
2435
2436 # Merge differences
2437 $cmd = Shell::escape( $wgDiff3, '-a', '-e', '--merge', $mytextName,
2438 $oldtextName, $yourtextName );
2439 $handle = popen( $cmd, 'r' );
2440 $result = '';
2441 do {
2442 $data = fread( $handle, 8192 );
2443 if ( strlen( $data ) == 0 ) {
2444 break;
2445 }
2446 $result .= $data;
2447 } while ( true );
2448 pclose( $handle );
2449 unlink( $mytextName );
2450 unlink( $oldtextName );
2451 unlink( $yourtextName );
2452
2453 if ( $result === '' && $old !== '' && !$conflict ) {
2454 wfDebug( "Unexpected null result from diff3. Command: $cmd\n" );
2455 $conflict = true;
2456 }
2457 return !$conflict;
2458 }
2459
2460 /**
2461 * Returns unified plain-text diff of two texts.
2462 * "Useful" for machine processing of diffs.
2463 *
2464 * @deprecated since 1.25, use DiffEngine/UnifiedDiffFormatter directly
2465 *
2466 * @param string $before The text before the changes.
2467 * @param string $after The text after the changes.
2468 * @param string $params Command-line options for the diff command.
2469 * @return string Unified diff of $before and $after
2470 */
2471 function wfDiff( $before, $after, $params = '-u' ) {
2472 if ( $before == $after ) {
2473 return '';
2474 }
2475
2476 global $wgDiff;
2477 MediaWiki\suppressWarnings();
2478 $haveDiff = $wgDiff && file_exists( $wgDiff );
2479 MediaWiki\restoreWarnings();
2480
2481 # This check may also protect against code injection in
2482 # case of broken installations.
2483 if ( !$haveDiff ) {
2484 wfDebug( "diff executable not found\n" );
2485 $diffs = new Diff( explode( "\n", $before ), explode( "\n", $after ) );
2486 $format = new UnifiedDiffFormatter();
2487 return $format->format( $diffs );
2488 }
2489
2490 # Make temporary files
2491 $td = wfTempDir();
2492 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
2493 $newtextFile = fopen( $newtextName = tempnam( $td, 'merge-your-' ), 'w' );
2494
2495 fwrite( $oldtextFile, $before );
2496 fclose( $oldtextFile );
2497 fwrite( $newtextFile, $after );
2498 fclose( $newtextFile );
2499
2500 // Get the diff of the two files
2501 $cmd = "$wgDiff " . $params . ' ' . Shell::escape( $oldtextName, $newtextName );
2502
2503 $h = popen( $cmd, 'r' );
2504 if ( !$h ) {
2505 unlink( $oldtextName );
2506 unlink( $newtextName );
2507 throw new Exception( __METHOD__ . '(): popen() failed' );
2508 }
2509
2510 $diff = '';
2511
2512 do {
2513 $data = fread( $h, 8192 );
2514 if ( strlen( $data ) == 0 ) {
2515 break;
2516 }
2517 $diff .= $data;
2518 } while ( true );
2519
2520 // Clean up
2521 pclose( $h );
2522 unlink( $oldtextName );
2523 unlink( $newtextName );
2524
2525 // Kill the --- and +++ lines. They're not useful.
2526 $diff_lines = explode( "\n", $diff );
2527 if ( isset( $diff_lines[0] ) && strpos( $diff_lines[0], '---' ) === 0 ) {
2528 unset( $diff_lines[0] );
2529 }
2530 if ( isset( $diff_lines[1] ) && strpos( $diff_lines[1], '+++' ) === 0 ) {
2531 unset( $diff_lines[1] );
2532 }
2533
2534 $diff = implode( "\n", $diff_lines );
2535
2536 return $diff;
2537 }
2538
2539 /**
2540 * This function works like "use VERSION" in Perl, the program will die with a
2541 * backtrace if the current version of PHP is less than the version provided
2542 *
2543 * This is useful for extensions which due to their nature are not kept in sync
2544 * with releases, and might depend on other versions of PHP than the main code
2545 *
2546 * Note: PHP might die due to parsing errors in some cases before it ever
2547 * manages to call this function, such is life
2548 *
2549 * @see perldoc -f use
2550 *
2551 * @param string|int|float $req_ver The version to check, can be a string, an integer, or a float
2552 *
2553 * @deprecated since 1.30
2554 *
2555 * @throws MWException
2556 */
2557 function wfUsePHP( $req_ver ) {
2558 $php_ver = PHP_VERSION;
2559
2560 if ( version_compare( $php_ver, (string)$req_ver, '<' ) ) {
2561 throw new MWException( "PHP $req_ver required--this is only $php_ver" );
2562 }
2563 }
2564
2565 /**
2566 * This function works like "use VERSION" in Perl except it checks the version
2567 * of MediaWiki, the program will die with a backtrace if the current version
2568 * of MediaWiki is less than the version provided.
2569 *
2570 * This is useful for extensions which due to their nature are not kept in sync
2571 * with releases
2572 *
2573 * Note: Due to the behavior of PHP's version_compare() which is used in this
2574 * function, if you want to allow the 'wmf' development versions add a 'c' (or
2575 * any single letter other than 'a', 'b' or 'p') as a post-fix to your
2576 * targeted version number. For example if you wanted to allow any variation
2577 * of 1.22 use `wfUseMW( '1.22c' )`. Using an 'a' or 'b' instead of 'c' will
2578 * not result in the same comparison due to the internal logic of
2579 * version_compare().
2580 *
2581 * @see perldoc -f use
2582 *
2583 * @deprecated since 1.26, use the "requires" property of extension.json
2584 * @param string|int|float $req_ver The version to check, can be a string, an integer, or a float
2585 * @throws MWException
2586 */
2587 function wfUseMW( $req_ver ) {
2588 global $wgVersion;
2589
2590 if ( version_compare( $wgVersion, (string)$req_ver, '<' ) ) {
2591 throw new MWException( "MediaWiki $req_ver required--this is only $wgVersion" );
2592 }
2593 }
2594
2595 /**
2596 * Return the final portion of a pathname.
2597 * Reimplemented because PHP5's "basename()" is buggy with multibyte text.
2598 * https://bugs.php.net/bug.php?id=33898
2599 *
2600 * PHP's basename() only considers '\' a pathchar on Windows and Netware.
2601 * We'll consider it so always, as we don't want '\s' in our Unix paths either.
2602 *
2603 * @param string $path
2604 * @param string $suffix String to remove if present
2605 * @return string
2606 */
2607 function wfBaseName( $path, $suffix = '' ) {
2608 if ( $suffix == '' ) {
2609 $encSuffix = '';
2610 } else {
2611 $encSuffix = '(?:' . preg_quote( $suffix, '#' ) . ')?';
2612 }
2613
2614 $matches = [];
2615 if ( preg_match( "#([^/\\\\]*?){$encSuffix}[/\\\\]*$#", $path, $matches ) ) {
2616 return $matches[1];
2617 } else {
2618 return '';
2619 }
2620 }
2621
2622 /**
2623 * Generate a relative path name to the given file.
2624 * May explode on non-matching case-insensitive paths,
2625 * funky symlinks, etc.
2626 *
2627 * @param string $path Absolute destination path including target filename
2628 * @param string $from Absolute source path, directory only
2629 * @return string
2630 */
2631 function wfRelativePath( $path, $from ) {
2632 // Normalize mixed input on Windows...
2633 $path = str_replace( '/', DIRECTORY_SEPARATOR, $path );
2634 $from = str_replace( '/', DIRECTORY_SEPARATOR, $from );
2635
2636 // Trim trailing slashes -- fix for drive root
2637 $path = rtrim( $path, DIRECTORY_SEPARATOR );
2638 $from = rtrim( $from, DIRECTORY_SEPARATOR );
2639
2640 $pieces = explode( DIRECTORY_SEPARATOR, dirname( $path ) );
2641 $against = explode( DIRECTORY_SEPARATOR, $from );
2642
2643 if ( $pieces[0] !== $against[0] ) {
2644 // Non-matching Windows drive letters?
2645 // Return a full path.
2646 return $path;
2647 }
2648
2649 // Trim off common prefix
2650 while ( count( $pieces ) && count( $against )
2651 && $pieces[0] == $against[0] ) {
2652 array_shift( $pieces );
2653 array_shift( $against );
2654 }
2655
2656 // relative dots to bump us to the parent
2657 while ( count( $against ) ) {
2658 array_unshift( $pieces, '..' );
2659 array_shift( $against );
2660 }
2661
2662 array_push( $pieces, wfBaseName( $path ) );
2663
2664 return implode( DIRECTORY_SEPARATOR, $pieces );
2665 }
2666
2667 /**
2668 * Convert an arbitrarily-long digit string from one numeric base
2669 * to another, optionally zero-padding to a minimum column width.
2670 *
2671 * Supports base 2 through 36; digit values 10-36 are represented
2672 * as lowercase letters a-z. Input is case-insensitive.
2673 *
2674 * @deprecated since 1.27 Use Wikimedia\base_convert() directly
2675 *
2676 * @param string $input Input number
2677 * @param int $sourceBase Base of the input number
2678 * @param int $destBase Desired base of the output
2679 * @param int $pad Minimum number of digits in the output (pad with zeroes)
2680 * @param bool $lowercase Whether to output in lowercase or uppercase
2681 * @param string $engine Either "gmp", "bcmath", or "php"
2682 * @return string|bool The output number as a string, or false on error
2683 */
2684 function wfBaseConvert( $input, $sourceBase, $destBase, $pad = 1,
2685 $lowercase = true, $engine = 'auto'
2686 ) {
2687 wfDeprecated( __FUNCTION__, '1.27' );
2688 return Wikimedia\base_convert( $input, $sourceBase, $destBase, $pad, $lowercase, $engine );
2689 }
2690
2691 /**
2692 * Reset the session id
2693 *
2694 * @deprecated since 1.27, use MediaWiki\Session\SessionManager instead
2695 * @since 1.22
2696 */
2697 function wfResetSessionID() {
2698 wfDeprecated( __FUNCTION__, '1.27' );
2699 $session = SessionManager::getGlobalSession();
2700 $delay = $session->delaySave();
2701
2702 $session->resetId();
2703
2704 // Make sure a session is started, since that's what the old
2705 // wfResetSessionID() did.
2706 if ( session_id() !== $session->getId() ) {
2707 wfSetupSession( $session->getId() );
2708 }
2709
2710 ScopedCallback::consume( $delay );
2711 }
2712
2713 /**
2714 * Initialise php session
2715 *
2716 * @deprecated since 1.27, use MediaWiki\Session\SessionManager instead.
2717 * Generally, "using" SessionManager will be calling ->getSessionById() or
2718 * ::getGlobalSession() (depending on whether you were passing $sessionId
2719 * here), then calling $session->persist().
2720 * @param bool|string $sessionId
2721 */
2722 function wfSetupSession( $sessionId = false ) {
2723 wfDeprecated( __FUNCTION__, '1.27' );
2724
2725 if ( $sessionId ) {
2726 session_id( $sessionId );
2727 }
2728
2729 $session = SessionManager::getGlobalSession();
2730 $session->persist();
2731
2732 if ( session_id() !== $session->getId() ) {
2733 session_id( $session->getId() );
2734 }
2735 MediaWiki\quietCall( 'session_start' );
2736 }
2737
2738 /**
2739 * Get an object from the precompiled serialized directory
2740 *
2741 * @param string $name
2742 * @return mixed The variable on success, false on failure
2743 */
2744 function wfGetPrecompiledData( $name ) {
2745 global $IP;
2746
2747 $file = "$IP/serialized/$name";
2748 if ( file_exists( $file ) ) {
2749 $blob = file_get_contents( $file );
2750 if ( $blob ) {
2751 return unserialize( $blob );
2752 }
2753 }
2754 return false;
2755 }
2756
2757 /**
2758 * Make a cache key for the local wiki.
2759 *
2760 * @deprecated since 1.30 Call makeKey on a BagOStuff instance
2761 * @param string $args,...
2762 * @return string
2763 */
2764 function wfMemcKey( /*...*/ ) {
2765 return call_user_func_array(
2766 [ ObjectCache::getLocalClusterInstance(), 'makeKey' ],
2767 func_get_args()
2768 );
2769 }
2770
2771 /**
2772 * Make a cache key for a foreign DB.
2773 *
2774 * Must match what wfMemcKey() would produce in context of the foreign wiki.
2775 *
2776 * @param string $db
2777 * @param string $prefix
2778 * @param string $args,...
2779 * @return string
2780 */
2781 function wfForeignMemcKey( $db, $prefix /*...*/ ) {
2782 $args = array_slice( func_get_args(), 2 );
2783 $keyspace = $prefix ? "$db-$prefix" : $db;
2784 return call_user_func_array(
2785 [ ObjectCache::getLocalClusterInstance(), 'makeKeyInternal' ],
2786 [ $keyspace, $args ]
2787 );
2788 }
2789
2790 /**
2791 * Make a cache key with database-agnostic prefix.
2792 *
2793 * Doesn't have a wiki-specific namespace. Uses a generic 'global' prefix
2794 * instead. Must have a prefix as otherwise keys that use a database name
2795 * in the first segment will clash with wfMemcKey/wfForeignMemcKey.
2796 *
2797 * @deprecated since 1.30 Call makeGlobalKey on a BagOStuff instance
2798 * @since 1.26
2799 * @param string $args,...
2800 * @return string
2801 */
2802 function wfGlobalCacheKey( /*...*/ ) {
2803 return call_user_func_array(
2804 [ ObjectCache::getLocalClusterInstance(), 'makeGlobalKey' ],
2805 func_get_args()
2806 );
2807 }
2808
2809 /**
2810 * Get an ASCII string identifying this wiki
2811 * This is used as a prefix in memcached keys
2812 *
2813 * @return string
2814 */
2815 function wfWikiID() {
2816 global $wgDBprefix, $wgDBname;
2817 if ( $wgDBprefix ) {
2818 return "$wgDBname-$wgDBprefix";
2819 } else {
2820 return $wgDBname;
2821 }
2822 }
2823
2824 /**
2825 * Split a wiki ID into DB name and table prefix
2826 *
2827 * @param string $wiki
2828 *
2829 * @return array
2830 */
2831 function wfSplitWikiID( $wiki ) {
2832 $bits = explode( '-', $wiki, 2 );
2833 if ( count( $bits ) < 2 ) {
2834 $bits[] = '';
2835 }
2836 return $bits;
2837 }
2838
2839 /**
2840 * Get a Database object.
2841 *
2842 * @param int $db Index of the connection to get. May be DB_MASTER for the
2843 * master (for write queries), DB_REPLICA for potentially lagged read
2844 * queries, or an integer >= 0 for a particular server.
2845 *
2846 * @param string|string[] $groups Query groups. An array of group names that this query
2847 * belongs to. May contain a single string if the query is only
2848 * in one group.
2849 *
2850 * @param string|bool $wiki The wiki ID, or false for the current wiki
2851 *
2852 * Note: multiple calls to wfGetDB(DB_REPLICA) during the course of one request
2853 * will always return the same object, unless the underlying connection or load
2854 * balancer is manually destroyed.
2855 *
2856 * Note 2: use $this->getDB() in maintenance scripts that may be invoked by
2857 * updater to ensure that a proper database is being updated.
2858 *
2859 * @todo Replace calls to wfGetDB with calls to LoadBalancer::getConnection()
2860 * on an injected instance of LoadBalancer.
2861 *
2862 * @return \Wikimedia\Rdbms\Database
2863 */
2864 function wfGetDB( $db, $groups = [], $wiki = false ) {
2865 return wfGetLB( $wiki )->getConnection( $db, $groups, $wiki );
2866 }
2867
2868 /**
2869 * Get a load balancer object.
2870 *
2871 * @deprecated since 1.27, use MediaWikiServices::getDBLoadBalancer()
2872 * or MediaWikiServices::getDBLoadBalancerFactory() instead.
2873 *
2874 * @param string|bool $wiki Wiki ID, or false for the current wiki
2875 * @return \Wikimedia\Rdbms\LoadBalancer
2876 */
2877 function wfGetLB( $wiki = false ) {
2878 if ( $wiki === false ) {
2879 return MediaWikiServices::getInstance()->getDBLoadBalancer();
2880 } else {
2881 $factory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
2882 return $factory->getMainLB( $wiki );
2883 }
2884 }
2885
2886 /**
2887 * Get the load balancer factory object
2888 *
2889 * @deprecated since 1.27, use MediaWikiServices::getDBLoadBalancerFactory() instead.
2890 *
2891 * @return \Wikimedia\Rdbms\LBFactory
2892 */
2893 function wfGetLBFactory() {
2894 return MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
2895 }
2896
2897 /**
2898 * Find a file.
2899 * Shortcut for RepoGroup::singleton()->findFile()
2900 *
2901 * @param string $title String or Title object
2902 * @param array $options Associative array of options (see RepoGroup::findFile)
2903 * @return File|bool File, or false if the file does not exist
2904 */
2905 function wfFindFile( $title, $options = [] ) {
2906 return RepoGroup::singleton()->findFile( $title, $options );
2907 }
2908
2909 /**
2910 * Get an object referring to a locally registered file.
2911 * Returns a valid placeholder object if the file does not exist.
2912 *
2913 * @param Title|string $title
2914 * @return LocalFile|null A File, or null if passed an invalid Title
2915 */
2916 function wfLocalFile( $title ) {
2917 return RepoGroup::singleton()->getLocalRepo()->newFile( $title );
2918 }
2919
2920 /**
2921 * Should low-performance queries be disabled?
2922 *
2923 * @return bool
2924 * @codeCoverageIgnore
2925 */
2926 function wfQueriesMustScale() {
2927 global $wgMiserMode;
2928 return $wgMiserMode
2929 || ( SiteStats::pages() > 100000
2930 && SiteStats::edits() > 1000000
2931 && SiteStats::users() > 10000 );
2932 }
2933
2934 /**
2935 * Get the path to a specified script file, respecting file
2936 * extensions; this is a wrapper around $wgScriptPath etc.
2937 * except for 'index' and 'load' which use $wgScript/$wgLoadScript
2938 *
2939 * @param string $script Script filename, sans extension
2940 * @return string
2941 */
2942 function wfScript( $script = 'index' ) {
2943 global $wgScriptPath, $wgScript, $wgLoadScript;
2944 if ( $script === 'index' ) {
2945 return $wgScript;
2946 } elseif ( $script === 'load' ) {
2947 return $wgLoadScript;
2948 } else {
2949 return "{$wgScriptPath}/{$script}.php";
2950 }
2951 }
2952
2953 /**
2954 * Get the script URL.
2955 *
2956 * @return string Script URL
2957 */
2958 function wfGetScriptUrl() {
2959 if ( isset( $_SERVER['SCRIPT_NAME'] ) ) {
2960 /* as it was called, minus the query string.
2961 *
2962 * Some sites use Apache rewrite rules to handle subdomains,
2963 * and have PHP set up in a weird way that causes PHP_SELF
2964 * to contain the rewritten URL instead of the one that the
2965 * outside world sees.
2966 *
2967 * If in this mode, use SCRIPT_URL instead, which mod_rewrite
2968 * provides containing the "before" URL.
2969 */
2970 return $_SERVER['SCRIPT_NAME'];
2971 } else {
2972 return $_SERVER['URL'];
2973 }
2974 }
2975
2976 /**
2977 * Convenience function converts boolean values into "true"
2978 * or "false" (string) values
2979 *
2980 * @param bool $value
2981 * @return string
2982 */
2983 function wfBoolToStr( $value ) {
2984 return $value ? 'true' : 'false';
2985 }
2986
2987 /**
2988 * Get a platform-independent path to the null file, e.g. /dev/null
2989 *
2990 * @return string
2991 */
2992 function wfGetNull() {
2993 return wfIsWindows() ? 'NUL' : '/dev/null';
2994 }
2995
2996 /**
2997 * Waits for the replica DBs to catch up to the master position
2998 *
2999 * Use this when updating very large numbers of rows, as in maintenance scripts,
3000 * to avoid causing too much lag. Of course, this is a no-op if there are no replica DBs.
3001 *
3002 * By default this waits on the main DB cluster of the current wiki.
3003 * If $cluster is set to "*" it will wait on all DB clusters, including
3004 * external ones. If the lag being waiting on is caused by the code that
3005 * does this check, it makes since to use $ifWritesSince, particularly if
3006 * cluster is "*", to avoid excess overhead.
3007 *
3008 * Never call this function after a big DB write that is still in a transaction.
3009 * This only makes sense after the possible lag inducing changes were committed.
3010 *
3011 * @param float|null $ifWritesSince Only wait if writes were done since this UNIX timestamp
3012 * @param string|bool $wiki Wiki identifier accepted by wfGetLB
3013 * @param string|bool $cluster Cluster name accepted by LBFactory. Default: false.
3014 * @param int|null $timeout Max wait time. Default: 1 day (cli), ~10 seconds (web)
3015 * @return bool Success (able to connect and no timeouts reached)
3016 * @deprecated since 1.27 Use LBFactory::waitForReplication
3017 */
3018 function wfWaitForSlaves(
3019 $ifWritesSince = null, $wiki = false, $cluster = false, $timeout = null
3020 ) {
3021 if ( $timeout === null ) {
3022 $timeout = ( PHP_SAPI === 'cli' ) ? 86400 : 10;
3023 }
3024
3025 if ( $cluster === '*' ) {
3026 $cluster = false;
3027 $wiki = false;
3028 } elseif ( $wiki === false ) {
3029 $wiki = wfWikiID();
3030 }
3031
3032 try {
3033 wfGetLBFactory()->waitForReplication( [
3034 'wiki' => $wiki,
3035 'cluster' => $cluster,
3036 'timeout' => $timeout,
3037 // B/C: first argument used to be "max seconds of lag"; ignore such values
3038 'ifWritesSince' => ( $ifWritesSince > 1e9 ) ? $ifWritesSince : null
3039 ] );
3040 } catch ( DBReplicationWaitError $e ) {
3041 return false;
3042 }
3043
3044 return true;
3045 }
3046
3047 /**
3048 * Count down from $seconds to zero on the terminal, with a one-second pause
3049 * between showing each number. For use in command-line scripts.
3050 *
3051 * @deprecated since 1.31, use Maintenance::countDown()
3052 *
3053 * @codeCoverageIgnore
3054 * @param int $seconds
3055 */
3056 function wfCountDown( $seconds ) {
3057 for ( $i = $seconds; $i >= 0; $i-- ) {
3058 if ( $i != $seconds ) {
3059 echo str_repeat( "\x08", strlen( $i + 1 ) );
3060 }
3061 echo $i;
3062 flush();
3063 if ( $i ) {
3064 sleep( 1 );
3065 }
3066 }
3067 echo "\n";
3068 }
3069
3070 /**
3071 * Replace all invalid characters with '-'.
3072 * Additional characters can be defined in $wgIllegalFileChars (see T22489).
3073 * By default, $wgIllegalFileChars includes ':', '/', '\'.
3074 *
3075 * @param string $name Filename to process
3076 * @return string
3077 */
3078 function wfStripIllegalFilenameChars( $name ) {
3079 global $wgIllegalFileChars;
3080 $illegalFileChars = $wgIllegalFileChars ? "|[" . $wgIllegalFileChars . "]" : '';
3081 $name = preg_replace(
3082 "/[^" . Title::legalChars() . "]" . $illegalFileChars . "/",
3083 '-',
3084 $name
3085 );
3086 // $wgIllegalFileChars may not include '/' and '\', so we still need to do this
3087 $name = wfBaseName( $name );
3088 return $name;
3089 }
3090
3091 /**
3092 * Set PHP's memory limit to the larger of php.ini or $wgMemoryLimit
3093 *
3094 * @return int Resulting value of the memory limit.
3095 */
3096 function wfMemoryLimit() {
3097 global $wgMemoryLimit;
3098 $memlimit = wfShorthandToInteger( ini_get( 'memory_limit' ) );
3099 if ( $memlimit != -1 ) {
3100 $conflimit = wfShorthandToInteger( $wgMemoryLimit );
3101 if ( $conflimit == -1 ) {
3102 wfDebug( "Removing PHP's memory limit\n" );
3103 MediaWiki\suppressWarnings();
3104 ini_set( 'memory_limit', $conflimit );
3105 MediaWiki\restoreWarnings();
3106 return $conflimit;
3107 } elseif ( $conflimit > $memlimit ) {
3108 wfDebug( "Raising PHP's memory limit to $conflimit bytes\n" );
3109 MediaWiki\suppressWarnings();
3110 ini_set( 'memory_limit', $conflimit );
3111 MediaWiki\restoreWarnings();
3112 return $conflimit;
3113 }
3114 }
3115 return $memlimit;
3116 }
3117
3118 /**
3119 * Set PHP's time limit to the larger of php.ini or $wgTransactionalTimeLimit
3120 *
3121 * @return int Prior time limit
3122 * @since 1.26
3123 */
3124 function wfTransactionalTimeLimit() {
3125 global $wgTransactionalTimeLimit;
3126
3127 $timeLimit = ini_get( 'max_execution_time' );
3128 // Note that CLI scripts use 0
3129 if ( $timeLimit > 0 && $wgTransactionalTimeLimit > $timeLimit ) {
3130 set_time_limit( $wgTransactionalTimeLimit );
3131 }
3132
3133 ignore_user_abort( true ); // ignore client disconnects
3134
3135 return $timeLimit;
3136 }
3137
3138 /**
3139 * Converts shorthand byte notation to integer form
3140 *
3141 * @param string $string
3142 * @param int $default Returned if $string is empty
3143 * @return int
3144 */
3145 function wfShorthandToInteger( $string = '', $default = -1 ) {
3146 $string = trim( $string );
3147 if ( $string === '' ) {
3148 return $default;
3149 }
3150 $last = $string[strlen( $string ) - 1];
3151 $val = intval( $string );
3152 switch ( $last ) {
3153 case 'g':
3154 case 'G':
3155 $val *= 1024;
3156 // break intentionally missing
3157 case 'm':
3158 case 'M':
3159 $val *= 1024;
3160 // break intentionally missing
3161 case 'k':
3162 case 'K':
3163 $val *= 1024;
3164 }
3165
3166 return $val;
3167 }
3168
3169 /**
3170 * Get the normalised IETF language tag
3171 * See unit test for examples.
3172 * See mediawiki.language.bcp47 for the JavaScript implementation.
3173 *
3174 * @deprecated since 1.31, use LanguageCode::bcp47() directly.
3175 *
3176 * @param string $code The language code.
3177 * @return string The language code which complying with BCP 47 standards.
3178 */
3179 function wfBCP47( $code ) {
3180 return LanguageCode::bcp47( $code );
3181 }
3182
3183 /**
3184 * Get a specific cache object.
3185 *
3186 * @param int|string $cacheType A CACHE_* constants, or other key in $wgObjectCaches
3187 * @return BagOStuff
3188 */
3189 function wfGetCache( $cacheType ) {
3190 return ObjectCache::getInstance( $cacheType );
3191 }
3192
3193 /**
3194 * Get the main cache object
3195 *
3196 * @return BagOStuff
3197 */
3198 function wfGetMainCache() {
3199 global $wgMainCacheType;
3200 return ObjectCache::getInstance( $wgMainCacheType );
3201 }
3202
3203 /**
3204 * Get the cache object used by the message cache
3205 *
3206 * @return BagOStuff
3207 */
3208 function wfGetMessageCacheStorage() {
3209 global $wgMessageCacheType;
3210 return ObjectCache::getInstance( $wgMessageCacheType );
3211 }
3212
3213 /**
3214 * Get the cache object used by the parser cache
3215 *
3216 * @deprecated since 1.30, use MediaWikiServices::getParserCache()->getCacheStorage()
3217 * @return BagOStuff
3218 */
3219 function wfGetParserCacheStorage() {
3220 global $wgParserCacheType;
3221 return ObjectCache::getInstance( $wgParserCacheType );
3222 }
3223
3224 /**
3225 * Call hook functions defined in $wgHooks
3226 *
3227 * @param string $event Event name
3228 * @param array $args Parameters passed to hook functions
3229 * @param string|null $deprecatedVersion Optionally mark hook as deprecated with version number
3230 *
3231 * @return bool True if no handler aborted the hook
3232 * @deprecated since 1.25 - use Hooks::run
3233 */
3234 function wfRunHooks( $event, array $args = [], $deprecatedVersion = null ) {
3235 wfDeprecated( __METHOD__, '1.25' );
3236 return Hooks::run( $event, $args, $deprecatedVersion );
3237 }
3238
3239 /**
3240 * Wrapper around php's unpack.
3241 *
3242 * @param string $format The format string (See php's docs)
3243 * @param string $data A binary string of binary data
3244 * @param int|bool $length The minimum length of $data or false. This is to
3245 * prevent reading beyond the end of $data. false to disable the check.
3246 *
3247 * Also be careful when using this function to read unsigned 32 bit integer
3248 * because php might make it negative.
3249 *
3250 * @throws MWException If $data not long enough, or if unpack fails
3251 * @return array Associative array of the extracted data
3252 */
3253 function wfUnpack( $format, $data, $length = false ) {
3254 if ( $length !== false ) {
3255 $realLen = strlen( $data );
3256 if ( $realLen < $length ) {
3257 throw new MWException( "Tried to use wfUnpack on a "
3258 . "string of length $realLen, but needed one "
3259 . "of at least length $length."
3260 );
3261 }
3262 }
3263
3264 MediaWiki\suppressWarnings();
3265 $result = unpack( $format, $data );
3266 MediaWiki\restoreWarnings();
3267
3268 if ( $result === false ) {
3269 // If it cannot extract the packed data.
3270 throw new MWException( "unpack could not unpack binary data" );
3271 }
3272 return $result;
3273 }
3274
3275 /**
3276 * Determine if an image exists on the 'bad image list'.
3277 *
3278 * The format of MediaWiki:Bad_image_list is as follows:
3279 * * Only list items (lines starting with "*") are considered
3280 * * The first link on a line must be a link to a bad image
3281 * * Any subsequent links on the same line are considered to be exceptions,
3282 * i.e. articles where the image may occur inline.
3283 *
3284 * @param string $name The image name to check
3285 * @param Title|bool $contextTitle The page on which the image occurs, if known
3286 * @param string $blacklist Wikitext of a file blacklist
3287 * @return bool
3288 */
3289 function wfIsBadImage( $name, $contextTitle = false, $blacklist = null ) {
3290 # Handle redirects; callers almost always hit wfFindFile() anyway,
3291 # so just use that method because it has a fast process cache.
3292 $file = wfFindFile( $name ); // get the final name
3293 $name = $file ? $file->getTitle()->getDBkey() : $name;
3294
3295 # Run the extension hook
3296 $bad = false;
3297 if ( !Hooks::run( 'BadImage', [ $name, &$bad ] ) ) {
3298 return (bool)$bad;
3299 }
3300
3301 $cache = ObjectCache::getLocalServerInstance( 'hash' );
3302 $key = $cache->makeKey(
3303 'bad-image-list', ( $blacklist === null ) ? 'default' : md5( $blacklist )
3304 );
3305 $badImages = $cache->get( $key );
3306
3307 if ( $badImages === false ) { // cache miss
3308 if ( $blacklist === null ) {
3309 $blacklist = wfMessage( 'bad_image_list' )->inContentLanguage()->plain(); // site list
3310 }
3311 # Build the list now
3312 $badImages = [];
3313 $lines = explode( "\n", $blacklist );
3314 foreach ( $lines as $line ) {
3315 # List items only
3316 if ( substr( $line, 0, 1 ) !== '*' ) {
3317 continue;
3318 }
3319
3320 # Find all links
3321 $m = [];
3322 if ( !preg_match_all( '/\[\[:?(.*?)\]\]/', $line, $m ) ) {
3323 continue;
3324 }
3325
3326 $exceptions = [];
3327 $imageDBkey = false;
3328 foreach ( $m[1] as $i => $titleText ) {
3329 $title = Title::newFromText( $titleText );
3330 if ( !is_null( $title ) ) {
3331 if ( $i == 0 ) {
3332 $imageDBkey = $title->getDBkey();
3333 } else {
3334 $exceptions[$title->getPrefixedDBkey()] = true;
3335 }
3336 }
3337 }
3338
3339 if ( $imageDBkey !== false ) {
3340 $badImages[$imageDBkey] = $exceptions;
3341 }
3342 }
3343 $cache->set( $key, $badImages, 60 );
3344 }
3345
3346 $contextKey = $contextTitle ? $contextTitle->getPrefixedDBkey() : false;
3347 $bad = isset( $badImages[$name] ) && !isset( $badImages[$name][$contextKey] );
3348
3349 return $bad;
3350 }
3351
3352 /**
3353 * Determine whether the client at a given source IP is likely to be able to
3354 * access the wiki via HTTPS.
3355 *
3356 * @param string $ip The IPv4/6 address in the normal human-readable form
3357 * @return bool
3358 */
3359 function wfCanIPUseHTTPS( $ip ) {
3360 $canDo = true;
3361 Hooks::run( 'CanIPUseHTTPS', [ $ip, &$canDo ] );
3362 return !!$canDo;
3363 }
3364
3365 /**
3366 * Determine input string is represents as infinity
3367 *
3368 * @param string $str The string to determine
3369 * @return bool
3370 * @since 1.25
3371 */
3372 function wfIsInfinity( $str ) {
3373 // These are hardcoded elsewhere in MediaWiki (e.g. mediawiki.special.block.js).
3374 $infinityValues = [ 'infinite', 'indefinite', 'infinity', 'never' ];
3375 return in_array( $str, $infinityValues );
3376 }
3377
3378 /**
3379 * Returns true if these thumbnail parameters match one that MediaWiki
3380 * requests from file description pages and/or parser output.
3381 *
3382 * $params is considered non-standard if they involve a non-standard
3383 * width or any non-default parameters aside from width and page number.
3384 * The number of possible files with standard parameters is far less than
3385 * that of all combinations; rate-limiting for them can thus be more generious.
3386 *
3387 * @param File $file
3388 * @param array $params
3389 * @return bool
3390 * @since 1.24 Moved from thumb.php to GlobalFunctions in 1.25
3391 */
3392 function wfThumbIsStandard( File $file, array $params ) {
3393 global $wgThumbLimits, $wgImageLimits, $wgResponsiveImages;
3394
3395 $multipliers = [ 1 ];
3396 if ( $wgResponsiveImages ) {
3397 // These available sizes are hardcoded currently elsewhere in MediaWiki.
3398 // @see Linker::processResponsiveImages
3399 $multipliers[] = 1.5;
3400 $multipliers[] = 2;
3401 }
3402
3403 $handler = $file->getHandler();
3404 if ( !$handler || !isset( $params['width'] ) ) {
3405 return false;
3406 }
3407
3408 $basicParams = [];
3409 if ( isset( $params['page'] ) ) {
3410 $basicParams['page'] = $params['page'];
3411 }
3412
3413 $thumbLimits = [];
3414 $imageLimits = [];
3415 // Expand limits to account for multipliers
3416 foreach ( $multipliers as $multiplier ) {
3417 $thumbLimits = array_merge( $thumbLimits, array_map(
3418 function ( $width ) use ( $multiplier ) {
3419 return round( $width * $multiplier );
3420 }, $wgThumbLimits )
3421 );
3422 $imageLimits = array_merge( $imageLimits, array_map(
3423 function ( $pair ) use ( $multiplier ) {
3424 return [
3425 round( $pair[0] * $multiplier ),
3426 round( $pair[1] * $multiplier ),
3427 ];
3428 }, $wgImageLimits )
3429 );
3430 }
3431
3432 // Check if the width matches one of $wgThumbLimits
3433 if ( in_array( $params['width'], $thumbLimits ) ) {
3434 $normalParams = $basicParams + [ 'width' => $params['width'] ];
3435 // Append any default values to the map (e.g. "lossy", "lossless", ...)
3436 $handler->normaliseParams( $file, $normalParams );
3437 } else {
3438 // If not, then check if the width matchs one of $wgImageLimits
3439 $match = false;
3440 foreach ( $imageLimits as $pair ) {
3441 $normalParams = $basicParams + [ 'width' => $pair[0], 'height' => $pair[1] ];
3442 // Decide whether the thumbnail should be scaled on width or height.
3443 // Also append any default values to the map (e.g. "lossy", "lossless", ...)
3444 $handler->normaliseParams( $file, $normalParams );
3445 // Check if this standard thumbnail size maps to the given width
3446 if ( $normalParams['width'] == $params['width'] ) {
3447 $match = true;
3448 break;
3449 }
3450 }
3451 if ( !$match ) {
3452 return false; // not standard for description pages
3453 }
3454 }
3455
3456 // Check that the given values for non-page, non-width, params are just defaults
3457 foreach ( $params as $key => $value ) {
3458 if ( !isset( $normalParams[$key] ) || $normalParams[$key] != $value ) {
3459 return false;
3460 }
3461 }
3462
3463 return true;
3464 }
3465
3466 /**
3467 * Merges two (possibly) 2 dimensional arrays into the target array ($baseArray).
3468 *
3469 * Values that exist in both values will be combined with += (all values of the array
3470 * of $newValues will be added to the values of the array of $baseArray, while values,
3471 * that exists in both, the value of $baseArray will be used).
3472 *
3473 * @param array $baseArray The array where you want to add the values of $newValues to
3474 * @param array $newValues An array with new values
3475 * @return array The combined array
3476 * @since 1.26
3477 */
3478 function wfArrayPlus2d( array $baseArray, array $newValues ) {
3479 // First merge items that are in both arrays
3480 foreach ( $baseArray as $name => &$groupVal ) {
3481 if ( isset( $newValues[$name] ) ) {
3482 $groupVal += $newValues[$name];
3483 }
3484 }
3485 // Now add items that didn't exist yet
3486 $baseArray += $newValues;
3487
3488 return $baseArray;
3489 }