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