It's very nice having a fallback iconv() function, but we should take into account...
[lhc/web/wiklou.git] / includes / AjaxFunctions.php
1 <?php
2 /**
3 * @file
4 * @ingroup Ajax
5 */
6
7 if ( !defined( 'MEDIAWIKI' ) ) {
8 die( 1 );
9 }
10
11 /**
12 * Function converts an Javascript escaped string back into a string with
13 * specified charset (default is UTF-8).
14 * Modified function from http://pure-essence.net/stuff/code/utf8RawUrlDecode.phps
15 *
16 * @param $source String escaped with Javascript's escape() function
17 * @param $iconv_to String destination character set will be used as second parameter
18 * in the iconv function. Default is UTF-8.
19 * @return string
20 */
21 function js_unescape( $source, $iconv_to = 'UTF-8' ) {
22 $decodedStr = '';
23 $pos = 0;
24 $len = strlen ( $source );
25
26 while ( $pos < $len ) {
27 $charAt = substr ( $source, $pos, 1 );
28 if ( $charAt == '%' ) {
29 $pos++;
30 $charAt = substr ( $source, $pos, 1 );
31
32 if ( $charAt == 'u' ) {
33 // we got a unicode character
34 $pos++;
35 $unicodeHexVal = substr ( $source, $pos, 4 );
36 $unicode = hexdec ( $unicodeHexVal );
37 $decodedStr .= code2utf( $unicode );
38 $pos += 4;
39 } else {
40 // we have an escaped ascii character
41 $hexVal = substr ( $source, $pos, 2 );
42 $decodedStr .= chr ( hexdec ( $hexVal ) );
43 $pos += 2;
44 }
45 } else {
46 $decodedStr .= $charAt;
47 $pos++;
48 }
49 }
50
51 if ( $iconv_to != "UTF-8" ) {
52 $decodedStr = iconv( "utf-8", $iconv_to, $decodedStr );
53 }
54
55 return $decodedStr;
56 }
57
58 /**
59 * Function coverts number of utf char into that character.
60 * Function taken from: http://www.php.net/manual/en/function.utf8-encode.php#49336
61 *
62 * @param $num Integer
63 * @return utf8char
64 */
65 function code2utf( $num ) {
66 if ( $num < 128 ) {
67 return chr( $num );
68 }
69
70 if ( $num < 2048 ) {
71 return chr( ( $num >> 6 ) + 192 ) . chr( ( $num&63 ) + 128 );
72 }
73
74 if ( $num < 65536 ) {
75 return chr( ( $num >> 12 ) + 224 ) . chr( ( ( $num >> 6 )&63 ) + 128 ) . chr( ( $num&63 ) + 128 );
76 }
77
78 if ( $num < 2097152 ) {
79 return chr( ( $num >> 18 ) + 240 ) . chr( ( ( $num >> 12 )&63 ) + 128 ) . chr( ( ( $num >> 6 )&63 ) + 128 ) . chr( ( $num&63 ) + 128 );
80 }
81
82 return '';
83 }
84
85 /**
86 * Called in some places (currently just extensions)
87 * to get the URL for a given file.
88 */
89 function wfAjaxGetFileUrl( $file ) {
90 $file = wfFindFile( $file );
91
92 if ( !$file || !$file->exists() ) {
93 return null;
94 }
95
96 $url = $file->getUrl();
97
98 return $url;
99 }