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