Fix #1570 : php 4.2.x error on conflict merging
[lhc/web/wiklou.git] / includes / GlobalFunctions.php
1 <?php
2
3 /**
4 * Global functions used everywhere
5 * @package MediaWiki
6 */
7
8 /**
9 * Some globals and requires needed
10 */
11
12 /**
13 * Total number of articles
14 * @global integer $wgNumberOfArticles
15 */
16 $wgNumberOfArticles = -1; # Unset
17 /**
18 * Total number of views
19 * @global integer $wgTotalViews
20 */
21 $wgTotalViews = -1;
22 /**
23 * Total number of edits
24 * @global integer $wgTotalEdits
25 */
26 $wgTotalEdits = -1;
27
28
29 require_once( 'DatabaseFunctions.php' );
30 require_once( 'UpdateClasses.php' );
31 require_once( 'LogPage.php' );
32 require_once( 'normal/UtfNormalUtil.php' );
33
34 /**
35 * Compatibility functions
36 * PHP <4.3.x is not actively supported; 4.1.x and 4.2.x might or might not work.
37 * <4.1.x will not work, as we use a number of features introduced in 4.1.0
38 * such as the new autoglobals.
39 */
40 if( !function_exists('iconv') ) {
41 # iconv support is not in the default configuration and so may not be present.
42 # Assume will only ever use utf-8 and iso-8859-1.
43 # This will *not* work in all circumstances.
44 function iconv( $from, $to, $string ) {
45 if(strcasecmp( $from, $to ) == 0) return $string;
46 if(strcasecmp( $from, 'utf-8' ) == 0) return utf8_decode( $string );
47 if(strcasecmp( $to, 'utf-8' ) == 0) return utf8_encode( $string );
48 return $string;
49 }
50 }
51
52 if( !function_exists('file_get_contents') ) {
53 # Exists in PHP 4.3.0+
54 function file_get_contents( $filename ) {
55 return implode( '', file( $filename ) );
56 }
57 }
58
59 if( !function_exists('is_a') ) {
60 # Exists in PHP 4.2.0+
61 function is_a( $object, $class_name ) {
62 return
63 (strcasecmp( get_class( $object ), $class_name ) == 0) ||
64 is_subclass_of( $object, $class_name );
65 }
66 }
67
68 # UTF-8 substr function based on a PHP manual comment
69 if ( !function_exists( 'mb_substr' ) ) {
70 function mb_substr( $str, $start ) {
71 preg_match_all( '/./us', $str, $ar );
72
73 if( func_num_args() >= 3 ) {
74 $end = func_get_arg( 2 );
75 return join( '', array_slice( $ar[0], $start, $end ) );
76 } else {
77 return join( '', array_slice( $ar[0], $start ) );
78 }
79 }
80 }
81
82 /**
83 * html_entity_decode exists in PHP 4.3.0+ but is FATALLY BROKEN even then,
84 * with no UTF-8 support.
85 *
86 * @param string $string String having html entities
87 * @param $quote_style
88 * @param string $charset Encoding set to use (default 'ISO-8859-1')
89 */
90 function do_html_entity_decode( $string, $quote_style=ENT_COMPAT, $charset='ISO-8859-1' ) {
91 $fname = 'do_html_entity_decode';
92 wfProfileIn( $fname );
93
94 static $trans;
95 static $savedCharset;
96 static $regexp;
97 if( !isset( $trans ) || $savedCharset != $charset ) {
98 $trans = array_flip( get_html_translation_table( HTML_ENTITIES, $quote_style ) );
99 $savedCharset = $charset;
100
101 # Note - mixing latin1 named entities and unicode numbered
102 # ones will result in a bad link.
103 if( strcasecmp( 'utf-8', $charset ) == 0 ) {
104 $trans = array_map( 'utf8_encode', $trans );
105 }
106
107 /**
108 * Most links will _not_ contain these fun guys,
109 * and on long pages with many links we can get
110 * called a lot.
111 *
112 * A regular expression search is faster than
113 * a strtr or str_replace with a hundred-ish
114 * entries, though it may be slower to actually
115 * replace things.
116 *
117 * They all look like '&xxxx;'...
118 */
119 foreach( $trans as $key => $val ) {
120 $snip[] = substr( $key, 1, -1 );
121 }
122 $regexp = '/(&(?:' . implode( '|', $snip ) . ');)/e';
123 }
124
125 $out = preg_replace( $regexp, '$trans["$1"]', $string );
126 wfProfileOut( $fname );
127 return $out;
128 }
129
130
131 /**
132 * Where as we got a random seed
133 * @var bool $wgTotalViews
134 */
135 $wgRandomSeeded = false;
136
137 /**
138 * Seed Mersenne Twister
139 * Only necessary in PHP < 4.2.0
140 *
141 * @return bool
142 */
143 function wfSeedRandom() {
144 global $wgRandomSeeded;
145
146 if ( ! $wgRandomSeeded && version_compare( phpversion(), '4.2.0' ) < 0 ) {
147 $seed = hexdec(substr(md5(microtime()),-8)) & 0x7fffffff;
148 mt_srand( $seed );
149 $wgRandomSeeded = true;
150 }
151 }
152
153 /**
154 * Get a random decimal value between 0 and 1, in a way
155 * not likely to give duplicate values for any realistic
156 * number of articles.
157 *
158 * @return string
159 */
160 function wfRandom() {
161 # The maximum random value is "only" 2^31-1, so get two random
162 # values to reduce the chance of dupes
163 $max = mt_getrandmax();
164 $rand = number_format( mt_rand() * mt_rand()
165 / $max / $max, 12, '.', '' );
166 return $rand;
167 }
168
169 /**
170 * We want / and : to be included as literal characters in our title URLs.
171 * %2F in the page titles seems to fatally break for some reason.
172 *
173 * @param string $s
174 * @return string
175 */
176 function wfUrlencode ( $s ) {
177 $s = urlencode( $s );
178 $s = preg_replace( '/%3[Aa]/', ':', $s );
179 $s = preg_replace( '/%2[Ff]/', '/', $s );
180
181 return $s;
182 }
183
184 /**
185 * Return the UTF-8 sequence for a given Unicode code point.
186 * Currently doesn't work for values outside the Basic Multilingual Plane.
187 *
188 * @param string $codepoint UTF-8 code point.
189 * @return string HTML UTF-8 Entitie such as '&#1234;'.
190 */
191 function wfUtf8Sequence( $codepoint ) {
192 if($codepoint < 0x80) return chr($codepoint);
193 if($codepoint < 0x800) return chr($codepoint >> 6 & 0x3f | 0xc0) .
194 chr($codepoint & 0x3f | 0x80);
195 if($codepoint < 0x10000) return chr($codepoint >> 12 & 0x0f | 0xe0) .
196 chr($codepoint >> 6 & 0x3f | 0x80) .
197 chr($codepoint & 0x3f | 0x80);
198 if($codepoint < 0x110000) return chr($codepoint >> 18 & 0x07 | 0xf0) .
199 chr($codepoint >> 12 & 0x3f | 0x80) .
200 chr($codepoint >> 6 & 0x3f | 0x80) .
201 chr($codepoint & 0x3f | 0x80);
202
203 # There should be no assigned code points outside this range, but...
204 return "&#$codepoint;";
205 }
206
207 /**
208 * Converts numeric character entities to UTF-8
209 *
210 * @param string $string String to convert.
211 * @return string Converted string.
212 */
213 function wfMungeToUtf8( $string ) {
214 global $wgInputEncoding; # This is debatable
215 #$string = iconv($wgInputEncoding, "UTF-8", $string);
216 $string = preg_replace ( '/&#([0-9]+);/e', 'wfUtf8Sequence($1)', $string );
217 $string = preg_replace ( '/&#x([0-9a-f]+);/ie', 'wfUtf8Sequence(0x$1)', $string );
218 # Should also do named entities here
219 return $string;
220 }
221
222 /**
223 * Converts a single UTF-8 character into the corresponding HTML character
224 * entity (for use with preg_replace_callback)
225 *
226 * @param array $matches
227 *
228 */
229 function wfUtf8Entity( $matches ) {
230 $codepoint = utf8ToCodepoint( $matches[0] );
231 return "&#$codepoint;";
232 }
233
234 /**
235 * Converts all multi-byte characters in a UTF-8 string into the appropriate
236 * character entity
237 */
238 function wfUtf8ToHTML($string) {
239 return preg_replace_callback( '/[\\xc0-\\xfd][\\x80-\\xbf]*/', 'wfUtf8Entity', $string );
240 }
241
242 /**
243 * Sends a line to the debug log if enabled or, optionally, to a comment in output.
244 * In normal operation this is a NOP.
245 *
246 * Controlling globals:
247 * $wgDebugLogFile - points to the log file
248 * $wgProfileOnly - if set, normal debug messages will not be recorded.
249 * $wgDebugRawPage - if false, 'action=raw' hits will not result in debug output.
250 * $wgDebugComments - if on, some debug items may appear in comments in the HTML output.
251 *
252 * @param string $text
253 * @param bool $logonly Set true to avoid appearing in HTML when $wgDebugComments is set
254 */
255 function wfDebug( $text, $logonly = false ) {
256 global $wgOut, $wgDebugLogFile, $wgDebugComments, $wgProfileOnly, $wgDebugRawPage;
257
258 # Check for raw action using $_GET not $wgRequest, since the latter might not be initialised yet
259 if ( isset( $_GET['action'] ) && $_GET['action'] == 'raw' && !$wgDebugRawPage ) {
260 return;
261 }
262
263 if ( isset( $wgOut ) && $wgDebugComments && !$logonly ) {
264 $wgOut->debug( $text );
265 }
266 if ( '' != $wgDebugLogFile && !$wgProfileOnly ) {
267 error_log( $text, 3, $wgDebugLogFile );
268 }
269 }
270
271 /**
272 * Log for database errors
273 * @param string $text Database error message.
274 */
275 function wfLogDBError( $text ) {
276 global $wgDBerrorLog;
277 if ( $wgDBerrorLog ) {
278 $text = date('D M j G:i:s T Y') . "\t".$text;
279 error_log( $text, 3, $wgDBerrorLog );
280 }
281 }
282
283 /**
284 * @todo document
285 */
286 function logProfilingData() {
287 global $wgRequestTime, $wgDebugLogFile, $wgDebugRawPage, $wgRequest;
288 global $wgProfiling, $wgProfileStack, $wgProfileLimit, $wgUser;
289 $now = wfTime();
290
291 list( $usec, $sec ) = explode( ' ', $wgRequestTime );
292 $start = (float)$sec + (float)$usec;
293 $elapsed = $now - $start;
294 if ( $wgProfiling ) {
295 $prof = wfGetProfilingOutput( $start, $elapsed );
296 $forward = '';
297 if( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) )
298 $forward = ' forwarded for ' . $_SERVER['HTTP_X_FORWARDED_FOR'];
299 if( !empty( $_SERVER['HTTP_CLIENT_IP'] ) )
300 $forward .= ' client IP ' . $_SERVER['HTTP_CLIENT_IP'];
301 if( !empty( $_SERVER['HTTP_FROM'] ) )
302 $forward .= ' from ' . $_SERVER['HTTP_FROM'];
303 if( $forward )
304 $forward = "\t(proxied via {$_SERVER['REMOTE_ADDR']}{$forward})";
305 if( $wgUser->isAnon() )
306 $forward .= ' anon';
307 $log = sprintf( "%s\t%04.3f\t%s\n",
308 gmdate( 'YmdHis' ), $elapsed,
309 urldecode( $_SERVER['REQUEST_URI'] . $forward ) );
310 if ( '' != $wgDebugLogFile && ( $wgRequest->getVal('action') != 'raw' || $wgDebugRawPage ) ) {
311 error_log( $log . $prof, 3, $wgDebugLogFile );
312 }
313 }
314 }
315
316 /**
317 * Check if the wiki read-only lock file is present. This can be used to lock
318 * off editing functions, but doesn't guarantee that the database will not be
319 * modified.
320 * @return bool
321 */
322 function wfReadOnly() {
323 global $wgReadOnlyFile;
324
325 if ( '' == $wgReadOnlyFile ) {
326 return false;
327 }
328 return is_file( $wgReadOnlyFile );
329 }
330
331
332 /**
333 * Get a message from anywhere, for the UI elements
334 */
335 function wfMsg( $key ) {
336 $args = func_get_args();
337 array_shift( $args );
338 return wfMsgReal( $key, $args, true );
339 }
340
341 /**
342 * Get a message from anywhere, for the content
343 */
344 function wfMsgForContent( $key ) {
345 global $wgForceUIMsgAsContentMsg;
346 $args = func_get_args();
347 array_shift( $args );
348 $forcontent = true;
349 if( is_array( $wgForceUIMsgAsContentMsg ) &&
350 in_array( $key, $wgForceUIMsgAsContentMsg ) )
351 $forcontent = false;
352 return wfMsgReal( $key, $args, true, $forcontent );
353 }
354
355 /**
356 * Get a message from the language file, for the UI elements
357 */
358 function wfMsgNoDB( $key ) {
359 $args = func_get_args();
360 array_shift( $args );
361 return wfMsgReal( $key, $args, false );
362 }
363
364 /**
365 * Get a message from the language file, for the content
366 */
367 function wfMsgNoDBForContent( $key ) {
368 global $wgForceUIMsgAsContentMsg;
369 $args = func_get_args();
370 array_shift( $args );
371 $forcontent = true;
372 if( is_array( $wgForceUIMsgAsContentMsg ) &&
373 in_array( $key, $wgForceUIMsgAsContentMsg ) )
374 $forcontent = false;
375 return wfMsgReal( $key, $args, false, $forcontent );
376 }
377
378
379 /**
380 * Really get a message
381 */
382 function wfMsgReal( $key, $args, $useDB, $forContent=false ) {
383 static $replacementKeys = array( '$1', '$2', '$3', '$4', '$5', '$6', '$7', '$8', '$9' );
384 global $wgParser, $wgMsgParserOptions;
385 global $wgContLang, $wgLanguageCode;
386 global $wgMessageCache, $wgLang;
387
388 $fname = 'wfMsgReal';
389 wfProfileIn( $fname );
390
391 if( is_object( $wgMessageCache ) ) {
392 $message = $wgMessageCache->get( $key, $useDB, $forContent );
393 }
394 else {
395 if( $forContent ) {
396 $lang = &$wgContLang;
397 } else {
398 $lang = &$wgLang;
399 }
400
401 wfSuppressWarnings();
402 if( is_object( $lang ) ) {
403 $message = $lang->getMessage( $key );
404 } else {
405 $message = '';
406 }
407 wfRestoreWarnings();
408 if(!$message)
409 $message = Language::getMessage($key);
410 if(strstr($message, '{{' ) !== false) {
411 $message = $wgParser->transformMsg($message, $wgMsgParserOptions);
412 }
413 }
414
415 # Replace arguments
416 if( count( $args ) ) {
417 $message = str_replace( $replacementKeys, $args, $message );
418 }
419 wfProfileOut( $fname );
420 return $message;
421 }
422
423
424
425 /**
426 * Just like exit() but makes a note of it.
427 * Commits open transactions except if the error parameter is set
428 */
429 function wfAbruptExit( $error = false ){
430 global $wgLoadBalancer;
431 static $called = false;
432 if ( $called ){
433 exit();
434 }
435 $called = true;
436
437 if( function_exists( 'debug_backtrace' ) ){ // PHP >= 4.3
438 $bt = debug_backtrace();
439 for($i = 0; $i < count($bt) ; $i++){
440 $file = $bt[$i]['file'];
441 $line = $bt[$i]['line'];
442 wfDebug("WARNING: Abrupt exit in $file at line $line\n");
443 }
444 } else {
445 wfDebug('WARNING: Abrupt exit\n');
446 }
447 if ( !$error ) {
448 $wgLoadBalancer->closeAll();
449 }
450 exit();
451 }
452
453 /**
454 * @todo document
455 */
456 function wfErrorExit() {
457 wfAbruptExit( true );
458 }
459
460 /**
461 * Die with a backtrace
462 * This is meant as a debugging aid to track down where bad data comes from.
463 * Shouldn't be used in production code except maybe in "shouldn't happen" areas.
464 *
465 * @param string $msg Message shown when dieing.
466 */
467 function wfDebugDieBacktrace( $msg = '' ) {
468 global $wgCommandLineMode;
469
470 if ( function_exists( 'debug_backtrace' ) ) {
471 if ( $wgCommandLineMode ) {
472 $msg .= "\nBacktrace:\n";
473 } else {
474 $msg .= "\n<p>Backtrace:</p>\n<ul>\n";
475 }
476 $backtrace = debug_backtrace();
477 foreach( $backtrace as $call ) {
478 if( isset( $call['file'] ) ) {
479 $f = explode( DIRECTORY_SEPARATOR, $call['file'] );
480 $file = $f[count($f)-1];
481 } else {
482 $file = '-';
483 }
484 if( isset( $call['line'] ) ) {
485 $line = $call['line'];
486 } else {
487 $line = '-';
488 }
489 if ( $wgCommandLineMode ) {
490 $msg .= "$file line $line calls ";
491 } else {
492 $msg .= '<li>' . $file . ' line ' . $line . ' calls ';
493 }
494 if( !empty( $call['class'] ) ) $msg .= $call['class'] . '::';
495 $msg .= $call['function'] . '()';
496
497 if ( $wgCommandLineMode ) {
498 $msg .= "\n";
499 } else {
500 $msg .= "</li>\n";
501 }
502 }
503 }
504 die( $msg );
505 }
506
507
508 /* Some generic result counters, pulled out of SearchEngine */
509
510
511 /**
512 * @todo document
513 */
514 function wfShowingResults( $offset, $limit ) {
515 global $wgLang;
516 return wfMsg( 'showingresults', $wgLang->formatNum( $limit ), $wgLang->formatNum( $offset+1 ) );
517 }
518
519 /**
520 * @todo document
521 */
522 function wfShowingResultsNum( $offset, $limit, $num ) {
523 global $wgLang;
524 return wfMsg( 'showingresultsnum', $wgLang->formatNum( $limit ), $wgLang->formatNum( $offset+1 ), $wgLang->formatNum( $num ) );
525 }
526
527 /**
528 * @todo document
529 */
530 function wfViewPrevNext( $offset, $limit, $link, $query = '', $atend = false ) {
531 global $wgUser, $wgLang;
532 $fmtLimit = $wgLang->formatNum( $limit );
533 $prev = wfMsg( 'prevn', $fmtLimit );
534 $next = wfMsg( 'nextn', $fmtLimit );
535
536 if( is_object( $link ) ) {
537 $title =& $link;
538 } else {
539 $title =& Title::newFromText( $link );
540 if( is_null( $title ) ) {
541 return false;
542 }
543 }
544
545 $sk = $wgUser->getSkin();
546 if ( 0 != $offset ) {
547 $po = $offset - $limit;
548 if ( $po < 0 ) { $po = 0; }
549 $q = "limit={$limit}&offset={$po}";
550 if ( '' != $query ) { $q .= '&'.$query; }
551 $plink = '<a href="' . $title->escapeLocalUrl( $q ) . "\">{$prev}</a>";
552 } else { $plink = $prev; }
553
554 $no = $offset + $limit;
555 $q = 'limit='.$limit.'&offset='.$no;
556 if ( '' != $query ) { $q .= '&'.$query; }
557
558 if ( $atend ) {
559 $nlink = $next;
560 } else {
561 $nlink = '<a href="' . $title->escapeLocalUrl( $q ) . "\">{$next}</a>";
562 }
563 $nums = wfNumLink( $offset, 20, $title, $query ) . ' | ' .
564 wfNumLink( $offset, 50, $title, $query ) . ' | ' .
565 wfNumLink( $offset, 100, $title, $query ) . ' | ' .
566 wfNumLink( $offset, 250, $title, $query ) . ' | ' .
567 wfNumLink( $offset, 500, $title, $query );
568
569 return wfMsg( 'viewprevnext', $plink, $nlink, $nums );
570 }
571
572 /**
573 * @todo document
574 */
575 function wfNumLink( $offset, $limit, &$title, $query = '' ) {
576 global $wgUser, $wgLang;
577 if ( '' == $query ) { $q = ''; }
578 else { $q = $query.'&'; }
579 $q .= 'limit='.$limit.'&offset='.$offset;
580
581 $fmtLimit = $wgLang->formatNum( $limit );
582 $s = '<a href="' . $title->escapeLocalUrl( $q ) . "\">{$fmtLimit}</a>";
583 return $s;
584 }
585
586 /**
587 * @todo document
588 * @todo FIXME: we may want to blacklist some broken browsers
589 *
590 * @return bool Whereas client accept gzip compression
591 */
592 function wfClientAcceptsGzip() {
593 global $wgUseGzip;
594 if( $wgUseGzip ) {
595 # FIXME: we may want to blacklist some broken browsers
596 if( preg_match(
597 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
598 $_SERVER['HTTP_ACCEPT_ENCODING'],
599 $m ) ) {
600 if( isset( $m[2] ) && ( $m[1] == 'q' ) && ( $m[2] == 0 ) ) return false;
601 wfDebug( " accepts gzip\n" );
602 return true;
603 }
604 }
605 return false;
606 }
607
608 /**
609 * Yay, more global functions!
610 */
611 function wfCheckLimits( $deflimit = 50, $optionname = 'rclimit' ) {
612 global $wgRequest;
613 return $wgRequest->getLimitOffset( $deflimit, $optionname );
614 }
615
616 /**
617 * Escapes the given text so that it may be output using addWikiText()
618 * without any linking, formatting, etc. making its way through. This
619 * is achieved by substituting certain characters with HTML entities.
620 * As required by the callers, <nowiki> is not used. It currently does
621 * not filter out characters which have special meaning only at the
622 * start of a line, such as "*".
623 *
624 * @param string $text Text to be escaped
625 */
626 function wfEscapeWikiText( $text ) {
627 $text = str_replace(
628 array( '[', '|', '\'', 'ISBN ' , '://' , "\n=", '{{' ),
629 array( '&#91;', '&#124;', '&#39;', 'ISBN&#32;', '&#58;//' , "\n&#61;", '&#123;&#123;' ),
630 htmlspecialchars($text) );
631 return $text;
632 }
633
634 /**
635 * @todo document
636 */
637 function wfQuotedPrintable( $string, $charset = '' ) {
638 # Probably incomplete; see RFC 2045
639 if( empty( $charset ) ) {
640 global $wgInputEncoding;
641 $charset = $wgInputEncoding;
642 }
643 $charset = strtoupper( $charset );
644 $charset = str_replace( 'ISO-8859', 'ISO8859', $charset ); // ?
645
646 $illegal = '\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\xff=';
647 $replace = $illegal . '\t ?_';
648 if( !preg_match( "/[$illegal]/", $string ) ) return $string;
649 $out = "=?$charset?Q?";
650 $out .= preg_replace( "/([$replace])/e", 'sprintf("=%02X",ord("$1"))', $string );
651 $out .= '?=';
652 return $out;
653 }
654
655 /**
656 * @todo document
657 * @return float
658 */
659 function wfTime() {
660 $st = explode( ' ', microtime() );
661 return (float)$st[0] + (float)$st[1];
662 }
663
664 /**
665 * Changes the first character to an HTML entity
666 */
667 function wfHtmlEscapeFirst( $text ) {
668 $ord = ord($text);
669 $newText = substr($text, 1);
670 return "&#$ord;$newText";
671 }
672
673 /**
674 * Sets dest to source and returns the original value of dest
675 * If source is NULL, it just returns the value, it doesn't set the variable
676 */
677 function wfSetVar( &$dest, $source ) {
678 $temp = $dest;
679 if ( !is_null( $source ) ) {
680 $dest = $source;
681 }
682 return $temp;
683 }
684
685 /**
686 * As for wfSetVar except setting a bit
687 */
688 function wfSetBit( &$dest, $bit, $state = true ) {
689 $temp = (bool)($dest & $bit );
690 if ( !is_null( $state ) ) {
691 if ( $state ) {
692 $dest |= $bit;
693 } else {
694 $dest &= ~$bit;
695 }
696 }
697 return $temp;
698 }
699
700 /**
701 * This function takes two arrays as input, and returns a CGI-style string, e.g.
702 * "days=7&limit=100". Options in the first array override options in the second.
703 * Options set to "" will not be output.
704 */
705 function wfArrayToCGI( $array1, $array2 = NULL )
706 {
707 if ( !is_null( $array2 ) ) {
708 $array1 = $array1 + $array2;
709 }
710
711 $cgi = '';
712 foreach ( $array1 as $key => $value ) {
713 if ( '' !== $value ) {
714 if ( '' != $cgi ) {
715 $cgi .= '&';
716 }
717 $cgi .= urlencode( $key ) . '=' . urlencode( $value );
718 }
719 }
720 return $cgi;
721 }
722
723 /**
724 * This is obsolete, use SquidUpdate::purge()
725 * @deprecated
726 */
727 function wfPurgeSquidServers ($urlArr) {
728 SquidUpdate::purge( $urlArr );
729 }
730
731 /**
732 * Windows-compatible version of escapeshellarg()
733 * Windows doesn't recognise single-quotes in the shell, but the escapeshellarg()
734 * function puts single quotes in regardless of OS
735 */
736 function wfEscapeShellArg( ) {
737 $args = func_get_args();
738 $first = true;
739 $retVal = '';
740 foreach ( $args as $arg ) {
741 if ( !$first ) {
742 $retVal .= ' ';
743 } else {
744 $first = false;
745 }
746
747 if ( wfIsWindows() ) {
748 $retVal .= '"' . str_replace( '"','\"', $arg ) . '"';
749 } else {
750 $retVal .= escapeshellarg( $arg );
751 }
752 }
753 return $retVal;
754 }
755
756 /**
757 * wfMerge attempts to merge differences between three texts.
758 * Returns true for a clean merge and false for failure or a conflict.
759 */
760 function wfMerge( $old, $mine, $yours, &$result ){
761 global $wgDiff3;
762
763 # This check may also protect against code injection in
764 # case of broken installations.
765 if(! file_exists( $wgDiff3 ) ){
766 return false;
767 }
768
769 # Make temporary files
770 $td = '/tmp/';
771 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
772 $mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
773 $yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
774
775 fwrite( $oldtextFile, $old ); fclose( $oldtextFile );
776 fwrite( $mytextFile, $mine ); fclose( $mytextFile );
777 fwrite( $yourtextFile, $yours ); fclose( $yourtextFile );
778
779 # Check for a conflict
780 $cmd = wfEscapeShellArg( $wgDiff3 ) . ' -a --overlap-only ' .
781 wfEscapeShellArg( $mytextName ) . ' ' .
782 wfEscapeShellArg( $oldtextName ) . ' ' .
783 wfEscapeShellArg( $yourtextName );
784 $handle = popen( $cmd, 'r' );
785
786 if( fgets( $handle, 1024 ) ){
787 $conflict = true;
788 } else {
789 $conflict = false;
790 }
791 pclose( $handle );
792
793 # Merge differences
794 $cmd = wfEscapeShellArg( $wgDiff3 ) . ' -a -e --merge ' .
795 wfEscapeShellArg( $mytextName, $oldtextName, $yourtextName );
796 $handle = popen( $cmd, 'r' );
797 $result = '';
798 do {
799 $data = fread( $handle, 8192 );
800 if ( strlen( $data ) == 0 ) {
801 break;
802 }
803 $result .= $data;
804 } while ( true );
805 pclose( $handle );
806 unlink( $mytextName ); unlink( $oldtextName ); unlink( $yourtextName );
807 return ! $conflict;
808 }
809
810 /**
811 * @todo document
812 */
813 function wfVarDump( $var ) {
814 global $wgOut;
815 $s = str_replace("\n","<br />\n", var_export( $var, true ) . "\n");
816 if ( headers_sent() || !@is_object( $wgOut ) ) {
817 print $s;
818 } else {
819 $wgOut->addHTML( $s );
820 }
821 }
822
823 /**
824 * Provide a simple HTTP error.
825 */
826 function wfHttpError( $code, $label, $desc ) {
827 global $wgOut;
828 $wgOut->disable();
829 header( "HTTP/1.0 $code $label" );
830 header( "Status: $code $label" );
831 $wgOut->sendCacheControl();
832
833 # Don't send content if it's a HEAD request.
834 if( $_SERVER['REQUEST_METHOD'] == 'HEAD' ) {
835 header( 'Content-type: text/plain' );
836 print $desc."\n";
837 }
838 }
839
840 /**
841 * Converts an Accept-* header into an array mapping string values to quality
842 * factors
843 */
844 function wfAcceptToPrefs( $accept, $def = '*/*' ) {
845 # No arg means accept anything (per HTTP spec)
846 if( !$accept ) {
847 return array( $def => 1 );
848 }
849
850 $prefs = array();
851
852 $parts = explode( ',', $accept );
853
854 foreach( $parts as $part ) {
855 # FIXME: doesn't deal with params like 'text/html; level=1'
856 @list( $value, $qpart ) = explode( ';', $part );
857 if( !isset( $qpart ) ) {
858 $prefs[$value] = 1;
859 } elseif( preg_match( '/q\s*=\s*(\d*\.\d+)/', $qpart, $match ) ) {
860 $prefs[$value] = $match[1];
861 }
862 }
863
864 return $prefs;
865 }
866
867 /**
868 * Checks if a given MIME type matches any of the keys in the given
869 * array. Basic wildcards are accepted in the array keys.
870 *
871 * Returns the matching MIME type (or wildcard) if a match, otherwise
872 * NULL if no match.
873 *
874 * @param string $type
875 * @param array $avail
876 * @return string
877 * @access private
878 */
879 function mimeTypeMatch( $type, $avail ) {
880 if( array_key_exists($type, $avail) ) {
881 return $type;
882 } else {
883 $parts = explode( '/', $type );
884 if( array_key_exists( $parts[0] . '/*', $avail ) ) {
885 return $parts[0] . '/*';
886 } elseif( array_key_exists( '*/*', $avail ) ) {
887 return '*/*';
888 } else {
889 return NULL;
890 }
891 }
892 }
893
894 /**
895 * Returns the 'best' match between a client's requested internet media types
896 * and the server's list of available types. Each list should be an associative
897 * array of type to preference (preference is a float between 0.0 and 1.0).
898 * Wildcards in the types are acceptable.
899 *
900 * @param array $cprefs Client's acceptable type list
901 * @param array $sprefs Server's offered types
902 * @return string
903 *
904 * @todo FIXME: doesn't handle params like 'text/plain; charset=UTF-8'
905 * XXX: generalize to negotiate other stuff
906 */
907 function wfNegotiateType( $cprefs, $sprefs ) {
908 $combine = array();
909
910 foreach( array_keys($sprefs) as $type ) {
911 $parts = explode( '/', $type );
912 if( $parts[1] != '*' ) {
913 $ckey = mimeTypeMatch( $type, $cprefs );
914 if( $ckey ) {
915 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
916 }
917 }
918 }
919
920 foreach( array_keys( $cprefs ) as $type ) {
921 $parts = explode( '/', $type );
922 if( $parts[1] != '*' && !array_key_exists( $type, $sprefs ) ) {
923 $skey = mimeTypeMatch( $type, $sprefs );
924 if( $skey ) {
925 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
926 }
927 }
928 }
929
930 $bestq = 0;
931 $besttype = NULL;
932
933 foreach( array_keys( $combine ) as $type ) {
934 if( $combine[$type] > $bestq ) {
935 $besttype = $type;
936 $bestq = $combine[$type];
937 }
938 }
939
940 return $besttype;
941 }
942
943 /**
944 * Array lookup
945 * Returns an array where the values in the first array are replaced by the
946 * values in the second array with the corresponding keys
947 *
948 * @return array
949 */
950 function wfArrayLookup( $a, $b ) {
951 return array_flip( array_intersect( array_flip( $a ), array_keys( $b ) ) );
952 }
953
954 /**
955 * Convenience function; returns MediaWiki timestamp for the present time.
956 * @return string
957 */
958 function wfTimestampNow() {
959 # return NOW
960 return wfTimestamp( TS_MW, time() );
961 }
962
963 /**
964 * Reference-counted warning suppression
965 */
966 function wfSuppressWarnings( $end = false ) {
967 static $suppressCount = 0;
968 static $originalLevel = false;
969
970 if ( $end ) {
971 if ( $suppressCount ) {
972 $suppressCount --;
973 if ( !$suppressCount ) {
974 error_reporting( $originalLevel );
975 }
976 }
977 } else {
978 if ( !$suppressCount ) {
979 $originalLevel = error_reporting( E_ALL & ~( E_WARNING | E_NOTICE ) );
980 }
981 $suppressCount++;
982 }
983 }
984
985 /**
986 * Restore error level to previous value
987 */
988 function wfRestoreWarnings() {
989 wfSuppressWarnings( true );
990 }
991
992 # Autodetect, convert and provide timestamps of various types
993
994 /** Standard unix timestamp (number of seconds since 1 Jan 1970) */
995 define('TS_UNIX',0);
996 /** MediaWiki concatenated string timestamp (yyyymmddhhmmss) */
997 define('TS_MW',1);
998 /** Standard database timestamp (yyyy-mm-dd hh:mm:ss) */
999 define('TS_DB',2);
1000 /** For HTTP and e-mail headers -- output only */
1001 define('TS_RFC2822', 3 );
1002
1003 /**
1004 * @todo document
1005 */
1006 function wfTimestamp($outputtype=TS_UNIX,$ts=0) {
1007 if (preg_match("/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)$/",$ts,$da)) {
1008 # TS_DB
1009 $uts=gmmktime((int)$da[4],(int)$da[5],(int)$da[6],
1010 (int)$da[2],(int)$da[3],(int)$da[1]);
1011 } elseif (preg_match("/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/",$ts,$da)) {
1012 # TS_MW
1013 $uts=gmmktime((int)$da[4],(int)$da[5],(int)$da[6],
1014 (int)$da[2],(int)$da[3],(int)$da[1]);
1015 } elseif (preg_match("/^(\d{1,13})$/",$ts,$datearray)) {
1016 # TS_UNIX
1017 $uts=$ts;
1018 } else {
1019 # Bogus value; fall back to the epoch...
1020 wfDebug("wfTimestamp() given bogus time value.\n");
1021 $uts = 0;
1022 }
1023
1024 if ($ts==0)
1025 $uts=time();
1026 switch($outputtype) {
1027 case TS_UNIX:
1028 return $uts;
1029 case TS_MW:
1030 return gmdate( 'YmdHis', $uts );
1031 case TS_DB:
1032 return gmdate( 'Y-m-d H:i:s', $uts );
1033 case TS_RFC2822:
1034 return gmdate( 'D, d M Y H:i:s', $uts ) . ' GMT';
1035 default:
1036 wfDebugDieBacktrace( 'wfTimestamp() called with illegal output type.');
1037 }
1038 }
1039
1040 /**
1041 * Check where as the operating system is Windows
1042 *
1043 * @todo document
1044 * @return bool True if it's windows, False otherwise.
1045 */
1046 function wfIsWindows() {
1047 if (substr(php_uname(), 0, 7) == 'Windows') {
1048 return true;
1049 } else {
1050 return false;
1051 }
1052 }
1053
1054 ?>