a1a400994be8d0c03836bc8aee4e51b85c7ec043
[lhc/web/wiklou.git] / includes / AjaxFunctions.php
1 <?php
2
3 if( !defined( 'MEDIAWIKI' ) )
4 die( 1 );
5
6 require_once('WebRequest.php');
7
8 /**
9 * Function converts an Javascript escaped string back into a string with
10 * specified charset (default is UTF-8).
11 * Modified function from http://pure-essence.net/stuff/code/utf8RawUrlDecode.phps
12 *
13 * @param $source String escaped with Javascript's escape() function
14 * @param $iconv_to String destination character set will be used as second paramether in the iconv function. Default is UTF-8.
15 * @return string
16 */
17 function js_unescape($source, $iconv_to = 'UTF-8') {
18 $decodedStr = '';
19 $pos = 0;
20 $len = strlen ($source);
21 while ($pos < $len) {
22 $charAt = substr ($source, $pos, 1);
23 if ($charAt == '%') {
24 $pos++;
25 $charAt = substr ($source, $pos, 1);
26 if ($charAt == 'u') {
27 // we got a unicode character
28 $pos++;
29 $unicodeHexVal = substr ($source, $pos, 4);
30 $unicode = hexdec ($unicodeHexVal);
31 $decodedStr .= code2utf($unicode);
32 $pos += 4;
33 }
34 else {
35 // we have an escaped ascii character
36 $hexVal = substr ($source, $pos, 2);
37 $decodedStr .= chr (hexdec ($hexVal));
38 $pos += 2;
39 }
40 }
41 else {
42 $decodedStr .= $charAt;
43 $pos++;
44 }
45 }
46
47 if ($iconv_to != "UTF-8") {
48 $decodedStr = iconv("UTF-8", $iconv_to, $decodedStr);
49 }
50
51 return $decodedStr;
52 }
53
54 /**
55 * Function coverts number of utf char into that character.
56 * Function taken from: http://sk2.php.net/manual/en/function.utf8-encode.php#49336
57 *
58 * @param $num Integer
59 * @return utf8char
60 */
61 function code2utf($num){
62 if ( $num<128 )
63 return chr($num);
64 if ( $num<2048 )
65 return chr(($num>>6)+192).chr(($num&63)+128);
66 if ( $num<65536 )
67 return chr(($num>>12)+224).chr((($num>>6)&63)+128).chr(($num&63)+128);
68 if ( $num<2097152 )
69 return chr(($num>>18)+240).chr((($num>>12)&63)+128).chr((($num>>6)&63)+128) .chr(($num&63)+128);
70 return '';
71 }
72
73 class AjaxCachePolicy {
74 var $policy;
75 var $vary;
76
77 function AjaxCachePolicy( $policy = null, $vary = null ) {
78 $this->policy = $policy;
79 $this->vary = $vary;
80 }
81
82 function setPolicy( $policy ) {
83 $this->policy = $policy;
84 }
85
86 function setVary( $vary ) {
87 $this->vary = $vary;
88 }
89
90 function writeHeader() {
91 header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
92 if ( is_null( $this->policy ) ) {
93 // Bust cache in the head
94 header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
95 // always modified
96 header ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
97 header ("Pragma: no-cache"); // HTTP/1.0
98 } else {
99 header ("Expires: " . gmdate( "D, d M Y H:i:s", time() + $this->policy ) . " GMT");
100 header ("Cache-Control: s-max-age={$this->policy},public,max-age={$this->policy}");
101 }
102
103 if ( $this->vary ) {
104 header ( "Vary: " . $this->vary );
105 }
106 }
107 }
108
109
110 function wfSajaxSearch( $term ) {
111 global $wgContLang, $wgAjaxCachePolicy, $wgOut;
112 $limit = 16;
113
114 $l = new Linker;
115
116 $term = str_replace( ' ', '_', $wgContLang->ucfirst(
117 $wgContLang->checkTitleEncoding( $wgContLang->recodeInput( js_unescape( $term ) ) )
118 ) );
119
120 if ( strlen( str_replace( '_', '', $term ) )<3 )
121 return;
122
123 $wgAjaxCachePolicy->setPolicy( 30*60 );
124
125 $db =& wfGetDB( DB_SLAVE );
126 $res = $db->select( 'page', 'page_title',
127 array( 'page_namespace' => 0,
128 "page_title LIKE '". $db->strencode( $term) ."%'" ),
129 "wfSajaxSearch",
130 array( 'LIMIT' => $limit+1 )
131 );
132
133 $r = "";
134
135 $i=0;
136 while ( ( $row = $db->fetchObject( $res ) ) && ( ++$i <= $limit ) ) {
137 $nt = Title::newFromDBkey( $row->page_title );
138 $r .= '<li>' . $l->makeKnownLinkObj( $nt ) . "</li>\n";
139 }
140 if ( $i > $limit ) {
141 $more = '<i>' . $l->makeKnownLink( $wgContLang->specialPage( "Allpages" ),
142 wfMsg('moredotdotdot'),
143 "namespace=0&from=" . wfUrlEncode ( $term ) ) .
144 '</i>';
145 } else {
146 $more = '';
147 }
148
149 $subtitlemsg = ( Title::newFromText($term) ? 'searchsubtitle' : 'searchsubtitleinvalid' );
150 $subtitle = $wgOut->parse( wfMsg( $subtitlemsg, wfEscapeWikiText($term) ) );
151
152 $term = htmlspecialchars( $term );
153 return '<div style="float:right; border:solid 1px black;background:gainsboro;padding:2px;"><a onclick="Searching_Hide_Results();">'
154 . wfMsg( 'hideresults' ) . '</a></div>'
155 . '<h1 class="firstHeading">'.wfMsg('search')
156 . '</h1><div id="contentSub">'. $subtitle . '</div><ul><li>'
157 . $l->makeKnownLink( $wgContLang->specialPage( 'Search' ),
158 wfMsg( 'searchcontaining', $term ),
159 "search=$term&fulltext=Search" )
160 . '</li><li>' . $l->makeKnownLink( $wgContLang->specialPage( 'Search' ),
161 wfMsg( 'searchnamed', $term ) ,
162 "search=$term&go=Go" )
163 . "</li></ul><h2>" . wfMsg( 'articletitles', $term ) . "</h2>"
164 . '<ul>' .$r .'</ul>'.$more;
165 }
166
167 ?>