* Remove trailing whitespace
[lhc/web/wiklou.git] / includes / specials / SpecialSearch.php
1 <?php
2 # Copyright (C) 2004 Brion Vibber <brion@pobox.com>
3 # http://www.mediawiki.org/
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 # http://www.gnu.org/copyleft/gpl.html
19
20 /**
21 * Run text & title search and display the output
22 * @file
23 * @ingroup SpecialPage
24 */
25
26 /**
27 * Entry point
28 *
29 * @param $par String: (default '')
30 */
31 function wfSpecialSearch( $par = '' ) {
32 global $wgRequest, $wgUser, $wgUseOldSearchUI;
33 // Strip underscores from title parameter; most of the time we'll want
34 // text form here. But don't strip underscores from actual text params!
35 $titleParam = str_replace( '_', ' ', $par );
36 // Fetch the search term
37 $search = str_replace( "\n", " ", $wgRequest->getText( 'search', $titleParam ) );
38 $class = $wgUseOldSearchUI ? 'SpecialSearchOld' : 'SpecialSearch';
39 $searchPage = new $class( $wgRequest, $wgUser );
40 if( $wgRequest->getVal( 'fulltext' )
41 || !is_null( $wgRequest->getVal( 'offset' ))
42 || !is_null( $wgRequest->getVal( 'searchx' )) )
43 {
44 $searchPage->showResults( $search );
45 } else {
46 $searchPage->goResult( $search );
47 }
48 }
49
50 /**
51 * implements Special:Search - Run text & title search and display the output
52 * @ingroup SpecialPage
53 */
54 class SpecialSearch {
55
56 /**
57 * Set up basic search parameters from the request and user settings.
58 * Typically you'll pass $wgRequest and $wgUser.
59 *
60 * @param WebRequest $request
61 * @param User $user
62 * @public
63 */
64 function __construct( &$request, &$user ) {
65 list( $this->limit, $this->offset ) = $request->getLimitOffset( 20, 'searchlimit' );
66 $this->mPrefix = $request->getVal('prefix', '');
67 # Extract requested namespaces
68 $this->namespaces = $this->powerSearch( $request );
69 if( empty( $this->namespaces ) ) {
70 $this->namespaces = SearchEngine::userNamespaces( $user );
71 }
72 $this->searchRedirects = $request->getcheck( 'redirs' ) ? true : false;
73 $this->searchAdvanced = $request->getVal( 'advanced' );
74 $this->active = 'advanced';
75 $this->sk = $user->getSkin();
76 $this->didYouMeanHtml = ''; # html of did you mean... link
77 $this->fulltext = $request->getVal('fulltext');
78 }
79
80 /**
81 * If an exact title match can be found, jump straight ahead to it.
82 * @param string $term
83 */
84 public function goResult( $term ) {
85 global $wgOut;
86 $this->setupPage( $term );
87 # Try to go to page as entered.
88 $t = Title::newFromText( $term );
89 # If the string cannot be used to create a title
90 if( is_null( $t ) ) {
91 return $this->showResults( $term );
92 }
93 # If there's an exact or very near match, jump right there.
94 $t = SearchEngine::getNearMatch( $term );
95 if( !is_null( $t ) ) {
96 $wgOut->redirect( $t->getFullURL() );
97 return;
98 }
99 # No match, generate an edit URL
100 $t = Title::newFromText( $term );
101 if( !is_null( $t ) ) {
102 global $wgGoToEdit;
103 wfRunHooks( 'SpecialSearchNogomatch', array( &$t ) );
104 # If the feature is enabled, go straight to the edit page
105 if( $wgGoToEdit ) {
106 $wgOut->redirect( $t->getFullURL( 'action=edit' ) );
107 return;
108 }
109 }
110 return $this->showResults( $term );
111 }
112
113 /**
114 * @param string $term
115 */
116 public function showResults( $term ) {
117 global $wgOut, $wgUser, $wgDisableTextSearch, $wgContLang;
118 wfProfileIn( __METHOD__ );
119
120 $sk = $wgUser->getSkin();
121
122 $this->searchEngine = SearchEngine::create();
123 $search =& $this->searchEngine;
124 $search->setLimitOffset( $this->limit, $this->offset );
125 $search->setNamespaces( $this->namespaces );
126 $search->showRedirects = $this->searchRedirects;
127 $search->prefix = $this->mPrefix;
128 $term = $search->transformSearchTerm($term);
129
130 $this->setupPage( $term );
131
132 if( $wgDisableTextSearch ) {
133 global $wgSearchForwardUrl;
134 if( $wgSearchForwardUrl ) {
135 $url = str_replace( '$1', urlencode( $term ), $wgSearchForwardUrl );
136 $wgOut->redirect( $url );
137 wfProfileOut( __METHOD__ );
138 return;
139 }
140 global $wgInputEncoding;
141 $wgOut->addHTML(
142 Xml::openElement( 'fieldset' ) .
143 Xml::element( 'legend', null, wfMsg( 'search-external' ) ) .
144 Xml::element( 'p', array( 'class' => 'mw-searchdisabled' ), wfMsg( 'searchdisabled' ) ) .
145 wfMsg( 'googlesearch',
146 htmlspecialchars( $term ),
147 htmlspecialchars( $wgInputEncoding ),
148 htmlspecialchars( wfMsg( 'searchbutton' ) )
149 ) .
150 Xml::closeElement( 'fieldset' )
151 );
152 wfProfileOut( __METHOD__ );
153 return;
154 }
155
156 $t = Title::newFromText( $term );
157
158 // fetch search results
159 $rewritten = $search->replacePrefixes($term);
160
161 $titleMatches = $search->searchTitle( $rewritten );
162 if( !($titleMatches instanceof SearchResultTooMany))
163 $textMatches = $search->searchText( $rewritten );
164
165 // did you mean... suggestions
166 if( $textMatches && $textMatches->hasSuggestion() ) {
167 $st = SpecialPage::getTitleFor( 'Search' );
168 # mirror Go/Search behaviour of original request ..
169 $didYouMeanParams = array( 'search' => $textMatches->getSuggestionQuery() );
170 if($this->fulltext != NULL)
171 $didYouMeanParams['fulltext'] = $this->fulltext;
172 $stParams = wfArrayToCGI(
173 $didYouMeanParams,
174 $this->powerSearchOptions()
175 );
176 $suggestLink = $sk->makeKnownLinkObj( $st,
177 $textMatches->getSuggestionSnippet(),
178 $stParams );
179
180 $this->didYouMeanHtml = '<div class="searchdidyoumean">'.wfMsg('search-suggest',$suggestLink).'</div>';
181 }
182
183 // start rendering the page
184 $wgOut->addHtml(
185 Xml::openElement( 'table', array( 'border'=>0, 'cellpadding'=>0, 'cellspacing'=>0 ) ) .
186 Xml::openElement( 'tr' ) .
187 Xml::openElement( 'td' ) . "\n" .
188 ( $this->searchAdvanced ? $this->powerSearchBox( $term ) : $this->shortDialog( $term ) ) .
189 Xml::closeElement('td') .
190 Xml::closeElement('tr') .
191 Xml::closeElement('table')
192 );
193
194 // Sometimes the search engine knows there are too many hits
195 if( $titleMatches instanceof SearchResultTooMany ) {
196 $wgOut->addWikiText( '==' . wfMsg( 'toomanymatches' ) . "==\n" );
197 wfProfileOut( __METHOD__ );
198 return;
199 }
200
201 $filePrefix = $wgContLang->getFormattedNsText(NS_FILE).':';
202 if( '' === trim( $term ) || $filePrefix === trim( $term ) ) {
203 $wgOut->addHTML( $this->searchAdvanced ? $this->powerSearchFocus() : $this->searchFocus() );
204 // Empty query -- straight view of search form
205 wfProfileOut( __METHOD__ );
206 return;
207 }
208
209 // show direct page/create link
210 if( !is_null($t) ) {
211 if( !$t->exists() ) {
212 $wgOut->addWikiMsg( 'searchmenu-new', wfEscapeWikiText( $t->getPrefixedText() ) );
213 } else {
214 $wgOut->addWikiMsg( 'searchmenu-exists', wfEscapeWikiText( $t->getPrefixedText() ) );
215 }
216 }
217
218 // Get number of results
219 $titleMatchesSQL = $titleMatches ? $titleMatches->numRows() : 0;
220 $textMatchesSQL = $textMatches ? $textMatches->numRows() : 0;
221 // Total initial query matches (possible false positives)
222 $numSQL = $titleMatchesSQL + $textMatchesSQL;
223 // Get total actual results (after second filtering, if any)
224 $numTitleMatches = $titleMatches && !is_null( $titleMatches->getTotalHits() ) ?
225 $titleMatches->getTotalHits() : $titleMatchesSQL;
226 $numTextMatches = $textMatches && !is_null( $textMatches->getTotalHits() ) ?
227 $textMatches->getTotalHits() : $textMatchesSQL;
228 $totalRes = $numTitleMatches + $numTextMatches;
229
230 // show number of results and current offset
231 if( $numSQL > 0 ) {
232 if( $numSQL > 0 ) {
233 $top = wfMsgExt('showingresultstotal', array( 'parseinline' ),
234 $this->offset+1, $this->offset+$numSQL, $totalRes, $numSQL );
235 } elseif( $numSQL >= $this->limit ) {
236 $top = wfShowingResults( $this->offset, $this->limit );
237 } else {
238 $top = wfShowingResultsNum( $this->offset, $this->limit, $numSQL );
239 }
240 $wgOut->addHTML( "<p class='mw-search-numberresults'>{$top}</p>\n" );
241 }
242
243 // prev/next links
244 if( $numSQL || $this->offset ) {
245 $prevnext = wfViewPrevNext( $this->offset, $this->limit,
246 SpecialPage::getTitleFor( 'Search' ),
247 wfArrayToCGI( $this->powerSearchOptions(), array( 'search' => $term ) ),
248 max( $titleMatchesSQL, $textMatchesSQL ) < $this->limit
249 );
250 $wgOut->addHTML( "<p class='mw-search-pager-top'>{$prevnext}</p>\n" );
251 wfRunHooks( 'SpecialSearchResults', array( $term, &$titleMatches, &$textMatches ) );
252 } else {
253 wfRunHooks( 'SpecialSearchNoResults', array( $term ) );
254 }
255
256 $wgOut->addHtml( "<div class='searchresults'>" );
257 if( $titleMatches ) {
258 if( $numTitleMatches > 0 ) {
259 $wgOut->wrapWikiMsg( "==$1==\n", 'titlematches' );
260 $wgOut->addHTML( $this->showMatches( $titleMatches ) );
261 }
262 $titleMatches->free();
263 }
264 if( $textMatches ) {
265 // output appropriate heading
266 if( $numTextMatches > 0 && $numTitleMatches > 0 ) {
267 // if no title matches the heading is redundant
268 $wgOut->wrapWikiMsg( "==$1==\n", 'textmatches' );
269 } elseif( $totalRes == 0 ) {
270 # Don't show the 'no text matches' if we received title matches
271 $wgOut->wrapWikiMsg( "==$1==\n", 'notextmatches' );
272 }
273 // show interwiki results if any
274 if( $textMatches->hasInterwikiResults() ) {
275 $wgOut->addHTML( $this->showInterwiki( $textMatches->getInterwikiResults(), $term ) );
276 }
277 // show results
278 if( $numTextMatches > 0 ) {
279 $wgOut->addHTML( $this->showMatches( $textMatches ) );
280 }
281
282 $textMatches->free();
283 }
284 if( $totalRes === 0 ) {
285 $wgOut->addWikiMsg( 'search-nonefound' );
286 }
287 $wgOut->addHtml( "</div>" );
288 if( $totalRes === 0 ) {
289 $wgOut->addHTML( $this->searchAdvanced ? $this->powerSearchFocus() : $this->searchFocus() );
290 }
291
292 if( $numSQL || $this->offset ) {
293 $wgOut->addHTML( "<p class='mw-search-pager-bottom'>{$prevnext}</p>\n" );
294 }
295 wfProfileOut( __METHOD__ );
296 }
297
298 /**
299 *
300 */
301 protected function setupPage( $term ) {
302 global $wgOut;
303 // Figure out the active search profile header
304 $nsAllSet = array_keys( SearchEngine::searchableNamespaces() );
305 if( $this->searchAdvanced )
306 $this->active = 'advanced';
307 else if( $this->namespaces === NS_FILE || $this->startsWithImage( $term ) )
308 $this->active = 'images';
309 elseif( $this->namespaces === $nsAllSet )
310 $this->active = 'all';
311 elseif( $this->namespaces === SearchEngine::defaultNamespaces() )
312 $this->active = 'default';
313 elseif( $this->namespaces === SearchEngine::projectNamespaces() )
314 $this->active = 'project';
315 else
316 $this->active = 'advanced';
317 # Should advanced UI be used?
318 $this->searchAdvanced = ($this->active === 'advanced');
319 if( !empty( $term ) ) {
320 $wgOut->setPageTitle( wfMsg( 'searchresults') );
321 $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsg( 'searchresults-title', $term ) ) );
322 }
323 $wgOut->setArticleRelated( false );
324 $wgOut->setRobotPolicy( 'noindex,nofollow' );
325 }
326
327 /**
328 * Extract "power search" namespace settings from the request object,
329 * returning a list of index numbers to search.
330 *
331 * @param WebRequest $request
332 * @return array
333 */
334 protected function powerSearch( &$request ) {
335 $arr = array();
336 foreach( SearchEngine::searchableNamespaces() as $ns => $name ) {
337 if( $request->getCheck( 'ns' . $ns ) ) {
338 $arr[] = $ns;
339 }
340 }
341 return $arr;
342 }
343
344 /**
345 * Reconstruct the 'power search' options for links
346 * @return array
347 */
348 protected function powerSearchOptions() {
349 $opt = array();
350 foreach( $this->namespaces as $n ) {
351 $opt['ns' . $n] = 1;
352 }
353 $opt['redirs'] = $this->searchRedirects ? 1 : 0;
354 if( $this->searchAdvanced ) {
355 $opt['advanced'] = $this->searchAdvanced;
356 }
357 return $opt;
358 }
359
360 /**
361 * Show whole set of results
362 *
363 * @param SearchResultSet $matches
364 */
365 protected function showMatches( &$matches ) {
366 global $wgContLang;
367 wfProfileIn( __METHOD__ );
368
369 $terms = $wgContLang->convertForSearchResult( $matches->termMatches() );
370
371 $out = "";
372 $infoLine = $matches->getInfo();
373 if( !is_null($infoLine) ) {
374 $out .= "\n<!-- {$infoLine} -->\n";
375 }
376 $off = $this->offset + 1;
377 $out .= "<ul class='mw-search-results'>\n";
378 while( $result = $matches->next() ) {
379 $out .= $this->showHit( $result, $terms );
380 }
381 $out .= "</ul>\n";
382
383 // convert the whole thing to desired language variant
384 $out = $wgContLang->convert( $out );
385 wfProfileOut( __METHOD__ );
386 return $out;
387 }
388
389 /**
390 * Format a single hit result
391 * @param SearchResult $result
392 * @param array $terms terms to highlight
393 */
394 protected function showHit( $result, $terms ) {
395 global $wgContLang, $wgLang, $wgUser;
396 wfProfileIn( __METHOD__ );
397
398 if( $result->isBrokenTitle() ) {
399 wfProfileOut( __METHOD__ );
400 return "<!-- Broken link in search result -->\n";
401 }
402
403 $sk = $wgUser->getSkin();
404 $t = $result->getTitle();
405
406 $link = $this->sk->makeKnownLinkObj( $t, $result->getTitleSnippet($terms));
407
408 //If page content is not readable, just return the title.
409 //This is not quite safe, but better than showing excerpts from non-readable pages
410 //Note that hiding the entry entirely would screw up paging.
411 if( !$t->userCanRead() ) {
412 wfProfileOut( __METHOD__ );
413 return "<li>{$link}</li>\n";
414 }
415
416 // If the page doesn't *exist*... our search index is out of date.
417 // The least confusing at this point is to drop the result.
418 // You may get less results, but... oh well. :P
419 if( $result->isMissingRevision() ) {
420 wfProfileOut( __METHOD__ );
421 return "<!-- missing page " . htmlspecialchars( $t->getPrefixedText() ) . "-->\n";
422 }
423
424 // format redirects / relevant sections
425 $redirectTitle = $result->getRedirectTitle();
426 $redirectText = $result->getRedirectSnippet($terms);
427 $sectionTitle = $result->getSectionTitle();
428 $sectionText = $result->getSectionSnippet($terms);
429 $redirect = '';
430 if( !is_null($redirectTitle) )
431 $redirect = "<span class='searchalttitle'>"
432 .wfMsg('search-redirect',$this->sk->makeKnownLinkObj( $redirectTitle, $redirectText))
433 ."</span>";
434 $section = '';
435 if( !is_null($sectionTitle) )
436 $section = "<span class='searchalttitle'>"
437 .wfMsg('search-section', $this->sk->makeKnownLinkObj( $sectionTitle, $sectionText))
438 ."</span>";
439
440 // format text extract
441 $extract = "<div class='searchresult'>".$result->getTextSnippet($terms)."</div>";
442
443 // format score
444 if( is_null( $result->getScore() ) ) {
445 // Search engine doesn't report scoring info
446 $score = '';
447 } else {
448 $percent = sprintf( '%2.1f', $result->getScore() * 100 );
449 $score = wfMsg( 'search-result-score', $wgLang->formatNum( $percent ) )
450 . ' - ';
451 }
452
453 // format description
454 $byteSize = $result->getByteSize();
455 $wordCount = $result->getWordCount();
456 $timestamp = $result->getTimestamp();
457 $size = wfMsgExt( 'search-result-size', array( 'parsemag', 'escape' ),
458 $this->sk->formatSize( $byteSize ), $wordCount );
459 $date = $wgLang->timeanddate( $timestamp );
460
461 // link to related articles if supported
462 $related = '';
463 if( $result->hasRelated() ) {
464 $st = SpecialPage::getTitleFor( 'Search' );
465 $stParams = wfArrayToCGI( $this->powerSearchOptions(),
466 array('search' => wfMsgForContent('searchrelated').':'.$t->getPrefixedText(),
467 'fulltext' => wfMsg('search') ));
468
469 $related = ' -- ' . $sk->makeKnownLinkObj( $st,
470 wfMsg('search-relatedarticle'), $stParams );
471 }
472
473 // Include a thumbnail for media files...
474 if( $t->getNamespace() == NS_FILE ) {
475 $img = wfFindFile( $t );
476 if( $img ) {
477 $thumb = $img->transform( array( 'width' => 120, 'height' => 120 ) );
478 if( $thumb ) {
479 $desc = $img->getShortDesc();
480 wfProfileOut( __METHOD__ );
481 // Float doesn't seem to interact well with the bullets.
482 // Table messes up vertical alignment of the bullets.
483 // Bullets are therefore disabled (didn't look great anyway).
484 return "<li>" .
485 '<table class="searchResultImage">' .
486 '<tr>' .
487 '<td width="120" align="center" valign="top">' .
488 $thumb->toHtml( array( 'desc-link' => true ) ) .
489 '</td>' .
490 '<td valign="top">' .
491 $link .
492 $extract .
493 "<div class='mw-search-result-data'>{$score}{$desc} - {$date}{$related}</div>" .
494 '</td>' .
495 '</tr>' .
496 '</table>' .
497 "</li>\n";
498 }
499 }
500 }
501
502 wfProfileOut( __METHOD__ );
503 return "<li>{$link} {$redirect} {$section} {$extract}\n" .
504 "<div class='mw-search-result-data'>{$score}{$size} - {$date}{$related}</div>" .
505 "</li>\n";
506
507 }
508
509 /**
510 * Show results from other wikis
511 *
512 * @param SearchResultSet $matches
513 */
514 protected function showInterwiki( &$matches, $query ) {
515 global $wgContLang;
516 wfProfileIn( __METHOD__ );
517 $terms = $wgContLang->convertForSearchResult( $matches->termMatches() );
518
519 $out = "<div id='mw-search-interwiki'><div id='mw-search-interwiki-caption'>".
520 wfMsg('search-interwiki-caption')."</div>\n";
521 $off = $this->offset + 1;
522 $out .= "<ul class='mw-search-iwresults'>\n";
523
524 // work out custom project captions
525 $customCaptions = array();
526 $customLines = explode("\n",wfMsg('search-interwiki-custom')); // format per line <iwprefix>:<caption>
527 foreach($customLines as $line) {
528 $parts = explode(":",$line,2);
529 if(count($parts) == 2) // validate line
530 $customCaptions[$parts[0]] = $parts[1];
531 }
532
533 $prev = null;
534 while( $result = $matches->next() ) {
535 $out .= $this->showInterwikiHit( $result, $prev, $terms, $query, $customCaptions );
536 $prev = $result->getInterwikiPrefix();
537 }
538 // FIXME: should support paging in a non-confusing way (not sure how though, maybe via ajax)..
539 $out .= "</ul></div>\n";
540
541 // convert the whole thing to desired language variant
542 $out = $wgContLang->convert( $out );
543 wfProfileOut( __METHOD__ );
544 return $out;
545 }
546
547 /**
548 * Show single interwiki link
549 *
550 * @param SearchResult $result
551 * @param string $lastInterwiki
552 * @param array $terms
553 * @param string $query
554 * @param array $customCaptions iw prefix -> caption
555 */
556 protected function showInterwikiHit( $result, $lastInterwiki, $terms, $query, $customCaptions) {
557 wfProfileIn( __METHOD__ );
558 global $wgContLang, $wgLang;
559
560 if( $result->isBrokenTitle() ) {
561 wfProfileOut( __METHOD__ );
562 return "<!-- Broken link in search result -->\n";
563 }
564
565 $t = $result->getTitle();
566
567 $link = $this->sk->makeKnownLinkObj( $t, $result->getTitleSnippet($terms));
568
569 // format redirect if any
570 $redirectTitle = $result->getRedirectTitle();
571 $redirectText = $result->getRedirectSnippet($terms);
572 $redirect = '';
573 if( !is_null($redirectTitle) )
574 $redirect = "<span class='searchalttitle'>"
575 .wfMsg('search-redirect',$this->sk->makeKnownLinkObj( $redirectTitle, $redirectText))
576 ."</span>";
577
578 $out = "";
579 // display project name
580 if(is_null($lastInterwiki) || $lastInterwiki != $t->getInterwiki()) {
581 if( key_exists($t->getInterwiki(),$customCaptions) )
582 // captions from 'search-interwiki-custom'
583 $caption = $customCaptions[$t->getInterwiki()];
584 else{
585 // default is to show the hostname of the other wiki which might suck
586 // if there are many wikis on one hostname
587 $parsed = parse_url($t->getFullURL());
588 $caption = wfMsg('search-interwiki-default', $parsed['host']);
589 }
590 // "more results" link (special page stuff could be localized, but we might not know target lang)
591 $searchTitle = Title::newFromText($t->getInterwiki().":Special:Search");
592 $searchLink = $this->sk->makeKnownLinkObj( $searchTitle, wfMsg('search-interwiki-more'),
593 wfArrayToCGI(array('search' => $query, 'fulltext' => 'Search')));
594 $out .= "</ul><div class='mw-search-interwiki-project'><span class='mw-search-interwiki-more'>
595 {$searchLink}</span>{$caption}</div>\n<ul>";
596 }
597
598 $out .= "<li>{$link} {$redirect}</li>\n";
599 wfProfileOut( __METHOD__ );
600 return $out;
601 }
602
603
604 /**
605 * Generates the power search box at bottom of [[Special:Search]]
606 * @param $term string: search term
607 * @return $out string: HTML form
608 */
609 protected function powerSearchBox( $term ) {
610 global $wgScript;
611
612 $namespaces = SearchEngine::searchableNamespaces();
613
614 $tables = $this->namespaceTables( $namespaces );
615
616 $redirect = Xml::check( 'redirs', $this->searchRedirects, array( 'value' => '1', 'id' => 'redirs' ) );
617 $redirectLabel = Xml::label( wfMsg( 'powersearch-redir' ), 'redirs' );
618 $searchField = Xml::inputLabel( wfMsg('powersearch-field'), 'search', 'powerSearchText', 50, $term,
619 array( 'type' => 'text') );
620 $searchButton = Xml::submitButton( wfMsg( 'powersearch' ) ) . "\n";
621 $searchTitle = SpecialPage::getTitleFor( 'Search' );
622
623 $redirectText = '';
624 // show redirects check only if backend supports it
625 if( $this->searchEngine->acceptListRedirects() ) {
626 $redirectText = "<p>". $redirect . " " . $redirectLabel ."</p>";
627 }
628
629 $out = Xml::openElement( 'form', array( 'id' => 'powersearch', 'method' => 'get', 'action' => $wgScript ) ) .
630 Xml::hidden( 'title', $searchTitle->getPrefixedText() ) . "\n" .
631 "<p>" .
632 wfMsgExt( 'powersearch-ns', array( 'parseinline' ) ) .
633 "</p>\n" .
634 '<input type="hidden" name="advanced" value="'.$this->searchAdvanced."\"/>\n".
635 $tables .
636 "<hr style=\"clear: both;\" />\n".
637 $redirectText ."\n".
638 "<div style=\"padding-top:2px;padding-bottom:2px;\">".
639 $searchField .
640 "&nbsp;" .
641 Xml::hidden( 'fulltext', 'Advanced search' ) . "\n" .
642 $searchButton .
643 "</div>".
644 "</form>";
645 $t = Title::newFromText( $term );
646 /* if( $t != null && count($this->namespaces) === 1 ) {
647 $out .= wfMsgExt( 'searchmenu-prefix', array('parseinline'), $term );
648 } */
649 return Xml::openElement( 'fieldset', array('id' => 'mw-searchoptions','style' => 'margin:0em;') ) .
650 Xml::element( 'legend', null, wfMsg('powersearch-legend') ) .
651 $this->formHeader($term) . $out . $this->didYouMeanHtml .
652 Xml::closeElement( 'fieldset' );
653 }
654
655 protected function searchFocus() {
656 global $wgJsMimeType;
657 return "<script type=\"$wgJsMimeType\">" .
658 "hookEvent(\"load\", function() {" .
659 "document.getElementById('searchText').focus();" .
660 "});" .
661 "</script>";
662 }
663
664 protected function powerSearchFocus() {
665 global $wgJsMimeType;
666 return "<script type=\"$wgJsMimeType\">" .
667 "hookEvent(\"load\", function() {" .
668 "document.getElementById('powerSearchText').focus();" .
669 "});" .
670 "</script>";
671 }
672
673 protected function formHeader( $term ) {
674 global $wgContLang, $wgCanonicalNamespaceNames, $wgLang;
675
676 $sep = '&nbsp;&nbsp;&nbsp;';
677 $out = Xml::openElement('div', array( 'style' => 'padding-bottom:0.5em;' ) );
678
679 $bareterm = $term;
680 if( $this->startsWithImage( $term ) )
681 $bareterm = substr( $term, strpos( $term, ':' ) + 1 ); // delete all/image prefix
682
683 $nsAllSet = array_keys( SearchEngine::searchableNamespaces() );
684
685 // search profiles headers
686 $m = wfMsg( 'searchprofile-articles' );
687 $tt = wfMsg( 'searchprofile-articles-tooltip',
688 $wgLang->commaList( SearchEngine::namespacesAsText( SearchEngine::defaultNamespaces() ) ) );
689 $tt = Sanitizer::decodeCharReferences( $tt ); // need to allow entities
690 if( $this->active == 'default' ) {
691 $out .= Xml::element( 'strong', array( 'title'=>$tt ), $m );
692 } else {
693 $out .= $this->makeSearchLink( $bareterm, SearchEngine::defaultNamespaces(), $m, $tt );
694 }
695 $out .= $sep;
696
697 $m = wfMsg( 'searchprofile-images' );
698 $tt = wfMsg( 'searchprofile-images-tooltip' );
699 if( $this->active == 'images' ) {
700 $out .= Xml::element( 'strong', array( 'title'=>$tt ), $m );
701 } else {
702 $imageTextForm = $wgContLang->getFormattedNsText(NS_FILE).':'.$bareterm;
703 $out .= $this->makeSearchLink( $imageTextForm, array( NS_FILE ) , $m, $tt );
704 }
705 $out .= $sep;
706
707 $m = wfMsg( 'searchprofile-project' );
708 $tt = wfMsg( 'searchprofile-project-tooltip',
709 $wgLang->commaList( SearchEngine::namespacesAsText( SearchEngine::projectNamespaces() ) ) );
710 $tt = Sanitizer::decodeCharReferences( $tt ); // need to allow entities
711 if( $this->active == 'project' ) {
712 $out .= Xml::element( 'strong', array( 'title'=>$tt ), $m );
713 } else {
714 $out .= $this->makeSearchLink( $bareterm, SearchEngine::projectNamespaces(), $m, $tt );
715 }
716 $out .= $sep;
717
718 $m = wfMsg( 'searchprofile-everything' );
719 $tt = wfMsg( 'searchprofile-everything-tooltip' );
720 if( $this->active == 'all' ) {
721 $out .= Xml::element( 'strong', array( 'title'=>$tt ), $m );
722 } else {
723 $out .= $this->makeSearchLink( $bareterm, $nsAllSet, $m, $tt );
724 }
725 $out .= $sep;
726
727 $m = wfMsg( 'searchprofile-advanced' );
728 $tt = wfMsg( 'searchprofile-advanced-tooltip' );
729 if( $this->active == 'advanced' ) {
730 $out .= Xml::element( 'strong', array( 'title'=>$tt ), $m );
731 } else {
732 $out .= $this->makeSearchLink( $bareterm, $this->namespaces, $m, $tt, array( 'advanced' => '1' ) );
733 }
734 $out .= Xml::closeElement('div') ;
735
736 return $out;
737 }
738
739 protected function shortDialog( $term ) {
740 global $wgScript;
741 $searchTitle = SpecialPage::getTitleFor( 'Search' );
742 $searchable = SearchEngine::searchableNamespaces();
743 $out = Xml::openElement( 'form', array( 'id' => 'search', 'method' => 'get', 'action' => $wgScript ) );
744 $out .= Xml::hidden( 'title', $searchTitle->getPrefixedText() ) . "\n";
745 // show namespaces only for advanced search
746 if( $this->active == 'advanced' ) {
747 $active = array();
748 foreach( $this->namespaces as $ns ) {
749 $active[$ns] = $searchable[$ns];
750 }
751 $out .= wfMsgExt( 'powersearch-ns', array( 'parseinline' ) ) . "<br/>\n";
752 $out .= $this->namespaceTables( $active, 1 )."<br/>\n";
753 // Still keep namespace settings otherwise, but don't show them
754 } else {
755 foreach( $this->namespaces as $ns ) {
756 $out .= Xml::hidden( "ns{$ns}", '1' );
757 }
758 }
759 // Keep redirect setting
760 $out .= Xml::hidden( "redirs", (int)$this->searchRedirects );
761 // Term box
762 $out .= Xml::input( 'search', 50, $term, array( 'type' => 'text', 'id' => 'searchText' ) ) . "\n";
763 $out .= Xml::hidden( 'fulltext', 'Search' );
764 $out .= Xml::submitButton( wfMsg( 'searchbutton' ) );
765 $out .= ' (' . wfMsgExt('searchmenu-help',array('parseinline') ) . ')';
766 $out .= Xml::closeElement( 'form' );
767 // Add prefix link for single-namespace searches
768 $t = Title::newFromText( $term );
769 /*if( $t != null && count($this->namespaces) === 1 ) {
770 $out .= wfMsgExt( 'searchmenu-prefix', array('parseinline'), $term );
771 }*/
772 return Xml::openElement( 'fieldset', array('id' => 'mw-searchoptions','style' => 'margin:0em;') ) .
773 Xml::element( 'legend', null, wfMsg('searchmenu-legend') ) .
774 $this->formHeader($term) . $out . $this->didYouMeanHtml .
775 Xml::closeElement( 'fieldset' );
776 }
777
778 /** Make a search link with some target namespaces */
779 protected function makeSearchLink( $term, $namespaces, $label, $tooltip, $params=array() ) {
780 $opt = $params;
781 foreach( $namespaces as $n ) {
782 $opt['ns' . $n] = 1;
783 }
784 $opt['redirs'] = $this->searchRedirects ? 1 : 0;
785
786 $st = SpecialPage::getTitleFor( 'Search' );
787 $stParams = wfArrayToCGI( array( 'search' => $term, 'fulltext' => wfMsg( 'search' ) ), $opt );
788
789 return Xml::element( 'a',
790 array( 'href'=> $st->getLocalURL( $stParams ), 'title' => $tooltip ),
791 $label );
792 }
793
794 /** Check if query starts with image: prefix */
795 protected function startsWithImage( $term ) {
796 global $wgContLang;
797
798 $p = explode( ':', $term );
799 if( count( $p ) > 1 ) {
800 return $wgContLang->getNsIndex( $p[0] ) == NS_FILE;
801 }
802 return false;
803 }
804
805 protected function namespaceTables( $namespaces, $rowsPerTable = 3 ) {
806 global $wgContLang;
807 // Group namespaces into rows according to subject.
808 // Try not to make too many assumptions about namespace numbering.
809 $rows = array();
810 $tables = "";
811 foreach( $namespaces as $ns => $name ) {
812 $subj = MWNamespace::getSubject( $ns );
813 if( !array_key_exists( $subj, $rows ) ) {
814 $rows[$subj] = "";
815 }
816 $name = str_replace( '_', ' ', $name );
817 if( '' == $name ) {
818 $name = wfMsg( 'blanknamespace' );
819 }
820 $rows[$subj] .= Xml::openElement( 'td', array( 'style' => 'white-space: nowrap' ) ) .
821 Xml::checkLabel( $name, "ns{$ns}", "mw-search-ns{$ns}", in_array( $ns, $this->namespaces ) ) .
822 Xml::closeElement( 'td' ) . "\n";
823 }
824 $rows = array_values( $rows );
825 $numRows = count( $rows );
826 // Lay out namespaces in multiple floating two-column tables so they'll
827 // be arranged nicely while still accommodating different screen widths
828 // Float to the right on RTL wikis
829 $tableStyle = $wgContLang->isRTL() ?
830 'float: right; margin: 0 0 0em 1em' : 'float: left; margin: 0 1em 0em 0';
831 // Build the final HTML table...
832 for( $i = 0; $i < $numRows; $i += $rowsPerTable ) {
833 $tables .= Xml::openElement( 'table', array( 'style' => $tableStyle ) );
834 for( $j = $i; $j < $i + $rowsPerTable && $j < $numRows; $j++ ) {
835 $tables .= "<tr>\n" . $rows[$j] . "</tr>";
836 }
837 $tables .= Xml::closeElement( 'table' ) . "\n";
838 }
839 return $tables;
840 }
841 }
842
843 /**
844 * implements Special:Search - Run text & title search and display the output
845 * @ingroup SpecialPage
846 */
847 class SpecialSearchOld {
848
849 /**
850 * Set up basic search parameters from the request and user settings.
851 * Typically you'll pass $wgRequest and $wgUser.
852 *
853 * @param WebRequest $request
854 * @param User $user
855 * @public
856 */
857 function __construct( &$request, &$user ) {
858 list( $this->limit, $this->offset ) = $request->getLimitOffset( 20, 'searchlimit' );
859 $this->mPrefix = $request->getVal('prefix', '');
860 $this->namespaces = $this->powerSearch( $request );
861 if( empty( $this->namespaces ) ) {
862 $this->namespaces = SearchEngine::userNamespaces( $user );
863 }
864
865 $this->searchRedirects = $request->getcheck( 'redirs' ) ? true : false;
866 $this->fulltext = $request->getVal('fulltext');
867 }
868
869 /**
870 * If an exact title match can be found, jump straight ahead to it.
871 * @param string $term
872 * @public
873 */
874 function goResult( $term ) {
875 global $wgOut;
876 global $wgGoToEdit;
877
878 $this->setupPage( $term );
879
880 # Try to go to page as entered.
881 $t = Title::newFromText( $term );
882
883 # If the string cannot be used to create a title
884 if( is_null( $t ) ){
885 return $this->showResults( $term );
886 }
887
888 # If there's an exact or very near match, jump right there.
889 $t = SearchEngine::getNearMatch( $term );
890 if( !is_null( $t ) ) {
891 $wgOut->redirect( $t->getFullURL() );
892 return;
893 }
894
895 # No match, generate an edit URL
896 $t = Title::newFromText( $term );
897 if( ! is_null( $t ) ) {
898 wfRunHooks( 'SpecialSearchNogomatch', array( &$t ) );
899 # If the feature is enabled, go straight to the edit page
900 if ( $wgGoToEdit ) {
901 $wgOut->redirect( $t->getFullURL( 'action=edit' ) );
902 return;
903 }
904 }
905
906 $extra = $wgOut->parse( '=='.wfMsgNoTrans( 'notitlematches' )."==\n" );
907 if( $t->quickUserCan( 'create' ) && $t->quickUserCan( 'edit' ) ) {
908 $extra .= wfMsgExt( 'noexactmatch', 'parse', wfEscapeWikiText( $term ) );
909 } else {
910 $extra .= wfMsgExt( 'noexactmatch-nocreate', 'parse', wfEscapeWikiText( $term ) );
911 }
912
913 $this->showResults( $term, $extra );
914 }
915
916 /**
917 * @param string $term
918 * @param string $extra Extra HTML to add after "did you mean"
919 */
920 public function showResults( $term, $extra = '' ) {
921 wfProfileIn( __METHOD__ );
922 global $wgOut, $wgUser;
923 $sk = $wgUser->getSkin();
924
925 $search = SearchEngine::create();
926 $search->setLimitOffset( $this->limit, $this->offset );
927 $search->setNamespaces( $this->namespaces );
928 $search->showRedirects = $this->searchRedirects;
929 $search->prefix = $this->mPrefix;
930 $term = $search->transformSearchTerm($term);
931
932 $this->setupPage( $term );
933
934 $rewritten = $search->replacePrefixes($term);
935 $titleMatches = $search->searchTitle( $rewritten );
936 $textMatches = $search->searchText( $rewritten );
937
938 // did you mean... suggestions
939 if($textMatches && $textMatches->hasSuggestion()){
940 $st = SpecialPage::getTitleFor( 'Search' );
941
942 # mirror Go/Search behaviour of original request
943 $didYouMeanParams = array( 'search' => $textMatches->getSuggestionQuery() );
944 if($this->fulltext != NULL)
945 $didYouMeanParams['fulltext'] = $this->fulltext;
946 $stParams = wfArrayToCGI(
947 $didYouMeanParams,
948 $this->powerSearchOptions()
949 );
950
951 $suggestLink = $sk->makeKnownLinkObj( $st,
952 $textMatches->getSuggestionSnippet(),
953 $stParams );
954
955 $wgOut->addHTML('<div class="searchdidyoumean">'.wfMsg('search-suggest',$suggestLink).'</div>');
956 }
957
958 $wgOut->addHTML( $extra );
959
960 $wgOut->wrapWikiMsg( "<div class='mw-searchresult'>\n$1</div>", 'searchresulttext' );
961
962 if( '' === trim( $term ) ) {
963 // Empty query -- straight view of search form
964 $wgOut->setSubtitle( '' );
965 $wgOut->addHTML( $this->powerSearchBox( $term ) );
966 $wgOut->addHTML( $this->powerSearchFocus() );
967 wfProfileOut( __METHOD__ );
968 return;
969 }
970
971 global $wgDisableTextSearch;
972 if ( $wgDisableTextSearch ) {
973 global $wgSearchForwardUrl;
974 if( $wgSearchForwardUrl ) {
975 $url = str_replace( '$1', urlencode( $term ), $wgSearchForwardUrl );
976 $wgOut->redirect( $url );
977 wfProfileOut( __METHOD__ );
978 return;
979 }
980 global $wgInputEncoding;
981 $wgOut->addHTML(
982 Xml::openElement( 'fieldset' ) .
983 Xml::element( 'legend', null, wfMsg( 'search-external' ) ) .
984 Xml::element( 'p', array( 'class' => 'mw-searchdisabled' ), wfMsg( 'searchdisabled' ) ) .
985 wfMsg( 'googlesearch',
986 htmlspecialchars( $term ),
987 htmlspecialchars( $wgInputEncoding ),
988 htmlspecialchars( wfMsg( 'searchbutton' ) )
989 ) .
990 Xml::closeElement( 'fieldset' )
991 );
992 wfProfileOut( __METHOD__ );
993 return;
994 }
995
996 $wgOut->addHTML( $this->shortDialog( $term ) );
997
998 // Sometimes the search engine knows there are too many hits
999 if ($titleMatches instanceof SearchResultTooMany) {
1000 $wgOut->addWikiText( '==' . wfMsg( 'toomanymatches' ) . "==\n" );
1001 $wgOut->addHTML( $this->powerSearchBox( $term ) );
1002 $wgOut->addHTML( $this->powerSearchFocus() );
1003 wfProfileOut( __METHOD__ );
1004 return;
1005 }
1006
1007 // show number of results
1008 $num = ( $titleMatches ? $titleMatches->numRows() : 0 )
1009 + ( $textMatches ? $textMatches->numRows() : 0);
1010 $totalNum = 0;
1011 if($titleMatches && !is_null($titleMatches->getTotalHits()))
1012 $totalNum += $titleMatches->getTotalHits();
1013 if($textMatches && !is_null($textMatches->getTotalHits()))
1014 $totalNum += $textMatches->getTotalHits();
1015 if ( $num > 0 ) {
1016 if ( $totalNum > 0 ){
1017 $top = wfMsgExt('showingresultstotal', array( 'parseinline' ),
1018 $this->offset+1, $this->offset+$num, $totalNum, $num );
1019 } elseif ( $num >= $this->limit ) {
1020 $top = wfShowingResults( $this->offset, $this->limit );
1021 } else {
1022 $top = wfShowingResultsNum( $this->offset, $this->limit, $num );
1023 }
1024 $wgOut->addHTML( "<p class='mw-search-numberresults'>{$top}</p>\n" );
1025 }
1026
1027 // prev/next links
1028 if( $num || $this->offset ) {
1029 $prevnext = wfViewPrevNext( $this->offset, $this->limit,
1030 SpecialPage::getTitleFor( 'Search' ),
1031 wfArrayToCGI(
1032 $this->powerSearchOptions(),
1033 array( 'search' => $term ) ),
1034 ($num < $this->limit) );
1035 $wgOut->addHTML( "<p class='mw-search-pager-top'>{$prevnext}</p>\n" );
1036 wfRunHooks( 'SpecialSearchResults', array( $term, &$titleMatches, &$textMatches ) );
1037 } else {
1038 wfRunHooks( 'SpecialSearchNoResults', array( $term ) );
1039 }
1040
1041 if( $titleMatches ) {
1042 if( $titleMatches->numRows() ) {
1043 $wgOut->wrapWikiMsg( "==$1==\n", 'titlematches' );
1044 $wgOut->addHTML( $this->showMatches( $titleMatches ) );
1045 }
1046 $titleMatches->free();
1047 }
1048
1049 if( $textMatches ) {
1050 // output appropriate heading
1051 if( $textMatches->numRows() ) {
1052 if($titleMatches)
1053 $wgOut->wrapWikiMsg( "==$1==\n", 'textmatches' );
1054 else // if no title matches the heading is redundant
1055 $wgOut->addHTML("<hr/>");
1056 } elseif( $num == 0 ) {
1057 # Don't show the 'no text matches' if we received title matches
1058 $wgOut->wrapWikiMsg( "==$1==\n", 'notextmatches' );
1059 }
1060 // show interwiki results if any
1061 if( $textMatches->hasInterwikiResults() )
1062 $wgOut->addHTML( $this->showInterwiki( $textMatches->getInterwikiResults(), $term ));
1063 // show results
1064 if( $textMatches->numRows() )
1065 $wgOut->addHTML( $this->showMatches( $textMatches ) );
1066
1067 $textMatches->free();
1068 }
1069
1070 if ( $num == 0 ) {
1071 $wgOut->addWikiMsg( 'nonefound' );
1072 }
1073 if( $num || $this->offset ) {
1074 $wgOut->addHTML( "<p class='mw-search-pager-bottom'>{$prevnext}</p>\n" );
1075 }
1076 $wgOut->addHTML( $this->powerSearchBox( $term ) );
1077 wfProfileOut( __METHOD__ );
1078 }
1079
1080 #------------------------------------------------------------------
1081 # Private methods below this line
1082
1083 /**
1084 *
1085 */
1086 function setupPage( $term ) {
1087 global $wgOut;
1088 if( !empty( $term ) ){
1089 $wgOut->setPageTitle( wfMsg( 'searchresults') );
1090 $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsg( 'searchresults-title', $term) ) );
1091 }
1092 $subtitlemsg = ( Title::newFromText( $term ) ? 'searchsubtitle' : 'searchsubtitleinvalid' );
1093 $wgOut->setSubtitle( $wgOut->parse( wfMsg( $subtitlemsg, wfEscapeWikiText($term) ) ) );
1094 $wgOut->setArticleRelated( false );
1095 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1096 }
1097
1098 /**
1099 * Extract "power search" namespace settings from the request object,
1100 * returning a list of index numbers to search.
1101 *
1102 * @param WebRequest $request
1103 * @return array
1104 * @private
1105 */
1106 function powerSearch( &$request ) {
1107 $arr = array();
1108 foreach( SearchEngine::searchableNamespaces() as $ns => $name ) {
1109 if( $request->getCheck( 'ns' . $ns ) ) {
1110 $arr[] = $ns;
1111 }
1112 }
1113 return $arr;
1114 }
1115
1116 /**
1117 * Reconstruct the 'power search' options for links
1118 * @return array
1119 * @private
1120 */
1121 function powerSearchOptions() {
1122 $opt = array();
1123 foreach( $this->namespaces as $n ) {
1124 $opt['ns' . $n] = 1;
1125 }
1126 $opt['redirs'] = $this->searchRedirects ? 1 : 0;
1127 return $opt;
1128 }
1129
1130 /**
1131 * Show whole set of results
1132 *
1133 * @param SearchResultSet $matches
1134 */
1135 function showMatches( &$matches ) {
1136 wfProfileIn( __METHOD__ );
1137
1138 global $wgContLang;
1139 $terms = $wgContLang->convertForSearchResult( $matches->termMatches() );
1140
1141 $out = "";
1142
1143 $infoLine = $matches->getInfo();
1144 if( !is_null($infoLine) )
1145 $out .= "\n<!-- {$infoLine} -->\n";
1146
1147
1148 $off = $this->offset + 1;
1149 $out .= "<ul class='mw-search-results'>\n";
1150
1151 while( $result = $matches->next() ) {
1152 $out .= $this->showHit( $result, $terms );
1153 }
1154 $out .= "</ul>\n";
1155
1156 // convert the whole thing to desired language variant
1157 global $wgContLang;
1158 $out = $wgContLang->convert( $out );
1159 wfProfileOut( __METHOD__ );
1160 return $out;
1161 }
1162
1163 /**
1164 * Format a single hit result
1165 * @param SearchResult $result
1166 * @param array $terms terms to highlight
1167 */
1168 function showHit( $result, $terms ) {
1169 wfProfileIn( __METHOD__ );
1170 global $wgUser, $wgContLang, $wgLang;
1171
1172 if( $result->isBrokenTitle() ) {
1173 wfProfileOut( __METHOD__ );
1174 return "<!-- Broken link in search result -->\n";
1175 }
1176
1177 $t = $result->getTitle();
1178 $sk = $wgUser->getSkin();
1179
1180 $link = $sk->makeKnownLinkObj( $t, $result->getTitleSnippet($terms));
1181
1182 //If page content is not readable, just return the title.
1183 //This is not quite safe, but better than showing excerpts from non-readable pages
1184 //Note that hiding the entry entirely would screw up paging.
1185 if (!$t->userCanRead()) {
1186 wfProfileOut( __METHOD__ );
1187 return "<li>{$link}</li>\n";
1188 }
1189
1190 // If the page doesn't *exist*... our search index is out of date.
1191 // The least confusing at this point is to drop the result.
1192 // You may get less results, but... oh well. :P
1193 if( $result->isMissingRevision() ) {
1194 wfProfileOut( __METHOD__ );
1195 return "<!-- missing page " .
1196 htmlspecialchars( $t->getPrefixedText() ) . "-->\n";
1197 }
1198
1199 // format redirects / relevant sections
1200 $redirectTitle = $result->getRedirectTitle();
1201 $redirectText = $result->getRedirectSnippet($terms);
1202 $sectionTitle = $result->getSectionTitle();
1203 $sectionText = $result->getSectionSnippet($terms);
1204 $redirect = '';
1205 if( !is_null($redirectTitle) )
1206 $redirect = "<span class='searchalttitle'>"
1207 .wfMsg('search-redirect',$sk->makeKnownLinkObj( $redirectTitle, $redirectText))
1208 ."</span>";
1209 $section = '';
1210 if( !is_null($sectionTitle) )
1211 $section = "<span class='searchalttitle'>"
1212 .wfMsg('search-section', $sk->makeKnownLinkObj( $sectionTitle, $sectionText))
1213 ."</span>";
1214
1215 // format text extract
1216 $extract = "<div class='searchresult'>".$result->getTextSnippet($terms)."</div>";
1217
1218 // format score
1219 if( is_null( $result->getScore() ) ) {
1220 // Search engine doesn't report scoring info
1221 $score = '';
1222 } else {
1223 $percent = sprintf( '%2.1f', $result->getScore() * 100 );
1224 $score = wfMsg( 'search-result-score', $wgLang->formatNum( $percent ) )
1225 . ' - ';
1226 }
1227
1228 // format description
1229 $byteSize = $result->getByteSize();
1230 $wordCount = $result->getWordCount();
1231 $timestamp = $result->getTimestamp();
1232 $size = wfMsgExt( 'search-result-size', array( 'parsemag', 'escape' ),
1233 $sk->formatSize( $byteSize ),
1234 $wordCount );
1235 $date = $wgLang->timeanddate( $timestamp );
1236
1237 // link to related articles if supported
1238 $related = '';
1239 if( $result->hasRelated() ){
1240 $st = SpecialPage::getTitleFor( 'Search' );
1241 $stParams = wfArrayToCGI( $this->powerSearchOptions(),
1242 array('search' => wfMsgForContent('searchrelated').':'.$t->getPrefixedText(),
1243 'fulltext' => wfMsg('search') ));
1244
1245 $related = ' -- ' . $sk->makeKnownLinkObj( $st,
1246 wfMsg('search-relatedarticle'), $stParams );
1247 }
1248
1249 // Include a thumbnail for media files...
1250 if( $t->getNamespace() == NS_FILE ) {
1251 $img = wfFindFile( $t );
1252 if( $img ) {
1253 $thumb = $img->transform( array( 'width' => 120, 'height' => 120 ) );
1254 if( $thumb ) {
1255 $desc = $img->getShortDesc();
1256 wfProfileOut( __METHOD__ );
1257 // Ugly table. :D
1258 // Float doesn't seem to interact well with the bullets.
1259 // Table messes up vertical alignment of the bullet, but I'm
1260 // not sure what more I can do about that. :(
1261 return "<li>" .
1262 '<table class="searchResultImage">' .
1263 '<tr>' .
1264 '<td width="120" align="center">' .
1265 $thumb->toHtml( array( 'desc-link' => true ) ) .
1266 '</td>' .
1267 '<td valign="top">' .
1268 $link .
1269 $extract .
1270 "<div class='mw-search-result-data'>{$score}{$desc} - {$date}{$related}</div>" .
1271 '</td>' .
1272 '</tr>' .
1273 '</table>' .
1274 "</li>\n";
1275 }
1276 }
1277 }
1278
1279 wfProfileOut( __METHOD__ );
1280 return "<li>{$link} {$redirect} {$section} {$extract}\n" .
1281 "<div class='mw-search-result-data'>{$score}{$size} - {$date}{$related}</div>" .
1282 "</li>\n";
1283
1284 }
1285
1286 /**
1287 * Show results from other wikis
1288 *
1289 * @param SearchResultSet $matches
1290 */
1291 function showInterwiki( &$matches, $query ) {
1292 wfProfileIn( __METHOD__ );
1293
1294 global $wgContLang;
1295 $terms = $wgContLang->convertForSearchResult( $matches->termMatches() );
1296
1297 $out = "<div id='mw-search-interwiki'><div id='mw-search-interwiki-caption'>".wfMsg('search-interwiki-caption')."</div>\n";
1298 $off = $this->offset + 1;
1299 $out .= "<ul start='{$off}' class='mw-search-iwresults'>\n";
1300
1301 // work out custom project captions
1302 $customCaptions = array();
1303 $customLines = explode("\n",wfMsg('search-interwiki-custom')); // format per line <iwprefix>:<caption>
1304 foreach($customLines as $line){
1305 $parts = explode(":",$line,2);
1306 if(count($parts) == 2) // validate line
1307 $customCaptions[$parts[0]] = $parts[1];
1308 }
1309
1310
1311 $prev = null;
1312 while( $result = $matches->next() ) {
1313 $out .= $this->showInterwikiHit( $result, $prev, $terms, $query, $customCaptions );
1314 $prev = $result->getInterwikiPrefix();
1315 }
1316 // FIXME: should support paging in a non-confusing way (not sure how though, maybe via ajax)..
1317 $out .= "</ul></div>\n";
1318
1319 // convert the whole thing to desired language variant
1320 global $wgContLang;
1321 $out = $wgContLang->convert( $out );
1322 wfProfileOut( __METHOD__ );
1323 return $out;
1324 }
1325
1326 /**
1327 * Show single interwiki link
1328 *
1329 * @param SearchResult $result
1330 * @param string $lastInterwiki
1331 * @param array $terms
1332 * @param string $query
1333 * @param array $customCaptions iw prefix -> caption
1334 */
1335 function showInterwikiHit( $result, $lastInterwiki, $terms, $query, $customCaptions) {
1336 wfProfileIn( __METHOD__ );
1337 global $wgUser, $wgContLang, $wgLang;
1338
1339 if( $result->isBrokenTitle() ) {
1340 wfProfileOut( __METHOD__ );
1341 return "<!-- Broken link in search result -->\n";
1342 }
1343
1344 $t = $result->getTitle();
1345 $sk = $wgUser->getSkin();
1346
1347 $link = $sk->makeKnownLinkObj( $t, $result->getTitleSnippet($terms));
1348
1349 // format redirect if any
1350 $redirectTitle = $result->getRedirectTitle();
1351 $redirectText = $result->getRedirectSnippet($terms);
1352 $redirect = '';
1353 if( !is_null($redirectTitle) )
1354 $redirect = "<span class='searchalttitle'>"
1355 .wfMsg('search-redirect',$sk->makeKnownLinkObj( $redirectTitle, $redirectText))
1356 ."</span>";
1357
1358 $out = "";
1359 // display project name
1360 if(is_null($lastInterwiki) || $lastInterwiki != $t->getInterwiki()){
1361 if( key_exists($t->getInterwiki(),$customCaptions) )
1362 // captions from 'search-interwiki-custom'
1363 $caption = $customCaptions[$t->getInterwiki()];
1364 else{
1365 // default is to show the hostname of the other wiki which might suck
1366 // if there are many wikis on one hostname
1367 $parsed = parse_url($t->getFullURL());
1368 $caption = wfMsg('search-interwiki-default', $parsed['host']);
1369 }
1370 // "more results" link (special page stuff could be localized, but we might not know target lang)
1371 $searchTitle = Title::newFromText($t->getInterwiki().":Special:Search");
1372 $searchLink = $sk->makeKnownLinkObj( $searchTitle, wfMsg('search-interwiki-more'),
1373 wfArrayToCGI(array('search' => $query, 'fulltext' => 'Search')));
1374 $out .= "</ul><div class='mw-search-interwiki-project'><span class='mw-search-interwiki-more'>{$searchLink}</span>{$caption}</div>\n<ul>";
1375 }
1376
1377 $out .= "<li>{$link} {$redirect}</li>\n";
1378 wfProfileOut( __METHOD__ );
1379 return $out;
1380 }
1381
1382
1383 /**
1384 * Generates the power search box at bottom of [[Special:Search]]
1385 * @param $term string: search term
1386 * @return $out string: HTML form
1387 */
1388 function powerSearchBox( $term ) {
1389 global $wgScript, $wgContLang;
1390
1391 $namespaces = SearchEngine::searchableNamespaces();
1392
1393 // group namespaces into rows according to subject; try not to make too
1394 // many assumptions about namespace numbering
1395 $rows = array();
1396 foreach( $namespaces as $ns => $name ) {
1397 $subj = MWNamespace::getSubject( $ns );
1398 if( !array_key_exists( $subj, $rows ) ) {
1399 $rows[$subj] = "";
1400 }
1401 $name = str_replace( '_', ' ', $name );
1402 if( '' == $name ) {
1403 $name = wfMsg( 'blanknamespace' );
1404 }
1405 $rows[$subj] .= Xml::openElement( 'td', array( 'style' => 'white-space: nowrap' ) ) .
1406 Xml::checkLabel( $name, "ns{$ns}", "mw-search-ns{$ns}", in_array( $ns, $this->namespaces ) ) .
1407 Xml::closeElement( 'td' ) . "\n";
1408 }
1409 $rows = array_values( $rows );
1410 $numRows = count( $rows );
1411
1412 // lay out namespaces in multiple floating two-column tables so they'll
1413 // be arranged nicely while still accommodating different screen widths
1414 $rowsPerTable = 3; // seems to look nice
1415
1416 // float to the right on RTL wikis
1417 $tableStyle = ( $wgContLang->isRTL() ?
1418 'float: right; margin: 0 0 1em 1em' :
1419 'float: left; margin: 0 1em 1em 0' );
1420
1421 $tables = "";
1422 for( $i = 0; $i < $numRows; $i += $rowsPerTable ) {
1423 $tables .= Xml::openElement( 'table', array( 'style' => $tableStyle ) );
1424 for( $j = $i; $j < $i + $rowsPerTable && $j < $numRows; $j++ ) {
1425 $tables .= "<tr>\n" . $rows[$j] . "</tr>";
1426 }
1427 $tables .= Xml::closeElement( 'table' ) . "\n";
1428 }
1429
1430 $redirect = Xml::check( 'redirs', $this->searchRedirects, array( 'value' => '1', 'id' => 'redirs' ) );
1431 $redirectLabel = Xml::label( wfMsg( 'powersearch-redir' ), 'redirs' );
1432 $searchField = Xml::input( 'search', 50, $term, array( 'type' => 'text', 'id' => 'powerSearchText' ) );
1433 $searchButton = Xml::submitButton( wfMsg( 'powersearch' ) ) . "\n";
1434 $searchTitle = SpecialPage::getTitleFor( 'Search' );
1435 $searchHiddens = Xml::hidden( 'title', $searchTitle->getPrefixedText() ) . "\n";
1436 $searchHiddens .= Xml::hidden( 'fulltext', 'Advanced search' ) . "\n";
1437
1438 $out = Xml::openElement( 'form', array( 'id' => 'powersearch', 'method' => 'get', 'action' => $wgScript ) ) .
1439 Xml::fieldset( wfMsg( 'powersearch-legend' ),
1440 "<p>" .
1441 wfMsgExt( 'powersearch-ns', array( 'parseinline' ) ) .
1442 "</p>\n" .
1443 $tables .
1444 "<hr style=\"clear: both\" />\n" .
1445 "<p>" .
1446 $redirect . " " . $redirectLabel .
1447 "</p>\n" .
1448 wfMsgExt( 'powersearch-field', array( 'parseinline' ) ) .
1449 "&nbsp;" .
1450 $searchField .
1451 "&nbsp;" .
1452 $searchHiddens .
1453 $searchButton ) .
1454 "</form>";
1455
1456 return $out;
1457 }
1458
1459 function powerSearchFocus() {
1460 global $wgJsMimeType;
1461 return "<script type=\"$wgJsMimeType\">" .
1462 "hookEvent(\"load\", function(){" .
1463 "document.getElementById('powerSearchText').focus();" .
1464 "});" .
1465 "</script>";
1466 }
1467
1468 function shortDialog($term) {
1469 global $wgScript;
1470
1471 $out = Xml::openElement( 'form', array(
1472 'id' => 'search',
1473 'method' => 'get',
1474 'action' => $wgScript
1475 ));
1476 $searchTitle = SpecialPage::getTitleFor( 'Search' );
1477 $out .= Xml::input( 'search', 50, $term, array( 'type' => 'text', 'id' => 'searchText' ) ) . ' ';
1478 foreach( SearchEngine::searchableNamespaces() as $ns => $name ) {
1479 if( in_array( $ns, $this->namespaces ) ) {
1480 $out .= Xml::hidden( "ns{$ns}", '1' );
1481 }
1482 }
1483 $out .= Xml::hidden( 'title', $searchTitle->getPrefixedText() );
1484 $out .= Xml::hidden( 'fulltext', 'Search' );
1485 $out .= Xml::submitButton( wfMsg( 'searchbutton' ) );
1486 $out .= Xml::closeElement( 'form' );
1487
1488 return $out;
1489 }
1490 }