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