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