* Parser can now know that it is parsing an interface message
[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 require_once( 'XmlFunctions.php' );
34
35 /**
36 * Compatibility functions
37 * PHP <4.3.x is not actively supported; 4.1.x and 4.2.x might or might not work.
38 * <4.1.x will not work, as we use a number of features introduced in 4.1.0
39 * such as the new autoglobals.
40 */
41 if( !function_exists('iconv') ) {
42 # iconv support is not in the default configuration and so may not be present.
43 # Assume will only ever use utf-8 and iso-8859-1.
44 # This will *not* work in all circumstances.
45 function iconv( $from, $to, $string ) {
46 if(strcasecmp( $from, $to ) == 0) return $string;
47 if(strcasecmp( $from, 'utf-8' ) == 0) return utf8_decode( $string );
48 if(strcasecmp( $to, 'utf-8' ) == 0) return utf8_encode( $string );
49 return $string;
50 }
51 }
52
53 if( !function_exists('file_get_contents') ) {
54 # Exists in PHP 4.3.0+
55 function file_get_contents( $filename ) {
56 return implode( '', file( $filename ) );
57 }
58 }
59
60 if( !function_exists('is_a') ) {
61 # Exists in PHP 4.2.0+
62 function is_a( $object, $class_name ) {
63 return
64 (strcasecmp( get_class( $object ), $class_name ) == 0) ||
65 is_subclass_of( $object, $class_name );
66 }
67 }
68
69 # UTF-8 substr function based on a PHP manual comment
70 if ( !function_exists( 'mb_substr' ) ) {
71 function mb_substr( $str, $start ) {
72 preg_match_all( '/./us', $str, $ar );
73
74 if( func_num_args() >= 3 ) {
75 $end = func_get_arg( 2 );
76 return join( '', array_slice( $ar[0], $start, $end ) );
77 } else {
78 return join( '', array_slice( $ar[0], $start ) );
79 }
80 }
81 }
82
83 if( !function_exists( 'floatval' ) ) {
84 /**
85 * First defined in PHP 4.2.0
86 * @param mixed $var;
87 * @return float
88 */
89 function floatval( $var ) {
90 return (float)$var;
91 }
92 }
93
94 if ( !function_exists( 'array_diff_key' ) ) {
95 /**
96 * Exists in PHP 5.1.0+
97 * Not quite compatible, two-argument version only
98 * Null values will cause problems due to this use of isset()
99 */
100 function array_diff_key( $left, $right ) {
101 $result = $left;
102 foreach ( $left as $key => $value ) {
103 if ( isset( $right[$key] ) ) {
104 unset( $result[$key] );
105 }
106 }
107 return $result;
108 }
109 }
110
111
112 /**
113 * Wrapper for clone() for PHP 4, for the moment.
114 * PHP 5 won't let you declare a 'clone' function, even conditionally,
115 * so it has to be a wrapper with a different name.
116 */
117 function wfClone( $object ) {
118 // WARNING: clone() is not a function in PHP 5, so function_exists fails.
119 if( version_compare( PHP_VERSION, '5.0' ) < 0 ) {
120 return $object;
121 } else {
122 return clone( $object );
123 }
124 }
125
126 /**
127 * Where as we got a random seed
128 * @var bool $wgTotalViews
129 */
130 $wgRandomSeeded = false;
131
132 /**
133 * Seed Mersenne Twister
134 * Only necessary in PHP < 4.2.0
135 *
136 * @return bool
137 */
138 function wfSeedRandom() {
139 global $wgRandomSeeded;
140
141 if ( ! $wgRandomSeeded && version_compare( phpversion(), '4.2.0' ) < 0 ) {
142 $seed = hexdec(substr(md5(microtime()),-8)) & 0x7fffffff;
143 mt_srand( $seed );
144 $wgRandomSeeded = true;
145 }
146 }
147
148 /**
149 * Get a random decimal value between 0 and 1, in a way
150 * not likely to give duplicate values for any realistic
151 * number of articles.
152 *
153 * @return string
154 */
155 function wfRandom() {
156 # The maximum random value is "only" 2^31-1, so get two random
157 # values to reduce the chance of dupes
158 $max = mt_getrandmax();
159 $rand = number_format( (mt_rand() * $max + mt_rand())
160 / $max / $max, 12, '.', '' );
161 return $rand;
162 }
163
164 /**
165 * We want / and : to be included as literal characters in our title URLs.
166 * %2F in the page titles seems to fatally break for some reason.
167 *
168 * @param $s String:
169 * @return string
170 */
171 function wfUrlencode ( $s ) {
172 $s = urlencode( $s );
173 $s = preg_replace( '/%3[Aa]/', ':', $s );
174 $s = preg_replace( '/%2[Ff]/', '/', $s );
175
176 return $s;
177 }
178
179 /**
180 * Sends a line to the debug log if enabled or, optionally, to a comment in output.
181 * In normal operation this is a NOP.
182 *
183 * Controlling globals:
184 * $wgDebugLogFile - points to the log file
185 * $wgProfileOnly - if set, normal debug messages will not be recorded.
186 * $wgDebugRawPage - if false, 'action=raw' hits will not result in debug output.
187 * $wgDebugComments - if on, some debug items may appear in comments in the HTML output.
188 *
189 * @param $text String
190 * @param $logonly Bool: set true to avoid appearing in HTML when $wgDebugComments is set
191 */
192 function wfDebug( $text, $logonly = false ) {
193 global $wgOut, $wgDebugLogFile, $wgDebugComments, $wgProfileOnly, $wgDebugRawPage;
194
195 # Check for raw action using $_GET not $wgRequest, since the latter might not be initialised yet
196 if ( isset( $_GET['action'] ) && $_GET['action'] == 'raw' && !$wgDebugRawPage ) {
197 return;
198 }
199
200 if ( isset( $wgOut ) && $wgDebugComments && !$logonly ) {
201 $wgOut->debug( $text );
202 }
203 if ( '' != $wgDebugLogFile && !$wgProfileOnly ) {
204 # Strip unprintables; they can switch terminal modes when binary data
205 # gets dumped, which is pretty annoying.
206 $text = preg_replace( '![\x00-\x08\x0b\x0c\x0e-\x1f]!', ' ', $text );
207 @error_log( $text, 3, $wgDebugLogFile );
208 }
209 }
210
211 /**
212 * Send a line to a supplementary debug log file, if configured, or main debug log if not.
213 * $wgDebugLogGroups[$logGroup] should be set to a filename to send to a separate log.
214 *
215 * @param $logGroup String
216 * @param $text String
217 * @param $public Bool: whether to log the event in the public log if no private
218 * log file is specified, (default true)
219 */
220 function wfDebugLog( $logGroup, $text, $public = true ) {
221 global $wgDebugLogGroups, $wgDBname;
222 if( $text{strlen( $text ) - 1} != "\n" ) $text .= "\n";
223 if( isset( $wgDebugLogGroups[$logGroup] ) ) {
224 $time = wfTimestamp( TS_DB );
225 @error_log( "$time $wgDBname: $text", 3, $wgDebugLogGroups[$logGroup] );
226 } else if ( $public === true ) {
227 wfDebug( $text, true );
228 }
229 }
230
231 /**
232 * Log for database errors
233 * @param $text String: database error message.
234 */
235 function wfLogDBError( $text ) {
236 global $wgDBerrorLog;
237 if ( $wgDBerrorLog ) {
238 $host = trim(`hostname`);
239 $text = date('D M j G:i:s T Y') . "\t$host\t".$text;
240 error_log( $text, 3, $wgDBerrorLog );
241 }
242 }
243
244 /**
245 * @todo document
246 */
247 function logProfilingData() {
248 global $wgRequestTime, $wgDebugLogFile, $wgDebugRawPage, $wgRequest;
249 global $wgProfiling, $wgUser;
250 $now = wfTime();
251
252 list( $usec, $sec ) = explode( ' ', $wgRequestTime );
253 $start = (float)$sec + (float)$usec;
254 $elapsed = $now - $start;
255 if ( $wgProfiling ) {
256 $prof = wfGetProfilingOutput( $start, $elapsed );
257 $forward = '';
258 if( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) )
259 $forward = ' forwarded for ' . $_SERVER['HTTP_X_FORWARDED_FOR'];
260 if( !empty( $_SERVER['HTTP_CLIENT_IP'] ) )
261 $forward .= ' client IP ' . $_SERVER['HTTP_CLIENT_IP'];
262 if( !empty( $_SERVER['HTTP_FROM'] ) )
263 $forward .= ' from ' . $_SERVER['HTTP_FROM'];
264 if( $forward )
265 $forward = "\t(proxied via {$_SERVER['REMOTE_ADDR']}{$forward})";
266 if( is_object($wgUser) && $wgUser->isAnon() )
267 $forward .= ' anon';
268 $log = sprintf( "%s\t%04.3f\t%s\n",
269 gmdate( 'YmdHis' ), $elapsed,
270 urldecode( $_SERVER['REQUEST_URI'] . $forward ) );
271 if ( '' != $wgDebugLogFile && ( $wgRequest->getVal('action') != 'raw' || $wgDebugRawPage ) ) {
272 error_log( $log . $prof, 3, $wgDebugLogFile );
273 }
274 }
275 }
276
277 /**
278 * Check if the wiki read-only lock file is present. This can be used to lock
279 * off editing functions, but doesn't guarantee that the database will not be
280 * modified.
281 * @return bool
282 */
283 function wfReadOnly() {
284 global $wgReadOnlyFile, $wgReadOnly;
285
286 if ( !is_null( $wgReadOnly ) ) {
287 return (bool)$wgReadOnly;
288 }
289 if ( '' == $wgReadOnlyFile ) {
290 return false;
291 }
292 // Set $wgReadOnly for faster access next time
293 if ( is_file( $wgReadOnlyFile ) ) {
294 $wgReadOnly = file_get_contents( $wgReadOnlyFile );
295 } else {
296 $wgReadOnly = false;
297 }
298 return (bool)$wgReadOnly;
299 }
300
301
302 /**
303 * Get a message from anywhere, for the current user language.
304 *
305 * Use wfMsgForContent() instead if the message should NOT
306 * change depending on the user preferences.
307 *
308 * Note that the message may contain HTML, and is therefore
309 * not safe for insertion anywhere. Some functions such as
310 * addWikiText will do the escaping for you. Use wfMsgHtml()
311 * if you need an escaped message.
312 *
313 * @param $key String: lookup key for the message, usually
314 * defined in languages/Language.php
315 */
316 function wfMsg( $key ) {
317 $args = func_get_args();
318 array_shift( $args );
319 return wfMsgReal( $key, $args, true );
320 }
321
322 /**
323 * Same as above except doesn't transform the message
324 */
325 function wfMsgNoTrans( $key ) {
326 $args = func_get_args();
327 array_shift( $args );
328 return wfMsgReal( $key, $args, true, false );
329 }
330
331 /**
332 * Get a message from anywhere, for the current global language
333 * set with $wgLanguageCode.
334 *
335 * Use this if the message should NOT change dependent on the
336 * language set in the user's preferences. This is the case for
337 * most text written into logs, as well as link targets (such as
338 * the name of the copyright policy page). Link titles, on the
339 * other hand, should be shown in the UI language.
340 *
341 * Note that MediaWiki allows users to change the user interface
342 * language in their preferences, but a single installation
343 * typically only contains content in one language.
344 *
345 * Be wary of this distinction: If you use wfMsg() where you should
346 * use wfMsgForContent(), a user of the software may have to
347 * customize over 70 messages in order to, e.g., fix a link in every
348 * possible language.
349 *
350 * @param $key String: lookup key for the message, usually
351 * defined in languages/Language.php
352 */
353 function wfMsgForContent( $key ) {
354 global $wgForceUIMsgAsContentMsg;
355 $args = func_get_args();
356 array_shift( $args );
357 $forcontent = true;
358 if( is_array( $wgForceUIMsgAsContentMsg ) &&
359 in_array( $key, $wgForceUIMsgAsContentMsg ) )
360 $forcontent = false;
361 return wfMsgReal( $key, $args, true, $forcontent );
362 }
363
364 /**
365 * Same as above except doesn't transform the message
366 */
367 function wfMsgForContentNoTrans( $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, true, $forcontent, false );
376 }
377
378 /**
379 * Get a message from the language file, for the UI elements
380 */
381 function wfMsgNoDB( $key ) {
382 $args = func_get_args();
383 array_shift( $args );
384 return wfMsgReal( $key, $args, false );
385 }
386
387 /**
388 * Get a message from the language file, for the content
389 */
390 function wfMsgNoDBForContent( $key ) {
391 global $wgForceUIMsgAsContentMsg;
392 $args = func_get_args();
393 array_shift( $args );
394 $forcontent = true;
395 if( is_array( $wgForceUIMsgAsContentMsg ) &&
396 in_array( $key, $wgForceUIMsgAsContentMsg ) )
397 $forcontent = false;
398 return wfMsgReal( $key, $args, false, $forcontent );
399 }
400
401
402 /**
403 * Really get a message
404 * @return $key String: key to get.
405 * @return $args
406 * @return $useDB Boolean
407 * @return String: the requested message.
408 */
409 function wfMsgReal( $key, $args, $useDB, $forContent=false, $transform = true ) {
410 $fname = 'wfMsgReal';
411
412 $message = wfMsgGetKey( $key, $useDB, $forContent, $transform );
413 $message = wfMsgReplaceArgs( $message, $args );
414 return $message;
415 }
416
417 /**
418 * This function provides the message source for messages to be edited which are *not* stored in the database.
419 * @param $key String:
420 */
421 function wfMsgWeirdKey ( $key ) {
422 $subsource = str_replace ( ' ' , '_' , $key ) ;
423 $source = wfMsg ( $subsource ) ;
424 if ( $source == "&lt;{$subsource}&gt;" ) {
425 # Try again with first char lower case
426 $subsource = strtolower ( substr ( $subsource , 0 , 1 ) ) . substr ( $subsource , 1 ) ;
427 $source = wfMsg ( $subsource ) ;
428 }
429 if ( $source == "&lt;{$subsource}&gt;" ) {
430 # Didn't work either, return blank text
431 $source = "" ;
432 }
433 return $source ;
434 }
435
436 /**
437 * Fetch a message string value, but don't replace any keys yet.
438 * @param string $key
439 * @param bool $useDB
440 * @param bool $forContent
441 * @return string
442 * @private
443 */
444 function wfMsgGetKey( $key, $useDB, $forContent = false, $transform = true ) {
445 global $wgParser, $wgMsgParserOptions, $wgContLang, $wgMessageCache, $wgLang;
446
447 if ( is_object( $wgMessageCache ) )
448 $transstat = $wgMessageCache->getTransform();
449
450 if( is_object( $wgMessageCache ) ) {
451 if ( ! $transform )
452 $wgMessageCache->disableTransform();
453 $message = $wgMessageCache->get( $key, $useDB, $forContent );
454 } else {
455 if( $forContent ) {
456 $lang = &$wgContLang;
457 } else {
458 $lang = &$wgLang;
459 }
460
461 wfSuppressWarnings();
462
463 if( is_object( $lang ) ) {
464 $message = $lang->getMessage( $key );
465 } else {
466 $message = false;
467 }
468 wfRestoreWarnings();
469 if($message === false)
470 $message = Language::getMessage($key);
471 if ( $transform && strstr( $message, '{{' ) !== false ) {
472 $message = $wgParser->transformMsg($message, $wgMsgParserOptions);
473 }
474 }
475
476 if ( is_object( $wgMessageCache ) && ! $transform )
477 $wgMessageCache->setTransform( $transstat );
478
479 return $message;
480 }
481
482 /**
483 * Replace message parameter keys on the given formatted output.
484 *
485 * @param string $message
486 * @param array $args
487 * @return string
488 * @private
489 */
490 function wfMsgReplaceArgs( $message, $args ) {
491 # Fix windows line-endings
492 # Some messages are split with explode("\n", $msg)
493 $message = str_replace( "\r", '', $message );
494
495 // Replace arguments
496 if ( count( $args ) ) {
497 if ( is_array( $args[0] ) ) {
498 foreach ( $args[0] as $key => $val ) {
499 $message = str_replace( '$' . $key, $val, $message );
500 }
501 } else {
502 foreach( $args as $n => $param ) {
503 $replacementKeys['$' . ($n + 1)] = $param;
504 }
505 $message = strtr( $message, $replacementKeys );
506 }
507 }
508
509 return $message;
510 }
511
512 /**
513 * Return an HTML-escaped version of a message.
514 * Parameter replacements, if any, are done *after* the HTML-escaping,
515 * so parameters may contain HTML (eg links or form controls). Be sure
516 * to pre-escape them if you really do want plaintext, or just wrap
517 * the whole thing in htmlspecialchars().
518 *
519 * @param string $key
520 * @param string ... parameters
521 * @return string
522 */
523 function wfMsgHtml( $key ) {
524 $args = func_get_args();
525 array_shift( $args );
526 return wfMsgReplaceArgs( htmlspecialchars( wfMsgGetKey( $key, true ) ), $args );
527 }
528
529 /**
530 * Return an HTML version of message
531 * Parameter replacements, if any, are done *after* parsing the wiki-text message,
532 * so parameters may contain HTML (eg links or form controls). Be sure
533 * to pre-escape them if you really do want plaintext, or just wrap
534 * the whole thing in htmlspecialchars().
535 *
536 * @param string $key
537 * @param string ... parameters
538 * @return string
539 */
540 function wfMsgWikiHtml( $key ) {
541 global $wgOut;
542 $args = func_get_args();
543 array_shift( $args );
544 return wfMsgReplaceArgs( $wgOut->parse( wfMsgGetKey( $key, true ), /* can't be set to false */ true ), $args );
545 }
546
547 /**
548 * Returns message in the requested format
549 * @param string $key Key of the message
550 * @param array $options Processing rules:
551 * <i>parse<i>: parses wikitext to html
552 * <i>parseinline<i>: parses wikitext to html and removes the surrounding p's added by parser or tidy
553 * <i>escape<i>: filters message trough htmlspecialchars
554 * <i>replaceafter<i>: parameters are substituted after parsing or escaping
555 */
556 function wfMsgExt( $key, $options ) {
557 global $wgOut;
558
559 $args = func_get_args();
560 array_shift( $args );
561 array_shift( $args );
562
563 if( !is_array($options) ) {
564 $options = array($options);
565 }
566
567 $string = wfMsgGetKey( $key, true, false, false );
568
569 if( !in_array('replaceafter', $options) ) {
570 $string = wfMsgReplaceArgs( $string, $args );
571 }
572
573 if( in_array('parse', $options) ) {
574 $string = $wgOut->parse( $string, true, true );
575 } elseif ( in_array('parseinline', $options) ) {
576 $string = $wgOut->parse( $string, true, true );
577 if( preg_match( "~^<p>(.*)\n?</p>$~", $string, $m = null ) ) {
578 $string = $m[1];
579 }
580 } elseif ( in_array('escape', $options) ) {
581 $string = htmlspecialchars ( $string );
582 }
583
584 if( in_array('replaceafter', $options) ) {
585 $string = wfMsgReplaceArgs( $string, $args );
586 }
587
588 return $string;
589 }
590
591
592 /**
593 * Just like exit() but makes a note of it.
594 * Commits open transactions except if the error parameter is set
595 */
596 function wfAbruptExit( $error = false ){
597 global $wgLoadBalancer;
598 static $called = false;
599 if ( $called ){
600 exit( -1 );
601 }
602 $called = true;
603
604 if( function_exists( 'debug_backtrace' ) ){ // PHP >= 4.3
605 $bt = debug_backtrace();
606 for($i = 0; $i < count($bt) ; $i++){
607 $file = isset($bt[$i]['file']) ? $bt[$i]['file'] : "unknown";
608 $line = isset($bt[$i]['line']) ? $bt[$i]['line'] : "unknown";
609 wfDebug("WARNING: Abrupt exit in $file at line $line\n");
610 }
611 } else {
612 wfDebug('WARNING: Abrupt exit\n');
613 }
614
615 wfProfileClose();
616 logProfilingData();
617
618 if ( !$error ) {
619 $wgLoadBalancer->closeAll();
620 }
621 exit( -1 );
622 }
623
624 /**
625 * @todo document
626 */
627 function wfErrorExit() {
628 wfAbruptExit( true );
629 }
630
631 /**
632 * Print a simple message and die, returning nonzero to the shell if any.
633 * Plain die() fails to return nonzero to the shell if you pass a string.
634 * @param string $msg
635 */
636 function wfDie( $msg='' ) {
637 echo $msg;
638 die( -1 );
639 }
640
641 /**
642 * Die with a backtrace
643 * This is meant as a debugging aid to track down where bad data comes from.
644 * Shouldn't be used in production code except maybe in "shouldn't happen" areas.
645 *
646 * @param string $msg Message shown when dieing.
647 */
648 function wfDebugDieBacktrace( $msg = '' ) {
649 global $wgCommandLineMode;
650
651 $backtrace = wfBacktrace();
652 if ( $backtrace !== false ) {
653 if ( $wgCommandLineMode ) {
654 $msg .= "\nBacktrace:\n$backtrace";
655 } else {
656 $msg .= "\n<p>Backtrace:</p>\n$backtrace";
657 }
658 }
659 echo $msg;
660 echo wfReportTime()."\n";
661 die( -1 );
662 }
663
664 /**
665 * Returns a HTML comment with the elapsed time since request.
666 * This method has no side effects.
667 * @return string
668 */
669 function wfReportTime() {
670 global $wgRequestTime;
671
672 $now = wfTime();
673 list( $usec, $sec ) = explode( ' ', $wgRequestTime );
674 $start = (float)$sec + (float)$usec;
675 $elapsed = $now - $start;
676
677 # Use real server name if available, so we know which machine
678 # in a server farm generated the current page.
679 if ( function_exists( 'posix_uname' ) ) {
680 $uname = @posix_uname();
681 } else {
682 $uname = false;
683 }
684 if( is_array( $uname ) && isset( $uname['nodename'] ) ) {
685 $hostname = $uname['nodename'];
686 } else {
687 # This may be a virtual server.
688 $hostname = $_SERVER['SERVER_NAME'];
689 }
690 $com = sprintf( "<!-- Served by %s in %01.3f secs. -->",
691 $hostname, $elapsed );
692 return $com;
693 }
694
695 function wfBacktrace() {
696 global $wgCommandLineMode;
697 if ( !function_exists( 'debug_backtrace' ) ) {
698 return false;
699 }
700
701 if ( $wgCommandLineMode ) {
702 $msg = '';
703 } else {
704 $msg = "<ul>\n";
705 }
706 $backtrace = debug_backtrace();
707 foreach( $backtrace as $call ) {
708 if( isset( $call['file'] ) ) {
709 $f = explode( DIRECTORY_SEPARATOR, $call['file'] );
710 $file = $f[count($f)-1];
711 } else {
712 $file = '-';
713 }
714 if( isset( $call['line'] ) ) {
715 $line = $call['line'];
716 } else {
717 $line = '-';
718 }
719 if ( $wgCommandLineMode ) {
720 $msg .= "$file line $line calls ";
721 } else {
722 $msg .= '<li>' . $file . ' line ' . $line . ' calls ';
723 }
724 if( !empty( $call['class'] ) ) $msg .= $call['class'] . '::';
725 $msg .= $call['function'] . '()';
726
727 if ( $wgCommandLineMode ) {
728 $msg .= "\n";
729 } else {
730 $msg .= "</li>\n";
731 }
732 }
733 if ( $wgCommandLineMode ) {
734 $msg .= "\n";
735 } else {
736 $msg .= "</ul>\n";
737 }
738
739 return $msg;
740 }
741
742
743 /* Some generic result counters, pulled out of SearchEngine */
744
745
746 /**
747 * @todo document
748 */
749 function wfShowingResults( $offset, $limit ) {
750 global $wgLang;
751 return wfMsg( 'showingresults', $wgLang->formatNum( $limit ), $wgLang->formatNum( $offset+1 ) );
752 }
753
754 /**
755 * @todo document
756 */
757 function wfShowingResultsNum( $offset, $limit, $num ) {
758 global $wgLang;
759 return wfMsg( 'showingresultsnum', $wgLang->formatNum( $limit ), $wgLang->formatNum( $offset+1 ), $wgLang->formatNum( $num ) );
760 }
761
762 /**
763 * @todo document
764 */
765 function wfViewPrevNext( $offset, $limit, $link, $query = '', $atend = false ) {
766 global $wgLang;
767 $fmtLimit = $wgLang->formatNum( $limit );
768 $prev = wfMsg( 'prevn', $fmtLimit );
769 $next = wfMsg( 'nextn', $fmtLimit );
770
771 if( is_object( $link ) ) {
772 $title =& $link;
773 } else {
774 $title = Title::newFromText( $link );
775 if( is_null( $title ) ) {
776 return false;
777 }
778 }
779
780 if ( 0 != $offset ) {
781 $po = $offset - $limit;
782 if ( $po < 0 ) { $po = 0; }
783 $q = "limit={$limit}&offset={$po}";
784 if ( '' != $query ) { $q .= '&'.$query; }
785 $plink = '<a href="' . $title->escapeLocalUrl( $q ) . "\">{$prev}</a>";
786 } else { $plink = $prev; }
787
788 $no = $offset + $limit;
789 $q = 'limit='.$limit.'&offset='.$no;
790 if ( '' != $query ) { $q .= '&'.$query; }
791
792 if ( $atend ) {
793 $nlink = $next;
794 } else {
795 $nlink = '<a href="' . $title->escapeLocalUrl( $q ) . "\">{$next}</a>";
796 }
797 $nums = wfNumLink( $offset, 20, $title, $query ) . ' | ' .
798 wfNumLink( $offset, 50, $title, $query ) . ' | ' .
799 wfNumLink( $offset, 100, $title, $query ) . ' | ' .
800 wfNumLink( $offset, 250, $title, $query ) . ' | ' .
801 wfNumLink( $offset, 500, $title, $query );
802
803 return wfMsg( 'viewprevnext', $plink, $nlink, $nums );
804 }
805
806 /**
807 * @todo document
808 */
809 function wfNumLink( $offset, $limit, &$title, $query = '' ) {
810 global $wgLang;
811 if ( '' == $query ) { $q = ''; }
812 else { $q = $query.'&'; }
813 $q .= 'limit='.$limit.'&offset='.$offset;
814
815 $fmtLimit = $wgLang->formatNum( $limit );
816 $s = '<a href="' . $title->escapeLocalUrl( $q ) . "\">{$fmtLimit}</a>";
817 return $s;
818 }
819
820 /**
821 * @todo document
822 * @todo FIXME: we may want to blacklist some broken browsers
823 *
824 * @return bool Whereas client accept gzip compression
825 */
826 function wfClientAcceptsGzip() {
827 global $wgUseGzip;
828 if( $wgUseGzip ) {
829 # FIXME: we may want to blacklist some broken browsers
830 if( preg_match(
831 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
832 $_SERVER['HTTP_ACCEPT_ENCODING'],
833 $m ) ) {
834 if( isset( $m[2] ) && ( $m[1] == 'q' ) && ( $m[2] == 0 ) ) return false;
835 wfDebug( " accepts gzip\n" );
836 return true;
837 }
838 }
839 return false;
840 }
841
842 /**
843 * Obtain the offset and limit values from the request string;
844 * used in special pages
845 *
846 * @param $deflimit Default limit if none supplied
847 * @param $optionname Name of a user preference to check against
848 * @return array
849 *
850 */
851 function wfCheckLimits( $deflimit = 50, $optionname = 'rclimit' ) {
852 global $wgRequest;
853 return $wgRequest->getLimitOffset( $deflimit, $optionname );
854 }
855
856 /**
857 * Escapes the given text so that it may be output using addWikiText()
858 * without any linking, formatting, etc. making its way through. This
859 * is achieved by substituting certain characters with HTML entities.
860 * As required by the callers, <nowiki> is not used. It currently does
861 * not filter out characters which have special meaning only at the
862 * start of a line, such as "*".
863 *
864 * @param string $text Text to be escaped
865 */
866 function wfEscapeWikiText( $text ) {
867 $text = str_replace(
868 array( '[', '|', '\'', 'ISBN ' , '://' , "\n=", '{{' ),
869 array( '&#91;', '&#124;', '&#39;', 'ISBN&#32;', '&#58;//' , "\n&#61;", '&#123;&#123;' ),
870 htmlspecialchars($text) );
871 return $text;
872 }
873
874 /**
875 * @todo document
876 */
877 function wfQuotedPrintable( $string, $charset = '' ) {
878 # Probably incomplete; see RFC 2045
879 if( empty( $charset ) ) {
880 global $wgInputEncoding;
881 $charset = $wgInputEncoding;
882 }
883 $charset = strtoupper( $charset );
884 $charset = str_replace( 'ISO-8859', 'ISO8859', $charset ); // ?
885
886 $illegal = '\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\xff=';
887 $replace = $illegal . '\t ?_';
888 if( !preg_match( "/[$illegal]/", $string ) ) return $string;
889 $out = "=?$charset?Q?";
890 $out .= preg_replace( "/([$replace])/e", 'sprintf("=%02X",ord("$1"))', $string );
891 $out .= '?=';
892 return $out;
893 }
894
895
896 /**
897 * @todo document
898 * @return float
899 */
900 function wfTime() {
901 $st = explode( ' ', microtime() );
902 return (float)$st[0] + (float)$st[1];
903 }
904
905 /**
906 * Sets dest to source and returns the original value of dest
907 * If source is NULL, it just returns the value, it doesn't set the variable
908 */
909 function wfSetVar( &$dest, $source ) {
910 $temp = $dest;
911 if ( !is_null( $source ) ) {
912 $dest = $source;
913 }
914 return $temp;
915 }
916
917 /**
918 * As for wfSetVar except setting a bit
919 */
920 function wfSetBit( &$dest, $bit, $state = true ) {
921 $temp = (bool)($dest & $bit );
922 if ( !is_null( $state ) ) {
923 if ( $state ) {
924 $dest |= $bit;
925 } else {
926 $dest &= ~$bit;
927 }
928 }
929 return $temp;
930 }
931
932 /**
933 * This function takes two arrays as input, and returns a CGI-style string, e.g.
934 * "days=7&limit=100". Options in the first array override options in the second.
935 * Options set to "" will not be output.
936 */
937 function wfArrayToCGI( $array1, $array2 = NULL )
938 {
939 if ( !is_null( $array2 ) ) {
940 $array1 = $array1 + $array2;
941 }
942
943 $cgi = '';
944 foreach ( $array1 as $key => $value ) {
945 if ( '' !== $value ) {
946 if ( '' != $cgi ) {
947 $cgi .= '&';
948 }
949 $cgi .= urlencode( $key ) . '=' . urlencode( $value );
950 }
951 }
952 return $cgi;
953 }
954
955 /**
956 * This is obsolete, use SquidUpdate::purge()
957 * @deprecated
958 */
959 function wfPurgeSquidServers ($urlArr) {
960 SquidUpdate::purge( $urlArr );
961 }
962
963 /**
964 * Windows-compatible version of escapeshellarg()
965 * Windows doesn't recognise single-quotes in the shell, but the escapeshellarg()
966 * function puts single quotes in regardless of OS
967 */
968 function wfEscapeShellArg( ) {
969 $args = func_get_args();
970 $first = true;
971 $retVal = '';
972 foreach ( $args as $arg ) {
973 if ( !$first ) {
974 $retVal .= ' ';
975 } else {
976 $first = false;
977 }
978
979 if ( wfIsWindows() ) {
980 // Escaping for an MSVC-style command line parser
981 // Ref: http://mailman.lyra.org/pipermail/scite-interest/2002-March/000436.html
982 // Double the backslashes before any double quotes. Escape the double quotes.
983 $tokens = preg_split( '/(\\\\*")/', $arg, -1, PREG_SPLIT_DELIM_CAPTURE );
984 $arg = '';
985 $delim = false;
986 foreach ( $tokens as $token ) {
987 if ( $delim ) {
988 $arg .= str_replace( '\\', '\\\\', substr( $token, 0, -1 ) ) . '\\"';
989 } else {
990 $arg .= $token;
991 }
992 $delim = !$delim;
993 }
994 // Double the backslashes before the end of the string, because
995 // we will soon add a quote
996 if ( preg_match( '/^(.*?)(\\\\+)$/', $arg, $m ) ) {
997 $arg = $m[1] . str_replace( '\\', '\\\\', $m[2] );
998 }
999
1000 // Add surrounding quotes
1001 $retVal .= '"' . $arg . '"';
1002 } else {
1003 $retVal .= escapeshellarg( $arg );
1004 }
1005 }
1006 return $retVal;
1007 }
1008
1009 /**
1010 * wfMerge attempts to merge differences between three texts.
1011 * Returns true for a clean merge and false for failure or a conflict.
1012 */
1013 function wfMerge( $old, $mine, $yours, &$result ){
1014 global $wgDiff3;
1015
1016 # This check may also protect against code injection in
1017 # case of broken installations.
1018 if(! file_exists( $wgDiff3 ) ){
1019 wfDebug( "diff3 not found\n" );
1020 return false;
1021 }
1022
1023 # Make temporary files
1024 $td = wfTempDir();
1025 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
1026 $mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
1027 $yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
1028
1029 fwrite( $oldtextFile, $old ); fclose( $oldtextFile );
1030 fwrite( $mytextFile, $mine ); fclose( $mytextFile );
1031 fwrite( $yourtextFile, $yours ); fclose( $yourtextFile );
1032
1033 # Check for a conflict
1034 $cmd = $wgDiff3 . ' -a --overlap-only ' .
1035 wfEscapeShellArg( $mytextName ) . ' ' .
1036 wfEscapeShellArg( $oldtextName ) . ' ' .
1037 wfEscapeShellArg( $yourtextName );
1038 $handle = popen( $cmd, 'r' );
1039
1040 if( fgets( $handle, 1024 ) ){
1041 $conflict = true;
1042 } else {
1043 $conflict = false;
1044 }
1045 pclose( $handle );
1046
1047 # Merge differences
1048 $cmd = $wgDiff3 . ' -a -e --merge ' .
1049 wfEscapeShellArg( $mytextName, $oldtextName, $yourtextName );
1050 $handle = popen( $cmd, 'r' );
1051 $result = '';
1052 do {
1053 $data = fread( $handle, 8192 );
1054 if ( strlen( $data ) == 0 ) {
1055 break;
1056 }
1057 $result .= $data;
1058 } while ( true );
1059 pclose( $handle );
1060 unlink( $mytextName ); unlink( $oldtextName ); unlink( $yourtextName );
1061
1062 if ( $result === '' && $old !== '' && $conflict == false ) {
1063 wfDebug( "Unexpected null result from diff3. Command: $cmd\n" );
1064 $conflict = true;
1065 }
1066 return ! $conflict;
1067 }
1068
1069 /**
1070 * @todo document
1071 */
1072 function wfVarDump( $var ) {
1073 global $wgOut;
1074 $s = str_replace("\n","<br />\n", var_export( $var, true ) . "\n");
1075 if ( headers_sent() || !@is_object( $wgOut ) ) {
1076 print $s;
1077 } else {
1078 $wgOut->addHTML( $s );
1079 }
1080 }
1081
1082 /**
1083 * Provide a simple HTTP error.
1084 */
1085 function wfHttpError( $code, $label, $desc ) {
1086 global $wgOut;
1087 $wgOut->disable();
1088 header( "HTTP/1.0 $code $label" );
1089 header( "Status: $code $label" );
1090 $wgOut->sendCacheControl();
1091
1092 header( 'Content-type: text/html' );
1093 print "<html><head><title>" .
1094 htmlspecialchars( $label ) .
1095 "</title></head><body><h1>" .
1096 htmlspecialchars( $label ) .
1097 "</h1><p>" .
1098 htmlspecialchars( $desc ) .
1099 "</p></body></html>\n";
1100 }
1101
1102 /**
1103 * Converts an Accept-* header into an array mapping string values to quality
1104 * factors
1105 */
1106 function wfAcceptToPrefs( $accept, $def = '*/*' ) {
1107 # No arg means accept anything (per HTTP spec)
1108 if( !$accept ) {
1109 return array( $def => 1 );
1110 }
1111
1112 $prefs = array();
1113
1114 $parts = explode( ',', $accept );
1115
1116 foreach( $parts as $part ) {
1117 # FIXME: doesn't deal with params like 'text/html; level=1'
1118 @list( $value, $qpart ) = explode( ';', $part );
1119 if( !isset( $qpart ) ) {
1120 $prefs[$value] = 1;
1121 } elseif( preg_match( '/q\s*=\s*(\d*\.\d+)/', $qpart, $match ) ) {
1122 $prefs[$value] = $match[1];
1123 }
1124 }
1125
1126 return $prefs;
1127 }
1128
1129 /**
1130 * Checks if a given MIME type matches any of the keys in the given
1131 * array. Basic wildcards are accepted in the array keys.
1132 *
1133 * Returns the matching MIME type (or wildcard) if a match, otherwise
1134 * NULL if no match.
1135 *
1136 * @param string $type
1137 * @param array $avail
1138 * @return string
1139 * @private
1140 */
1141 function mimeTypeMatch( $type, $avail ) {
1142 if( array_key_exists($type, $avail) ) {
1143 return $type;
1144 } else {
1145 $parts = explode( '/', $type );
1146 if( array_key_exists( $parts[0] . '/*', $avail ) ) {
1147 return $parts[0] . '/*';
1148 } elseif( array_key_exists( '*/*', $avail ) ) {
1149 return '*/*';
1150 } else {
1151 return NULL;
1152 }
1153 }
1154 }
1155
1156 /**
1157 * Returns the 'best' match between a client's requested internet media types
1158 * and the server's list of available types. Each list should be an associative
1159 * array of type to preference (preference is a float between 0.0 and 1.0).
1160 * Wildcards in the types are acceptable.
1161 *
1162 * @param array $cprefs Client's acceptable type list
1163 * @param array $sprefs Server's offered types
1164 * @return string
1165 *
1166 * @todo FIXME: doesn't handle params like 'text/plain; charset=UTF-8'
1167 * XXX: generalize to negotiate other stuff
1168 */
1169 function wfNegotiateType( $cprefs, $sprefs ) {
1170 $combine = array();
1171
1172 foreach( array_keys($sprefs) as $type ) {
1173 $parts = explode( '/', $type );
1174 if( $parts[1] != '*' ) {
1175 $ckey = mimeTypeMatch( $type, $cprefs );
1176 if( $ckey ) {
1177 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1178 }
1179 }
1180 }
1181
1182 foreach( array_keys( $cprefs ) as $type ) {
1183 $parts = explode( '/', $type );
1184 if( $parts[1] != '*' && !array_key_exists( $type, $sprefs ) ) {
1185 $skey = mimeTypeMatch( $type, $sprefs );
1186 if( $skey ) {
1187 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1188 }
1189 }
1190 }
1191
1192 $bestq = 0;
1193 $besttype = NULL;
1194
1195 foreach( array_keys( $combine ) as $type ) {
1196 if( $combine[$type] > $bestq ) {
1197 $besttype = $type;
1198 $bestq = $combine[$type];
1199 }
1200 }
1201
1202 return $besttype;
1203 }
1204
1205 /**
1206 * Array lookup
1207 * Returns an array where the values in the first array are replaced by the
1208 * values in the second array with the corresponding keys
1209 *
1210 * @return array
1211 */
1212 function wfArrayLookup( $a, $b ) {
1213 return array_flip( array_intersect( array_flip( $a ), array_keys( $b ) ) );
1214 }
1215
1216 /**
1217 * Convenience function; returns MediaWiki timestamp for the present time.
1218 * @return string
1219 */
1220 function wfTimestampNow() {
1221 # return NOW
1222 return wfTimestamp( TS_MW, time() );
1223 }
1224
1225 /**
1226 * Reference-counted warning suppression
1227 */
1228 function wfSuppressWarnings( $end = false ) {
1229 static $suppressCount = 0;
1230 static $originalLevel = false;
1231
1232 if ( $end ) {
1233 if ( $suppressCount ) {
1234 --$suppressCount;
1235 if ( !$suppressCount ) {
1236 error_reporting( $originalLevel );
1237 }
1238 }
1239 } else {
1240 if ( !$suppressCount ) {
1241 $originalLevel = error_reporting( E_ALL & ~( E_WARNING | E_NOTICE ) );
1242 }
1243 ++$suppressCount;
1244 }
1245 }
1246
1247 /**
1248 * Restore error level to previous value
1249 */
1250 function wfRestoreWarnings() {
1251 wfSuppressWarnings( true );
1252 }
1253
1254 # Autodetect, convert and provide timestamps of various types
1255
1256 /**
1257 * Unix time - the number of seconds since 1970-01-01 00:00:00 UTC
1258 */
1259 define('TS_UNIX', 0);
1260
1261 /**
1262 * MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
1263 */
1264 define('TS_MW', 1);
1265
1266 /**
1267 * MySQL DATETIME (YYYY-MM-DD HH:MM:SS)
1268 */
1269 define('TS_DB', 2);
1270
1271 /**
1272 * RFC 2822 format, for E-mail and HTTP headers
1273 */
1274 define('TS_RFC2822', 3);
1275
1276 /**
1277 * ISO 8601 format with no timezone: 1986-02-09T20:00:00Z
1278 *
1279 * This is used by Special:Export
1280 */
1281 define('TS_ISO_8601', 4);
1282
1283 /**
1284 * An Exif timestamp (YYYY:MM:DD HH:MM:SS)
1285 *
1286 * @url http://exif.org/Exif2-2.PDF The Exif 2.2 spec, see page 28 for the
1287 * DateTime tag and page 36 for the DateTimeOriginal and
1288 * DateTimeDigitized tags.
1289 */
1290 define('TS_EXIF', 5);
1291
1292 /**
1293 * Oracle format time.
1294 */
1295 define('TS_ORACLE', 6);
1296
1297 /**
1298 * @param mixed $outputtype A timestamp in one of the supported formats, the
1299 * function will autodetect which format is supplied
1300 * and act accordingly.
1301 * @return string Time in the format specified in $outputtype
1302 */
1303 function wfTimestamp($outputtype=TS_UNIX,$ts=0) {
1304 $uts = 0;
1305 if ($ts==0) {
1306 $uts=time();
1307 } elseif (preg_match("/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)$/",$ts,$da)) {
1308 # TS_DB
1309 $uts=gmmktime((int)$da[4],(int)$da[5],(int)$da[6],
1310 (int)$da[2],(int)$da[3],(int)$da[1]);
1311 } elseif (preg_match("/^(\d{4}):(\d\d):(\d\d) (\d\d):(\d\d):(\d\d)$/",$ts,$da)) {
1312 # TS_EXIF
1313 $uts=gmmktime((int)$da[4],(int)$da[5],(int)$da[6],
1314 (int)$da[2],(int)$da[3],(int)$da[1]);
1315 } elseif (preg_match("/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/",$ts,$da)) {
1316 # TS_MW
1317 $uts=gmmktime((int)$da[4],(int)$da[5],(int)$da[6],
1318 (int)$da[2],(int)$da[3],(int)$da[1]);
1319 } elseif (preg_match("/^(\d{1,13})$/",$ts,$datearray)) {
1320 # TS_UNIX
1321 $uts=$ts;
1322 } elseif (preg_match('/^(\d{1,2})-(...)-(\d\d(\d\d)?) (\d\d)\.(\d\d)\.(\d\d)/', $ts, $da)) {
1323 # TS_ORACLE
1324 $uts = strtotime(preg_replace('/(\d\d)\.(\d\d)\.(\d\d)(\.(\d+))?/', "$1:$2:$3",
1325 str_replace("+00:00", "UTC", $ts)));
1326 } elseif (preg_match('/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})Z$/', $ts, $da)) {
1327 # TS_ISO_8601
1328 $uts=gmmktime((int)$da[4],(int)$da[5],(int)$da[6],
1329 (int)$da[2],(int)$da[3],(int)$da[1]);
1330 } else {
1331 # Bogus value; fall back to the epoch...
1332 wfDebug("wfTimestamp() fed bogus time value: $outputtype; $ts\n");
1333 $uts = 0;
1334 }
1335
1336
1337 switch($outputtype) {
1338 case TS_UNIX:
1339 return $uts;
1340 case TS_MW:
1341 return gmdate( 'YmdHis', $uts );
1342 case TS_DB:
1343 return gmdate( 'Y-m-d H:i:s', $uts );
1344 case TS_ISO_8601:
1345 return gmdate( 'Y-m-d\TH:i:s\Z', $uts );
1346 // This shouldn't ever be used, but is included for completeness
1347 case TS_EXIF:
1348 return gmdate( 'Y:m:d H:i:s', $uts );
1349 case TS_RFC2822:
1350 return gmdate( 'D, d M Y H:i:s', $uts ) . ' GMT';
1351 case TS_ORACLE:
1352 return gmdate( 'd-M-y h.i.s A', $uts) . ' +00:00';
1353 default:
1354 wfDebugDieBacktrace( 'wfTimestamp() called with illegal output type.');
1355 }
1356 }
1357
1358 /**
1359 * Return a formatted timestamp, or null if input is null.
1360 * For dealing with nullable timestamp columns in the database.
1361 * @param int $outputtype
1362 * @param string $ts
1363 * @return string
1364 */
1365 function wfTimestampOrNull( $outputtype = TS_UNIX, $ts = null ) {
1366 if( is_null( $ts ) ) {
1367 return null;
1368 } else {
1369 return wfTimestamp( $outputtype, $ts );
1370 }
1371 }
1372
1373 /**
1374 * Check if the operating system is Windows
1375 *
1376 * @return bool True if it's Windows, False otherwise.
1377 */
1378 function wfIsWindows() {
1379 if (substr(php_uname(), 0, 7) == 'Windows') {
1380 return true;
1381 } else {
1382 return false;
1383 }
1384 }
1385
1386 /**
1387 * Swap two variables
1388 */
1389 function swap( &$x, &$y ) {
1390 $z = $x;
1391 $x = $y;
1392 $y = $z;
1393 }
1394
1395 function wfGetCachedNotice( $name ) {
1396 global $wgOut, $parserMemc, $wgDBname;
1397 $fname = 'wfGetCachedNotice';
1398 wfProfileIn( $fname );
1399
1400 $needParse = false;
1401 $notice = wfMsgForContent( $name );
1402 if( $notice == '&lt;'. $name . ';&gt' || $notice == '-' ) {
1403 wfProfileOut( $fname );
1404 return( false );
1405 }
1406
1407 $cachedNotice = $parserMemc->get( $wgDBname . ':' . $name );
1408 if( is_array( $cachedNotice ) ) {
1409 if( md5( $notice ) == $cachedNotice['hash'] ) {
1410 $notice = $cachedNotice['html'];
1411 } else {
1412 $needParse = true;
1413 }
1414 } else {
1415 $needParse = true;
1416 }
1417
1418 if( $needParse ) {
1419 if( is_object( $wgOut ) ) {
1420 $parsed = $wgOut->parse( $notice );
1421 $parserMemc->set( $wgDBname . ':' . $name, array( 'html' => $parsed, 'hash' => md5( $notice ) ), 600 );
1422 $notice = $parsed;
1423 } else {
1424 wfDebug( 'wfGetCachedNotice called for ' . $name . ' with no $wgOut available' );
1425 $notice = '';
1426 }
1427 }
1428
1429 wfProfileOut( $fname );
1430 return $notice;
1431 }
1432
1433 function wfGetNamespaceNotice() {
1434 global $wgTitle;
1435
1436 # Paranoia
1437 if ( !isset( $wgTitle ) || !is_object( $wgTitle ) )
1438 return "";
1439
1440 $fname = 'wfGetNamespaceNotice';
1441 wfProfileIn( $fname );
1442
1443 $key = "namespacenotice-" . $wgTitle->getNsText();
1444 $namespaceNotice = wfGetCachedNotice( $key );
1445 if ( $namespaceNotice && substr ( $namespaceNotice , 0 ,7 ) != "<p>&lt;" ) {
1446 $namespaceNotice = '<div id="namespacebanner">' . $namespaceNotice . "</div>";
1447 } else {
1448 $namespaceNotice = "";
1449 }
1450
1451 wfProfileOut( $fname );
1452 return $namespaceNotice;
1453 }
1454
1455 function wfGetSiteNotice() {
1456 global $wgUser, $wgSiteNotice;
1457 $fname = 'wfGetSiteNotice';
1458 wfProfileIn( $fname );
1459
1460 if( is_object( $wgUser ) && $wgUser->isLoggedIn() ) {
1461 $siteNotice = wfGetCachedNotice( 'sitenotice' );
1462 $siteNotice = !$siteNotice ? $wgSiteNotice : $siteNotice;
1463 } else {
1464 $anonNotice = wfGetCachedNotice( 'anonnotice' );
1465 if( !$anonNotice ) {
1466 $siteNotice = wfGetCachedNotice( 'sitenotice' );
1467 $siteNotice = !$siteNotice ? $wgSiteNotice : $siteNotice;
1468 } else {
1469 $siteNotice = $anonNotice;
1470 }
1471 }
1472
1473 wfProfileOut( $fname );
1474 return( $siteNotice );
1475 }
1476
1477 /** Global singleton instance of MimeMagic. This is initialized on demand,
1478 * please always use the wfGetMimeMagic() function to get the instance.
1479 *
1480 * @private
1481 */
1482 $wgMimeMagic= NULL;
1483
1484 /** Factory functions for the global MimeMagic object.
1485 * This function always returns the same singleton instance of MimeMagic.
1486 * That objects will be instantiated on the first call to this function.
1487 * If needed, the MimeMagic.php file is automatically included by this function.
1488 * @return MimeMagic the global MimeMagic objects.
1489 */
1490 function &wfGetMimeMagic() {
1491 global $wgMimeMagic;
1492
1493 if (!is_null($wgMimeMagic)) {
1494 return $wgMimeMagic;
1495 }
1496
1497 if (!class_exists("MimeMagic")) {
1498 #include on demand
1499 require_once("MimeMagic.php");
1500 }
1501
1502 $wgMimeMagic= new MimeMagic();
1503
1504 return $wgMimeMagic;
1505 }
1506
1507
1508 /**
1509 * Tries to get the system directory for temporary files.
1510 * The TMPDIR, TMP, and TEMP environment variables are checked in sequence,
1511 * and if none are set /tmp is returned as the generic Unix default.
1512 *
1513 * NOTE: When possible, use the tempfile() function to create temporary
1514 * files to avoid race conditions on file creation, etc.
1515 *
1516 * @return string
1517 */
1518 function wfTempDir() {
1519 foreach( array( 'TMPDIR', 'TMP', 'TEMP' ) as $var ) {
1520 $tmp = getenv( $var );
1521 if( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
1522 return $tmp;
1523 }
1524 }
1525 # Hope this is Unix of some kind!
1526 return '/tmp';
1527 }
1528
1529 /**
1530 * Make directory, and make all parent directories if they don't exist
1531 */
1532 function wfMkdirParents( $fullDir, $mode ) {
1533 $parts = explode( '/', $fullDir );
1534 $path = '';
1535
1536 foreach ( $parts as $dir ) {
1537 $path .= $dir . '/';
1538 if ( !is_dir( $path ) ) {
1539 if ( !mkdir( $path, $mode ) ) {
1540 return false;
1541 }
1542 }
1543 }
1544 return true;
1545 }
1546
1547 /**
1548 * Increment a statistics counter
1549 */
1550 function wfIncrStats( $key ) {
1551 global $wgDBname, $wgMemc;
1552 $key = "$wgDBname:stats:$key";
1553 if ( is_null( $wgMemc->incr( $key ) ) ) {
1554 $wgMemc->add( $key, 1 );
1555 }
1556 }
1557
1558 /**
1559 * @param mixed $nr The number to format
1560 * @param int $acc The number of digits after the decimal point, default 2
1561 * @param bool $round Whether or not to round the value, default true
1562 * @return float
1563 */
1564 function wfPercent( $nr, $acc = 2, $round = true ) {
1565 $ret = sprintf( "%.${acc}f", $nr );
1566 return $round ? round( $ret, $acc ) . '%' : "$ret%";
1567 }
1568
1569 /**
1570 * Encrypt a username/password.
1571 *
1572 * @param string $userid ID of the user
1573 * @param string $password Password of the user
1574 * @return string Hashed password
1575 */
1576 function wfEncryptPassword( $userid, $password ) {
1577 global $wgPasswordSalt;
1578 $p = md5( $password);
1579
1580 if($wgPasswordSalt)
1581 return md5( "{$userid}-{$p}" );
1582 else
1583 return $p;
1584 }
1585
1586 /**
1587 * Appends to second array if $value differs from that in $default
1588 */
1589 function wfAppendToArrayIfNotDefault( $key, $value, $default, &$changed ) {
1590 if ( is_null( $changed ) ) {
1591 wfDebugDieBacktrace('GlobalFunctions::wfAppendToArrayIfNotDefault got null');
1592 }
1593 if ( $default[$key] !== $value ) {
1594 $changed[$key] = $value;
1595 }
1596 }
1597
1598 /**
1599 * Since wfMsg() and co suck, they don't return false if the message key they
1600 * looked up didn't exist but a XHTML string, this function checks for the
1601 * nonexistance of messages by looking at wfMsg() output
1602 *
1603 * @param $msg The message key looked up
1604 * @param $wfMsgOut The output of wfMsg*()
1605 * @return bool
1606 */
1607 function wfEmptyMsg( $msg, $wfMsgOut ) {
1608 return $wfMsgOut === "&lt;$msg&gt;";
1609 }
1610
1611 /**
1612 * Find out whether or not a mixed variable exists in a string
1613 *
1614 * @param mixed needle
1615 * @param string haystack
1616 * @return bool
1617 */
1618 function in_string( $needle, $str ) {
1619 return strpos( $str, $needle ) !== false;
1620 }
1621
1622 /**
1623 * Returns a regular expression of url protocols
1624 *
1625 * @return string
1626 */
1627 function wfUrlProtocols() {
1628 global $wgUrlProtocols;
1629
1630 // Support old-style $wgUrlProtocols strings, for backwards compatibility
1631 // with LocalSettings files from 1.5
1632 if ( is_array( $wgUrlProtocols ) ) {
1633 $protocols = array();
1634 foreach ($wgUrlProtocols as $protocol)
1635 $protocols[] = preg_quote( $protocol, '/' );
1636
1637 return implode( '|', $protocols );
1638 } else {
1639 return $wgUrlProtocols;
1640 }
1641 }
1642
1643 /**
1644 * shell_exec() with time and memory limits mirrored from the PHP configuration,
1645 * if supported.
1646 */
1647 function wfShellExec( $cmd )
1648 {
1649 global $IP;
1650
1651 if ( php_uname( 's' ) == 'Linux' ) {
1652 $time = ini_get( 'max_execution_time' );
1653 $mem = ini_get( 'memory_limit' );
1654 if( preg_match( '/^([0-9]+)[Mm]$/', trim( $mem ), $m ) ) {
1655 $mem = intval( $m[1] * (1024*1024) );
1656 }
1657 if ( $time > 0 && $mem > 0 ) {
1658 $script = "$IP/bin/ulimit.sh";
1659 if ( is_executable( $script ) ) {
1660 $memKB = intval( $mem / 1024 );
1661 $cmd = escapeshellarg( $script ) . " $time $memKB $cmd";
1662 }
1663 }
1664 } elseif ( php_uname( 's' ) == 'Windows NT' ) {
1665 # This is a hack to work around PHP's flawed invocation of cmd.exe
1666 # http://news.php.net/php.internals/21796
1667 $cmd = '"' . $cmd . '"';
1668 }
1669 wfDebug( "wfShellExec: $cmd\n" );
1670 return shell_exec( $cmd );
1671 }
1672
1673 /**
1674 * This function works like "use VERSION" in Perl, the program will die with a
1675 * backtrace if the current version of PHP is less than the version provided
1676 *
1677 * This is useful for extensions which due to their nature are not kept in sync
1678 * with releases, and might depend on other versions of PHP than the main code
1679 *
1680 * Note: PHP might die due to parsing errors in some cases before it ever
1681 * manages to call this function, such is life
1682 *
1683 * @see perldoc -f use
1684 *
1685 * @param mixed $version The version to check, can be a string, an integer, or
1686 * a float
1687 */
1688 function wfUsePHP( $req_ver ) {
1689 $php_ver = PHP_VERSION;
1690
1691 if ( version_compare( $php_ver, (string)$req_ver, '<' ) )
1692 wfDebugDieBacktrace( "PHP $req_ver required--this is only $php_ver" );
1693 }
1694
1695 /**
1696 * This function works like "use VERSION" in Perl except it checks the version
1697 * of MediaWiki, the program will die with a backtrace if the current version
1698 * of MediaWiki is less than the version provided.
1699 *
1700 * This is useful for extensions which due to their nature are not kept in sync
1701 * with releases
1702 *
1703 * @see perldoc -f use
1704 *
1705 * @param mixed $version The version to check, can be a string, an integer, or
1706 * a float
1707 */
1708 function wfUseMW( $req_ver ) {
1709 global $wgVersion;
1710
1711 if ( version_compare( $wgVersion, (string)$req_ver, '<' ) )
1712 wfDebugDieBacktrace( "MediaWiki $req_ver required--this is only $wgVersion" );
1713 }
1714
1715 /**
1716 * Escape a string to make it suitable for inclusion in a preg_replace()
1717 * replacement parameter.
1718 *
1719 * @param string $string
1720 * @return string
1721 */
1722 function wfRegexReplacement( $string ) {
1723 $string = str_replace( '\\', '\\\\', $string );
1724 $string = str_replace( '$', '\\$', $string );
1725 return $string;
1726 }
1727
1728 /**
1729 * Return the final portion of a pathname.
1730 * Reimplemented because PHP5's basename() is buggy with multibyte text.
1731 * http://bugs.php.net/bug.php?id=33898
1732 *
1733 * PHP's basename() only considers '\' a pathchar on Windows and Netware.
1734 * We'll consider it so always, as we don't want \s in our Unix paths either.
1735 *
1736 * @param string $path
1737 * @return string
1738 */
1739 function wfBaseName( $path ) {
1740 if( preg_match( '#([^/\\\\]*)[/\\\\]*$#', $path, $matches ) ) {
1741 return $matches[1];
1742 } else {
1743 return '';
1744 }
1745 }
1746
1747 /**
1748 * Make a URL index, appropriate for the el_index field of externallinks.
1749 */
1750 function wfMakeUrlIndex( $url ) {
1751 wfSuppressWarnings();
1752 $bits = parse_url( $url );
1753 wfRestoreWarnings();
1754 if ( !$bits || $bits['scheme'] !== 'http' ) {
1755 return false;
1756 }
1757 // Reverse the labels in the hostname, convert to lower case
1758 $reversedHost = strtolower( implode( '.', array_reverse( explode( '.', $bits['host'] ) ) ) );
1759 // Add an extra dot to the end
1760 if ( substr( $reversedHost, -1, 1 ) !== '.' ) {
1761 $reversedHost .= '.';
1762 }
1763 // Reconstruct the pseudo-URL
1764 $index = "http://$reversedHost";
1765 // Leave out user and password. Add the port, path, query and fragment
1766 if ( isset( $bits['port'] ) ) $index .= ':' . $bits['port'];
1767 if ( isset( $bits['path'] ) ) {
1768 $index .= $bits['path'];
1769 } else {
1770 $index .= '/';
1771 }
1772 if ( isset( $bits['query'] ) ) $index .= '?' . $bits['query'];
1773 if ( isset( $bits['fragment'] ) ) $index .= '#' . $bits['fragment'];
1774 return $index;
1775 }
1776
1777 /**
1778 * Do any deferred updates and clear the list
1779 * TODO: This could be in Wiki.php if that class made any sense at all
1780 */
1781 function wfDoUpdates()
1782 {
1783 global $wgPostCommitUpdateList, $wgDeferredUpdateList;
1784 foreach ( $wgDeferredUpdateList as $update ) {
1785 $update->doUpdate();
1786 }
1787 foreach ( $wgPostCommitUpdateList as $update ) {
1788 $update->doUpdate();
1789 }
1790 $wgDeferredUpdateList = array();
1791 $wgPostCommitUpdateList = array();
1792 }
1793
1794 /**
1795 * More or less "markup-safe" explode()
1796 * Ignores any instances of the separator inside <...>
1797 * @param string $separator
1798 * @param string $text
1799 * @return array
1800 */
1801 function wfExplodeMarkup( $separator, $text ) {
1802 $placeholder = "\x00";
1803
1804 // Just in case...
1805 $text = str_replace( $placeholder, '', $text );
1806
1807 // Trim stuff
1808 $replacer = new ReplacerCallback( $separator, $placeholder );
1809 $cleaned = preg_replace_callback( '/(<.*?>)/', array( $replacer, 'go' ), $text );
1810
1811 $items = explode( $separator, $cleaned );
1812 foreach( $items as $i => $str ) {
1813 $items[$i] = str_replace( $placeholder, $separator, $str );
1814 }
1815
1816 return $items;
1817 }
1818
1819 class ReplacerCallback {
1820 function ReplacerCallback( $from, $to ) {
1821 $this->from = $from;
1822 $this->to = $to;
1823 }
1824
1825 function go( $matches ) {
1826 return str_replace( $this->from, $this->to, $matches[1] );
1827 }
1828 }
1829
1830 ?>