Make wfUrlEncode(null) reset the static. Two skipped tests work now.
[mediawiki.git] / includes / GlobalFunctions.php
blobd6c433e873b8777ef27b0b75c84a94fda75519b7
1 <?php
2 /**
3 * Global functions used everywhere
4 * @file
5 */
7 if ( !defined( 'MEDIAWIKI' ) ) {
8 die( "This file is part of MediaWiki, it is not a valid entry point" );
11 // Hide compatibility functions from Doxygen
12 /// @cond
14 /**
15 * Compatibility functions
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.
22 if( !function_exists( 'iconv' ) ) {
23 /** @codeCoverageIgnore */
24 function iconv( $from, $to, $string ) {
25 return Fallback::iconv( $from, $to, $string );
29 if ( !function_exists( 'mb_substr' ) ) {
30 /** @codeCoverageIgnore */
31 function mb_substr( $str, $start, $count='end' ) {
32 return Fallback::mb_substr( $str, $start, $count );
35 /** @codeCoverageIgnore */
36 function mb_substr_split_unicode( $str, $splitPos ) {
37 return Fallback::mb_substr_split_unicode( $str, $splitPos );
41 if ( !function_exists( 'mb_strlen' ) ) {
42 /** @codeCoverageIgnore */
43 function mb_strlen( $str, $enc = '' ) {
44 return Fallback::mb_strlen( $str, $enc );
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 );
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 );
64 // Support for Wietse Venema's taint feature
65 if ( !function_exists( 'istainted' ) ) {
66 /** @codeCoverageIgnore */
67 function istainted( $var ) {
68 return 0;
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 );
80 /// @endcond
82 /**
83 * Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
85 function wfArrayDiff2( $a, $b ) {
86 return array_udiff( $a, $b, 'wfArrayDiff2_cmp' );
89 /**
90 * @param $a
91 * @param $b
92 * @return int
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;
108 return 0;
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
117 * @param $a Array
118 * @param $b Array
119 * @return array
121 function wfArrayLookup( $a, $b ) {
122 return array_flip( array_intersect( array_flip( $a ), array_keys( $b ) ) );
126 * Appends to second array if $value differs from that in $default
128 * @param $key String|Int
129 * @param $value Mixed
130 * @param $default Mixed
131 * @param $changed Array to alter
133 function wfAppendToArrayIfNotDefault( $key, $value, $default, &$changed ) {
134 if ( is_null( $changed ) ) {
135 throw new MWException( 'GlobalFunctions::wfAppendToArrayIfNotDefault got null' );
137 if ( $default[$key] !== $value ) {
138 $changed[$key] = $value;
143 * Backwards array plus for people who haven't bothered to read the PHP manual
144 * XXX: will not darn your socks for you.
146 * @param $array1 Array
147 * @param [$array2, [...]] Arrays
148 * @return Array
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;
157 return $out;
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' )
175 * @param varargs
176 * @return Array
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;
189 return array_values( $out );
193 * Insert array into another array after the specified *KEY*
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
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 );
205 $offset = $offsetByKey[$after];
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 );
211 $output = $before + $insert + $after;
213 return $output;
217 * Recursively converts the parameter (an object) to an array with the same data
219 * @param $objOrArray Object|Array
220 * @param $recursive Bool
221 * @return Array
223 function wfObjectToArray( $objOrArray, $recursive = true ) {
224 $array = array();
225 if( is_object( $objOrArray ) ) {
226 $objOrArray = get_object_vars( $objOrArray );
228 foreach ( $objOrArray as $key => $value ) {
229 if ( $recursive && ( is_object( $value ) || is_array( $value ) ) ) {
230 $value = wfObjectToArray( $value );
233 $array[$key] = $value;
236 return $array;
240 * Wrapper around array_map() which also taints variables
242 * @param $function Callback
243 * @param $input Array
244 * @return Array
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 );
254 return $ret;
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.
262 * @return string
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;
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:
278 * ;:@&=$-_.+!*'(),
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:
285 * ;:@$!*(),/
287 * However, IIS7 redirects fail when the url contains a colon (Bug 22709),
288 * so no fancy : for IIS7.
290 * %2F in the page titles seems to fatally break for some reason.
292 * @param $s String:
293 * @return string
295 function wfUrlencode( $s ) {
296 static $needle;
297 if ( is_null( $s ) ) {
298 $needle = null;
299 return;
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';
309 $s = urlencode( $s );
310 $s = str_ireplace(
311 $needle,
312 array( ';', '@', '$', '!', '*', '(', ')', ',', '/', ':' ),
316 return $s;
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.
324 * @param $array1 Array ( String|Array )
325 * @param $array2 Array ( String|Array )
326 * @param $prefix String
327 * @return String
329 function wfArrayToCGI( $array1, $array2 = null, $prefix = '' ) {
330 if ( !is_null( $array2 ) ) {
331 $array1 = $array1 + $array2;
334 $cgi = '';
335 foreach ( $array1 as $key => $value ) {
336 if ( $value !== '' ) {
337 if ( $cgi != '' ) {
338 $cgi .= '&';
340 if ( $prefix !== '' ) {
341 $key = $prefix . "[$key]";
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 );
352 $firstTime = false;
354 } else {
355 if ( is_object( $value ) ) {
356 $value = $value->__toString();
358 $cgi .= urlencode( $key ) . '=' . urlencode( $value );
362 return $cgi;
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.
372 * @param $query String: query string
373 * @return array Array version of input
375 function wfCgiToArray( $query ) {
376 if ( isset( $query[0] ) && $query[0] == '?' ) {
377 $query = substr( $query, 1 );
379 $bits = explode( '&', $query );
380 $ret = array();
381 foreach ( $bits as $bit ) {
382 if ( $bit === '' ) {
383 continue;
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 );
396 if ( isset( $ret[$key] ) ) {
397 $ret[$key] = array_merge( $ret[$key], $temp );
398 } else {
399 $ret[$key] = $temp;
401 } else {
402 $ret[$key] = $value;
405 return $ret;
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.
412 * @param $url String
413 * @param $query Mixed: string or associative array
414 * @return string
416 function wfAppendQuery( $url, $query ) {
417 if ( is_array( $query ) ) {
418 $query = wfArrayToCGI( $query );
420 if( $query != '' ) {
421 if( false === strpos( $url, '?' ) ) {
422 $url .= '?';
423 } else {
424 $url .= '&';
426 $url .= $query;
428 return $url;
432 * Expand a potentially local URL to a fully-qualified URL. Assumes $wgServer
433 * is correct.
435 * @todo this won't work with current-path-relative URLs
436 * like "subdir/foo.html", etc.
438 * @param $url String: either fully-qualified or a local path + query
439 * @return string Fully-qualified URL
441 function wfExpandUrl( $url ) {
442 global $wgServer;
443 if( substr( $url, 0, 2 ) == '//' ) {
444 $bits = wfParseUrl( $wgServer );
445 $scheme = $bits && $bits['scheme'] !== '' ? $bits['scheme'] : 'http';
446 return $scheme . ':' . $url;
447 } elseif( substr( $url, 0, 1 ) == '/' ) {
448 return $wgServer . $url;
449 } else {
450 return $url;
455 * Returns a regular expression of url protocols
457 * @return String
459 function wfUrlProtocols() {
460 global $wgUrlProtocols;
462 static $retval = null;
463 if ( !is_null( $retval ) ) {
464 return $retval;
467 // Support old-style $wgUrlProtocols strings, for backwards compatibility
468 // with LocalSettings files from 1.5
469 if ( is_array( $wgUrlProtocols ) ) {
470 $protocols = array();
471 foreach ( $wgUrlProtocols as $protocol ) {
472 $protocols[] = preg_quote( $protocol, '/' );
475 $retval = implode( '|', $protocols );
476 } else {
477 $retval = $wgUrlProtocols;
479 return $retval;
483 * parse_url() work-alike, but non-broken. Differences:
485 * 1) Does not raise warnings on bad URLs (just returns false)
486 * 2) Handles protocols that don't use :// (e.g., mailto: and news: , as well as protocol-relative URLs) correctly
487 * 3) Adds a "delimiter" element to the array, either '://', ':' or '//' (see (2))
489 * @param $url String: a URL to parse
490 * @return Array: bits of the URL in an associative array, per PHP docs
492 function wfParseUrl( $url ) {
493 global $wgUrlProtocols; // Allow all protocols defined in DefaultSettings/LocalSettings.php
495 // Protocol-relative URLs are handled really badly by parse_url(). It's so bad that the easiest
496 // way to handle them is to just prepend 'http:' and strip the protocol out later
497 $wasRelative = substr( $url, 0, 2 ) == '//';
498 if ( $wasRelative ) {
499 $url = "http:$url";
501 wfSuppressWarnings();
502 $bits = parse_url( $url );
503 wfRestoreWarnings();
504 if ( !$bits ) {
505 return false;
508 // most of the protocols are followed by ://, but mailto: and sometimes news: not, check for it
509 if ( in_array( $bits['scheme'] . '://', $wgUrlProtocols ) ) {
510 $bits['delimiter'] = '://';
511 } elseif ( in_array( $bits['scheme'] . ':', $wgUrlProtocols ) ) {
512 $bits['delimiter'] = ':';
513 // parse_url detects for news: and mailto: the host part of an url as path
514 // We have to correct this wrong detection
515 if ( isset( $bits['path'] ) ) {
516 $bits['host'] = $bits['path'];
517 $bits['path'] = '';
519 } else {
520 return false;
523 /* Provide an empty host for eg. file:/// urls (see bug 28627) */
524 if ( !isset( $bits['host'] ) ) {
525 $bits['host'] = '';
527 /* parse_url loses the third / for file:///c:/ urls (but not on variants) */
528 if ( substr( $bits['path'], 0, 1 ) !== '/' ) {
529 $bits['path'] = '/' . $bits['path'];
533 // If the URL was protocol-relative, fix scheme and delimiter
534 if ( $wasRelative ) {
535 $bits['scheme'] = '';
536 $bits['delimiter'] = '//';
538 return $bits;
542 * Make a URL index, appropriate for the el_index field of externallinks.
544 * @param $url String
545 * @return String
547 function wfMakeUrlIndex( $url ) {
548 $bits = wfParseUrl( $url );
550 // Reverse the labels in the hostname, convert to lower case
551 // For emails reverse domainpart only
552 if ( $bits['scheme'] == 'mailto' ) {
553 $mailparts = explode( '@', $bits['host'], 2 );
554 if ( count( $mailparts ) === 2 ) {
555 $domainpart = strtolower( implode( '.', array_reverse( explode( '.', $mailparts[1] ) ) ) );
556 } else {
557 // No domain specified, don't mangle it
558 $domainpart = '';
560 $reversedHost = $domainpart . '@' . $mailparts[0];
561 } else {
562 $reversedHost = strtolower( implode( '.', array_reverse( explode( '.', $bits['host'] ) ) ) );
564 // Add an extra dot to the end
565 // Why? Is it in wrong place in mailto links?
566 if ( substr( $reversedHost, -1, 1 ) !== '.' ) {
567 $reversedHost .= '.';
569 // Reconstruct the pseudo-URL
570 $prot = $bits['scheme'];
571 $index = $prot . $bits['delimiter'] . $reversedHost;
572 // Leave out user and password. Add the port, path, query and fragment
573 if ( isset( $bits['port'] ) ) {
574 $index .= ':' . $bits['port'];
576 if ( isset( $bits['path'] ) ) {
577 $index .= $bits['path'];
578 } else {
579 $index .= '/';
581 if ( isset( $bits['query'] ) ) {
582 $index .= '?' . $bits['query'];
584 if ( isset( $bits['fragment'] ) ) {
585 $index .= '#' . $bits['fragment'];
587 return $index;
591 * Sends a line to the debug log if enabled or, optionally, to a comment in output.
592 * In normal operation this is a NOP.
594 * Controlling globals:
595 * $wgDebugLogFile - points to the log file
596 * $wgProfileOnly - if set, normal debug messages will not be recorded.
597 * $wgDebugRawPage - if false, 'action=raw' hits will not result in debug output.
598 * $wgDebugComments - if on, some debug items may appear in comments in the HTML output.
600 * @param $text String
601 * @param $logonly Bool: set true to avoid appearing in HTML when $wgDebugComments is set
603 function wfDebug( $text, $logonly = false ) {
604 global $wgOut, $wgDebugLogFile, $wgDebugComments, $wgProfileOnly, $wgDebugRawPage;
605 global $wgDebugLogPrefix, $wgShowDebug;
607 static $cache = array(); // Cache of unoutputted messages
608 $text = wfDebugTimer() . $text;
610 if ( !$wgDebugRawPage && wfIsDebugRawPage() ) {
611 return;
614 if ( ( $wgDebugComments || $wgShowDebug ) && !$logonly ) {
615 $cache[] = $text;
617 if ( isset( $wgOut ) && is_object( $wgOut ) ) {
618 // add the message and any cached messages to the output
619 array_map( array( $wgOut, 'debug' ), $cache );
620 $cache = array();
623 if ( wfRunHooks( 'Debug', array( $text, null /* no log group */ ) ) ) {
624 if ( $wgDebugLogFile != '' && !$wgProfileOnly ) {
625 # Strip unprintables; they can switch terminal modes when binary data
626 # gets dumped, which is pretty annoying.
627 $text = preg_replace( '![\x00-\x08\x0b\x0c\x0e-\x1f]!', ' ', $text );
628 $text = $wgDebugLogPrefix . $text;
629 wfErrorLog( $text, $wgDebugLogFile );
635 * Returns true if debug logging should be suppressed if $wgDebugRawPage = false
637 function wfIsDebugRawPage() {
638 static $cache;
639 if ( $cache !== null ) {
640 return $cache;
642 # Check for raw action using $_GET not $wgRequest, since the latter might not be initialised yet
643 if ( ( isset( $_GET['action'] ) && $_GET['action'] == 'raw' )
644 || (
645 isset( $_SERVER['SCRIPT_NAME'] )
646 && substr( $_SERVER['SCRIPT_NAME'], -8 ) == 'load.php'
649 $cache = true;
650 } else {
651 $cache = false;
653 return $cache;
657 * Get microsecond timestamps for debug logs
659 * @return string
661 function wfDebugTimer() {
662 global $wgDebugTimestamps;
663 if ( !$wgDebugTimestamps ) {
664 return '';
666 static $start = null;
668 if ( $start === null ) {
669 $start = microtime( true );
670 $prefix = "\n$start";
671 } else {
672 $prefix = sprintf( "%6.4f", microtime( true ) - $start );
675 return $prefix . ' ';
679 * Send a line giving PHP memory usage.
681 * @param $exact Bool: print exact values instead of kilobytes (default: false)
683 function wfDebugMem( $exact = false ) {
684 $mem = memory_get_usage();
685 if( !$exact ) {
686 $mem = floor( $mem / 1024 ) . ' kilobytes';
687 } else {
688 $mem .= ' bytes';
690 wfDebug( "Memory usage: $mem\n" );
694 * Send a line to a supplementary debug log file, if configured, or main debug log if not.
695 * $wgDebugLogGroups[$logGroup] should be set to a filename to send to a separate log.
697 * @param $logGroup String
698 * @param $text String
699 * @param $public Bool: whether to log the event in the public log if no private
700 * log file is specified, (default true)
702 function wfDebugLog( $logGroup, $text, $public = true ) {
703 global $wgDebugLogGroups, $wgShowHostnames;
704 $text = trim( $text ) . "\n";
705 if( isset( $wgDebugLogGroups[$logGroup] ) ) {
706 $time = wfTimestamp( TS_DB );
707 $wiki = wfWikiID();
708 if ( $wgShowHostnames ) {
709 $host = wfHostname();
710 } else {
711 $host = '';
713 if ( wfRunHooks( 'Debug', array( $text, $logGroup ) ) ) {
714 wfErrorLog( "$time $host $wiki: $text", $wgDebugLogGroups[$logGroup] );
716 } elseif ( $public === true ) {
717 wfDebug( $text, true );
722 * Log for database errors
724 * @param $text String: database error message.
726 function wfLogDBError( $text ) {
727 global $wgDBerrorLog, $wgDBname;
728 if ( $wgDBerrorLog ) {
729 $host = trim(`hostname`);
730 $text = date( 'D M j G:i:s T Y' ) . "\t$host\t$wgDBname\t$text";
731 wfErrorLog( $text, $wgDBerrorLog );
736 * Log to a file without getting "file size exceeded" signals.
738 * Can also log to TCP or UDP with the syntax udp://host:port/prefix. This will
739 * send lines to the specified port, prefixed by the specified prefix and a space.
741 * @param $text String
742 * @param $file String filename
744 function wfErrorLog( $text, $file ) {
745 if ( substr( $file, 0, 4 ) == 'udp:' ) {
746 # Needs the sockets extension
747 if ( preg_match( '!^(tcp|udp):(?://)?\[([0-9a-fA-F:]+)\]:(\d+)(?:/(.*))?$!', $file, $m ) ) {
748 // IPv6 bracketed host
749 $host = $m[2];
750 $port = intval( $m[3] );
751 $prefix = isset( $m[4] ) ? $m[4] : false;
752 $domain = AF_INET6;
753 } elseif ( preg_match( '!^(tcp|udp):(?://)?([a-zA-Z0-9.-]+):(\d+)(?:/(.*))?$!', $file, $m ) ) {
754 $host = $m[2];
755 if ( !IP::isIPv4( $host ) ) {
756 $host = gethostbyname( $host );
758 $port = intval( $m[3] );
759 $prefix = isset( $m[4] ) ? $m[4] : false;
760 $domain = AF_INET;
761 } else {
762 throw new MWException( __METHOD__ . ': Invalid UDP specification' );
765 // Clean it up for the multiplexer
766 if ( strval( $prefix ) !== '' ) {
767 $text = preg_replace( '/^/m', $prefix . ' ', $text );
769 // Limit to 64KB
770 if ( strlen( $text ) > 65534 ) {
771 $text = substr( $text, 0, 65534 );
774 if ( substr( $text, -1 ) != "\n" ) {
775 $text .= "\n";
777 } elseif ( strlen( $text ) > 65535 ) {
778 $text = substr( $text, 0, 65535 );
781 $sock = socket_create( $domain, SOCK_DGRAM, SOL_UDP );
782 if ( !$sock ) {
783 return;
785 socket_sendto( $sock, $text, strlen( $text ), 0, $host, $port );
786 socket_close( $sock );
787 } else {
788 wfSuppressWarnings();
789 $exists = file_exists( $file );
790 $size = $exists ? filesize( $file ) : false;
791 if ( !$exists || ( $size !== false && $size + strlen( $text ) < 0x7fffffff ) ) {
792 file_put_contents( $file, $text, FILE_APPEND );
794 wfRestoreWarnings();
799 * @todo document
801 function wfLogProfilingData() {
802 global $wgRequestTime, $wgDebugLogFile, $wgDebugRawPage, $wgRequest;
803 global $wgProfileLimit, $wgUser;
805 $profiler = Profiler::instance();
807 # Profiling must actually be enabled...
808 if ( $profiler->isStub() ) {
809 return;
812 // Get total page request time and only show pages that longer than
813 // $wgProfileLimit time (default is 0)
814 $now = wfTime();
815 $elapsed = $now - $wgRequestTime;
816 if ( $elapsed <= $wgProfileLimit ) {
817 return;
820 $profiler->logData();
822 // Check whether this should be logged in the debug file.
823 if ( $wgDebugLogFile == '' || ( !$wgDebugRawPage && wfIsDebugRawPage() ) ) {
824 return;
827 $forward = '';
828 if ( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
829 $forward = ' forwarded for ' . $_SERVER['HTTP_X_FORWARDED_FOR'];
831 if ( !empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
832 $forward .= ' client IP ' . $_SERVER['HTTP_CLIENT_IP'];
834 if ( !empty( $_SERVER['HTTP_FROM'] ) ) {
835 $forward .= ' from ' . $_SERVER['HTTP_FROM'];
837 if ( $forward ) {
838 $forward = "\t(proxied via {$_SERVER['REMOTE_ADDR']}{$forward})";
840 // Don't load $wgUser at this late stage just for statistics purposes
841 // @todo FIXME: We can detect some anons even if it is not loaded. See User::getId()
842 if ( $wgUser->isItemLoaded( 'id' ) && $wgUser->isAnon() ) {
843 $forward .= ' anon';
845 $log = sprintf( "%s\t%04.3f\t%s\n",
846 gmdate( 'YmdHis' ), $elapsed,
847 urldecode( $wgRequest->getRequestURL() . $forward ) );
849 wfErrorLog( $log . $profiler->getOutput(), $wgDebugLogFile );
853 * Check if the wiki read-only lock file is present. This can be used to lock
854 * off editing functions, but doesn't guarantee that the database will not be
855 * modified.
857 * @return bool
859 function wfReadOnly() {
860 global $wgReadOnlyFile, $wgReadOnly;
862 if ( !is_null( $wgReadOnly ) ) {
863 return (bool)$wgReadOnly;
865 if ( $wgReadOnlyFile == '' ) {
866 return false;
868 // Set $wgReadOnly for faster access next time
869 if ( is_file( $wgReadOnlyFile ) ) {
870 $wgReadOnly = file_get_contents( $wgReadOnlyFile );
871 } else {
872 $wgReadOnly = false;
874 return (bool)$wgReadOnly;
877 function wfReadOnlyReason() {
878 global $wgReadOnly;
879 wfReadOnly();
880 return $wgReadOnly;
884 * Return a Language object from $langcode
886 * @param $langcode Mixed: either:
887 * - a Language object
888 * - code of the language to get the message for, if it is
889 * a valid code create a language for that language, if
890 * it is a string but not a valid code then make a basic
891 * language object
892 * - a boolean: if it's false then use the current users
893 * language (as a fallback for the old parameter
894 * functionality), or if it is true then use the wikis
895 * @return Language object
897 function wfGetLangObj( $langcode = false ) {
898 # Identify which language to get or create a language object for.
899 # Using is_object here due to Stub objects.
900 if( is_object( $langcode ) ) {
901 # Great, we already have the object (hopefully)!
902 return $langcode;
905 global $wgContLang, $wgLanguageCode;
906 if( $langcode === true || $langcode === $wgLanguageCode ) {
907 # $langcode is the language code of the wikis content language object.
908 # or it is a boolean and value is true
909 return $wgContLang;
912 global $wgLang;
913 if( $langcode === false || $langcode === $wgLang->getCode() ) {
914 # $langcode is the language code of user language object.
915 # or it was a boolean and value is false
916 return $wgLang;
919 $validCodes = array_keys( Language::getLanguageNames() );
920 if( in_array( $langcode, $validCodes ) ) {
921 # $langcode corresponds to a valid language.
922 return Language::factory( $langcode );
925 # $langcode is a string, but not a valid language code; use content language.
926 wfDebug( "Invalid language code passed to wfGetLangObj, falling back to content language.\n" );
927 return $wgContLang;
931 * Old function when $wgBetterDirectionality existed
932 * Removed in core, kept in extensions for backwards compat.
934 * @deprecated since 1.18
935 * @return Language
937 function wfUILang() {
938 global $wgLang;
939 return $wgLang;
943 * This is the new function for getting translated interface messages.
944 * See the Message class for documentation how to use them.
945 * The intention is that this function replaces all old wfMsg* functions.
946 * @param $key \string Message key.
947 * Varargs: normal message parameters.
948 * @return Message
949 * @since 1.17
951 function wfMessage( $key /*...*/) {
952 $params = func_get_args();
953 array_shift( $params );
954 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
955 $params = $params[0];
957 return new Message( $key, $params );
961 * This function accepts multiple message keys and returns a message instance
962 * for the first message which is non-empty. If all messages are empty then an
963 * instance of the first message key is returned.
964 * @param varargs: message keys
965 * @return Message
966 * @since 1.18
968 function wfMessageFallback( /*...*/ ) {
969 $args = func_get_args();
970 return MWFunction::callArray( 'Message::newFallbackSequence', $args );
974 * Get a message from anywhere, for the current user language.
976 * Use wfMsgForContent() instead if the message should NOT
977 * change depending on the user preferences.
979 * @param $key String: lookup key for the message, usually
980 * defined in languages/Language.php
982 * Parameters to the message, which can be used to insert variable text into
983 * it, can be passed to this function in the following formats:
984 * - One per argument, starting at the second parameter
985 * - As an array in the second parameter
986 * These are not shown in the function definition.
988 * @return String
990 function wfMsg( $key ) {
991 $args = func_get_args();
992 array_shift( $args );
993 return wfMsgReal( $key, $args );
997 * Same as above except doesn't transform the message
999 * @param $key String
1000 * @return String
1002 function wfMsgNoTrans( $key ) {
1003 $args = func_get_args();
1004 array_shift( $args );
1005 return wfMsgReal( $key, $args, true, false, false );
1009 * Get a message from anywhere, for the current global language
1010 * set with $wgLanguageCode.
1012 * Use this if the message should NOT change dependent on the
1013 * language set in the user's preferences. This is the case for
1014 * most text written into logs, as well as link targets (such as
1015 * the name of the copyright policy page). Link titles, on the
1016 * other hand, should be shown in the UI language.
1018 * Note that MediaWiki allows users to change the user interface
1019 * language in their preferences, but a single installation
1020 * typically only contains content in one language.
1022 * Be wary of this distinction: If you use wfMsg() where you should
1023 * use wfMsgForContent(), a user of the software may have to
1024 * customize potentially hundreds of messages in
1025 * order to, e.g., fix a link in every possible language.
1027 * @param $key String: lookup key for the message, usually
1028 * defined in languages/Language.php
1029 * @return String
1031 function wfMsgForContent( $key ) {
1032 global $wgForceUIMsgAsContentMsg;
1033 $args = func_get_args();
1034 array_shift( $args );
1035 $forcontent = true;
1036 if( is_array( $wgForceUIMsgAsContentMsg ) &&
1037 in_array( $key, $wgForceUIMsgAsContentMsg ) )
1039 $forcontent = false;
1041 return wfMsgReal( $key, $args, true, $forcontent );
1045 * Same as above except doesn't transform the message
1047 * @param $key String
1048 * @return String
1050 function wfMsgForContentNoTrans( $key ) {
1051 global $wgForceUIMsgAsContentMsg;
1052 $args = func_get_args();
1053 array_shift( $args );
1054 $forcontent = true;
1055 if( is_array( $wgForceUIMsgAsContentMsg ) &&
1056 in_array( $key, $wgForceUIMsgAsContentMsg ) )
1058 $forcontent = false;
1060 return wfMsgReal( $key, $args, true, $forcontent, false );
1064 * Really get a message
1066 * @param $key String: key to get.
1067 * @param $args
1068 * @param $useDB Boolean
1069 * @param $forContent Mixed: Language code, or false for user lang, true for content lang.
1070 * @param $transform Boolean: Whether or not to transform the message.
1071 * @return String: the requested message.
1073 function wfMsgReal( $key, $args, $useDB = true, $forContent = false, $transform = true ) {
1074 wfProfileIn( __METHOD__ );
1075 $message = wfMsgGetKey( $key, $useDB, $forContent, $transform );
1076 $message = wfMsgReplaceArgs( $message, $args );
1077 wfProfileOut( __METHOD__ );
1078 return $message;
1082 * Fetch a message string value, but don't replace any keys yet.
1084 * @param $key String
1085 * @param $useDB Bool
1086 * @param $langCode String: Code of the language to get the message for, or
1087 * behaves as a content language switch if it is a boolean.
1088 * @param $transform Boolean: whether to parse magic words, etc.
1089 * @return string
1091 function wfMsgGetKey( $key, $useDB = true, $langCode = false, $transform = true ) {
1092 wfRunHooks( 'NormalizeMessageKey', array( &$key, &$useDB, &$langCode, &$transform ) );
1094 $cache = MessageCache::singleton();
1095 $message = $cache->get( $key, $useDB, $langCode );
1096 if( $message === false ) {
1097 $message = '&lt;' . htmlspecialchars( $key ) . '&gt;';
1098 } elseif ( $transform ) {
1099 $message = $cache->transform( $message );
1101 return $message;
1105 * Replace message parameter keys on the given formatted output.
1107 * @param $message String
1108 * @param $args Array
1109 * @return string
1110 * @private
1112 function wfMsgReplaceArgs( $message, $args ) {
1113 # Fix windows line-endings
1114 # Some messages are split with explode("\n", $msg)
1115 $message = str_replace( "\r", '', $message );
1117 // Replace arguments
1118 if ( count( $args ) ) {
1119 if ( is_array( $args[0] ) ) {
1120 $args = array_values( $args[0] );
1122 $replacementKeys = array();
1123 foreach( $args as $n => $param ) {
1124 $replacementKeys['$' . ( $n + 1 )] = $param;
1126 $message = strtr( $message, $replacementKeys );
1129 return $message;
1133 * Return an HTML-escaped version of a message.
1134 * Parameter replacements, if any, are done *after* the HTML-escaping,
1135 * so parameters may contain HTML (eg links or form controls). Be sure
1136 * to pre-escape them if you really do want plaintext, or just wrap
1137 * the whole thing in htmlspecialchars().
1139 * @param $key String
1140 * @param string ... parameters
1141 * @return string
1143 function wfMsgHtml( $key ) {
1144 $args = func_get_args();
1145 array_shift( $args );
1146 return wfMsgReplaceArgs( htmlspecialchars( wfMsgGetKey( $key ) ), $args );
1150 * Return an HTML version of message
1151 * Parameter replacements, if any, are done *after* parsing the wiki-text message,
1152 * so parameters may contain HTML (eg links or form controls). Be sure
1153 * to pre-escape them if you really do want plaintext, or just wrap
1154 * the whole thing in htmlspecialchars().
1156 * @param $key String
1157 * @param string ... parameters
1158 * @return string
1160 function wfMsgWikiHtml( $key ) {
1161 $args = func_get_args();
1162 array_shift( $args );
1163 return wfMsgReplaceArgs(
1164 MessageCache::singleton()->parse( wfMsgGetKey( $key ), null, /* can't be set to false */ true )->getText(),
1165 $args );
1169 * Returns message in the requested format
1170 * @param $key String: key of the message
1171 * @param $options Array: processing rules. Can take the following options:
1172 * <i>parse</i>: parses wikitext to HTML
1173 * <i>parseinline</i>: parses wikitext to HTML and removes the surrounding
1174 * p's added by parser or tidy
1175 * <i>escape</i>: filters message through htmlspecialchars
1176 * <i>escapenoentities</i>: same, but allows entity references like &#160; through
1177 * <i>replaceafter</i>: parameters are substituted after parsing or escaping
1178 * <i>parsemag</i>: transform the message using magic phrases
1179 * <i>content</i>: fetch message for content language instead of interface
1180 * Also can accept a single associative argument, of the form 'language' => 'xx':
1181 * <i>language</i>: Language object or language code to fetch message for
1182 * (overriden by <i>content</i>).
1183 * Behavior for conflicting options (e.g., parse+parseinline) is undefined.
1185 * @return String
1187 function wfMsgExt( $key, $options ) {
1188 $args = func_get_args();
1189 array_shift( $args );
1190 array_shift( $args );
1191 $options = (array)$options;
1193 foreach( $options as $arrayKey => $option ) {
1194 if( !preg_match( '/^[0-9]+|language$/', $arrayKey ) ) {
1195 # An unknown index, neither numeric nor "language"
1196 wfWarn( "wfMsgExt called with incorrect parameter key $arrayKey", 1, E_USER_WARNING );
1197 } elseif( preg_match( '/^[0-9]+$/', $arrayKey ) && !in_array( $option,
1198 array( 'parse', 'parseinline', 'escape', 'escapenoentities',
1199 'replaceafter', 'parsemag', 'content' ) ) ) {
1200 # A numeric index with unknown value
1201 wfWarn( "wfMsgExt called with incorrect parameter $option", 1, E_USER_WARNING );
1205 if( in_array( 'content', $options, true ) ) {
1206 $forContent = true;
1207 $langCode = true;
1208 $langCodeObj = null;
1209 } elseif( array_key_exists( 'language', $options ) ) {
1210 $forContent = false;
1211 $langCode = wfGetLangObj( $options['language'] );
1212 $langCodeObj = $langCode;
1213 } else {
1214 $forContent = false;
1215 $langCode = false;
1216 $langCodeObj = null;
1219 $string = wfMsgGetKey( $key, /*DB*/true, $langCode, /*Transform*/false );
1221 if( !in_array( 'replaceafter', $options, true ) ) {
1222 $string = wfMsgReplaceArgs( $string, $args );
1225 $messageCache = MessageCache::singleton();
1226 if( in_array( 'parse', $options, true ) ) {
1227 $string = $messageCache->parse( $string, null, true, !$forContent, $langCodeObj )->getText();
1228 } elseif ( in_array( 'parseinline', $options, true ) ) {
1229 $string = $messageCache->parse( $string, null, true, !$forContent, $langCodeObj )->getText();
1230 $m = array();
1231 if( preg_match( '/^<p>(.*)\n?<\/p>\n?$/sU', $string, $m ) ) {
1232 $string = $m[1];
1234 } elseif ( in_array( 'parsemag', $options, true ) ) {
1235 $string = $messageCache->transform( $string,
1236 !$forContent, $langCodeObj );
1239 if ( in_array( 'escape', $options, true ) ) {
1240 $string = htmlspecialchars ( $string );
1241 } elseif ( in_array( 'escapenoentities', $options, true ) ) {
1242 $string = Sanitizer::escapeHtmlAllowEntities( $string );
1245 if( in_array( 'replaceafter', $options, true ) ) {
1246 $string = wfMsgReplaceArgs( $string, $args );
1249 return $string;
1253 * Since wfMsg() and co suck, they don't return false if the message key they
1254 * looked up didn't exist but a XHTML string, this function checks for the
1255 * nonexistance of messages by checking the MessageCache::get() result directly.
1257 * @param $key String: the message key looked up
1258 * @return Boolean True if the message *doesn't* exist.
1260 function wfEmptyMsg( $key ) {
1261 return MessageCache::singleton()->get( $key, /*useDB*/true, /*content*/false ) === false;
1265 * Throw a debugging exception. This function previously once exited the process,
1266 * but now throws an exception instead, with similar results.
1268 * @param $msg String: message shown when dieing.
1270 function wfDebugDieBacktrace( $msg = '' ) {
1271 throw new MWException( $msg );
1275 * Fetch server name for use in error reporting etc.
1276 * Use real server name if available, so we know which machine
1277 * in a server farm generated the current page.
1279 * @return string
1281 function wfHostname() {
1282 static $host;
1283 if ( is_null( $host ) ) {
1284 if ( function_exists( 'posix_uname' ) ) {
1285 // This function not present on Windows
1286 $uname = posix_uname();
1287 } else {
1288 $uname = false;
1290 if( is_array( $uname ) && isset( $uname['nodename'] ) ) {
1291 $host = $uname['nodename'];
1292 } elseif ( getenv( 'COMPUTERNAME' ) ) {
1293 # Windows computer name
1294 $host = getenv( 'COMPUTERNAME' );
1295 } else {
1296 # This may be a virtual server.
1297 $host = $_SERVER['SERVER_NAME'];
1300 return $host;
1304 * Returns a HTML comment with the elapsed time since request.
1305 * This method has no side effects.
1307 * @return string
1309 function wfReportTime() {
1310 global $wgRequestTime, $wgShowHostnames;
1312 $now = wfTime();
1313 $elapsed = $now - $wgRequestTime;
1315 return $wgShowHostnames
1316 ? sprintf( '<!-- Served by %s in %01.3f secs. -->', wfHostname(), $elapsed )
1317 : sprintf( '<!-- Served in %01.3f secs. -->', $elapsed );
1321 * Safety wrapper for debug_backtrace().
1323 * With Zend Optimizer 3.2.0 loaded, this causes segfaults under somewhat
1324 * murky circumstances, which may be triggered in part by stub objects
1325 * or other fancy talkin'.
1327 * Will return an empty array if Zend Optimizer is detected or if
1328 * debug_backtrace is disabled, otherwise the output from
1329 * debug_backtrace() (trimmed).
1331 * @return array of backtrace information
1333 function wfDebugBacktrace( $limit = 0 ) {
1334 static $disabled = null;
1336 if( extension_loaded( 'Zend Optimizer' ) ) {
1337 wfDebug( "Zend Optimizer detected; skipping debug_backtrace for safety.\n" );
1338 return array();
1341 if ( is_null( $disabled ) ) {
1342 $disabled = false;
1343 $functions = explode( ',', ini_get( 'disable_functions' ) );
1344 $functions = array_map( 'trim', $functions );
1345 $functions = array_map( 'strtolower', $functions );
1346 if ( in_array( 'debug_backtrace', $functions ) ) {
1347 wfDebug( "debug_backtrace is in disabled_functions\n" );
1348 $disabled = true;
1351 if ( $disabled ) {
1352 return array();
1355 if ( $limit && version_compare( PHP_VERSION, '5.4.0', '>=' ) ) {
1356 return array_slice( debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT, 1 ), 1 );
1357 } else {
1358 return array_slice( debug_backtrace(), 1 );
1363 * Get a debug backtrace as a string
1365 * @return string
1367 function wfBacktrace() {
1368 global $wgCommandLineMode;
1370 if ( $wgCommandLineMode ) {
1371 $msg = '';
1372 } else {
1373 $msg = "<ul>\n";
1375 $backtrace = wfDebugBacktrace();
1376 foreach( $backtrace as $call ) {
1377 if( isset( $call['file'] ) ) {
1378 $f = explode( DIRECTORY_SEPARATOR, $call['file'] );
1379 $file = $f[count( $f ) - 1];
1380 } else {
1381 $file = '-';
1383 if( isset( $call['line'] ) ) {
1384 $line = $call['line'];
1385 } else {
1386 $line = '-';
1388 if ( $wgCommandLineMode ) {
1389 $msg .= "$file line $line calls ";
1390 } else {
1391 $msg .= '<li>' . $file . ' line ' . $line . ' calls ';
1393 if( !empty( $call['class'] ) ) {
1394 $msg .= $call['class'] . $call['type'];
1396 $msg .= $call['function'] . '()';
1398 if ( $wgCommandLineMode ) {
1399 $msg .= "\n";
1400 } else {
1401 $msg .= "</li>\n";
1404 if ( $wgCommandLineMode ) {
1405 $msg .= "\n";
1406 } else {
1407 $msg .= "</ul>\n";
1410 return $msg;
1414 * Get the name of the function which called this function
1416 * @param $level Int
1417 * @return Bool|string
1419 function wfGetCaller( $level = 2 ) {
1420 $backtrace = wfDebugBacktrace( $level );
1421 if ( isset( $backtrace[$level] ) ) {
1422 return wfFormatStackFrame( $backtrace[$level] );
1423 } else {
1424 $caller = 'unknown';
1426 return $caller;
1430 * Return a string consisting of callers in the stack. Useful sometimes
1431 * for profiling specific points.
1433 * @param $limit The maximum depth of the stack frame to return, or false for
1434 * the entire stack.
1435 * @return String
1437 function wfGetAllCallers( $limit = 3 ) {
1438 $trace = array_reverse( wfDebugBacktrace() );
1439 if ( !$limit || $limit > count( $trace ) - 1 ) {
1440 $limit = count( $trace ) - 1;
1442 $trace = array_slice( $trace, -$limit - 1, $limit );
1443 return implode( '/', array_map( 'wfFormatStackFrame', $trace ) );
1447 * Return a string representation of frame
1449 * @param $frame Array
1450 * @return Bool
1452 function wfFormatStackFrame( $frame ) {
1453 return isset( $frame['class'] ) ?
1454 $frame['class'] . '::' . $frame['function'] :
1455 $frame['function'];
1459 /* Some generic result counters, pulled out of SearchEngine */
1463 * @todo document
1465 * @param $offset Int
1466 * @param $limit Int
1467 * @return String
1469 function wfShowingResults( $offset, $limit ) {
1470 global $wgLang;
1471 return wfMsgExt(
1472 'showingresults',
1473 array( 'parseinline' ),
1474 $wgLang->formatNum( $limit ),
1475 $wgLang->formatNum( $offset + 1 )
1480 * Generate (prev x| next x) (20|50|100...) type links for paging
1482 * @param $offset String
1483 * @param $limit Integer
1484 * @param $link String
1485 * @param $query String: optional URL query parameter string
1486 * @param $atend Bool: optional param for specified if this is the last page
1487 * @return String
1489 function wfViewPrevNext( $offset, $limit, $link, $query = '', $atend = false ) {
1490 global $wgLang;
1491 $fmtLimit = $wgLang->formatNum( $limit );
1492 // @todo FIXME: Why on earth this needs one message for the text and another one for tooltip?
1493 # Get prev/next link display text
1494 $prev = wfMsgExt( 'prevn', array( 'parsemag', 'escape' ), $fmtLimit );
1495 $next = wfMsgExt( 'nextn', array( 'parsemag', 'escape' ), $fmtLimit );
1496 # Get prev/next link title text
1497 $pTitle = wfMsgExt( 'prevn-title', array( 'parsemag', 'escape' ), $fmtLimit );
1498 $nTitle = wfMsgExt( 'nextn-title', array( 'parsemag', 'escape' ), $fmtLimit );
1499 # Fetch the title object
1500 if( is_object( $link ) ) {
1501 $title =& $link;
1502 } else {
1503 $title = Title::newFromText( $link );
1504 if( is_null( $title ) ) {
1505 return false;
1508 # Make 'previous' link
1509 if( 0 != $offset ) {
1510 $po = $offset - $limit;
1511 $po = max( $po, 0 );
1512 $q = "limit={$limit}&offset={$po}";
1513 if( $query != '' ) {
1514 $q .= '&' . $query;
1516 $plink = '<a href="' . $title->escapeLocalURL( $q ) . "\" title=\"{$pTitle}\" class=\"mw-prevlink\">{$prev}</a>";
1517 } else {
1518 $plink = $prev;
1520 # Make 'next' link
1521 $no = $offset + $limit;
1522 $q = "limit={$limit}&offset={$no}";
1523 if( $query != '' ) {
1524 $q .= '&' . $query;
1526 if( $atend ) {
1527 $nlink = $next;
1528 } else {
1529 $nlink = '<a href="' . $title->escapeLocalURL( $q ) . "\" title=\"{$nTitle}\" class=\"mw-nextlink\">{$next}</a>";
1531 # Make links to set number of items per page
1532 $nums = $wgLang->pipeList( array(
1533 wfNumLink( $offset, 20, $title, $query ),
1534 wfNumLink( $offset, 50, $title, $query ),
1535 wfNumLink( $offset, 100, $title, $query ),
1536 wfNumLink( $offset, 250, $title, $query ),
1537 wfNumLink( $offset, 500, $title, $query )
1538 ) );
1539 return wfMsgHtml( 'viewprevnext', $plink, $nlink, $nums );
1543 * Generate links for (20|50|100...) items-per-page links
1545 * @param $offset String
1546 * @param $limit Integer
1547 * @param $title Title
1548 * @param $query String: optional URL query parameter string
1550 function wfNumLink( $offset, $limit, $title, $query = '' ) {
1551 global $wgLang;
1552 if( $query == '' ) {
1553 $q = '';
1554 } else {
1555 $q = $query.'&';
1557 $q .= "limit={$limit}&offset={$offset}";
1558 $fmtLimit = $wgLang->formatNum( $limit );
1559 $lTitle = wfMsgExt( 'shown-title', array( 'parsemag', 'escape' ), $limit );
1560 $s = '<a href="' . $title->escapeLocalURL( $q ) . "\" title=\"{$lTitle}\" class=\"mw-numlink\">{$fmtLimit}</a>";
1561 return $s;
1565 * @todo document
1566 * @todo FIXME: We may want to blacklist some broken browsers
1568 * @param $force Bool
1569 * @return bool Whereas client accept gzip compression
1571 function wfClientAcceptsGzip( $force = false ) {
1572 static $result = null;
1573 if ( $result === null || $force ) {
1574 $result = false;
1575 if( isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) ) {
1576 # @todo FIXME: We may want to blacklist some broken browsers
1577 $m = array();
1578 if( preg_match(
1579 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
1580 $_SERVER['HTTP_ACCEPT_ENCODING'],
1581 $m )
1584 if( isset( $m[2] ) && ( $m[1] == 'q' ) && ( $m[2] == 0 ) ) {
1585 $result = false;
1586 return $result;
1588 wfDebug( " accepts gzip\n" );
1589 $result = true;
1593 return $result;
1597 * Obtain the offset and limit values from the request string;
1598 * used in special pages
1600 * @param $deflimit Int default limit if none supplied
1601 * @param $optionname String Name of a user preference to check against
1602 * @return array
1605 function wfCheckLimits( $deflimit = 50, $optionname = 'rclimit' ) {
1606 global $wgRequest;
1607 return $wgRequest->getLimitOffset( $deflimit, $optionname );
1611 * Escapes the given text so that it may be output using addWikiText()
1612 * without any linking, formatting, etc. making its way through. This
1613 * is achieved by substituting certain characters with HTML entities.
1614 * As required by the callers, <nowiki> is not used.
1616 * @param $text String: text to be escaped
1617 * @return String
1619 function wfEscapeWikiText( $text ) {
1620 $text = strtr( "\n$text", array(
1621 '"' => '&#34;', '&' => '&#38;', "'" => '&#39;', '<' => '&#60;',
1622 '=' => '&#61;', '>' => '&#62;', '[' => '&#91;', ']' => '&#93;',
1623 '{' => '&#123;', '|' => '&#124;', '}' => '&#125;',
1624 "\n#" => "\n&#35;", "\n*" => "\n&#42;",
1625 "\n:" => "\n&#58;", "\n;" => "\n&#59;",
1626 '://' => '&#58;//', 'ISBN ' => 'ISBN&#32;', 'RFC ' => 'RFC&#32;',
1627 ) );
1628 return substr( $text, 1 );
1632 * Get the current unix timetstamp with microseconds. Useful for profiling
1633 * @return Float
1635 function wfTime() {
1636 return microtime( true );
1640 * Sets dest to source and returns the original value of dest
1641 * If source is NULL, it just returns the value, it doesn't set the variable
1642 * If force is true, it will set the value even if source is NULL
1644 * @param $dest Mixed
1645 * @param $source Mixed
1646 * @param $force Bool
1647 * @return Mixed
1649 function wfSetVar( &$dest, $source, $force = false ) {
1650 $temp = $dest;
1651 if ( !is_null( $source ) || $force ) {
1652 $dest = $source;
1654 return $temp;
1658 * As for wfSetVar except setting a bit
1660 * @param $dest Int
1661 * @param $bit Int
1662 * @param $state Bool
1664 function wfSetBit( &$dest, $bit, $state = true ) {
1665 $temp = (bool)( $dest & $bit );
1666 if ( !is_null( $state ) ) {
1667 if ( $state ) {
1668 $dest |= $bit;
1669 } else {
1670 $dest &= ~$bit;
1673 return $temp;
1677 * Windows-compatible version of escapeshellarg()
1678 * Windows doesn't recognise single-quotes in the shell, but the escapeshellarg()
1679 * function puts single quotes in regardless of OS.
1681 * Also fixes the locale problems on Linux in PHP 5.2.6+ (bug backported to
1682 * earlier distro releases of PHP)
1684 * @param varargs
1685 * @return String
1687 function wfEscapeShellArg( ) {
1688 wfInitShellLocale();
1690 $args = func_get_args();
1691 $first = true;
1692 $retVal = '';
1693 foreach ( $args as $arg ) {
1694 if ( !$first ) {
1695 $retVal .= ' ';
1696 } else {
1697 $first = false;
1700 if ( wfIsWindows() ) {
1701 // Escaping for an MSVC-style command line parser and CMD.EXE
1702 // Refs:
1703 // * http://web.archive.org/web/20020708081031/http://mailman.lyra.org/pipermail/scite-interest/2002-March/000436.html
1704 // * http://technet.microsoft.com/en-us/library/cc723564.aspx
1705 // * Bug #13518
1706 // * CR r63214
1707 // Double the backslashes before any double quotes. Escape the double quotes.
1708 $tokens = preg_split( '/(\\\\*")/', $arg, -1, PREG_SPLIT_DELIM_CAPTURE );
1709 $arg = '';
1710 $iteration = 0;
1711 foreach ( $tokens as $token ) {
1712 if ( $iteration % 2 == 1 ) {
1713 // Delimiter, a double quote preceded by zero or more slashes
1714 $arg .= str_replace( '\\', '\\\\', substr( $token, 0, -1 ) ) . '\\"';
1715 } elseif ( $iteration % 4 == 2 ) {
1716 // ^ in $token will be outside quotes, need to be escaped
1717 $arg .= str_replace( '^', '^^', $token );
1718 } else { // $iteration % 4 == 0
1719 // ^ in $token will appear inside double quotes, so leave as is
1720 $arg .= $token;
1722 $iteration++;
1724 // Double the backslashes before the end of the string, because
1725 // we will soon add a quote
1726 $m = array();
1727 if ( preg_match( '/^(.*?)(\\\\+)$/', $arg, $m ) ) {
1728 $arg = $m[1] . str_replace( '\\', '\\\\', $m[2] );
1731 // Add surrounding quotes
1732 $retVal .= '"' . $arg . '"';
1733 } else {
1734 $retVal .= escapeshellarg( $arg );
1737 return $retVal;
1741 * wfMerge attempts to merge differences between three texts.
1742 * Returns true for a clean merge and false for failure or a conflict.
1744 * @param $old String
1745 * @param $mine String
1746 * @param $yours String
1747 * @param $result String
1748 * @return Bool
1750 function wfMerge( $old, $mine, $yours, &$result ) {
1751 global $wgDiff3;
1753 # This check may also protect against code injection in
1754 # case of broken installations.
1755 wfSuppressWarnings();
1756 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
1757 wfRestoreWarnings();
1759 if( !$haveDiff3 ) {
1760 wfDebug( "diff3 not found\n" );
1761 return false;
1764 # Make temporary files
1765 $td = wfTempDir();
1766 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
1767 $mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
1768 $yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
1770 fwrite( $oldtextFile, $old );
1771 fclose( $oldtextFile );
1772 fwrite( $mytextFile, $mine );
1773 fclose( $mytextFile );
1774 fwrite( $yourtextFile, $yours );
1775 fclose( $yourtextFile );
1777 # Check for a conflict
1778 $cmd = $wgDiff3 . ' -a --overlap-only ' .
1779 wfEscapeShellArg( $mytextName ) . ' ' .
1780 wfEscapeShellArg( $oldtextName ) . ' ' .
1781 wfEscapeShellArg( $yourtextName );
1782 $handle = popen( $cmd, 'r' );
1784 if( fgets( $handle, 1024 ) ) {
1785 $conflict = true;
1786 } else {
1787 $conflict = false;
1789 pclose( $handle );
1791 # Merge differences
1792 $cmd = $wgDiff3 . ' -a -e --merge ' .
1793 wfEscapeShellArg( $mytextName, $oldtextName, $yourtextName );
1794 $handle = popen( $cmd, 'r' );
1795 $result = '';
1796 do {
1797 $data = fread( $handle, 8192 );
1798 if ( strlen( $data ) == 0 ) {
1799 break;
1801 $result .= $data;
1802 } while ( true );
1803 pclose( $handle );
1804 unlink( $mytextName );
1805 unlink( $oldtextName );
1806 unlink( $yourtextName );
1808 if ( $result === '' && $old !== '' && !$conflict ) {
1809 wfDebug( "Unexpected null result from diff3. Command: $cmd\n" );
1810 $conflict = true;
1812 return !$conflict;
1816 * Returns unified plain-text diff of two texts.
1817 * Useful for machine processing of diffs.
1819 * @param $before String: the text before the changes.
1820 * @param $after String: the text after the changes.
1821 * @param $params String: command-line options for the diff command.
1822 * @return String: unified diff of $before and $after
1824 function wfDiff( $before, $after, $params = '-u' ) {
1825 if ( $before == $after ) {
1826 return '';
1829 global $wgDiff;
1830 wfSuppressWarnings();
1831 $haveDiff = $wgDiff && file_exists( $wgDiff );
1832 wfRestoreWarnings();
1834 # This check may also protect against code injection in
1835 # case of broken installations.
1836 if( !$haveDiff ) {
1837 wfDebug( "diff executable not found\n" );
1838 $diffs = new Diff( explode( "\n", $before ), explode( "\n", $after ) );
1839 $format = new UnifiedDiffFormatter();
1840 return $format->format( $diffs );
1843 # Make temporary files
1844 $td = wfTempDir();
1845 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
1846 $newtextFile = fopen( $newtextName = tempnam( $td, 'merge-your-' ), 'w' );
1848 fwrite( $oldtextFile, $before );
1849 fclose( $oldtextFile );
1850 fwrite( $newtextFile, $after );
1851 fclose( $newtextFile );
1853 // Get the diff of the two files
1854 $cmd = "$wgDiff " . $params . ' ' . wfEscapeShellArg( $oldtextName, $newtextName );
1856 $h = popen( $cmd, 'r' );
1858 $diff = '';
1860 do {
1861 $data = fread( $h, 8192 );
1862 if ( strlen( $data ) == 0 ) {
1863 break;
1865 $diff .= $data;
1866 } while ( true );
1868 // Clean up
1869 pclose( $h );
1870 unlink( $oldtextName );
1871 unlink( $newtextName );
1873 // Kill the --- and +++ lines. They're not useful.
1874 $diff_lines = explode( "\n", $diff );
1875 if ( strpos( $diff_lines[0], '---' ) === 0 ) {
1876 unset( $diff_lines[0] );
1878 if ( strpos( $diff_lines[1], '+++' ) === 0 ) {
1879 unset( $diff_lines[1] );
1882 $diff = implode( "\n", $diff_lines );
1884 return $diff;
1888 * A wrapper around the PHP function var_export().
1889 * Either print it or add it to the regular output ($wgOut).
1891 * @param $var A PHP variable to dump.
1893 function wfVarDump( $var ) {
1894 global $wgOut;
1895 $s = str_replace( "\n", "<br />\n", var_export( $var, true ) . "\n" );
1896 if ( headers_sent() || !isset( $wgOut ) || !is_object( $wgOut ) ) {
1897 print $s;
1898 } else {
1899 $wgOut->addHTML( $s );
1904 * Provide a simple HTTP error.
1906 * @param $code Int|String
1907 * @param $label String
1908 * @param $desc String
1910 function wfHttpError( $code, $label, $desc ) {
1911 global $wgOut;
1912 $wgOut->disable();
1913 header( "HTTP/1.0 $code $label" );
1914 header( "Status: $code $label" );
1915 $wgOut->sendCacheControl();
1917 header( 'Content-type: text/html; charset=utf-8' );
1918 print "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">".
1919 '<html><head><title>' .
1920 htmlspecialchars( $label ) .
1921 '</title></head><body><h1>' .
1922 htmlspecialchars( $label ) .
1923 '</h1><p>' .
1924 nl2br( htmlspecialchars( $desc ) ) .
1925 "</p></body></html>\n";
1929 * Clear away any user-level output buffers, discarding contents.
1931 * Suitable for 'starting afresh', for instance when streaming
1932 * relatively large amounts of data without buffering, or wanting to
1933 * output image files without ob_gzhandler's compression.
1935 * The optional $resetGzipEncoding parameter controls suppression of
1936 * the Content-Encoding header sent by ob_gzhandler; by default it
1937 * is left. See comments for wfClearOutputBuffers() for why it would
1938 * be used.
1940 * Note that some PHP configuration options may add output buffer
1941 * layers which cannot be removed; these are left in place.
1943 * @param $resetGzipEncoding Bool
1945 function wfResetOutputBuffers( $resetGzipEncoding = true ) {
1946 if( $resetGzipEncoding ) {
1947 // Suppress Content-Encoding and Content-Length
1948 // headers from 1.10+s wfOutputHandler
1949 global $wgDisableOutputCompression;
1950 $wgDisableOutputCompression = true;
1952 while( $status = ob_get_status() ) {
1953 if( $status['type'] == 0 /* PHP_OUTPUT_HANDLER_INTERNAL */ ) {
1954 // Probably from zlib.output_compression or other
1955 // PHP-internal setting which can't be removed.
1957 // Give up, and hope the result doesn't break
1958 // output behavior.
1959 break;
1961 if( !ob_end_clean() ) {
1962 // Could not remove output buffer handler; abort now
1963 // to avoid getting in some kind of infinite loop.
1964 break;
1966 if( $resetGzipEncoding ) {
1967 if( $status['name'] == 'ob_gzhandler' ) {
1968 // Reset the 'Content-Encoding' field set by this handler
1969 // so we can start fresh.
1970 if ( function_exists( 'header_remove' ) ) {
1971 // Available since PHP 5.3.0
1972 header_remove( 'Content-Encoding' );
1973 } else {
1974 // We need to provide a valid content-coding. See bug 28069
1975 header( 'Content-Encoding: identity' );
1977 break;
1984 * More legible than passing a 'false' parameter to wfResetOutputBuffers():
1986 * Clear away output buffers, but keep the Content-Encoding header
1987 * produced by ob_gzhandler, if any.
1989 * This should be used for HTTP 304 responses, where you need to
1990 * preserve the Content-Encoding header of the real result, but
1991 * also need to suppress the output of ob_gzhandler to keep to spec
1992 * and avoid breaking Firefox in rare cases where the headers and
1993 * body are broken over two packets.
1995 function wfClearOutputBuffers() {
1996 wfResetOutputBuffers( false );
2000 * Converts an Accept-* header into an array mapping string values to quality
2001 * factors
2003 * @param $accept String
2004 * @param $def String default
2005 * @return Array
2007 function wfAcceptToPrefs( $accept, $def = '*/*' ) {
2008 # No arg means accept anything (per HTTP spec)
2009 if( !$accept ) {
2010 return array( $def => 1.0 );
2013 $prefs = array();
2015 $parts = explode( ',', $accept );
2017 foreach( $parts as $part ) {
2018 # @todo FIXME: Doesn't deal with params like 'text/html; level=1'
2019 $values = explode( ';', trim( $part ) );
2020 $match = array();
2021 if ( count( $values ) == 1 ) {
2022 $prefs[$values[0]] = 1.0;
2023 } elseif ( preg_match( '/q\s*=\s*(\d*\.\d+)/', $values[1], $match ) ) {
2024 $prefs[$values[0]] = floatval( $match[1] );
2028 return $prefs;
2032 * Checks if a given MIME type matches any of the keys in the given
2033 * array. Basic wildcards are accepted in the array keys.
2035 * Returns the matching MIME type (or wildcard) if a match, otherwise
2036 * NULL if no match.
2038 * @param $type String
2039 * @param $avail Array
2040 * @return string
2041 * @private
2043 function mimeTypeMatch( $type, $avail ) {
2044 if( array_key_exists( $type, $avail ) ) {
2045 return $type;
2046 } else {
2047 $parts = explode( '/', $type );
2048 if( array_key_exists( $parts[0] . '/*', $avail ) ) {
2049 return $parts[0] . '/*';
2050 } elseif( array_key_exists( '*/*', $avail ) ) {
2051 return '*/*';
2052 } else {
2053 return null;
2059 * Returns the 'best' match between a client's requested internet media types
2060 * and the server's list of available types. Each list should be an associative
2061 * array of type to preference (preference is a float between 0.0 and 1.0).
2062 * Wildcards in the types are acceptable.
2064 * @param $cprefs Array: client's acceptable type list
2065 * @param $sprefs Array: server's offered types
2066 * @return string
2068 * @todo FIXME: Doesn't handle params like 'text/plain; charset=UTF-8'
2069 * XXX: generalize to negotiate other stuff
2071 function wfNegotiateType( $cprefs, $sprefs ) {
2072 $combine = array();
2074 foreach( array_keys($sprefs) as $type ) {
2075 $parts = explode( '/', $type );
2076 if( $parts[1] != '*' ) {
2077 $ckey = mimeTypeMatch( $type, $cprefs );
2078 if( $ckey ) {
2079 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
2084 foreach( array_keys( $cprefs ) as $type ) {
2085 $parts = explode( '/', $type );
2086 if( $parts[1] != '*' && !array_key_exists( $type, $sprefs ) ) {
2087 $skey = mimeTypeMatch( $type, $sprefs );
2088 if( $skey ) {
2089 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
2094 $bestq = 0;
2095 $besttype = null;
2097 foreach( array_keys( $combine ) as $type ) {
2098 if( $combine[$type] > $bestq ) {
2099 $besttype = $type;
2100 $bestq = $combine[$type];
2104 return $besttype;
2108 * Reference-counted warning suppression
2110 * @param $end Bool
2112 function wfSuppressWarnings( $end = false ) {
2113 static $suppressCount = 0;
2114 static $originalLevel = false;
2116 if ( $end ) {
2117 if ( $suppressCount ) {
2118 --$suppressCount;
2119 if ( !$suppressCount ) {
2120 error_reporting( $originalLevel );
2123 } else {
2124 if ( !$suppressCount ) {
2125 // E_DEPRECATED is undefined in PHP 5.2
2126 if( !defined( 'E_DEPRECATED' ) ){
2127 define( 'E_DEPRECATED', 8192 );
2129 $originalLevel = error_reporting( E_ALL & ~( E_WARNING | E_NOTICE | E_USER_WARNING | E_USER_NOTICE | E_DEPRECATED ) );
2131 ++$suppressCount;
2136 * Restore error level to previous value
2138 function wfRestoreWarnings() {
2139 wfSuppressWarnings( true );
2142 # Autodetect, convert and provide timestamps of various types
2145 * Unix time - the number of seconds since 1970-01-01 00:00:00 UTC
2147 define( 'TS_UNIX', 0 );
2150 * MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
2152 define( 'TS_MW', 1 );
2155 * MySQL DATETIME (YYYY-MM-DD HH:MM:SS)
2157 define( 'TS_DB', 2 );
2160 * RFC 2822 format, for E-mail and HTTP headers
2162 define( 'TS_RFC2822', 3 );
2165 * ISO 8601 format with no timezone: 1986-02-09T20:00:00Z
2167 * This is used by Special:Export
2169 define( 'TS_ISO_8601', 4 );
2172 * An Exif timestamp (YYYY:MM:DD HH:MM:SS)
2174 * @see http://exif.org/Exif2-2.PDF The Exif 2.2 spec, see page 28 for the
2175 * DateTime tag and page 36 for the DateTimeOriginal and
2176 * DateTimeDigitized tags.
2178 define( 'TS_EXIF', 5 );
2181 * Oracle format time.
2183 define( 'TS_ORACLE', 6 );
2186 * Postgres format time.
2188 define( 'TS_POSTGRES', 7 );
2191 * DB2 format time
2193 define( 'TS_DB2', 8 );
2196 * ISO 8601 basic format with no timezone: 19860209T200000Z. This is used by ResourceLoader
2198 define( 'TS_ISO_8601_BASIC', 9 );
2201 * Get a timestamp string in one of various formats
2203 * @param $outputtype Mixed: A timestamp in one of the supported formats, the
2204 * function will autodetect which format is supplied and act
2205 * accordingly.
2206 * @param $ts Mixed: the timestamp to convert or 0 for the current timestamp
2207 * @return Mixed: String / false The same date in the format specified in $outputtype or false
2209 function wfTimestamp( $outputtype = TS_UNIX, $ts = 0 ) {
2210 $uts = 0;
2211 $da = array();
2212 $strtime = '';
2214 if ( !$ts ) { // We want to catch 0, '', null... but not date strings starting with a letter.
2215 $uts = time();
2216 $strtime = "@$uts";
2217 } elseif ( preg_match( '/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)$/D', $ts, $da ) ) {
2218 # TS_DB
2219 } elseif ( preg_match( '/^(\d{4}):(\d\d):(\d\d) (\d\d):(\d\d):(\d\d)$/D', $ts, $da ) ) {
2220 # TS_EXIF
2221 } elseif ( preg_match( '/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/D', $ts, $da ) ) {
2222 # TS_MW
2223 } elseif ( preg_match( '/^-?\d{1,13}$/D', $ts ) ) {
2224 # TS_UNIX
2225 $uts = $ts;
2226 $strtime = "@$ts"; // Undocumented?
2227 } elseif ( preg_match( '/^\d{2}-\d{2}-\d{4} \d{2}:\d{2}:\d{2}.\d{6}$/', $ts ) ) {
2228 # TS_ORACLE // session altered to DD-MM-YYYY HH24:MI:SS.FF6
2229 $strtime = preg_replace( '/(\d\d)\.(\d\d)\.(\d\d)(\.(\d+))?/', "$1:$2:$3",
2230 str_replace( '+00:00', 'UTC', $ts ) );
2231 } elseif ( preg_match( '/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(?:\.*\d*)?Z$/', $ts, $da ) ) {
2232 # TS_ISO_8601
2233 } elseif ( preg_match( '/^(\d{4})(\d{2})(\d{2})T(\d{2})(\d{2})(\d{2})(?:\.*\d*)?Z$/', $ts, $da ) ) {
2234 #TS_ISO_8601_BASIC
2235 } elseif ( preg_match( '/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)\.*\d*[\+\- ](\d\d)$/', $ts, $da ) ) {
2236 # TS_POSTGRES
2237 } elseif ( preg_match( '/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)\.*\d* GMT$/', $ts, $da ) ) {
2238 # TS_POSTGRES
2239 } elseif (preg_match('/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)\.\d\d\d$/',$ts,$da)) {
2240 # TS_DB2
2241 } elseif ( preg_match( '/^[ \t\r\n]*([A-Z][a-z]{2},[ \t\r\n]*)?' . # Day of week
2242 '\d\d?[ \t\r\n]*[A-Z][a-z]{2}[ \t\r\n]*\d{2}(?:\d{2})?' . # dd Mon yyyy
2243 '[ \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
2244 # TS_RFC2822, accepting a trailing comment. See http://www.squid-cache.org/mail-archive/squid-users/200307/0122.html / r77171
2245 # The regex is a superset of rfc2822 for readability
2246 $strtime = strtok( $ts, ';' );
2247 } 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 ) ) {
2248 # TS_RFC850
2249 $strtime = $ts;
2250 } 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 ) ) {
2251 # asctime
2252 $strtime = $ts;
2253 } else {
2254 # Bogus value...
2255 wfDebug("wfTimestamp() fed bogus time value: TYPE=$outputtype; VALUE=$ts\n");
2257 return false;
2260 static $formats = array(
2261 TS_UNIX => 'U',
2262 TS_MW => 'YmdHis',
2263 TS_DB => 'Y-m-d H:i:s',
2264 TS_ISO_8601 => 'Y-m-d\TH:i:s\Z',
2265 TS_ISO_8601_BASIC => 'Ymd\THis\Z',
2266 TS_EXIF => 'Y:m:d H:i:s', // This shouldn't ever be used, but is included for completeness
2267 TS_RFC2822 => 'D, d M Y H:i:s',
2268 TS_ORACLE => 'd-m-Y H:i:s.000000', // Was 'd-M-y h.i.s A' . ' +00:00' before r51500
2269 TS_POSTGRES => 'Y-m-d H:i:s',
2270 TS_DB2 => 'Y-m-d H:i:s',
2273 if ( !isset( $formats[$outputtype] ) ) {
2274 throw new MWException( 'wfTimestamp() called with illegal output type.' );
2277 if ( function_exists( "date_create" ) ) {
2278 if ( count( $da ) ) {
2279 $ds = sprintf("%04d-%02d-%02dT%02d:%02d:%02d.00+00:00",
2280 (int)$da[1], (int)$da[2], (int)$da[3],
2281 (int)$da[4], (int)$da[5], (int)$da[6]);
2283 $d = date_create( $ds, new DateTimeZone( 'GMT' ) );
2284 } elseif ( $strtime ) {
2285 $d = date_create( $strtime, new DateTimeZone( 'GMT' ) );
2286 } else {
2287 return false;
2290 if ( !$d ) {
2291 wfDebug("wfTimestamp() fed bogus time value: $outputtype; $ts\n");
2292 return false;
2295 $output = $d->format( $formats[$outputtype] );
2296 } else {
2297 if ( count( $da ) ) {
2298 // Warning! gmmktime() acts oddly if the month or day is set to 0
2299 // We may want to handle that explicitly at some point
2300 $uts = gmmktime( (int)$da[4], (int)$da[5], (int)$da[6],
2301 (int)$da[2], (int)$da[3], (int)$da[1] );
2302 } elseif ( $strtime ) {
2303 $uts = strtotime( $strtime );
2306 if ( $uts === false ) {
2307 wfDebug("wfTimestamp() can't parse the timestamp (non 32-bit time? Update php): $outputtype; $ts\n");
2308 return false;
2311 if ( TS_UNIX == $outputtype ) {
2312 return $uts;
2314 $output = gmdate( $formats[$outputtype], $uts );
2317 if ( ( $outputtype == TS_RFC2822 ) || ( $outputtype == TS_POSTGRES ) ) {
2318 $output .= ' GMT';
2321 return $output;
2325 * Return a formatted timestamp, or null if input is null.
2326 * For dealing with nullable timestamp columns in the database.
2328 * @param $outputtype Integer
2329 * @param $ts String
2330 * @return String
2332 function wfTimestampOrNull( $outputtype = TS_UNIX, $ts = null ) {
2333 if( is_null( $ts ) ) {
2334 return null;
2335 } else {
2336 return wfTimestamp( $outputtype, $ts );
2341 * Convenience function; returns MediaWiki timestamp for the present time.
2343 * @return string
2345 function wfTimestampNow() {
2346 # return NOW
2347 return wfTimestamp( TS_MW, time() );
2351 * Check if the operating system is Windows
2353 * @return Bool: true if it's Windows, False otherwise.
2355 function wfIsWindows() {
2356 static $isWindows = null;
2357 if ( $isWindows === null ) {
2358 $isWindows = substr( php_uname(), 0, 7 ) == 'Windows';
2360 return $isWindows;
2364 * Check if we are running under HipHop
2366 * @return Bool
2368 function wfIsHipHop() {
2369 return function_exists( 'hphp_thread_set_warmup_enabled' );
2373 * Swap two variables
2375 * @param $x Mixed
2376 * @param $y Mixed
2378 function swap( &$x, &$y ) {
2379 $z = $x;
2380 $x = $y;
2381 $y = $z;
2385 * Tries to get the system directory for temporary files. The TMPDIR, TMP, and
2386 * TEMP environment variables are then checked in sequence, and if none are set
2387 * try sys_get_temp_dir() for PHP >= 5.2.1. All else fails, return /tmp for Unix
2388 * or C:\Windows\Temp for Windows and hope for the best.
2389 * It is common to call it with tempnam().
2391 * NOTE: When possible, use instead the tmpfile() function to create
2392 * temporary files to avoid race conditions on file creation, etc.
2394 * @return String
2396 function wfTempDir() {
2397 foreach( array( 'TMPDIR', 'TMP', 'TEMP' ) as $var ) {
2398 $tmp = getenv( $var );
2399 if( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
2400 return $tmp;
2403 if( function_exists( 'sys_get_temp_dir' ) ) {
2404 return sys_get_temp_dir();
2406 # Usual defaults
2407 return wfIsWindows() ? 'C:\Windows\Temp' : '/tmp';
2411 * Make directory, and make all parent directories if they don't exist
2413 * @param $dir String: full path to directory to create
2414 * @param $mode Integer: chmod value to use, default is $wgDirectoryMode
2415 * @param $caller String: optional caller param for debugging.
2416 * @return bool
2418 function wfMkdirParents( $dir, $mode = null, $caller = null ) {
2419 global $wgDirectoryMode;
2421 if ( !is_null( $caller ) ) {
2422 wfDebug( "$caller: called wfMkdirParents($dir)" );
2425 if( strval( $dir ) === '' || file_exists( $dir ) ) {
2426 return true;
2429 $dir = str_replace( array( '\\', '/' ), DIRECTORY_SEPARATOR, $dir );
2431 if ( is_null( $mode ) ) {
2432 $mode = $wgDirectoryMode;
2435 // Turn off the normal warning, we're doing our own below
2436 wfSuppressWarnings();
2437 $ok = mkdir( $dir, $mode, true ); // PHP5 <3
2438 wfRestoreWarnings();
2440 if( !$ok ) {
2441 // PHP doesn't report the path in its warning message, so add our own to aid in diagnosis.
2442 trigger_error( __FUNCTION__ . ": failed to mkdir \"$dir\" mode $mode", E_USER_WARNING );
2444 return $ok;
2448 * Increment a statistics counter
2450 * @param $key String
2451 * @param $count Int
2453 function wfIncrStats( $key, $count = 1 ) {
2454 global $wgStatsMethod;
2456 $count = intval( $count );
2458 if( $wgStatsMethod == 'udp' ) {
2459 global $wgUDPProfilerHost, $wgUDPProfilerPort, $wgDBname, $wgAggregateStatsID;
2460 static $socket;
2462 $id = $wgAggregateStatsID !== false ? $wgAggregateStatsID : $wgDBname;
2464 if ( !$socket ) {
2465 $socket = socket_create( AF_INET, SOCK_DGRAM, SOL_UDP );
2466 $statline = "stats/{$id} - {$count} 1 1 1 1 -total\n";
2467 socket_sendto(
2468 $socket,
2469 $statline,
2470 strlen( $statline ),
2472 $wgUDPProfilerHost,
2473 $wgUDPProfilerPort
2476 $statline = "stats/{$id} - {$count} 1 1 1 1 {$key}\n";
2477 wfSuppressWarnings();
2478 socket_sendto(
2479 $socket,
2480 $statline,
2481 strlen( $statline ),
2483 $wgUDPProfilerHost,
2484 $wgUDPProfilerPort
2486 wfRestoreWarnings();
2487 } elseif( $wgStatsMethod == 'cache' ) {
2488 global $wgMemc;
2489 $key = wfMemcKey( 'stats', $key );
2490 if ( is_null( $wgMemc->incr( $key, $count ) ) ) {
2491 $wgMemc->add( $key, $count );
2493 } else {
2494 // Disabled
2499 * @param $nr Mixed: the number to format
2500 * @param $acc Integer: the number of digits after the decimal point, default 2
2501 * @param $round Boolean: whether or not to round the value, default true
2502 * @return float
2504 function wfPercent( $nr, $acc = 2, $round = true ) {
2505 $ret = sprintf( "%.${acc}f", $nr );
2506 return $round ? round( $ret, $acc ) . '%' : "$ret%";
2510 * Find out whether or not a mixed variable exists in a string
2512 * @param $needle String
2513 * @param $str String
2514 * @param $insensitive Boolean
2515 * @return Boolean
2517 function in_string( $needle, $str, $insensitive = false ) {
2518 $func = 'strpos';
2519 if( $insensitive ) $func = 'stripos';
2521 return $func( $str, $needle ) !== false;
2525 * Make a list item, used by various special pages
2527 * @param $page String Page link
2528 * @param $details String Text between brackets
2529 * @param $oppositedm Boolean Add the direction mark opposite to your
2530 * language, to display text properly
2531 * @return String
2533 function wfSpecialList( $page, $details, $oppositedm = true ) {
2534 global $wgLang;
2535 $dirmark = ( $oppositedm ? $wgLang->getDirMark( true ) : '' ) .
2536 $wgLang->getDirMark();
2537 $details = $details ? $dirmark . " ($details)" : '';
2538 return $page . $details;
2542 * Safety wrapper around ini_get() for boolean settings.
2543 * The values returned from ini_get() are pre-normalized for settings
2544 * set via php.ini or php_flag/php_admin_flag... but *not*
2545 * for those set via php_value/php_admin_value.
2547 * It's fairly common for people to use php_value instead of php_flag,
2548 * which can leave you with an 'off' setting giving a false positive
2549 * for code that just takes the ini_get() return value as a boolean.
2551 * To make things extra interesting, setting via php_value accepts
2552 * "true" and "yes" as true, but php.ini and php_flag consider them false. :)
2553 * Unrecognized values go false... again opposite PHP's own coercion
2554 * from string to bool.
2556 * Luckily, 'properly' set settings will always come back as '0' or '1',
2557 * so we only have to worry about them and the 'improper' settings.
2559 * I frickin' hate PHP... :P
2561 * @param $setting String
2562 * @return Bool
2564 function wfIniGetBool( $setting ) {
2565 $val = ini_get( $setting );
2566 // 'on' and 'true' can't have whitespace around them, but '1' can.
2567 return strtolower( $val ) == 'on'
2568 || strtolower( $val ) == 'true'
2569 || strtolower( $val ) == 'yes'
2570 || preg_match( "/^\s*[+-]?0*[1-9]/", $val ); // approx C atoi() function
2574 * Wrapper function for PHP's dl(). This doesn't work in most situations from
2575 * PHP 5.3 onward, and is usually disabled in shared environments anyway.
2577 * @param $extension String A PHP extension. The file suffix (.so or .dll)
2578 * should be omitted
2579 * @param $fileName String Name of the library, if not $extension.suffix
2580 * @return Bool - Whether or not the extension is loaded
2582 function wfDl( $extension, $fileName = null ) {
2583 if( extension_loaded( $extension ) ) {
2584 return true;
2587 $canDl = false;
2588 $sapi = php_sapi_name();
2589 if( version_compare( PHP_VERSION, '5.3.0', '<' ) ||
2590 $sapi == 'cli' || $sapi == 'cgi' || $sapi == 'embed' )
2592 $canDl = ( function_exists( 'dl' ) && is_callable( 'dl' )
2593 && wfIniGetBool( 'enable_dl' ) && !wfIniGetBool( 'safe_mode' ) );
2596 if( $canDl ) {
2597 $fileName = $fileName ? $fileName : $extension;
2598 if( wfIsWindows() ) {
2599 $fileName = 'php_' . $fileName;
2601 wfSuppressWarnings();
2602 dl( $fileName . '.' . PHP_SHLIB_SUFFIX );
2603 wfRestoreWarnings();
2605 return extension_loaded( $extension );
2609 * Execute a shell command, with time and memory limits mirrored from the PHP
2610 * configuration if supported.
2611 * @param $cmd String Command line, properly escaped for shell.
2612 * @param &$retval optional, will receive the program's exit code.
2613 * (non-zero is usually failure)
2614 * @param $environ Array optional environment variables which should be
2615 * added to the executed command environment.
2616 * @return collected stdout as a string (trailing newlines stripped)
2618 function wfShellExec( $cmd, &$retval = null, $environ = array() ) {
2619 global $IP, $wgMaxShellMemory, $wgMaxShellFileSize, $wgMaxShellTime;
2621 static $disabled;
2622 if ( is_null( $disabled ) ) {
2623 $disabled = false;
2624 if( wfIniGetBool( 'safe_mode' ) ) {
2625 wfDebug( "wfShellExec can't run in safe_mode, PHP's exec functions are too broken.\n" );
2626 $disabled = 'safemode';
2627 } else {
2628 $functions = explode( ',', ini_get( 'disable_functions' ) );
2629 $functions = array_map( 'trim', $functions );
2630 $functions = array_map( 'strtolower', $functions );
2631 if ( in_array( 'passthru', $functions ) ) {
2632 wfDebug( "passthru is in disabled_functions\n" );
2633 $disabled = 'passthru';
2637 if ( $disabled ) {
2638 $retval = 1;
2639 return $disabled == 'safemode' ?
2640 'Unable to run external programs in safe mode.' :
2641 'Unable to run external programs, passthru() is disabled.';
2644 wfInitShellLocale();
2646 $envcmd = '';
2647 foreach( $environ as $k => $v ) {
2648 if ( wfIsWindows() ) {
2649 /* Surrounding a set in quotes (method used by wfEscapeShellArg) makes the quotes themselves
2650 * appear in the environment variable, so we must use carat escaping as documented in
2651 * http://technet.microsoft.com/en-us/library/cc723564.aspx
2652 * Note however that the quote isn't listed there, but is needed, and the parentheses
2653 * are listed there but doesn't appear to need it.
2655 $envcmd .= "set $k=" . preg_replace( '/([&|()<>^"])/', '^\\1', $v ) . '&& ';
2656 } else {
2657 /* Assume this is a POSIX shell, thus required to accept variable assignments before the command
2658 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_09_01
2660 $envcmd .= "$k=" . escapeshellarg( $v ) . ' ';
2663 $cmd = $envcmd . $cmd;
2665 if ( wfIsWindows() ) {
2666 if ( version_compare( PHP_VERSION, '5.3.0', '<' ) && /* Fixed in 5.3.0 :) */
2667 ( version_compare( PHP_VERSION, '5.2.1', '>=' ) || php_uname( 's' ) == 'Windows NT' ) )
2669 # Hack to work around PHP's flawed invocation of cmd.exe
2670 # http://news.php.net/php.internals/21796
2671 # Windows 9x doesn't accept any kind of quotes
2672 $cmd = '"' . $cmd . '"';
2674 } elseif ( php_uname( 's' ) == 'Linux' ) {
2675 $time = intval( $wgMaxShellTime );
2676 $mem = intval( $wgMaxShellMemory );
2677 $filesize = intval( $wgMaxShellFileSize );
2679 if ( $time > 0 && $mem > 0 ) {
2680 $script = "$IP/bin/ulimit4.sh";
2681 if ( is_executable( $script ) ) {
2682 $cmd = '/bin/bash ' . escapeshellarg( $script ) . " $time $mem $filesize " . escapeshellarg( $cmd );
2686 wfDebug( "wfShellExec: $cmd\n" );
2688 $retval = 1; // error by default?
2689 ob_start();
2690 passthru( $cmd, $retval );
2691 $output = ob_get_contents();
2692 ob_end_clean();
2694 if ( $retval == 127 ) {
2695 wfDebugLog( 'exec', "Possibly missing executable file: $cmd\n" );
2697 return $output;
2701 * Workaround for http://bugs.php.net/bug.php?id=45132
2702 * escapeshellarg() destroys non-ASCII characters if LANG is not a UTF-8 locale
2704 function wfInitShellLocale() {
2705 static $done = false;
2706 if ( $done ) {
2707 return;
2709 $done = true;
2710 global $wgShellLocale;
2711 if ( !wfIniGetBool( 'safe_mode' ) ) {
2712 putenv( "LC_CTYPE=$wgShellLocale" );
2713 setlocale( LC_CTYPE, $wgShellLocale );
2718 * This function works like "use VERSION" in Perl, the program will die with a
2719 * backtrace if the current version of PHP is less than the version provided
2721 * This is useful for extensions which due to their nature are not kept in sync
2722 * with releases, and might depend on other versions of PHP than the main code
2724 * Note: PHP might die due to parsing errors in some cases before it ever
2725 * manages to call this function, such is life
2727 * @see perldoc -f use
2729 * @param $req_ver Mixed: the version to check, can be a string, an integer, or
2730 * a float
2732 function wfUsePHP( $req_ver ) {
2733 $php_ver = PHP_VERSION;
2735 if ( version_compare( $php_ver, (string)$req_ver, '<' ) ) {
2736 throw new MWException( "PHP $req_ver required--this is only $php_ver" );
2741 * This function works like "use VERSION" in Perl except it checks the version
2742 * of MediaWiki, the program will die with a backtrace if the current version
2743 * of MediaWiki is less than the version provided.
2745 * This is useful for extensions which due to their nature are not kept in sync
2746 * with releases
2748 * @see perldoc -f use
2750 * @param $req_ver Mixed: the version to check, can be a string, an integer, or
2751 * a float
2753 function wfUseMW( $req_ver ) {
2754 global $wgVersion;
2756 if ( version_compare( $wgVersion, (string)$req_ver, '<' ) ) {
2757 throw new MWException( "MediaWiki $req_ver required--this is only $wgVersion" );
2762 * Return the final portion of a pathname.
2763 * Reimplemented because PHP5's basename() is buggy with multibyte text.
2764 * http://bugs.php.net/bug.php?id=33898
2766 * PHP's basename() only considers '\' a pathchar on Windows and Netware.
2767 * We'll consider it so always, as we don't want \s in our Unix paths either.
2769 * @param $path String
2770 * @param $suffix String: to remove if present
2771 * @return String
2773 function wfBaseName( $path, $suffix = '' ) {
2774 $encSuffix = ( $suffix == '' )
2775 ? ''
2776 : ( '(?:' . preg_quote( $suffix, '#' ) . ')?' );
2777 $matches = array();
2778 if( preg_match( "#([^/\\\\]*?){$encSuffix}[/\\\\]*$#", $path, $matches ) ) {
2779 return $matches[1];
2780 } else {
2781 return '';
2786 * Generate a relative path name to the given file.
2787 * May explode on non-matching case-insensitive paths,
2788 * funky symlinks, etc.
2790 * @param $path String: absolute destination path including target filename
2791 * @param $from String: Absolute source path, directory only
2792 * @return String
2794 function wfRelativePath( $path, $from ) {
2795 // Normalize mixed input on Windows...
2796 $path = str_replace( '/', DIRECTORY_SEPARATOR, $path );
2797 $from = str_replace( '/', DIRECTORY_SEPARATOR, $from );
2799 // Trim trailing slashes -- fix for drive root
2800 $path = rtrim( $path, DIRECTORY_SEPARATOR );
2801 $from = rtrim( $from, DIRECTORY_SEPARATOR );
2803 $pieces = explode( DIRECTORY_SEPARATOR, dirname( $path ) );
2804 $against = explode( DIRECTORY_SEPARATOR, $from );
2806 if( $pieces[0] !== $against[0] ) {
2807 // Non-matching Windows drive letters?
2808 // Return a full path.
2809 return $path;
2812 // Trim off common prefix
2813 while( count( $pieces ) && count( $against )
2814 && $pieces[0] == $against[0] ) {
2815 array_shift( $pieces );
2816 array_shift( $against );
2819 // relative dots to bump us to the parent
2820 while( count( $against ) ) {
2821 array_unshift( $pieces, '..' );
2822 array_shift( $against );
2825 array_push( $pieces, wfBaseName( $path ) );
2827 return implode( DIRECTORY_SEPARATOR, $pieces );
2831 * Do any deferred updates and clear the list
2833 * @param $commit String: set to 'commit' to commit after every update to
2834 * prevent lock contention
2836 function wfDoUpdates( $commit = '' ) {
2837 global $wgDeferredUpdateList;
2839 wfProfileIn( __METHOD__ );
2841 // No need to get master connections in case of empty updates array
2842 if ( !count( $wgDeferredUpdateList ) ) {
2843 wfProfileOut( __METHOD__ );
2844 return;
2847 $doCommit = $commit == 'commit';
2848 if ( $doCommit ) {
2849 $dbw = wfGetDB( DB_MASTER );
2852 foreach ( $wgDeferredUpdateList as $update ) {
2853 $update->doUpdate();
2855 if ( $doCommit && $dbw->trxLevel() ) {
2856 $dbw->commit();
2860 $wgDeferredUpdateList = array();
2861 wfProfileOut( __METHOD__ );
2865 * Convert an arbitrarily-long digit string from one numeric base
2866 * to another, optionally zero-padding to a minimum column width.
2868 * Supports base 2 through 36; digit values 10-36 are represented
2869 * as lowercase letters a-z. Input is case-insensitive.
2871 * @param $input String: of digits
2872 * @param $sourceBase Integer: 2-36
2873 * @param $destBase Integer: 2-36
2874 * @param $pad Integer: 1 or greater
2875 * @param $lowercase Boolean
2876 * @return String or false on invalid input
2878 function wfBaseConvert( $input, $sourceBase, $destBase, $pad = 1, $lowercase = true ) {
2879 $input = strval( $input );
2880 if( $sourceBase < 2 ||
2881 $sourceBase > 36 ||
2882 $destBase < 2 ||
2883 $destBase > 36 ||
2884 $pad < 1 ||
2885 $sourceBase != intval( $sourceBase ) ||
2886 $destBase != intval( $destBase ) ||
2887 $pad != intval( $pad ) ||
2888 !is_string( $input ) ||
2889 $input == '' ) {
2890 return false;
2892 $digitChars = ( $lowercase ) ? '0123456789abcdefghijklmnopqrstuvwxyz' : '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
2893 $inDigits = array();
2894 $outChars = '';
2896 // Decode and validate input string
2897 $input = strtolower( $input );
2898 for( $i = 0; $i < strlen( $input ); $i++ ) {
2899 $n = strpos( $digitChars, $input[$i] );
2900 if( $n === false || $n > $sourceBase ) {
2901 return false;
2903 $inDigits[] = $n;
2906 // Iterate over the input, modulo-ing out an output digit
2907 // at a time until input is gone.
2908 while( count( $inDigits ) ) {
2909 $work = 0;
2910 $workDigits = array();
2912 // Long division...
2913 foreach( $inDigits as $digit ) {
2914 $work *= $sourceBase;
2915 $work += $digit;
2917 if( $work < $destBase ) {
2918 // Gonna need to pull another digit.
2919 if( count( $workDigits ) ) {
2920 // Avoid zero-padding; this lets us find
2921 // the end of the input very easily when
2922 // length drops to zero.
2923 $workDigits[] = 0;
2925 } else {
2926 // Finally! Actual division!
2927 $workDigits[] = intval( $work / $destBase );
2929 // Isn't it annoying that most programming languages
2930 // don't have a single divide-and-remainder operator,
2931 // even though the CPU implements it that way?
2932 $work = $work % $destBase;
2936 // All that division leaves us with a remainder,
2937 // which is conveniently our next output digit.
2938 $outChars .= $digitChars[$work];
2940 // And we continue!
2941 $inDigits = $workDigits;
2944 while( strlen( $outChars ) < $pad ) {
2945 $outChars .= '0';
2948 return strrev( $outChars );
2952 * Create an object with a given name and an array of construct parameters
2954 * @param $name String
2955 * @param $p Array: parameters
2956 * @deprecated since 1.18, warnings in 1.18, removal in 1.20
2958 function wfCreateObject( $name, $p ) {
2959 wfDeprecated( __FUNCTION__ );
2960 return MWFunction::newObj( $name, $p );
2963 function wfHttpOnlySafe() {
2964 global $wgHttpOnlyBlacklist;
2966 if( isset( $_SERVER['HTTP_USER_AGENT'] ) ) {
2967 foreach( $wgHttpOnlyBlacklist as $regex ) {
2968 if( preg_match( $regex, $_SERVER['HTTP_USER_AGENT'] ) ) {
2969 return false;
2974 return true;
2978 * Initialise php session
2980 * @param $sessionId Bool
2982 function wfSetupSession( $sessionId = false ) {
2983 global $wgSessionsInMemcached, $wgCookiePath, $wgCookieDomain,
2984 $wgCookieSecure, $wgCookieHttpOnly, $wgSessionHandler;
2985 if( $wgSessionsInMemcached ) {
2986 if ( !defined( 'MW_COMPILED' ) ) {
2987 global $IP;
2988 require_once( "$IP/includes/cache/MemcachedSessions.php" );
2990 session_set_save_handler( 'memsess_open', 'memsess_close', 'memsess_read',
2991 'memsess_write', 'memsess_destroy', 'memsess_gc' );
2993 // It's necessary to register a shutdown function to call session_write_close(),
2994 // because by the time the request shutdown function for the session module is
2995 // called, $wgMemc has already been destroyed. Shutdown functions registered
2996 // this way are called before object destruction.
2997 register_shutdown_function( 'memsess_write_close' );
2998 } elseif( $wgSessionHandler && $wgSessionHandler != ini_get( 'session.save_handler' ) ) {
2999 # Only set this if $wgSessionHandler isn't null and session.save_handler
3000 # hasn't already been set to the desired value (that causes errors)
3001 ini_set( 'session.save_handler', $wgSessionHandler );
3003 $httpOnlySafe = wfHttpOnlySafe() && $wgCookieHttpOnly;
3004 wfDebugLog( 'cookie',
3005 'session_set_cookie_params: "' . implode( '", "',
3006 array(
3008 $wgCookiePath,
3009 $wgCookieDomain,
3010 $wgCookieSecure,
3011 $httpOnlySafe ) ) . '"' );
3012 session_set_cookie_params( 0, $wgCookiePath, $wgCookieDomain, $wgCookieSecure, $httpOnlySafe );
3013 session_cache_limiter( 'private, must-revalidate' );
3014 if ( $sessionId ) {
3015 session_id( $sessionId );
3017 wfSuppressWarnings();
3018 session_start();
3019 wfRestoreWarnings();
3023 * Get an object from the precompiled serialized directory
3025 * @param $name String
3026 * @return Mixed: the variable on success, false on failure
3028 function wfGetPrecompiledData( $name ) {
3029 global $IP;
3031 $file = "$IP/serialized/$name";
3032 if ( file_exists( $file ) ) {
3033 $blob = file_get_contents( $file );
3034 if ( $blob ) {
3035 return unserialize( $blob );
3038 return false;
3042 * Get a cache key
3044 * @param varargs
3045 * @return String
3047 function wfMemcKey( /*... */ ) {
3048 $args = func_get_args();
3049 $key = wfWikiID() . ':' . implode( ':', $args );
3050 $key = str_replace( ' ', '_', $key );
3051 return $key;
3055 * Get a cache key for a foreign DB
3057 * @param $db String
3058 * @param $prefix String
3059 * @param varargs String
3060 * @return String
3062 function wfForeignMemcKey( $db, $prefix /*, ... */ ) {
3063 $args = array_slice( func_get_args(), 2 );
3064 if ( $prefix ) {
3065 $key = "$db-$prefix:" . implode( ':', $args );
3066 } else {
3067 $key = $db . ':' . implode( ':', $args );
3069 return $key;
3073 * Get an ASCII string identifying this wiki
3074 * This is used as a prefix in memcached keys
3076 * @return String
3078 function wfWikiID() {
3079 global $wgDBprefix, $wgDBname;
3080 if ( $wgDBprefix ) {
3081 return "$wgDBname-$wgDBprefix";
3082 } else {
3083 return $wgDBname;
3088 * Split a wiki ID into DB name and table prefix
3090 * @param $wiki String
3091 * @param $bits String
3093 function wfSplitWikiID( $wiki ) {
3094 $bits = explode( '-', $wiki, 2 );
3095 if ( count( $bits ) < 2 ) {
3096 $bits[] = '';
3098 return $bits;
3102 * Get a Database object.
3104 * @param $db Integer: index of the connection to get. May be DB_MASTER for the
3105 * master (for write queries), DB_SLAVE for potentially lagged read
3106 * queries, or an integer >= 0 for a particular server.
3108 * @param $groups Mixed: query groups. An array of group names that this query
3109 * belongs to. May contain a single string if the query is only
3110 * in one group.
3112 * @param $wiki String: the wiki ID, or false for the current wiki
3114 * Note: multiple calls to wfGetDB(DB_SLAVE) during the course of one request
3115 * will always return the same object, unless the underlying connection or load
3116 * balancer is manually destroyed.
3118 * Note 2: use $this->getDB() in maintenance scripts that may be invoked by
3119 * updater to ensure that a proper database is being updated.
3121 * @return DatabaseBase
3123 function &wfGetDB( $db, $groups = array(), $wiki = false ) {
3124 return wfGetLB( $wiki )->getConnection( $db, $groups, $wiki );
3128 * Get a load balancer object.
3130 * @param $wiki String: wiki ID, or false for the current wiki
3131 * @return LoadBalancer
3133 function wfGetLB( $wiki = false ) {
3134 return wfGetLBFactory()->getMainLB( $wiki );
3138 * Get the load balancer factory object
3140 * @return LBFactory
3142 function &wfGetLBFactory() {
3143 return LBFactory::singleton();
3147 * Find a file.
3148 * Shortcut for RepoGroup::singleton()->findFile()
3150 * @param $title String or Title object
3151 * @param $options Associative array of options:
3152 * time: requested time for an archived image, or false for the
3153 * current version. An image object will be returned which was
3154 * created at the specified time.
3156 * ignoreRedirect: If true, do not follow file redirects
3158 * private: If true, return restricted (deleted) files if the current
3159 * user is allowed to view them. Otherwise, such files will not
3160 * be found.
3162 * bypassCache: If true, do not use the process-local cache of File objects
3164 * @return File, or false if the file does not exist
3166 function wfFindFile( $title, $options = array() ) {
3167 return RepoGroup::singleton()->findFile( $title, $options );
3171 * Get an object referring to a locally registered file.
3172 * Returns a valid placeholder object if the file does not exist.
3174 * @param $title Title or String
3175 * @return File, or null if passed an invalid Title
3177 function wfLocalFile( $title ) {
3178 return RepoGroup::singleton()->getLocalRepo()->newFile( $title );
3182 * Should low-performance queries be disabled?
3184 * @return Boolean
3185 * @codeCoverageIgnore
3187 function wfQueriesMustScale() {
3188 global $wgMiserMode;
3189 return $wgMiserMode
3190 || ( SiteStats::pages() > 100000
3191 && SiteStats::edits() > 1000000
3192 && SiteStats::users() > 10000 );
3196 * Get the path to a specified script file, respecting file
3197 * extensions; this is a wrapper around $wgScriptExtension etc.
3199 * @param $script String: script filename, sans extension
3200 * @return String
3202 function wfScript( $script = 'index' ) {
3203 global $wgScriptPath, $wgScriptExtension;
3204 return "{$wgScriptPath}/{$script}{$wgScriptExtension}";
3208 * Get the script URL.
3210 * @return script URL
3212 function wfGetScriptUrl() {
3213 if( isset( $_SERVER['SCRIPT_NAME'] ) ) {
3215 # as it was called, minus the query string.
3217 # Some sites use Apache rewrite rules to handle subdomains,
3218 # and have PHP set up in a weird way that causes PHP_SELF
3219 # to contain the rewritten URL instead of the one that the
3220 # outside world sees.
3222 # If in this mode, use SCRIPT_URL instead, which mod_rewrite
3223 # provides containing the "before" URL.
3224 return $_SERVER['SCRIPT_NAME'];
3225 } else {
3226 return $_SERVER['URL'];
3231 * Convenience function converts boolean values into "true"
3232 * or "false" (string) values
3234 * @param $value Boolean
3235 * @return String
3237 function wfBoolToStr( $value ) {
3238 return $value ? 'true' : 'false';
3242 * Load an extension messages file
3244 * @deprecated since 1.16, warnings in 1.18, remove in 1.20
3245 * @codeCoverageIgnore
3247 function wfLoadExtensionMessages() {
3248 wfDeprecated( __FUNCTION__ );
3252 * Get a platform-independent path to the null file, e.g. /dev/null
3254 * @return string
3256 function wfGetNull() {
3257 return wfIsWindows()
3258 ? 'NUL'
3259 : '/dev/null';
3263 * Throws a warning that $function is deprecated
3265 * @param $function String
3266 * @return null
3268 function wfDeprecated( $function ) {
3269 static $functionsWarned = array();
3270 if ( !isset( $functionsWarned[$function] ) ) {
3271 $functionsWarned[$function] = true;
3272 wfWarn( "Use of $function is deprecated.", 2 );
3277 * Send a warning either to the debug log or in a PHP error depending on
3278 * $wgDevelopmentWarnings
3280 * @param $msg String: message to send
3281 * @param $callerOffset Integer: number of items to go back in the backtrace to
3282 * find the correct caller (1 = function calling wfWarn, ...)
3283 * @param $level Integer: PHP error level; only used when $wgDevelopmentWarnings
3284 * is true
3286 function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE ) {
3287 global $wgDevelopmentWarnings;
3289 $callers = wfDebugBacktrace();
3290 if ( isset( $callers[$callerOffset + 1] ) ) {
3291 $callerfunc = $callers[$callerOffset + 1];
3292 $callerfile = $callers[$callerOffset];
3293 if ( isset( $callerfile['file'] ) && isset( $callerfile['line'] ) ) {
3294 $file = $callerfile['file'] . ' at line ' . $callerfile['line'];
3295 } else {
3296 $file = '(internal function)';
3298 $func = '';
3299 if ( isset( $callerfunc['class'] ) ) {
3300 $func .= $callerfunc['class'] . '::';
3302 if ( isset( $callerfunc['function'] ) ) {
3303 $func .= $callerfunc['function'];
3305 $msg .= " [Called from $func in $file]";
3308 if ( $wgDevelopmentWarnings ) {
3309 trigger_error( $msg, $level );
3310 } else {
3311 wfDebug( "$msg\n" );
3316 * Modern version of wfWaitForSlaves(). Instead of looking at replication lag
3317 * and waiting for it to go down, this waits for the slaves to catch up to the
3318 * master position. Use this when updating very large numbers of rows, as
3319 * in maintenance scripts, to avoid causing too much lag. Of course, this is
3320 * a no-op if there are no slaves.
3322 * @param $maxLag Integer (deprecated)
3323 * @param $wiki mixed Wiki identifier accepted by wfGetLB
3324 * @return null
3326 function wfWaitForSlaves( $maxLag = false, $wiki = false ) {
3327 $lb = wfGetLB( $wiki );
3328 // bug 27975 - Don't try to wait for slaves if there are none
3329 // Prevents permission error when getting master position
3330 if ( $lb->getServerCount() > 1 ) {
3331 $dbw = $lb->getConnection( DB_MASTER );
3332 $pos = $dbw->getMasterPos();
3333 $lb->waitForAll( $pos );
3338 * Used to be used for outputting text in the installer/updater
3339 * @deprecated since 1.18, warnings in 1.18, remove in 1.20
3341 function wfOut( $s ) {
3342 wfDeprecated( __METHOD__ );
3343 global $wgCommandLineMode;
3344 if ( $wgCommandLineMode ) {
3345 echo $s;
3346 } else {
3347 echo htmlspecialchars( $s );
3349 flush();
3353 * Count down from $n to zero on the terminal, with a one-second pause
3354 * between showing each number. For use in command-line scripts.
3355 * @codeCoverageIgnore
3357 function wfCountDown( $n ) {
3358 for ( $i = $n; $i >= 0; $i-- ) {
3359 if ( $i != $n ) {
3360 echo str_repeat( "\x08", strlen( $i + 1 ) );
3362 echo $i;
3363 flush();
3364 if ( $i ) {
3365 sleep( 1 );
3368 echo "\n";
3372 * Generate a random 32-character hexadecimal token.
3373 * @param $salt Mixed: some sort of salt, if necessary, to add to random
3374 * characters before hashing.
3375 * @return string
3376 * @codeCoverageIgnore
3378 function wfGenerateToken( $salt = '' ) {
3379 $salt = serialize( $salt );
3380 return md5( mt_rand( 0, 0x7fffffff ) . $salt );
3384 * Replace all invalid characters with -
3386 * @param $name Mixed: filename to process
3387 * @return String
3389 function wfStripIllegalFilenameChars( $name ) {
3390 global $wgIllegalFileChars;
3391 $name = wfBaseName( $name );
3392 $name = preg_replace(
3393 "/[^" . Title::legalChars() . "]" .
3394 ( $wgIllegalFileChars ? "|[" . $wgIllegalFileChars . "]" : '' ) .
3395 "/",
3396 '-',
3397 $name
3399 return $name;
3403 * Set PHP's memory limit to the larger of php.ini or $wgMemoryLimit;
3405 * @return Integer value memory was set to.
3407 function wfMemoryLimit() {
3408 global $wgMemoryLimit;
3409 $memlimit = wfShorthandToInteger( ini_get( 'memory_limit' ) );
3410 if( $memlimit != -1 ) {
3411 $conflimit = wfShorthandToInteger( $wgMemoryLimit );
3412 if( $conflimit == -1 ) {
3413 wfDebug( "Removing PHP's memory limit\n" );
3414 wfSuppressWarnings();
3415 ini_set( 'memory_limit', $conflimit );
3416 wfRestoreWarnings();
3417 return $conflimit;
3418 } elseif ( $conflimit > $memlimit ) {
3419 wfDebug( "Raising PHP's memory limit to $conflimit bytes\n" );
3420 wfSuppressWarnings();
3421 ini_set( 'memory_limit', $conflimit );
3422 wfRestoreWarnings();
3423 return $conflimit;
3426 return $memlimit;
3430 * Converts shorthand byte notation to integer form
3432 * @param $string String
3433 * @return Integer
3435 function wfShorthandToInteger( $string = '' ) {
3436 $string = trim( $string );
3437 if( $string === '' ) {
3438 return -1;
3440 $last = $string[strlen( $string ) - 1];
3441 $val = intval( $string );
3442 switch( $last ) {
3443 case 'g':
3444 case 'G':
3445 $val *= 1024;
3446 // break intentionally missing
3447 case 'm':
3448 case 'M':
3449 $val *= 1024;
3450 // break intentionally missing
3451 case 'k':
3452 case 'K':
3453 $val *= 1024;
3456 return $val;
3460 * Get the normalised IETF language tag
3461 * See unit test for examples.
3463 * @param $code String: The language code.
3464 * @return $langCode String: The language code which complying with BCP 47 standards.
3466 function wfBCP47( $code ) {
3467 $codeSegment = explode( '-', $code );
3468 $codeBCP = array();
3469 foreach ( $codeSegment as $segNo => $seg ) {
3470 if ( count( $codeSegment ) > 0 ) {
3471 // when previous segment is x, it is a private segment and should be lc
3472 if( $segNo > 0 && strtolower( $codeSegment[($segNo - 1)] ) == 'x') {
3473 $codeBCP[$segNo] = strtolower( $seg );
3474 // ISO 3166 country code
3475 } elseif ( ( strlen( $seg ) == 2 ) && ( $segNo > 0 ) ) {
3476 $codeBCP[$segNo] = strtoupper( $seg );
3477 // ISO 15924 script code
3478 } elseif ( ( strlen( $seg ) == 4 ) && ( $segNo > 0 ) ) {
3479 $codeBCP[$segNo] = ucfirst( strtolower( $seg ) );
3480 // Use lowercase for other cases
3481 } else {
3482 $codeBCP[$segNo] = strtolower( $seg );
3484 } else {
3485 // Use lowercase for single segment
3486 $codeBCP[$segNo] = strtolower( $seg );
3489 $langCode = implode( '-', $codeBCP );
3490 return $langCode;
3494 * Get a cache object.
3496 * @param $inputType integer Cache type, one the the CACHE_* constants.
3497 * @return BagOStuff
3499 function wfGetCache( $inputType ) {
3500 return ObjectCache::getInstance( $inputType );
3504 * Get the main cache object
3506 * @return BagOStuff
3508 function wfGetMainCache() {
3509 global $wgMainCacheType;
3510 return ObjectCache::getInstance( $wgMainCacheType );
3514 * Get the cache object used by the message cache
3516 * @return BagOStuff
3518 function wfGetMessageCacheStorage() {
3519 global $wgMessageCacheType;
3520 return ObjectCache::getInstance( $wgMessageCacheType );
3524 * Get the cache object used by the parser cache
3526 * @return BagOStuff
3528 function wfGetParserCacheStorage() {
3529 global $wgParserCacheType;
3530 return ObjectCache::getInstance( $wgParserCacheType );
3534 * Call hook functions defined in $wgHooks
3536 * @param $event String: event name
3537 * @param $args Array: parameters passed to hook functions
3538 * @return Boolean
3540 function wfRunHooks( $event, $args = array() ) {
3541 return Hooks::run( $event, $args );