Ajax suggestions:
[lhc/web/wiklou.git] / includes / SearchEngine.php
1 <?php
2 /**
3 * Contain a class for special pages
4 * @addtogroup Search
5 */
6 class SearchEngine {
7 var $limit = 10;
8 var $offset = 0;
9 var $searchTerms = array();
10 var $namespaces = array( NS_MAIN );
11 var $showRedirects = false;
12
13 /**
14 * Perform a full text search query and return a result set.
15 * If title searches are not supported or disabled, return null.
16 *
17 * @param string $term - Raw search term
18 * @return SearchResultSet
19 * @access public
20 * @abstract
21 */
22 function searchText( $term ) {
23 return null;
24 }
25
26 /**
27 * Perform a title-only search query and return a result set.
28 * If title searches are not supported or disabled, return null.
29 *
30 * @param string $term - Raw search term
31 * @return SearchResultSet
32 * @access public
33 * @abstract
34 */
35 function searchTitle( $term ) {
36 return null;
37 }
38
39 /**
40 * If an exact title match can be find, or a very slightly close match,
41 * return the title. If no match, returns NULL.
42 *
43 * @param string $term
44 * @return Title
45 */
46 public static function getNearMatch( $searchterm ) {
47 global $wgContLang;
48
49 $allSearchTerms = array($searchterm);
50
51 if($wgContLang->hasVariants()){
52 $allSearchTerms = array_merge($allSearchTerms,$wgContLang->convertLinkToAllVariants($searchterm));
53 }
54
55 foreach($allSearchTerms as $term){
56
57 # Exact match? No need to look further.
58 $title = Title::newFromText( $term );
59 if (is_null($title))
60 return NULL;
61
62 if ( $title->getNamespace() == NS_SPECIAL || $title->exists() ) {
63 return $title;
64 }
65
66 # Now try all lower case (i.e. first letter capitalized)
67 #
68 $title = Title::newFromText( $wgContLang->lc( $term ) );
69 if ( $title->exists() ) {
70 return $title;
71 }
72
73 # Now try capitalized string
74 #
75 $title = Title::newFromText( $wgContLang->ucwords( $term ) );
76 if ( $title->exists() ) {
77 return $title;
78 }
79
80 # Now try all upper case
81 #
82 $title = Title::newFromText( $wgContLang->uc( $term ) );
83 if ( $title->exists() ) {
84 return $title;
85 }
86
87 # Now try Word-Caps-Breaking-At-Word-Breaks, for hyphenated names etc
88 $title = Title::newFromText( $wgContLang->ucwordbreaks($term) );
89 if ( $title->exists() ) {
90 return $title;
91 }
92
93 global $wgCapitalLinks, $wgContLang;
94 if( !$wgCapitalLinks ) {
95 // Catch differs-by-first-letter-case-only
96 $title = Title::newFromText( $wgContLang->ucfirst( $term ) );
97 if ( $title->exists() ) {
98 return $title;
99 }
100 $title = Title::newFromText( $wgContLang->lcfirst( $term ) );
101 if ( $title->exists() ) {
102 return $title;
103 }
104 }
105
106 // Give hooks a chance at better match variants
107 $title = null;
108 if( !wfRunHooks( 'SearchGetNearMatch', array( $term, &$title ) ) ) {
109 return $title;
110 }
111 }
112
113 $title = Title::newFromText( $searchterm );
114
115 # Entering an IP address goes to the contributions page
116 if ( ( $title->getNamespace() == NS_USER && User::isIP($title->getText() ) )
117 || User::isIP( trim( $searchterm ) ) ) {
118 return SpecialPage::getTitleFor( 'Contributions', $title->getDBkey() );
119 }
120
121
122 # Entering a user goes to the user page whether it's there or not
123 if ( $title->getNamespace() == NS_USER ) {
124 return $title;
125 }
126
127 # Go to images that exist even if there's no local page.
128 # There may have been a funny upload, or it may be on a shared
129 # file repository such as Wikimedia Commons.
130 if( $title->getNamespace() == NS_IMAGE ) {
131 $image = wfFindFile( $title );
132 if( $image ) {
133 return $title;
134 }
135 }
136
137 # MediaWiki namespace? Page may be "implied" if not customized.
138 # Just return it, with caps forced as the message system likes it.
139 if( $title->getNamespace() == NS_MEDIAWIKI ) {
140 return Title::makeTitle( NS_MEDIAWIKI, $wgContLang->ucfirst( $title->getText() ) );
141 }
142
143 # Quoted term? Try without the quotes...
144 $matches = array();
145 if( preg_match( '/^"([^"]+)"$/', $searchterm, $matches ) ) {
146 return SearchEngine::getNearMatch( $matches[1] );
147 }
148
149 return NULL;
150 }
151
152 public static function legalSearchChars() {
153 return "A-Za-z_'0-9\\x80-\\xFF\\-";
154 }
155
156 /**
157 * Set the maximum number of results to return
158 * and how many to skip before returning the first.
159 *
160 * @param int $limit
161 * @param int $offset
162 * @access public
163 */
164 function setLimitOffset( $limit, $offset = 0 ) {
165 $this->limit = intval( $limit );
166 $this->offset = intval( $offset );
167 }
168
169 /**
170 * Set which namespaces the search should include.
171 * Give an array of namespace index numbers.
172 *
173 * @param array $namespaces
174 * @access public
175 */
176 function setNamespaces( $namespaces ) {
177 $this->namespaces = $namespaces;
178 }
179
180 /**
181 * Parse some common prefixes: all (search everything)
182 * or namespace names
183 *
184 * @param string $query
185 */
186 function replacePrefixes( $query ){
187 global $wgContLang;
188
189 if( strpos($query,':') === false )
190 return $query; // nothing to do
191
192 $parsed = $query;
193 $allkeyword = wfMsg('searchall').":";
194 if( strncmp($query, $allkeyword, strlen($allkeyword)) == 0 ){
195 $this->namespaces = null;
196 $parsed = substr($query,strlen($allkeyword));
197 } else if( strpos($query,':') !== false ) {
198 $prefix = substr($query,0,strpos($query,':'));
199 $index = $wgContLang->getNsIndex($prefix);
200 if($index !== false){
201 $this->namespaces = array($index);
202 $parsed = substr($query,strlen($prefix)+1);
203 }
204 }
205 if(trim($parsed) == '')
206 return $query; // prefix was the whole query
207
208 return $parsed;
209 }
210
211 /**
212 * Make a list of searchable namespaces and their canonical names.
213 * @return array
214 */
215 public static function searchableNamespaces() {
216 global $wgContLang;
217 $arr = array();
218 foreach( $wgContLang->getNamespaces() as $ns => $name ) {
219 if( $ns >= NS_MAIN ) {
220 $arr[$ns] = $name;
221 }
222 }
223 return $arr;
224 }
225
226 /**
227 * Extract default namespaces to search from the given user's
228 * settings, returning a list of index numbers.
229 *
230 * @param User $user
231 * @return array
232 * @static
233 */
234 public static function userNamespaces( &$user ) {
235 $arr = array();
236 foreach( SearchEngine::searchableNamespaces() as $ns => $name ) {
237 if( $user->getOption( 'searchNs' . $ns ) ) {
238 $arr[] = $ns;
239 }
240 }
241 return $arr;
242 }
243
244 /**
245 * Find snippet highlight settings for a given user
246 *
247 * @param User $user
248 * @return array contextlines, contextchars
249 * @static
250 */
251 public static function userHighlightPrefs( &$user ){
252 //$contextlines = $user->getOption( 'contextlines', 5 );
253 $contextlines = 2; // Hardcode this. Old defaults sucked. :)
254 $contextchars = $user->getOption( 'contextchars', 50 );
255 return array($contextlines, $contextchars);
256 }
257
258 /**
259 * An array of namespaces indexes to be searched by default
260 *
261 * @return array
262 * @static
263 */
264 public static function defaultNamespaces(){
265 global $wgNamespacesToBeSearchedDefault;
266
267 return array_keys($wgNamespacesToBeSearchedDefault, true);
268 }
269
270 /**
271 * Return a 'cleaned up' search string
272 *
273 * @return string
274 * @access public
275 */
276 function filter( $text ) {
277 $lc = $this->legalSearchChars();
278 return trim( preg_replace( "/[^{$lc}]/", " ", $text ) );
279 }
280 /**
281 * Load up the appropriate search engine class for the currently
282 * active database backend, and return a configured instance.
283 *
284 * @return SearchEngine
285 */
286 public static function create() {
287 global $wgDBtype, $wgSearchType;
288 if( $wgSearchType ) {
289 $class = $wgSearchType;
290 } elseif( $wgDBtype == 'mysql' ) {
291 $class = 'SearchMySQL';
292 } else if ( $wgDBtype == 'postgres' ) {
293 $class = 'SearchPostgres';
294 } else if ( $wgDBtype == 'oracle' ) {
295 $class = 'SearchOracle';
296 } else {
297 $class = 'SearchEngineDummy';
298 }
299 $search = new $class( wfGetDB( DB_SLAVE ) );
300 $search->setLimitOffset(0,0);
301 return $search;
302 }
303
304 /**
305 * Create or update the search index record for the given page.
306 * Title and text should be pre-processed.
307 *
308 * @param int $id
309 * @param string $title
310 * @param string $text
311 * @abstract
312 */
313 function update( $id, $title, $text ) {
314 // no-op
315 }
316
317 /**
318 * Update a search index record's title only.
319 * Title should be pre-processed.
320 *
321 * @param int $id
322 * @param string $title
323 * @abstract
324 */
325 function updateTitle( $id, $title ) {
326 // no-op
327 }
328
329 /**
330 * Get OpenSearch suggestion template
331 *
332 * @return string
333 * @static
334 */
335 public static function getOpenSearchTemplate() {
336 global $wgOpenSearchTemplate, $wgServer, $wgScriptPath;
337 if($wgOpenSearchTemplate)
338 return $wgOpenSearchTemplate;
339 else{
340 $ns = implode(',',SearchEngine::defaultNamespaces());
341 if(!$ns) $ns = "0";
342 return $wgServer . $wgScriptPath . '/api.php?action=opensearch&search={searchTerms}&namespace='.$ns;
343 }
344 }
345
346 /**
347 * Get internal MediaWiki Suggest template
348 *
349 * @return string
350 * @static
351 */
352 public static function getMWSuggestTemplate() {
353 global $wgMWSuggestTemplate, $wgServer, $wgScriptPath;
354 if($wgMWSuggestTemplate)
355 return $wgMWSuggestTemplate;
356 else
357 return $wgServer . $wgScriptPath . '/api.php?action=opensearch&search={searchTerms}&namespace={namespaces}';
358 }
359 }
360
361
362 /**
363 * @addtogroup Search
364 */
365 class SearchResultSet {
366 /**
367 * Fetch an array of regular expression fragments for matching
368 * the search terms as parsed by this engine in a text extract.
369 *
370 * @return array
371 * @access public
372 * @abstract
373 */
374 function termMatches() {
375 return array();
376 }
377
378 function numRows() {
379 return 0;
380 }
381
382 /**
383 * Return true if results are included in this result set.
384 * @return bool
385 * @abstract
386 */
387 function hasResults() {
388 return false;
389 }
390
391 /**
392 * Some search modes return a total hit count for the query
393 * in the entire article database. This may include pages
394 * in namespaces that would not be matched on the given
395 * settings.
396 *
397 * Return null if no total hits number is supported.
398 *
399 * @return int
400 * @access public
401 */
402 function getTotalHits() {
403 return null;
404 }
405
406 /**
407 * Some search modes return a suggested alternate term if there are
408 * no exact hits. Returns true if there is one on this set.
409 *
410 * @return bool
411 * @access public
412 */
413 function hasSuggestion() {
414 return false;
415 }
416
417 /**
418 * @return string suggested query, null if none
419 */
420 function getSuggestionQuery(){
421 return null;
422 }
423
424 /**
425 * @return string highlighted suggested query, '' if none
426 */
427 function getSuggestionSnippet(){
428 return '';
429 }
430
431 /**
432 * Return information about how and from where the results were fetched,
433 * should be useful for diagnostics and debugging
434 *
435 * @return string
436 */
437 function getInfo() {
438 return null;
439 }
440
441 /**
442 * Return a result set of hits on other (multiple) wikis associated with this one
443 *
444 * @return SearchResultSet
445 */
446 function getInterwikiResults() {
447 return null;
448 }
449
450 /**
451 * Check if there are results on other wikis
452 *
453 * @return boolean
454 */
455 function hasInterwikiResults() {
456 return $this->getInterwikiResults() != null;
457 }
458
459
460 /**
461 * Fetches next search result, or false.
462 * @return SearchResult
463 * @access public
464 * @abstract
465 */
466 function next() {
467 return false;
468 }
469
470 /**
471 * Frees the result set, if applicable.
472 * @ access public
473 */
474 function free() {
475 // ...
476 }
477 }
478
479
480 /**
481 * @addtogroup Search
482 */
483 class SearchResultTooMany {
484 ## Some search engines may bail out if too many matches are found
485 }
486
487
488 /**
489 * @addtogroup Search
490 */
491 class SearchResult {
492
493 function SearchResult( $row ) {
494 $this->mTitle = Title::makeTitle( $row->page_namespace, $row->page_title );
495 if( !is_null($this->mTitle) )
496 $this->mRevision = Revision::newFromTitle( $this->mTitle );
497 }
498
499 /**
500 * Check if this is result points to an invalid title
501 *
502 * @return boolean
503 * @access public
504 */
505 function isBrokenTitle(){
506 if( is_null($this->mTitle) )
507 return true;
508 return false;
509 }
510
511 /**
512 * Check if target page is missing, happens when index is out of date
513 *
514 * @return boolean
515 * @access public
516 */
517 function isMissingRevision(){
518 if( !$this->mRevision )
519 return true;
520 return false;
521 }
522
523 /**
524 * @return Title
525 * @access public
526 */
527 function getTitle() {
528 return $this->mTitle;
529 }
530
531 /**
532 * @return double or null if not supported
533 */
534 function getScore() {
535 return null;
536 }
537
538 /**
539 * Lazy initialization of article text from DB
540 */
541 protected function initText(){
542 if( !isset($this->mText) ){
543 $this->mText = $this->mRevision->getText();
544 }
545 }
546
547 /**
548 * @param array $terms terms to highlight
549 * @return string highlighted text snippet, null (and not '') if not supported
550 */
551 function getTextSnippet($terms){
552 global $wgUser;
553 $this->initText();
554 list($contextlines,$contextchars) = SearchEngine::userHighlightPrefs($wgUser);
555 return $this->extractText( $this->mText, $terms, $contextlines, $contextchars);
556 }
557
558 /**
559 * Default implementation of snippet extraction
560 *
561 * @param string $text
562 * @param array $terms
563 * @param int $contextlines
564 * @param int $contextchars
565 * @return string
566 */
567 protected function extractText( $text, $terms, $contextlines, $contextchars ) {
568 global $wgLang, $wgContLang;
569 $fname = __METHOD__;
570
571 $lines = explode( "\n", $text );
572
573 $terms = implode( '|', $terms );
574 $max = intval( $contextchars ) + 1;
575 $pat1 = "/(.*)($terms)(.{0,$max})/i";
576
577 $lineno = 0;
578
579 $extract = "";
580 wfProfileIn( "$fname-extract" );
581 foreach ( $lines as $line ) {
582 if ( 0 == $contextlines ) {
583 break;
584 }
585 ++$lineno;
586 $m = array();
587 if ( ! preg_match( $pat1, $line, $m ) ) {
588 continue;
589 }
590 --$contextlines;
591 $pre = $wgContLang->truncate( $m[1], -$contextchars, ' ... ' );
592
593 if ( count( $m ) < 3 ) {
594 $post = '';
595 } else {
596 $post = $wgContLang->truncate( $m[3], $contextchars, ' ... ' );
597 }
598
599 $found = $m[2];
600
601 $line = htmlspecialchars( $pre . $found . $post );
602 $pat2 = '/(' . $terms . ")/i";
603 $line = preg_replace( $pat2,
604 "<span class='searchmatch'>\\1</span>", $line );
605
606 $extract .= "${line}\n";
607 }
608 wfProfileOut( "$fname-extract" );
609
610 return $extract;
611 }
612
613 /**
614 * @param array $terms terms to highlight
615 * @return string highlighted title, '' if not supported
616 */
617 function getTitleSnippet($terms){
618 return '';
619 }
620
621 /**
622 * @param array $terms terms to highlight
623 * @return string highlighted redirect name (redirect to this page), '' if none or not supported
624 */
625 function getRedirectSnippet($terms){
626 return '';
627 }
628
629 /**
630 * @return Title object for the redirect to this page, null if none or not supported
631 */
632 function getRedirectTitle(){
633 return null;
634 }
635
636 /**
637 * @return string highlighted relevant section name, null if none or not supported
638 */
639 function getSectionSnippet(){
640 return '';
641 }
642
643 /**
644 * @return Title object (pagename+fragment) for the section, null if none or not supported
645 */
646 function getSectionTitle(){
647 return null;
648 }
649
650 /**
651 * @return string timestamp
652 */
653 function getTimestamp(){
654 return $this->mRevision->getTimestamp();
655 }
656
657 /**
658 * @return int number of words
659 */
660 function getWordCount(){
661 $this->initText();
662 return str_word_count( $this->mText );
663 }
664
665 /**
666 * @return int size in bytes
667 */
668 function getByteSize(){
669 $this->initText();
670 return strlen( $this->mText );
671 }
672
673 /**
674 * @return boolean if hit has related articles
675 */
676 function hasRelated(){
677 return false;
678 }
679
680 /**
681 * @return interwiki prefix of the title (return iw even if title is broken)
682 */
683 function getInterwikiPrefix(){
684 return '';
685 }
686 }
687
688 /**
689 * @addtogroup Search
690 */
691 class SearchEngineDummy {
692 function search( $term ) {
693 return null;
694 }
695 function setLimitOffset($l, $o) {}
696 function legalSearchChars() {}
697 function update() {}
698 function setnamespaces() {}
699 function searchtitle() {}
700 function searchtext() {}
701 }