wiki.techinc.nl/includes/AjaxFunctions.php
Platonides 8bb2b3e3bf It's very nice having a fallback iconv() function, but we should take into account that Language.php calls it with the //IGNORE making the fallback a nop.
This fixes the two phpunit tests of Revision of Legacy encoding when native iconv is not available in php.

Allow js_unescape to take advantage of our wrapper, too. (although that function seems completely unused...)
2010-07-28 13:51:42 +00:00

99 lines
2.2 KiB
PHP

<?php
/**
* @file
* @ingroup Ajax
*/
if ( !defined( 'MEDIAWIKI' ) ) {
die( 1 );
}
/**
* Function converts an Javascript escaped string back into a string with
* specified charset (default is UTF-8).
* Modified function from http://pure-essence.net/stuff/code/utf8RawUrlDecode.phps
*
* @param $source String escaped with Javascript's escape() function
* @param $iconv_to String destination character set will be used as second parameter
* in the iconv function. Default is UTF-8.
* @return string
*/
function js_unescape( $source, $iconv_to = 'UTF-8' ) {
$decodedStr = '';
$pos = 0;
$len = strlen ( $source );
while ( $pos < $len ) {
$charAt = substr ( $source, $pos, 1 );
if ( $charAt == '%' ) {
$pos++;
$charAt = substr ( $source, $pos, 1 );
if ( $charAt == 'u' ) {
// we got a unicode character
$pos++;
$unicodeHexVal = substr ( $source, $pos, 4 );
$unicode = hexdec ( $unicodeHexVal );
$decodedStr .= code2utf( $unicode );
$pos += 4;
} else {
// we have an escaped ascii character
$hexVal = substr ( $source, $pos, 2 );
$decodedStr .= chr ( hexdec ( $hexVal ) );
$pos += 2;
}
} else {
$decodedStr .= $charAt;
$pos++;
}
}
if ( $iconv_to != "UTF-8" ) {
$decodedStr = iconv( "utf-8", $iconv_to, $decodedStr );
}
return $decodedStr;
}
/**
* Function coverts number of utf char into that character.
* Function taken from: http://www.php.net/manual/en/function.utf8-encode.php#49336
*
* @param $num Integer
* @return utf8char
*/
function code2utf( $num ) {
if ( $num < 128 ) {
return chr( $num );
}
if ( $num < 2048 ) {
return chr( ( $num >> 6 ) + 192 ) . chr( ( $num&63 ) + 128 );
}
if ( $num < 65536 ) {
return chr( ( $num >> 12 ) + 224 ) . chr( ( ( $num >> 6 )&63 ) + 128 ) . chr( ( $num&63 ) + 128 );
}
if ( $num < 2097152 ) {
return chr( ( $num >> 18 ) + 240 ) . chr( ( ( $num >> 12 )&63 ) + 128 ) . chr( ( ( $num >> 6 )&63 ) + 128 ) . chr( ( $num&63 ) + 128 );
}
return '';
}
/**
* Called in some places (currently just extensions)
* to get the URL for a given file.
*/
function wfAjaxGetFileUrl( $file ) {
$file = wfFindFile( $file );
if ( !$file || !$file->exists() ) {
return null;
}
$url = $file->getUrl();
return $url;
}