Update missing language names
[mediawiki.git] / includes / SearchEngine.php
blobcca48df612a79bb619f6ccba70ae975a2b3da813
1 <?
2 # See search.doc
4 class SearchEngine {
5 /* private */ var $mUsertext, $mSearchterms;
6 /* private */ var $mTitlecond, $mTextcond;
8 var $doSearchRedirects = true;
9 var $addtoquery = array();
10 var $namespacesToSearch = array();
11 var $alternateTitle;
13 function SearchEngine( $text )
15 # We display the query, so let's strip it for safety
17 global $wgDBmysql4;
18 $lc = SearchEngine::legalSearchChars() . "()";
19 if( $wgDBmysql4 ) $lc .= "\"~<>*+-";
20 $this->mUsertext = trim( preg_replace( "/[^{$lc}]/", " ", $text ) );
21 $this->mSearchterms = array();
24 function queryNamespaces()
26 $namespaces = implode( ",", $this->namespacesToSearch );
27 if ($namespaces == "") {
28 $namespaces = "0";
30 return "AND cur_namespace IN (" . $namespaces . ")";
31 #return "1";
34 function searchRedirects()
36 if ( $this->doSearchRedirects ) return "";
37 return "AND cur_is_redirect=0 ";
40 /* private */ function initNamespaceCheckbox( $i )
42 global $wgUser, $wgNamespacesToBeSearchedDefault;
45 if ($wgUser->getID()) {
46 // User is logged in so we retrieve his default namespaces
47 return $wgUser->getOption( "searchNs".$i );
49 else {
50 // User is not logged in so we give him the global default namespaces
51 return $wgNamespacesToBeSearchedDefault[ $i ];
55 # Display the "power search" footer. Does not actually perform the search,
56 # that is done by showResults()
57 function powersearch()
59 global $wgUser, $wgOut, $wgLang, $wgTitle;
61 $search = $_REQUEST['search'];
62 $searchx = $_REQUEST['searchx'];
63 $listredirs = $_REQUEST['redirs'];
65 $ret = wfMsg("powersearchtext"); # Text to be returned
66 $tempText = ""; # Temporary text, for substitution into $ret
68 if( isset( $_REQUEST["searchx"] ) ) {
69 $this->addtoquery["searchx"] = "1";
72 # Do namespace checkboxes
73 $namespaces = $wgLang->getNamespaces();
74 foreach ( $namespaces as $i => $namespace ) {
75 # Skip virtual namespaces
76 if ( $i < 0 ) {
77 continue;
80 $formVar = "ns$i";
82 # Initialise checkboxValues, either from defaults or from
83 # a previous invocation
84 if ( !isset( $searchx ) ) {
85 $checkboxValue = $this->initNamespaceCheckbox( $i );
86 } else {
87 $checkboxValue = $_REQUEST[$formVar];
90 $checked = "";
91 if ( $checkboxValue == 1 ) {
92 $checked = " checked";
93 $this->addtoquery["ns{$i}"] = 1;
94 array_push( $this->namespacesToSearch, $i );
96 $name = str_replace( "_", " ", $namespaces[$i] );
97 if ( "" == $name ) {
98 $name = wfMsg( "blanknamespace" );
101 if ( $tempText !== "" ) {
102 $tempText .= " ";
104 $tempText .= "<input type=checkbox value=\"1\" name=\"" .
105 "ns{$i}\"{$checked}>{$name}\n";
107 $ret = str_replace ( "$1", $tempText, $ret );
109 # List redirects checkbox
111 $checked = "";
112 if ( $listredirs == 1 ) {
113 $this->addtoquery["redirs"] = 1;
114 $checked = " checked";
116 $tempText = "<input type=checkbox value=1 name=\"redirs\"{$checked}>\n";
117 $ret = str_replace( "$2", $tempText, $ret );
119 # Search field
121 $tempText = "<input type=text name=\"search\" value=\"" .
122 htmlspecialchars( $search ) ."\" width=80>\n";
123 $ret = str_replace( "$3", $tempText, $ret );
125 # Searchx button
127 $tempText = "<input type=submit name=\"searchx\" value=\"" .
128 wfMsg("powersearch") . "\">\n";
129 $ret = str_replace( "$9", $tempText, $ret );
131 $ret = "<br><br>\n<form id=\"powersearch\" method=\"get\" " .
132 "action=\"" . wfLocalUrl( "" ) . "\">\n{$ret}\n</form>\n";
134 if ( isset ( $searchx ) ) {
135 if ( ! $listredirs ) {
136 $this->doSearchRedirects = false;
139 return $ret;
142 # Perform the search and construct the results page
143 function showResults()
145 global $wgUser, $wgTitle, $wgOut, $wgLang, $wgDisableTextSearch;
146 global $wgInputEncoding;
147 $fname = "SearchEngine::showResults";
149 $search = $_REQUEST['search'];
151 $powersearch = $this->powersearch(); /* Need side-effects here? */
153 $wgOut->setPageTitle( wfMsg( "searchresults" ) );
154 $q = wfMsg( "searchquery", htmlspecialchars( $this->mUsertext ) );
155 $wgOut->setSubtitle( $q );
156 $wgOut->setArticleFlag( false );
157 $wgOut->setRobotpolicy( "noindex,nofollow" );
159 $sk = $wgUser->getSkin();
160 $text = wfMsg( "searchresulttext", $sk->makeKnownLink(
161 wfMsg( "searchhelppage" ), wfMsg( "searchingwikipedia" ) ) );
162 $wgOut->addHTML( $text );
164 $this->parseQuery();
165 if ( "" == $this->mTitlecond || "" == $this->mTextcond ) {
166 $wgOut->addHTML( "<h2>" . wfMsg( "badquery" ) . "</h2>\n" .
167 "<p>" . wfMsg( "badquerytext" ) );
168 return;
170 list( $limit, $offset ) = wfCheckLimits( 20, "searchlimit" );
172 $searchnamespaces = $this->queryNamespaces();
173 $redircond = $this->searchRedirects();
175 if ( $wgDisableTextSearch ) {
176 $wgOut->addHTML( wfMsg( "searchdisabled", htmlspecialchars( $search ), $wgInputEncoding ) );
177 } else {
178 $sql = "SELECT cur_id,cur_namespace,cur_title," .
179 "cur_text FROM cur,searchindex " .
180 "WHERE cur_id=si_page AND {$this->mTitlecond} " .
181 "{$searchnamespaces} {$redircond}" .
182 "LIMIT {$offset}, {$limit}";
183 $res1 = wfQuery( $sql, DB_READ, $fname );
184 $num = wfNumRows($res1);
186 $sk = $wgUser->getSkin();
187 $text = wfMsg( "searchresulttext", $sk->makeKnownLink(
188 wfMsg( "searchhelppage" ), wfMsg( "searchingwikipedia" ) ) );
189 $wgOut->addHTML( $text );
191 $this->parseQuery();
192 if ( "" == $this->mTitlecond || "" == $this->mTextcond ) {
193 $wgOut->addHTML( "<h2>" . wfMsg( "badquery" ) . "</h2>\n" .
194 "<p>" . wfMsg( "badquerytext" ) );
195 return;
197 list( $limit, $offset ) = wfCheckLimits( 20, "searchlimit" );
199 $searchnamespaces = $this->queryNamespaces();
200 $redircond = $this->searchRedirects();
202 $sql = "SELECT cur_id,cur_namespace,cur_title," .
203 "cur_text FROM cur,searchindex " .
204 "WHERE cur_id=si_page AND {$this->mTitlecond} " .
205 "{$searchnamespaces} {$redircond}" .
206 "LIMIT {$offset}, {$limit}";
207 $res1 = wfQuery( $sql, DB_READ, $fname );
208 $num = wfNumRows($res1);
210 $sql = "SELECT cur_id,cur_namespace,cur_title," .
211 "cur_text FROM cur,searchindex " .
212 "WHERE cur_id=si_page AND {$this->mTextcond} " .
213 "{$searchnamespaces} {$redircond} " .
214 "LIMIT {$offset}, {$limit}";
215 $res2 = wfQuery( $sql, DB_READ, $fname );
216 $num = $num + wfNumRows($res2);
218 if ( $num == $limit ) {
219 $top = wfShowingResults( $offset, $limit);
220 } else {
221 $top = wfShowingResultsNum( $offset, $limit, $num );
223 $wgOut->addHTML( "<p>{$top}\n" );
225 # For powersearch
227 $a2l = "" ;
228 $akk = array_keys( $this->addtoquery ) ;
229 foreach ( $akk AS $ak ) {
230 $a2l .= "&{$ak}={$this->addtoquery[$ak]}" ;
233 $sl = wfViewPrevNext( $offset, $limit, "",
234 "search=" . wfUrlencode( $this->mUsertext ) . $a2l );
235 $wgOut->addHTML( "<br>{$sl}\n" );
237 $foundsome = false;
239 if ( 0 == wfNumRows( $res1 ) ) {
240 $wgOut->addHTML( "<h2>" . wfMsg( "notitlematches" ) .
241 "</h2>\n" );
242 } else {
243 $foundsome = true;
244 $off = $offset + 1;
245 $wgOut->addHTML( "<h2>" . wfMsg( "titlematches" ) .
246 "</h2>\n<ol start='{$off}'>" );
248 while ( $row = wfFetchObject( $res1 ) ) {
249 $this->showHit( $row );
251 wfFreeResult( $res1 );
252 $wgOut->addHTML( "</ol>\n" );
255 if ( 0 == wfNumRows( $res2 ) ) {
256 $wgOut->addHTML( "<h2>" . wfMsg( "notextmatches" ) .
257 "</h2>\n" );
258 } else {
259 $foundsome = true;
260 $off = $offset + 1;
261 $wgOut->addHTML( "<h2>" . wfMsg( "textmatches" ) . "</h2>\n" .
262 "<ol start='{$off}'>" );
263 while ( $row = wfFetchObject( $res2 ) ) {
264 $this->showHit( $row );
266 wfFreeResult( $res2 );
267 $wgOut->addHTML( "</ol>\n" );
269 if ( ! $foundsome ) {
270 $wgOut->addHTML( "<p>" . wfMsg( "nonefound" ) . "\n" );
272 $wgOut->addHTML( "<p>{$sl}\n" );
273 $wgOut->addHTML( $powersearch );
277 function legalSearchChars()
279 $lc = "A-Za-z_'0-9\\x80-\\xFF\\-";
280 return $lc;
283 function parseQuery()
285 global $wgDBminWordLen, $wgLang, $wgDBmysql4;
287 if( $wgDBmysql4 ) {
288 # Use cleaner boolean search if available
289 return $this->parseQuery4();
292 $lc = SearchEngine::legalSearchChars() . "()";
293 $q = preg_replace( "/([()])/", " \\1 ", $this->mUsertext );
294 $q = preg_replace( "/\\s+/", " ", $q );
295 $w = explode( " ", strtolower( trim( $q ) ) );
297 $last = $cond = "";
298 foreach ( $w as $word ) {
299 $word = $wgLang->stripForSearch( $word );
300 if ( "and" == $word || "or" == $word || "not" == $word
301 || "(" == $word || ")" == $word ) {
302 $cond .= " " . strtoupper( $word );
303 $last = "";
304 } else if ( strlen( $word ) < $wgDBminWordLen ) {
305 continue;
306 } else if ( FulltextStoplist::inList( $word ) ) {
307 continue;
308 } else {
309 if ( "" != $last ) { $cond .= " AND"; }
310 $cond .= " (MATCH (##field##) AGAINST ('" .
311 wfStrencode( $word ). "'))";
312 $last = $word;
313 array_push( $this->mSearchterms, "\\b" . $word . "\\b" );
316 if ( 0 == count( $this->mSearchterms ) ) { return; }
318 $this->mTitlecond = "(" . str_replace( "##field##",
319 "si_title", $cond ) . " )";
321 $this->mTextcond = "(" . str_replace( "##field##",
322 "si_text", $cond ) . " AND (cur_is_redirect=0) )";
325 function parseQuery4()
327 # FIXME: not ready yet! Do not use.
329 global $wgLang;
330 $lc = SearchEngine::legalSearchChars();
331 #$q = preg_replace( "/([+-]?)([$lc]+)/e",
332 # "\"$1\" . \$wgLang->stripForSearch(\"$2\")",
333 # $this->mUsertext );
335 $q = $this->mUsertext;
336 $qq = wfStrencode( $wgLang->stripForSearch( $q ) );
337 $this->mSearchterms = preg_split( '/\s+/', $q );
338 $this->mTitlecond = " MATCH(si_title) AGAINST('$qq' IN BOOLEAN MODE)";
339 $this->mTextcond = " (MATCH(si_text) AGAINST('$qq' IN BOOLEAN MODE) AND cur_is_redirect=0)";
342 function showHit( $row )
344 global $wgUser, $wgOut;
346 $t = Title::makeName( $row->cur_namespace, $row->cur_title );
347 $sk = $wgUser->getSkin();
349 $contextlines = $wgUser->getOption( "contextlines" );
350 if ( "" == $contextlines ) { $contextlines = 5; }
351 $contextchars = $wgUser->getOption( "contextchars" );
352 if ( "" == $contextchars ) { $contextchars = 50; }
354 $link = $sk->makeKnownLink( $t, "" );
355 $size = wfMsg( "nbytes", strlen( $row->cur_text ) );
356 $wgOut->addHTML( "<li>{$link} ({$size})" );
358 $lines = explode( "\n", $row->cur_text );
359 $pat1 = "/(.*)(" . implode( "|", $this->mSearchterms ) . ")(.*)/i";
360 $lineno = 0;
362 foreach ( $lines as $line ) {
363 if ( 0 == $contextlines ) { break; }
364 --$contextlines;
365 ++$lineno;
366 if ( ! preg_match( $pat1, $line, $m ) ) { continue; }
368 $pre = $m[1];
369 if ( 0 == $contextchars ) { $pre = "..."; }
370 else {
371 if ( strlen( $pre ) > $contextchars ) {
372 $pre = "..." . substr( $pre, -$contextchars );
375 $pre = wfEscapeHTML( $pre );
377 if ( count( $m ) < 3 ) { $post = ""; }
378 else { $post = $m[3]; }
380 if ( 0 == $contextchars ) { $post = "..."; }
381 else {
382 if ( strlen( $post ) > $contextchars ) {
383 $post = substr( $post, 0, $contextchars ) . "...";
386 $post = wfEscapeHTML( $post );
387 $found = wfEscapeHTML( $m[2] );
389 $line = "{$pre}{$found}{$post}";
390 $pat2 = "/(" . implode( "|", $this->mSearchterms ) . ")/i";
391 $line = preg_replace( $pat2,
392 "<font color='red'>\\1</font>", $line );
394 $wgOut->addHTML( "<br><small>{$lineno}: {$line}</small>\n" );
396 $wgOut->addHTML( "</li>\n" );
399 function goResult()
401 global $wgOut, $wgDisableTextSearch;
402 $fname = "SearchEngine::goResult";
404 $search = $_REQUEST['search'];
406 # First try to go to page as entered
408 $t = Title::newFromText( $search );
410 if ( 0 != $t->getArticleID() ) {
411 $wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
412 return;
415 # Now try all lower case (i.e. first letter capitalized)
417 $t = Title::newFromText( strtolower( $search ) );
418 if ( 0 != $t->getArticleID() ) {
419 $wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
420 return;
423 # Now try capitalized string
425 $t = Title::newFromText( ucwords( strtolower( $search ) ) );
426 if ( 0 != $t->getArticleID() ) {
427 $wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
428 return;
431 # Now try all upper case
433 $t = Title::newFromText( strtoupper( $search ) );
434 if ( 0 != $t->getArticleID() ) {
435 $wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
436 return;
439 # Try a near match
441 if( !$wgDisableTextSearch ) {
442 $this->parseQuery();
443 $sql = "SELECT cur_id,cur_title,cur_namespace,si_page FROM cur,searchindex " .
444 "WHERE cur_id=si_page AND {$this->mTitlecond} ORDER BY cur_namespace LIMIT 1";
446 if ( "" != $this->mTitlecond ) {
447 $res = wfQuery( $sql, DB_READ, $fname );
449 if ( isset( $res ) && 0 != wfNumRows( $res ) ) {
450 $s = wfFetchObject( $res );
452 $t = Title::makeTitle( $s->cur_namespace, $s->cur_title );
453 $wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
454 return;
457 $wgOut->addHTML( wfMsg("nogomatch",
458 htmlspecialchars( wfLocalUrl( ucfirst($this->mUsertext), "action=edit") ) )
459 . "\n<p>" );
460 $this->showResults();