2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2003-04-14 23:10:40 +00:00
|
|
|
# Global functions used everywhere
|
|
|
|
|
|
|
|
|
|
$wgNumberOfArticles = -1; # Unset
|
|
|
|
|
$wgTotalViews = -1;
|
|
|
|
|
$wgTotalEdits = -1;
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
require_once( 'DatabaseFunctions.php' );
|
|
|
|
|
require_once( 'UpdateClasses.php' );
|
|
|
|
|
require_once( 'LogPage.php' );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-11-16 14:30:39 +00:00
|
|
|
/*
|
|
|
|
|
* Compatibility functions
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
# PHP <4.3.x is not actively supported; 4.1.x and 4.2.x might or might not work.
|
|
|
|
|
# <4.1.x will not work, as we use a number of features introduced in 4.1.0
|
|
|
|
|
# such as the new autoglobals.
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-11-09 11:45:12 +00:00
|
|
|
if( !function_exists('iconv') ) {
|
2003-11-16 14:30:39 +00:00
|
|
|
# iconv support is not in the default configuration and so may not be present.
|
2003-11-09 11:45:12 +00:00
|
|
|
# Assume will only ever use utf-8 and iso-8859-1.
|
|
|
|
|
# This will *not* work in all circumstances.
|
|
|
|
|
function iconv( $from, $to, $string ) {
|
2003-11-15 14:47:31 +00:00
|
|
|
if(strcasecmp( $from, $to ) == 0) return $string;
|
2004-06-08 20:06:01 +00:00
|
|
|
if(strcasecmp( $from, 'utf-8' ) == 0) return utf8_decode( $string );
|
|
|
|
|
if(strcasecmp( $to, 'utf-8' ) == 0) return utf8_encode( $string );
|
2003-11-09 11:45:12 +00:00
|
|
|
return $string;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-15 14:47:31 +00:00
|
|
|
if( !function_exists('file_get_contents') ) {
|
|
|
|
|
# Exists in PHP 4.3.0+
|
|
|
|
|
function file_get_contents( $filename ) {
|
2004-06-08 20:06:01 +00:00
|
|
|
return implode( '', file( $filename ) );
|
2003-11-15 14:47:31 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-05-10 01:54:56 +00:00
|
|
|
if( !function_exists('is_a') ) {
|
|
|
|
|
# Exists in PHP 4.2.0+
|
|
|
|
|
function is_a( $object, $class_name ) {
|
|
|
|
|
return
|
|
|
|
|
(strcasecmp( get_class( $object, $class_name ) == 0) ||
|
|
|
|
|
is_subclass_of( $object, $class_name ) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# html_entity_decode exists in PHP 4.3.0+ but is FATALLY BROKEN even then,
|
|
|
|
|
# with no UTF-8 support.
|
2004-06-08 20:06:01 +00:00
|
|
|
function do_html_entity_decode( $string, $quote_style=ENT_COMPAT, $charset='ISO-8859-1' ) {
|
2004-05-10 01:54:56 +00:00
|
|
|
static $trans;
|
|
|
|
|
if( !isset( $trans ) ) {
|
|
|
|
|
$trans = array_flip( get_html_translation_table( HTML_ENTITIES, $quote_style ) );
|
|
|
|
|
# Assumes $charset will always be the same through a run, and only understands
|
|
|
|
|
# utf-8 or default. Note - mixing latin1 named entities and unicode numbered
|
|
|
|
|
# ones will result in a bad link.
|
2004-06-08 20:06:01 +00:00
|
|
|
if( strcasecmp( 'utf-8', $charset ) == 0 ) {
|
|
|
|
|
$trans = array_map( 'utf8_encode', $trans );
|
2004-05-10 01:54:56 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return strtr( $string, $trans );
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgRandomSeeded = false;
|
|
|
|
|
|
|
|
|
|
function wfSeedRandom()
|
|
|
|
|
{
|
|
|
|
|
global $wgRandomSeeded;
|
|
|
|
|
|
|
|
|
|
if ( ! $wgRandomSeeded ) {
|
2003-06-03 21:27:06 +00:00
|
|
|
$seed = hexdec(substr(md5(microtime()),-8)) & 0x7fffffff;
|
|
|
|
|
mt_srand( $seed );
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgRandomSeeded = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-06 01:49:16 +00:00
|
|
|
# Generates a URL from a URL-encoded title and a query string
|
2004-03-07 07:26:56 +00:00
|
|
|
# Title::getLocalURL() is preferred in most cases
|
2004-03-06 01:49:16 +00:00
|
|
|
#
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfLocalUrl( $a, $q = '' )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
|
|
|
|
global $wgServer, $wgScript, $wgArticlePath;
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$a = str_replace( ' ', '_', $a );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
if ( '' == $a ) {
|
|
|
|
|
if( '' == $q ) {
|
2003-05-15 20:44:55 +00:00
|
|
|
$a = $wgScript;
|
2003-04-14 23:10:40 +00:00
|
|
|
} else {
|
2003-05-15 20:44:55 +00:00
|
|
|
$a = "{$wgScript}?{$q}";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-06-08 20:06:01 +00:00
|
|
|
} else if ( '' == $q ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$a = str_replace( "$1", $a, $wgArticlePath );
|
2004-02-03 13:20:56 +00:00
|
|
|
} else if ($wgScript != '' ) {
|
|
|
|
|
$a = "{$wgScript}?title={$a}&{$q}";
|
2004-05-17 20:04:50 +00:00
|
|
|
} else { //XXX hackish solution for toplevel wikis
|
|
|
|
|
$a = "/{$a}?{$q}";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
return $a;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfLocalUrlE( $a, $q = '' )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
|
|
|
|
return wfEscapeHTML( wfLocalUrl( $a, $q ) );
|
2004-03-07 07:26:56 +00:00
|
|
|
# die( "Call to obsolete function wfLocalUrlE()" );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfFullUrl( $a, $q = '' ) {
|
|
|
|
|
wfDebugDieBacktrace( 'Call to obsolete function wfFullUrl(); use Title::getFullURL' );
|
2003-06-23 07:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfFullUrlE( $a, $q = '' ) {
|
|
|
|
|
wfDebugDieBacktrace( 'Call to obsolete function wfFullUrlE(); use Title::getFullUrlE' );
|
2004-03-06 01:49:16 +00:00
|
|
|
|
2003-06-23 07:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
2004-05-04 20:35:37 +00:00
|
|
|
// orphan function wfThumbUrl( $img )
|
|
|
|
|
//{
|
|
|
|
|
// global $wgUploadPath;
|
|
|
|
|
//
|
|
|
|
|
// $nt = Title::newFromText( $img );
|
|
|
|
|
// if( !$nt ) return "";
|
|
|
|
|
//
|
|
|
|
|
// $name = $nt->getDBkey();
|
|
|
|
|
// $hash = md5( $name );
|
|
|
|
|
//
|
|
|
|
|
// $url = "{$wgUploadPath}/thumb/" . $hash{0} . "/" .
|
|
|
|
|
// substr( $hash, 0, 2 ) . "/{$name}";
|
|
|
|
|
// return wfUrlencode( $url );
|
|
|
|
|
//}
|
2004-01-12 00:55:01 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-02-09 00:37:06 +00:00
|
|
|
function wfImageArchiveUrl( $name )
|
|
|
|
|
{
|
|
|
|
|
global $wgUploadPath;
|
|
|
|
|
|
|
|
|
|
$hash = md5( substr( $name, 15) );
|
|
|
|
|
$url = "{$wgUploadPath}/archive/" . $hash{0} . "/" .
|
|
|
|
|
substr( $hash, 0, 2 ) . "/{$name}";
|
|
|
|
|
return wfUrlencode($url);
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function wfUrlencode ( $s )
|
|
|
|
|
{
|
2004-03-06 01:49:16 +00:00
|
|
|
$s = urlencode( $s );
|
2004-06-08 20:06:01 +00:00
|
|
|
$s = preg_replace( '/%3[Aa]/', ':', $s );
|
|
|
|
|
$s = preg_replace( '/%2[Ff]/', '/', $s );
|
2004-03-06 01:49:16 +00:00
|
|
|
|
|
|
|
|
return $s;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfUtf8Sequence($codepoint) {
|
|
|
|
|
if($codepoint < 0x80) return chr($codepoint);
|
|
|
|
|
if($codepoint < 0x800) return chr($codepoint >> 6 & 0x3f | 0xc0) .
|
|
|
|
|
chr($codepoint & 0x3f | 0x80);
|
|
|
|
|
if($codepoint < 0x10000) return chr($codepoint >> 12 & 0x0f | 0xe0) .
|
|
|
|
|
chr($codepoint >> 6 & 0x3f | 0x80) .
|
|
|
|
|
chr($codepoint & 0x3f | 0x80);
|
|
|
|
|
if($codepoint < 0x100000) return chr($codepoint >> 18 & 0x07 | 0xf0) . # Double-check this
|
|
|
|
|
chr($codepoint >> 12 & 0x3f | 0x80) .
|
|
|
|
|
chr($codepoint >> 6 & 0x3f | 0x80) .
|
|
|
|
|
chr($codepoint & 0x3f | 0x80);
|
|
|
|
|
# Doesn't yet handle outside the BMP
|
|
|
|
|
return "&#$codepoint;";
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-12 06:05:02 +00:00
|
|
|
# Converts numeric character entities to UTF-8
|
2003-04-14 23:10:40 +00:00
|
|
|
function wfMungeToUtf8($string) {
|
|
|
|
|
global $wgInputEncoding; # This is debatable
|
|
|
|
|
#$string = iconv($wgInputEncoding, "UTF-8", $string);
|
|
|
|
|
$string = preg_replace ( '/&#([0-9]+);/e', 'wfUtf8Sequence($1)', $string );
|
|
|
|
|
$string = preg_replace ( '/&#x([0-9a-f]+);/ie', 'wfUtf8Sequence(0x$1)', $string );
|
|
|
|
|
# Should also do named entities here
|
|
|
|
|
return $string;
|
|
|
|
|
}
|
|
|
|
|
|
2004-05-09 02:32:04 +00:00
|
|
|
# Converts a single UTF-8 character into the corresponding HTML character entity
|
2004-05-15 14:03:00 +00:00
|
|
|
function wfUtf8Entity( $matches ) {
|
|
|
|
|
$char = $matches[0];
|
2004-05-09 02:32:04 +00:00
|
|
|
# Find the length
|
|
|
|
|
$z = ord( $char{0} );
|
|
|
|
|
if ( $z & 0x80 ) {
|
|
|
|
|
$length = 0;
|
|
|
|
|
while ( $z & 0x80 ) {
|
|
|
|
|
$length++;
|
|
|
|
|
$z <<= 1;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$length = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $length != strlen( $char ) ) {
|
2004-06-08 20:06:01 +00:00
|
|
|
return '';
|
2004-05-09 02:32:04 +00:00
|
|
|
}
|
|
|
|
|
if ( $length == 1 ) {
|
|
|
|
|
return $char;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Mask off the length-determining bits and shift back to the original location
|
|
|
|
|
$z &= 0xff;
|
|
|
|
|
$z >>= $length;
|
|
|
|
|
|
|
|
|
|
# Add in the free bits from subsequent bytes
|
|
|
|
|
for ( $i=1; $i<$length; $i++ ) {
|
|
|
|
|
$z <<= 6;
|
|
|
|
|
$z |= ord( $char{$i} ) & 0x3f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Make entity
|
|
|
|
|
return "&#$z;";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Converts all multi-byte characters in a UTF-8 string into the appropriate character entity
|
|
|
|
|
function wfUtf8ToHTML($string) {
|
|
|
|
|
return preg_replace_callback( '/[\\xc0-\\xfd][\\x80-\\xbf]*/', 'wfUtf8Entity', $string );
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function wfDebug( $text, $logonly = false )
|
|
|
|
|
{
|
2003-11-09 11:45:12 +00:00
|
|
|
global $wgOut, $wgDebugLogFile, $wgDebugComments, $wgProfileOnly;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-05 21:24:14 +00:00
|
|
|
if ( isset( $wgOut ) && $wgDebugComments && !$logonly ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->debug( $text );
|
|
|
|
|
}
|
2003-11-09 11:45:12 +00:00
|
|
|
if ( "" != $wgDebugLogFile && !$wgProfileOnly ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
error_log( $text, 3, $wgDebugLogFile );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-12-11 20:16:34 +00:00
|
|
|
function logProfilingData()
|
|
|
|
|
{
|
|
|
|
|
global $wgRequestTime, $wgDebugLogFile;
|
|
|
|
|
global $wgProfiling, $wgProfileStack, $wgProfileLimit, $wgUser;
|
2004-02-18 19:12:55 +00:00
|
|
|
$now = wfTime();
|
2003-12-11 20:16:34 +00:00
|
|
|
|
|
|
|
|
list( $usec, $sec ) = explode( " ", $wgRequestTime );
|
|
|
|
|
$start = (float)$sec + (float)$usec;
|
|
|
|
|
$elapsed = $now - $start;
|
2004-05-28 05:45:13 +00:00
|
|
|
if ( $wgProfiling ) {
|
2003-12-11 20:16:34 +00:00
|
|
|
$prof = wfGetProfilingOutput( $start, $elapsed );
|
2004-06-08 20:06:01 +00:00
|
|
|
$forward = '';
|
2003-12-11 20:16:34 +00:00
|
|
|
if( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) )
|
2004-06-08 20:06:01 +00:00
|
|
|
$forward = ' forwarded for ' . $_SERVER['HTTP_X_FORWARDED_FOR'];
|
2003-12-11 20:16:34 +00:00
|
|
|
if( !empty( $_SERVER['HTTP_CLIENT_IP'] ) )
|
2004-06-08 20:06:01 +00:00
|
|
|
$forward .= ' client IP ' . $_SERVER['HTTP_CLIENT_IP'];
|
2003-12-11 20:16:34 +00:00
|
|
|
if( !empty( $_SERVER['HTTP_FROM'] ) )
|
2004-06-08 20:06:01 +00:00
|
|
|
$forward .= ' from ' . $_SERVER['HTTP_FROM'];
|
2003-12-11 20:16:34 +00:00
|
|
|
if( $forward )
|
|
|
|
|
$forward = "\t(proxied via {$_SERVER['REMOTE_ADDR']}{$forward})";
|
|
|
|
|
if($wgUser->getId() == 0)
|
2004-06-08 20:06:01 +00:00
|
|
|
$forward .= ' anon';
|
2003-12-11 20:16:34 +00:00
|
|
|
$log = sprintf( "%s\t%04.3f\t%s\n",
|
2004-06-08 20:06:01 +00:00
|
|
|
gmdate( 'YmdHis' ), $elapsed,
|
2003-12-11 20:16:34 +00:00
|
|
|
urldecode( $_SERVER['REQUEST_URI'] . $forward ) );
|
2004-06-08 20:06:01 +00:00
|
|
|
if ( '' != $wgDebugLogFile ) {
|
2004-05-28 05:45:13 +00:00
|
|
|
error_log( $log . $prof, 3, $wgDebugLogFile );
|
|
|
|
|
}
|
2003-12-11 20:16:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function wfReadOnly()
|
|
|
|
|
{
|
|
|
|
|
global $wgReadOnlyFile;
|
|
|
|
|
|
|
|
|
|
if ( "" == $wgReadOnlyFile ) { return false; }
|
|
|
|
|
return is_file( $wgReadOnlyFile );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$wgReplacementKeys = array( "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", "$9" );
|
2003-09-21 13:10:10 +00:00
|
|
|
|
2003-11-02 13:57:24 +00:00
|
|
|
# Get a message from anywhere
|
2003-09-21 13:10:10 +00:00
|
|
|
function wfMsg( $key ) {
|
|
|
|
|
$args = func_get_args();
|
|
|
|
|
if ( count( $args ) ) {
|
|
|
|
|
array_shift( $args );
|
|
|
|
|
}
|
|
|
|
|
return wfMsgReal( $key, $args, true );
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-02 13:57:24 +00:00
|
|
|
# Get a message from the language file
|
2003-09-21 13:10:10 +00:00
|
|
|
function wfMsgNoDB( $key ) {
|
|
|
|
|
$args = func_get_args();
|
|
|
|
|
if ( count( $args ) ) {
|
|
|
|
|
array_shift( $args );
|
|
|
|
|
}
|
|
|
|
|
return wfMsgReal( $key, $args, false );
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-02 13:57:24 +00:00
|
|
|
# Really get a message
|
2003-09-21 13:10:10 +00:00
|
|
|
function wfMsgReal( $key, $args, $useDB ) {
|
2003-12-14 14:29:35 +00:00
|
|
|
global $wgReplacementKeys, $wgMessageCache, $wgLang;
|
2003-10-21 13:01:49 +00:00
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$fname = 'wfMsg';
|
2003-10-20 13:39:40 +00:00
|
|
|
wfProfileIn( $fname );
|
2003-12-14 14:29:35 +00:00
|
|
|
if ( $wgMessageCache ) {
|
|
|
|
|
$message = $wgMessageCache->get( $key, $useDB );
|
|
|
|
|
} elseif ( $wgLang ) {
|
2003-09-21 13:10:10 +00:00
|
|
|
$message = $wgLang->getMessage( $key );
|
2003-12-14 14:29:35 +00:00
|
|
|
} else {
|
|
|
|
|
wfDebug( "No language object when getting $key\n" );
|
|
|
|
|
$message = "<$key>";
|
2003-09-21 13:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Replace arguments
|
|
|
|
|
if( count( $args ) ) {
|
|
|
|
|
$message = str_replace( $wgReplacementKeys, $args, $message );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2003-10-20 13:39:40 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-08-30 07:12:38 +00:00
|
|
|
return $message;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfCleanFormFields( $fields )
|
|
|
|
|
{
|
2004-06-08 20:06:01 +00:00
|
|
|
wfDebugDieBacktrace( 'Call to obsolete wfCleanFormFields(). Use wgRequest instead...' );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfMungeQuotes( $in )
|
|
|
|
|
{
|
2004-06-08 20:06:01 +00:00
|
|
|
$out = str_replace( '%', '%25', $in );
|
|
|
|
|
$out = str_replace( "'", '%27', $out );
|
|
|
|
|
$out = str_replace( '"', '%22', $out );
|
2003-04-14 23:10:40 +00:00
|
|
|
return $out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfDemungeQuotes( $in )
|
|
|
|
|
{
|
2004-06-08 20:06:01 +00:00
|
|
|
$out = str_replace( '%22', '"', $in );
|
|
|
|
|
$out = str_replace( '%27', "'", $out );
|
|
|
|
|
$out = str_replace( '%25', '%', $out );
|
2003-04-14 23:10:40 +00:00
|
|
|
return $out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfCleanQueryVar( $var )
|
|
|
|
|
{
|
2004-06-08 20:06:01 +00:00
|
|
|
wfDebugDieBacktrace( 'Call to obsolete function wfCleanQueryVar(); use wgRequest instead' );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfSearch( $s )
|
|
|
|
|
{
|
2004-03-08 09:09:35 +00:00
|
|
|
$se = new SearchEngine( $s );
|
2003-04-14 23:10:40 +00:00
|
|
|
$se->showResults();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfGo( $s )
|
|
|
|
|
{ # pick the nearest match
|
2004-03-08 09:09:35 +00:00
|
|
|
$se = new SearchEngine( $s );
|
2003-04-14 23:10:40 +00:00
|
|
|
$se->goResult();
|
|
|
|
|
}
|
|
|
|
|
|
2003-12-10 14:58:17 +00:00
|
|
|
# Just like exit() but makes a note of it.
|
|
|
|
|
function wfAbruptExit(){
|
2004-01-11 23:50:52 +00:00
|
|
|
static $called = false;
|
|
|
|
|
if ( $called ){
|
2003-12-10 14:58:17 +00:00
|
|
|
exit();
|
|
|
|
|
}
|
2004-01-11 23:50:52 +00:00
|
|
|
$called = true;
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
if( function_exists( 'debug_backtrace' ) ){ // PHP >= 4.3
|
2004-01-11 23:50:52 +00:00
|
|
|
$bt = debug_backtrace();
|
|
|
|
|
for($i = 0; $i < count($bt) ; $i++){
|
2004-06-08 20:06:01 +00:00
|
|
|
$file = $bt[$i]['file'];
|
|
|
|
|
$line = $bt[$i]['line'];
|
2004-01-11 23:50:52 +00:00
|
|
|
wfDebug("WARNING: Abrupt exit in $file at line $line\n");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2004-06-08 20:06:01 +00:00
|
|
|
wfDebug('WARNING: Abrupt exit\n');
|
2003-12-11 20:16:34 +00:00
|
|
|
}
|
2003-12-10 14:58:17 +00:00
|
|
|
exit();
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfDebugDieBacktrace( $msg = '' ) {
|
2004-03-08 02:50:04 +00:00
|
|
|
$msg .= "\n<p>Backtrace:</p>\n<ul>\n";
|
|
|
|
|
$backtrace = debug_backtrace();
|
|
|
|
|
foreach( $backtrace as $call ) {
|
2004-03-20 15:03:26 +00:00
|
|
|
$f = explode( DIRECTORY_SEPARATOR, $call['file'] );
|
2004-03-08 02:50:04 +00:00
|
|
|
$file = $f[count($f)-1];
|
2004-06-08 20:06:01 +00:00
|
|
|
$msg .= '<li>' . $file . " line " . $call['line'] . ', in ';
|
|
|
|
|
if( !empty( $call['class'] ) ) $msg .= $call['class'] . '::';
|
2004-03-08 02:50:04 +00:00
|
|
|
$msg .= $call['function'] . "()</li>\n";
|
|
|
|
|
}
|
|
|
|
|
die( $msg );
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function wfNumberOfArticles()
|
|
|
|
|
{
|
|
|
|
|
global $wgNumberOfArticles;
|
|
|
|
|
|
|
|
|
|
wfLoadSiteStats();
|
|
|
|
|
return $wgNumberOfArticles;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* private */ function wfLoadSiteStats()
|
|
|
|
|
{
|
|
|
|
|
global $wgNumberOfArticles, $wgTotalViews, $wgTotalEdits;
|
|
|
|
|
if ( -1 != $wgNumberOfArticles ) return;
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$sql = 'SELECT ss_total_views, ss_total_edits, ss_good_articles ' .
|
|
|
|
|
'FROM site_stats WHERE ss_row_id=1';
|
|
|
|
|
$res = wfQuery( $sql, DB_READ, 'wfLoadSiteStats' );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( 0 == wfNumRows( $res ) ) { return; }
|
|
|
|
|
else {
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
$wgTotalViews = $s->ss_total_views;
|
|
|
|
|
$wgTotalEdits = $s->ss_total_edits;
|
|
|
|
|
$wgNumberOfArticles = $s->ss_good_articles;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfEscapeHTML( $in )
|
|
|
|
|
{
|
|
|
|
|
return str_replace(
|
2004-06-08 20:06:01 +00:00
|
|
|
array( '&', '"', '>', '<' ),
|
|
|
|
|
array( '&', '"', '>', '<' ),
|
2003-04-14 23:10:40 +00:00
|
|
|
$in );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfEscapeHTMLTagsOnly( $in ) {
|
|
|
|
|
return str_replace(
|
2004-06-08 20:06:01 +00:00
|
|
|
array( '"', '>', '<' ),
|
|
|
|
|
array( '"', '>', '<' ),
|
2003-04-14 23:10:40 +00:00
|
|
|
$in );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfUnescapeHTML( $in )
|
|
|
|
|
{
|
2004-06-08 20:06:01 +00:00
|
|
|
$in = str_replace( '<', '<', $in );
|
|
|
|
|
$in = str_replace( '>', '>', $in );
|
|
|
|
|
$in = str_replace( '"', '"', $in );
|
|
|
|
|
$in = str_replace( '&', '&', $in );
|
2003-04-14 23:10:40 +00:00
|
|
|
return $in;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfImageDir( $fname )
|
|
|
|
|
{
|
|
|
|
|
global $wgUploadDirectory;
|
|
|
|
|
|
|
|
|
|
$hash = md5( $fname );
|
|
|
|
|
$oldumask = umask(0);
|
2004-06-08 20:06:01 +00:00
|
|
|
$dest = $wgUploadDirectory . '/' . $hash{0};
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( ! is_dir( $dest ) ) { mkdir( $dest, 0777 ); }
|
2004-06-08 20:06:01 +00:00
|
|
|
$dest .= '/' . substr( $hash, 0, 2 );
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( ! is_dir( $dest ) ) { mkdir( $dest, 0777 ); }
|
|
|
|
|
|
|
|
|
|
umask( $oldumask );
|
|
|
|
|
return $dest;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfImageThumbDir( $fname , $subdir='thumb')
|
2004-02-09 00:37:06 +00:00
|
|
|
{
|
|
|
|
|
return wfImageArchiveDir( $fname, $subdir );
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfImageArchiveDir( $fname , $subdir='archive')
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
|
|
|
|
global $wgUploadDirectory;
|
|
|
|
|
|
|
|
|
|
$hash = md5( $fname );
|
|
|
|
|
$oldumask = umask(0);
|
2004-05-08 04:41:54 +00:00
|
|
|
|
|
|
|
|
# Suppress warning messages here; if the file itself can't
|
|
|
|
|
# be written we'll worry about it then.
|
2004-01-12 00:55:01 +00:00
|
|
|
$archive = "{$wgUploadDirectory}/{$subdir}";
|
2004-05-08 04:41:54 +00:00
|
|
|
if ( ! is_dir( $archive ) ) { @mkdir( $archive, 0777 ); }
|
2004-06-08 20:06:01 +00:00
|
|
|
$archive .= '/' . $hash{0};
|
2004-05-08 04:41:54 +00:00
|
|
|
if ( ! is_dir( $archive ) ) { @mkdir( $archive, 0777 ); }
|
2004-06-08 20:06:01 +00:00
|
|
|
$archive .= '/' . substr( $hash, 0, 2 );
|
2004-05-08 04:41:54 +00:00
|
|
|
if ( ! is_dir( $archive ) ) { @mkdir( $archive, 0777 ); }
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
umask( $oldumask );
|
|
|
|
|
return $archive;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-01 12:37:45 +00:00
|
|
|
function wfRecordUpload( $name, $oldver, $size, $desc, $copyStatus = "", $source = "" )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
|
|
|
|
global $wgUser, $wgLang, $wgTitle, $wgOut, $wgDeferredUpdateList;
|
2004-04-01 12:37:45 +00:00
|
|
|
global $wgUseCopyrightUpload;
|
2003-09-17 13:48:08 +00:00
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$fname = 'wfRecordUpload';
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$sql = 'SELECT img_name,img_size,img_timestamp,img_description,img_user,' .
|
2003-04-14 23:10:40 +00:00
|
|
|
"img_user_text FROM image WHERE img_name='" . wfStrencode( $name ) . "'";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-08-30 06:21:34 +00:00
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
$won = wfInvertTimestamp( $now );
|
2003-11-12 10:21:28 +00:00
|
|
|
$size = IntVal( $size );
|
2003-08-30 06:21:34 +00:00
|
|
|
|
2003-09-17 13:48:08 +00:00
|
|
|
if ( $wgUseCopyrightUpload )
|
|
|
|
|
{
|
2004-06-08 20:06:01 +00:00
|
|
|
$textdesc = '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $desc . "\n" .
|
|
|
|
|
'== ' . wfMsg ( 'filestatus' ) . " ==\n" . $copyStatus . "\n" .
|
|
|
|
|
'== ' . wfMsg ( 'filesource' ) . " ==\n" . $source ;
|
2003-09-17 13:48:08 +00:00
|
|
|
}
|
|
|
|
|
else $textdesc = $desc ;
|
|
|
|
|
|
2003-11-09 11:45:12 +00:00
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
$won = wfInvertTimestamp( $now );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( 0 == wfNumRows( $res ) ) {
|
2004-06-08 20:06:01 +00:00
|
|
|
$sql = 'INSERT INTO image (img_name,img_size,img_timestamp,' .
|
2003-04-14 23:10:40 +00:00
|
|
|
"img_description,img_user,img_user_text) VALUES ('" .
|
2003-11-12 10:21:28 +00:00
|
|
|
wfStrencode( $name ) . "',$size,'{$now}','" .
|
2003-04-14 23:10:40 +00:00
|
|
|
wfStrencode( $desc ) . "', '" . $wgUser->getID() .
|
|
|
|
|
"', '" . wfStrencode( $wgUser->getName() ) . "')";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$sql = 'SELECT cur_id,cur_text FROM cur WHERE cur_namespace=' .
|
2003-04-14 23:10:40 +00:00
|
|
|
Namespace::getImage() . " AND cur_title='" .
|
|
|
|
|
wfStrencode( $name ) . "'";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( 0 == wfNumRows( $res ) ) {
|
|
|
|
|
$common =
|
|
|
|
|
Namespace::getImage() . ",'" .
|
|
|
|
|
wfStrencode( $name ) . "','" .
|
|
|
|
|
wfStrencode( $desc ) . "','" . $wgUser->getID() . "','" .
|
|
|
|
|
wfStrencode( $wgUser->getName() ) . "','" . $now .
|
|
|
|
|
"',1";
|
2004-06-08 20:06:01 +00:00
|
|
|
$sql = 'INSERT INTO cur (cur_namespace,cur_title,' .
|
|
|
|
|
'cur_comment,cur_user,cur_user_text,cur_timestamp,cur_is_new,' .
|
|
|
|
|
'cur_text,inverse_timestamp,cur_touched) VALUES (' .
|
2003-04-14 23:10:40 +00:00
|
|
|
$common .
|
2003-09-17 13:48:08 +00:00
|
|
|
",'" . wfStrencode( $textdesc ) . "','{$won}','{$now}')";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
$id = wfInsertId() or 0; # We should throw an error instead
|
2004-02-29 08:44:59 +00:00
|
|
|
|
|
|
|
|
$titleObj = Title::makeTitle( NS_IMAGE, $name );
|
|
|
|
|
RecentChange::notifyNew( $now, $titleObj, 0, $wgUser, $desc );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$u = new SearchUpdate( $id, $name, $desc );
|
|
|
|
|
$u->doUpdate();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$sql = 'INSERT INTO oldimage (oi_name,oi_archive_name,oi_size,' .
|
2003-04-14 23:10:40 +00:00
|
|
|
"oi_timestamp,oi_description,oi_user,oi_user_text) VALUES ('" .
|
|
|
|
|
wfStrencode( $s->img_name ) . "','" .
|
|
|
|
|
wfStrencode( $oldver ) .
|
|
|
|
|
"',{$s->img_size},'{$s->img_timestamp}','" .
|
|
|
|
|
wfStrencode( $s->img_description ) . "','" .
|
|
|
|
|
wfStrencode( $s->img_user ) . "','" .
|
|
|
|
|
wfStrencode( $s->img_user_text) . "')";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sql = "UPDATE image SET img_size={$size}," .
|
2003-06-30 01:33:16 +00:00
|
|
|
"img_timestamp='" . wfTimestampNow() . "',img_user='" .
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgUser->getID() . "',img_user_text='" .
|
|
|
|
|
wfStrencode( $wgUser->getName() ) . "', img_description='" .
|
|
|
|
|
wfStrencode( $desc ) . "' WHERE img_name='" .
|
|
|
|
|
wfStrencode( $name ) . "'";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-08-30 06:21:34 +00:00
|
|
|
|
|
|
|
|
$sql = "UPDATE cur SET cur_touched='{$now}' WHERE cur_namespace=" .
|
|
|
|
|
Namespace::getImage() . " AND cur_title='" .
|
|
|
|
|
wfStrencode( $name ) . "'";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$log = new LogPage( wfMsg( 'uploadlogpage' ), wfMsg( 'uploadlogpagetext' ) );
|
|
|
|
|
$da = wfMsg( 'uploadedimage', '[[:' . $wgLang->getNsText(
|
2003-11-15 14:32:58 +00:00
|
|
|
Namespace::getImage() ) . ":{$name}|{$name}]]" );
|
2004-06-08 20:06:01 +00:00
|
|
|
$ta = wfMsg( 'uploadedimage', $name );
|
2003-04-14 23:10:40 +00:00
|
|
|
$log->addEntry( $da, $desc, $ta );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Some generic result counters, pulled out of SearchEngine */
|
|
|
|
|
|
|
|
|
|
function wfShowingResults( $offset, $limit )
|
|
|
|
|
{
|
2004-03-06 03:03:14 +00:00
|
|
|
global $wgLang;
|
2004-06-08 20:06:01 +00:00
|
|
|
return wfMsg( 'showingresults', $wgLang->formatNum( $limit ), $wgLang->formatNum( $offset+1 ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2003-05-20 06:15:20 +00:00
|
|
|
function wfShowingResultsNum( $offset, $limit, $num )
|
|
|
|
|
{
|
2004-03-06 03:03:14 +00:00
|
|
|
global $wgLang;
|
2004-06-08 20:06:01 +00:00
|
|
|
return wfMsg( 'showingresultsnum', $wgLang->formatNum( $limit ), $wgLang->formatNum( $offset+1 ), $wgLang->formatNum( $num ) );
|
2003-05-20 06:15:20 +00:00
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfViewPrevNext( $offset, $limit, $link, $query = '', $atend = false )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2004-03-06 03:03:14 +00:00
|
|
|
global $wgUser, $wgLang;
|
|
|
|
|
$fmtLimit = $wgLang->formatNum( $limit );
|
2004-06-08 20:06:01 +00:00
|
|
|
$prev = wfMsg( 'prevn', $fmtLimit );
|
|
|
|
|
$next = wfMsg( 'nextn', $fmtLimit );
|
2004-03-06 01:49:16 +00:00
|
|
|
$link = wfUrlencode( $link );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
if ( 0 != $offset ) {
|
|
|
|
|
$po = $offset - $limit;
|
|
|
|
|
if ( $po < 0 ) { $po = 0; }
|
|
|
|
|
$q = "limit={$limit}&offset={$po}";
|
2004-06-08 20:06:01 +00:00
|
|
|
if ( '' != $query ) { $q .= "&{$query}"; }
|
|
|
|
|
$plink = '<a href="' . wfLocalUrlE( $link, $q ) . "\">{$prev}</a>";
|
2003-04-14 23:10:40 +00:00
|
|
|
} else { $plink = $prev; }
|
|
|
|
|
|
|
|
|
|
$no = $offset + $limit;
|
|
|
|
|
$q = "limit={$limit}&offset={$no}";
|
|
|
|
|
if ( "" != $query ) { $q .= "&{$query}"; }
|
|
|
|
|
|
2004-01-20 19:02:12 +00:00
|
|
|
if ( $atend ) {
|
|
|
|
|
$nlink = $next;
|
|
|
|
|
} else {
|
2004-06-08 20:06:01 +00:00
|
|
|
$nlink = '<a href="' . wfLocalUrlE( $link, $q ) . "\">{$next}</a>";
|
2004-01-20 19:02:12 +00:00
|
|
|
}
|
2004-06-08 20:06:01 +00:00
|
|
|
$nums = wfNumLink( $offset, 20, $link , $query ) . ' | ' .
|
|
|
|
|
wfNumLink( $offset, 50, $link, $query ) . ' | ' .
|
|
|
|
|
wfNumLink( $offset, 100, $link, $query ) . ' | ' .
|
|
|
|
|
wfNumLink( $offset, 250, $link, $query ) . ' | ' .
|
2003-04-14 23:10:40 +00:00
|
|
|
wfNumLink( $offset, 500, $link, $query );
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
return wfMsg( 'viewprevnext', $plink, $nlink, $nums );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfNumLink( $offset, $limit, $link, $query = '' )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2004-03-06 03:03:14 +00:00
|
|
|
global $wgUser, $wgLang;
|
2004-06-08 20:06:01 +00:00
|
|
|
if ( '' == $query ) { $q = ''; }
|
2003-04-14 23:10:40 +00:00
|
|
|
else { $q = "{$query}&"; }
|
|
|
|
|
$q .= "limit={$limit}&offset={$offset}";
|
|
|
|
|
|
2004-03-06 03:03:14 +00:00
|
|
|
$fmtLimit = $wgLang->formatNum( $limit );
|
2004-06-08 20:06:01 +00:00
|
|
|
$s = '<a href="' . wfLocalUrlE( $link, $q ) . "\">{$fmtLimit}</a>";
|
2003-04-14 23:10:40 +00:00
|
|
|
return $s;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-20 09:30:40 +00:00
|
|
|
function wfClientAcceptsGzip() {
|
|
|
|
|
global $wgUseGzip;
|
|
|
|
|
if( $wgUseGzip ) {
|
|
|
|
|
# FIXME: we may want to blacklist some broken browsers
|
|
|
|
|
if( preg_match(
|
|
|
|
|
'/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
|
2004-06-08 20:06:01 +00:00
|
|
|
$_SERVER['HTTP_ACCEPT_ENCODING'],
|
2003-05-20 09:30:40 +00:00
|
|
|
$m ) ) {
|
2004-06-08 20:06:01 +00:00
|
|
|
if( ( $m[1] == 'q' ) && ( $m[2] == 0 ) ) return false;
|
2003-05-20 09:30:40 +00:00
|
|
|
wfDebug( " accepts gzip\n" );
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-03 08:44:50 +00:00
|
|
|
# Yay, more global functions!
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfCheckLimits( $deflimit = 50, $optionname = 'rclimit' ) {
|
2004-03-08 09:09:35 +00:00
|
|
|
global $wgUser, $wgRequest;
|
2003-06-03 08:44:50 +00:00
|
|
|
|
2004-03-08 09:09:35 +00:00
|
|
|
$limit = $wgRequest->getInt( 'limit', 0 );
|
2003-06-03 08:44:50 +00:00
|
|
|
if( $limit < 0 ) $limit = 0;
|
2004-06-08 20:06:01 +00:00
|
|
|
if( ( $limit == 0 ) && ( $optionname != '' ) ) {
|
2003-06-03 08:44:50 +00:00
|
|
|
$limit = (int)$wgUser->getOption( $optionname );
|
|
|
|
|
}
|
|
|
|
|
if( $limit <= 0 ) $limit = $deflimit;
|
|
|
|
|
if( $limit > 5000 ) $limit = 5000; # We have *some* limits...
|
|
|
|
|
|
2004-03-08 09:09:35 +00:00
|
|
|
$offset = $wgRequest->getInt( 'offset', 0 );
|
2003-06-03 08:44:50 +00:00
|
|
|
if( $offset < 0 ) $offset = 0;
|
|
|
|
|
if( $offset > 65000 ) $offset = 65000; # do we need a max? what?
|
|
|
|
|
|
|
|
|
|
return array( $limit, $offset );
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-02 13:57:24 +00:00
|
|
|
# Escapes the given text so that it may be output using addWikiText()
|
|
|
|
|
# without any linking, formatting, etc. making its way through. This
|
|
|
|
|
# is achieved by substituting certain characters with HTML entities.
|
|
|
|
|
# As required by the callers, <nowiki> is not used. It currently does
|
|
|
|
|
# not filter out characters which have special meaning only at the
|
|
|
|
|
# start of a line, such as "*".
|
|
|
|
|
function wfEscapeWikiText( $text )
|
|
|
|
|
{
|
|
|
|
|
$text = str_replace(
|
2003-12-22 04:14:33 +00:00
|
|
|
array( '[', '|', "'", 'ISBN ' , '://' , "\n=" ),
|
|
|
|
|
array( '[', '|', ''', 'ISBN ', '://' , "\n=" ),
|
2003-11-02 13:57:24 +00:00
|
|
|
htmlspecialchars($text) );
|
2003-09-21 13:10:10 +00:00
|
|
|
return $text;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfQuotedPrintable( $string, $charset = '' )
|
2003-11-12 10:21:28 +00:00
|
|
|
{
|
|
|
|
|
# Probably incomplete; see RFC 2045
|
|
|
|
|
if( empty( $charset ) ) {
|
|
|
|
|
global $wgInputEncoding;
|
|
|
|
|
$charset = $wgInputEncoding;
|
|
|
|
|
}
|
|
|
|
|
$charset = strtoupper( $charset );
|
2004-06-08 20:06:01 +00:00
|
|
|
$charset = str_replace( 'ISO-8859', 'ISO8859', $charset ); // ?
|
2003-11-12 10:21:28 +00:00
|
|
|
|
|
|
|
|
$illegal = '\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\xff=';
|
|
|
|
|
$replace = $illegal . '\t ?_';
|
|
|
|
|
if( !preg_match( "/[$illegal]/", $string ) ) return $string;
|
|
|
|
|
$out = "=?$charset?Q?";
|
|
|
|
|
$out .= preg_replace( "/([$replace])/e", 'sprintf("=%02X",ord("$1"))', $string );
|
2004-06-08 20:06:01 +00:00
|
|
|
$out .= '?=';
|
2003-11-12 10:21:28 +00:00
|
|
|
return $out;
|
|
|
|
|
}
|
|
|
|
|
|
2004-02-18 19:06:22 +00:00
|
|
|
function wfTime(){
|
2004-06-08 20:06:01 +00:00
|
|
|
$st = explode( ' ', microtime() );
|
2004-02-18 19:06:22 +00:00
|
|
|
return (float)$st[0] + (float)$st[1];
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-07 09:02:36 +00:00
|
|
|
# Changes the first character to an HTML entity
|
|
|
|
|
function wfHtmlEscapeFirst( $text ) {
|
|
|
|
|
$ord = ord($text);
|
|
|
|
|
$newText = substr($text, 1);
|
|
|
|
|
return "&#$ord;$newText";
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-06 01:49:16 +00:00
|
|
|
# Sets dest to source and returns the original value of dest
|
2004-01-10 16:44:31 +00:00
|
|
|
function wfSetVar( &$dest, $source )
|
|
|
|
|
{
|
|
|
|
|
$temp = $dest;
|
|
|
|
|
$dest = $source;
|
|
|
|
|
return $temp;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-06 01:49:16 +00:00
|
|
|
# Sets dest to a reference to source and returns the original dest
|
2004-06-12 06:05:02 +00:00
|
|
|
# Pity that doesn't work in PHP
|
2004-03-06 01:49:16 +00:00
|
|
|
function &wfSetRef( &$dest, &$source )
|
2004-01-10 16:44:31 +00:00
|
|
|
{
|
2004-06-12 06:05:02 +00:00
|
|
|
die( "You can't rebind a variable in the caller's scope" );
|
2004-01-10 16:44:31 +00:00
|
|
|
}
|
2003-11-12 10:21:28 +00:00
|
|
|
|
2004-01-30 12:47:19 +00:00
|
|
|
# This function takes two arrays as input, and returns a CGI-style string, e.g.
|
|
|
|
|
# "days=7&limit=100". Options in the first array override options in the second.
|
|
|
|
|
# Options set to "" will not be output.
|
|
|
|
|
function wfArrayToCGI( $array1, $array2 = NULL )
|
|
|
|
|
{
|
|
|
|
|
if ( !is_null( $array2 ) ) {
|
|
|
|
|
$array1 = $array1 + $array2;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$cgi = '';
|
2004-01-30 12:47:19 +00:00
|
|
|
foreach ( $array1 as $key => $value ) {
|
2004-06-08 20:06:01 +00:00
|
|
|
if ( '' !== $value ) {
|
|
|
|
|
if ( '' != $cgi ) {
|
|
|
|
|
$cgi .= '&';
|
2004-01-30 12:47:19 +00:00
|
|
|
}
|
|
|
|
|
$cgi .= "{$key}={$value}";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $cgi;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
# This is obsolete, use SquidUpdate::purge()
|
2004-01-30 17:07:50 +00:00
|
|
|
function wfPurgeSquidServers ($urlArr) {
|
2004-03-20 15:03:26 +00:00
|
|
|
SquidUpdate::purge( $urlArr );
|
2004-01-30 17:07:50 +00:00
|
|
|
}
|
2004-03-14 15:05:52 +00:00
|
|
|
|
2004-04-03 05:55:37 +00:00
|
|
|
# Windows-compatible version of escapeshellarg()
|
|
|
|
|
function wfEscapeShellArg( )
|
|
|
|
|
{
|
|
|
|
|
$args = func_get_args();
|
|
|
|
|
$first = true;
|
2004-06-08 20:06:01 +00:00
|
|
|
$retVal = '';
|
2004-04-03 05:55:37 +00:00
|
|
|
foreach ( $args as $arg ) {
|
|
|
|
|
if ( !$first ) {
|
2004-06-08 20:06:01 +00:00
|
|
|
$retVal .= ' ';
|
2004-04-03 05:55:37 +00:00
|
|
|
} else {
|
|
|
|
|
$first = false;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-12 21:32:18 +00:00
|
|
|
if ( wfIsWindows() ) {
|
2004-05-09 02:32:04 +00:00
|
|
|
$retVal .= '"' . str_replace( '"','\"', $arg ) . '"';
|
2004-04-03 05:55:37 +00:00
|
|
|
} else {
|
|
|
|
|
$retVal .= escapeshellarg( $arg );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $retVal;
|
|
|
|
|
}
|
2004-03-14 15:05:52 +00:00
|
|
|
|
|
|
|
|
# wfMerge attempts to merge differences between three texts.
|
|
|
|
|
# Returns true for a clean merge and false for failure or a conflict.
|
|
|
|
|
|
|
|
|
|
function wfMerge( $old, $mine, $yours, &$result ){
|
|
|
|
|
global $wgDiff3;
|
|
|
|
|
|
|
|
|
|
# This check may also protect against code injection in
|
|
|
|
|
# case of broken installations.
|
|
|
|
|
if(! file_exists( $wgDiff3 ) ){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2004-04-03 05:55:37 +00:00
|
|
|
|
|
|
|
|
# Make temporary files
|
2004-06-08 20:06:01 +00:00
|
|
|
$td = '/tmp/';
|
|
|
|
|
$oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
|
|
|
|
|
$mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
|
|
|
|
|
$yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
|
2004-03-14 15:05:52 +00:00
|
|
|
|
|
|
|
|
fwrite( $oldtextFile, $old ); fclose( $oldtextFile );
|
|
|
|
|
fwrite( $mytextFile, $mine ); fclose( $mytextFile );
|
|
|
|
|
fwrite( $yourtextFile, $yours ); fclose( $yourtextFile );
|
2004-04-03 05:55:37 +00:00
|
|
|
|
|
|
|
|
# Check for a conflict
|
2004-06-08 20:06:01 +00:00
|
|
|
$cmd = wfEscapeShellArg( $wgDiff3 ) . ' -a --overlap-only ' .
|
|
|
|
|
wfEscapeShellArg( $mytextName ) . ' ' .
|
|
|
|
|
wfEscapeShellArg( $oldtextName ) . ' ' .
|
2004-04-03 05:55:37 +00:00
|
|
|
wfEscapeShellArg( $yourtextName );
|
2004-06-08 20:06:01 +00:00
|
|
|
$handle = popen( $cmd, 'r' );
|
2004-03-14 15:05:52 +00:00
|
|
|
|
|
|
|
|
if( fgets( $handle ) ){
|
|
|
|
|
$conflict = true;
|
|
|
|
|
} else {
|
|
|
|
|
$conflict = false;
|
|
|
|
|
}
|
|
|
|
|
pclose( $handle );
|
2004-04-03 05:55:37 +00:00
|
|
|
|
|
|
|
|
# Merge differences
|
2004-06-08 20:06:01 +00:00
|
|
|
$cmd = wfEscapeShellArg( $wgDiff3 ) . ' -a -e --merge ' .
|
2004-04-03 05:55:37 +00:00
|
|
|
wfEscapeShellArg( $mytextName, $oldtextName, $yourtextName );
|
2004-06-08 20:06:01 +00:00
|
|
|
$handle = popen( $cmd, 'r' );
|
|
|
|
|
$result = '';
|
2004-03-14 15:05:52 +00:00
|
|
|
do {
|
|
|
|
|
$data = fread( $handle, 8192 );
|
|
|
|
|
if ( strlen( $data ) == 0 ) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
$result .= $data;
|
|
|
|
|
} while ( true );
|
|
|
|
|
pclose( $handle );
|
2004-04-03 07:49:26 +00:00
|
|
|
unlink( $mytextName ); unlink( $oldtextName ); unlink( $yourtextName );
|
2004-03-14 15:05:52 +00:00
|
|
|
return ! $conflict;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
function wfVarDump( $var )
|
|
|
|
|
{
|
|
|
|
|
global $wgOut;
|
|
|
|
|
$s = str_replace("\n","<br>\n", var_export( $var, true ) . "\n");
|
2004-03-23 10:25:16 +00:00
|
|
|
if ( headers_sent() || !@is_object( $wgOut ) ) {
|
2004-03-20 15:03:26 +00:00
|
|
|
print $s;
|
|
|
|
|
} else {
|
|
|
|
|
$wgOut->addHTML( $s );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 22:33:11 +00:00
|
|
|
# Provide a simple HTTP error.
|
|
|
|
|
function wfHttpError( $code, $label, $desc ) {
|
|
|
|
|
global $wgOut;
|
|
|
|
|
$wgOut->disable();
|
|
|
|
|
header( "HTTP/1.0 $code $label" );
|
|
|
|
|
header( "Status: $code $label" );
|
|
|
|
|
$wgOut->sendCacheControl();
|
|
|
|
|
|
|
|
|
|
# Don't send content if it's a HEAD request.
|
|
|
|
|
if( $_SERVER['REQUEST_METHOD'] == 'HEAD' ) {
|
2004-06-08 20:06:01 +00:00
|
|
|
header( 'Content-type: text/plain' );
|
2004-04-04 22:33:11 +00:00
|
|
|
print "$desc\n";
|
|
|
|
|
}
|
2004-04-04 21:58:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Converts an Accept-* header into an array mapping string values to quality factors
|
2004-06-08 20:06:01 +00:00
|
|
|
function wfAcceptToPrefs( $accept, $def = '*/*' ) {
|
2004-04-04 22:33:11 +00:00
|
|
|
# No arg means accept anything (per HTTP spec)
|
|
|
|
|
if( !$accept ) {
|
|
|
|
|
return array( $def => 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$prefs = array();
|
|
|
|
|
|
2004-06-08 20:06:01 +00:00
|
|
|
$parts = explode( ',', $accept );
|
2004-04-04 22:33:11 +00:00
|
|
|
|
|
|
|
|
foreach( $parts as $part ) {
|
|
|
|
|
# FIXME: doesn't deal with params like 'text/html; level=1'
|
2004-06-08 20:06:01 +00:00
|
|
|
@list( $value, $qpart ) = explode( ';', $part );
|
2004-04-04 22:33:11 +00:00
|
|
|
if( !isset( $qpart ) ) {
|
|
|
|
|
$prefs[$value] = 1;
|
|
|
|
|
} elseif( preg_match( '/q\s*=\s*(\d*\.\d+)/', $qpart, $match ) ) {
|
|
|
|
|
$prefs[$value] = $match[1];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $prefs;
|
|
|
|
|
}
|
2004-04-04 21:58:05 +00:00
|
|
|
|
2004-04-04 22:33:11 +00:00
|
|
|
/* private */ function mimeTypeMatch( $type, $avail ) {
|
|
|
|
|
if( array_key_exists($type, $avail) ) {
|
|
|
|
|
return $type;
|
2004-04-04 21:58:05 +00:00
|
|
|
} else {
|
2004-04-04 22:33:11 +00:00
|
|
|
$parts = explode( '/', $type );
|
|
|
|
|
if( array_key_exists( $parts[0] . '/*', $avail ) ) {
|
|
|
|
|
return $parts[0] . '/*';
|
|
|
|
|
} elseif( array_key_exists( '*/*', $avail ) ) {
|
|
|
|
|
return '*/*';
|
|
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# FIXME: doesn't handle params like 'text/plain; charset=UTF-8'
|
|
|
|
|
# XXX: generalize to negotiate other stuff
|
|
|
|
|
function wfNegotiateType( $cprefs, $sprefs ) {
|
|
|
|
|
$combine = array();
|
|
|
|
|
|
|
|
|
|
foreach( array_keys($sprefs) as $type ) {
|
|
|
|
|
$parts = explode( '/', $type );
|
|
|
|
|
if( $parts[1] != '*' ) {
|
|
|
|
|
$ckey = mimeTypeMatch( $type, $cprefs );
|
|
|
|
|
if( $ckey ) {
|
|
|
|
|
$combine[$type] = $sprefs[$type] * $cprefs[$ckey];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach( array_keys( $cprefs ) as $type ) {
|
|
|
|
|
$parts = explode( '/', $type );
|
|
|
|
|
if( $parts[1] != '*' && !array_key_exists( $type, $sprefs ) ) {
|
|
|
|
|
$skey = mimeTypeMatch( $type, $sprefs );
|
|
|
|
|
if( $skey ) {
|
|
|
|
|
$combine[$type] = $sprefs[$skey] * $cprefs[$type];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$bestq = 0;
|
|
|
|
|
$besttype = NULL;
|
|
|
|
|
|
|
|
|
|
foreach( array_keys( $combine ) as $type ) {
|
|
|
|
|
if( $combine[$type] > $bestq ) {
|
|
|
|
|
$besttype = $type;
|
|
|
|
|
$bestq = $combine[$type];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $besttype;
|
2004-04-04 21:58:05 +00:00
|
|
|
}
|
|
|
|
|
|
2004-05-15 10:36:59 +00:00
|
|
|
# Array lookup
|
|
|
|
|
# Returns an array where the values in the first array are replaced by the
|
|
|
|
|
# values in the second array with the corresponding keys
|
|
|
|
|
function wfArrayLookup( $a, $b )
|
|
|
|
|
{
|
|
|
|
|
return array_flip( array_intersect( array_flip( $a ), array_keys( $b ) ) );
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-12 06:05:02 +00:00
|
|
|
# Since Windows is so different to any of the other popular OSes, it seems appropriate
|
|
|
|
|
# to have a simple way to test for its presence
|
|
|
|
|
function wfIsWindows() {
|
|
|
|
|
if (substr(php_uname(), 0, 7) == 'Windows') {
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
?>
|