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