Special:Upload should not crash on failing previews
[mediawiki.git] / includes / specials / SpecialSearch.php
blob255e61880632a2b3f679eda0e06b88f3df8bb6ac
1 <?php
2 /**
3 * Implements Special:Search
5 * Copyright © 2004 Brion Vibber <brion@pobox.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
22 * @file
23 * @ingroup SpecialPage
26 use MediaWiki\MediaWikiServices;
28 /**
29 * implements Special:Search - Run text & title search and display the output
30 * @ingroup SpecialPage
32 class SpecialSearch extends SpecialPage {
33 /**
34 * Current search profile. Search profile is just a name that identifies
35 * the active search tab on the search page (content, discussions...)
36 * For users tt replaces the set of enabled namespaces from the query
37 * string when applicable. Extensions can add new profiles with hooks
38 * with custom search options just for that profile.
39 * @var null|string
41 protected $profile;
43 /** @var SearchEngine Search engine */
44 protected $searchEngine;
46 /** @var string Search engine type, if not default */
47 protected $searchEngineType;
49 /** @var array For links */
50 protected $extraParams = [];
52 /**
53 * @var string The prefix url parameter. Set on the searcher and the
54 * is expected to treat it as prefix filter on titles.
56 protected $mPrefix;
58 /**
59 * @var int
61 protected $limit, $offset;
63 /**
64 * @var array
66 protected $namespaces;
68 /**
69 * @var string
71 protected $fulltext;
73 /**
74 * @var bool
76 protected $runSuggestion = true;
78 /**
79 * Names of the wikis, in format: Interwiki prefix -> caption
80 * @var array
82 protected $customCaptions;
84 /**
85 * Search engine configurations.
86 * @var SearchEngineConfig
88 protected $searchConfig;
90 const NAMESPACES_CURRENT = 'sense';
92 public function __construct() {
93 parent::__construct( 'Search' );
94 $this->searchConfig = MediaWikiServices::getInstance()->getSearchEngineConfig();
97 /**
98 * Entry point
100 * @param string $par
102 public function execute( $par ) {
103 $request = $this->getRequest();
105 // Fetch the search term
106 $search = str_replace( "\n", " ", $request->getText( 'search' ) );
108 // Historically search terms have been accepted not only in the search query
109 // parameter, but also as part of the primary url. This can have PII implications
110 // in releasing page view data. As such issue a 301 redirect to the correct
111 // URL.
112 if ( strlen( $par ) && !strlen( $search ) ) {
113 $query = $request->getValues();
114 unset( $query['title'] );
115 // Strip underscores from title parameter; most of the time we'll want
116 // text form here. But don't strip underscores from actual text params!
117 $query['search'] = str_replace( '_', ' ', $par );
118 $this->getOutput()->redirect( $this->getPageTitle()->getFullURL( $query ), 301 );
119 return;
122 $this->setHeaders();
123 $this->outputHeader();
124 $out = $this->getOutput();
125 $out->allowClickjacking();
126 $out->addModuleStyles( [
127 'mediawiki.special', 'mediawiki.special.search.styles', 'mediawiki.ui', 'mediawiki.ui.button',
128 'mediawiki.ui.input', 'mediawiki.widgets.SearchInputWidget.styles',
129 ] );
130 $this->addHelpLink( 'Help:Searching' );
132 $this->load();
133 if ( !is_null( $request->getVal( 'nsRemember' ) ) ) {
134 $this->saveNamespaces();
135 // Remove the token from the URL to prevent the user from inadvertently
136 // exposing it (e.g. by pasting it into a public wiki page) or undoing
137 // later settings changes (e.g. by reloading the page).
138 $query = $request->getValues();
139 unset( $query['title'], $query['nsRemember'] );
140 $out->redirect( $this->getPageTitle()->getFullURL( $query ) );
141 return;
144 $out->addJsConfigVars( [ 'searchTerm' => $search ] );
145 $this->searchEngineType = $request->getVal( 'srbackend' );
147 if ( $request->getVal( 'fulltext' )
148 || !is_null( $request->getVal( 'offset' ) )
150 $this->showResults( $search );
151 } else {
152 $this->goResult( $search );
157 * Set up basic search parameters from the request and user settings.
159 * @see tests/phpunit/includes/specials/SpecialSearchTest.php
161 public function load() {
162 $request = $this->getRequest();
163 list( $this->limit, $this->offset ) = $request->getLimitOffset( 20, '' );
164 $this->mPrefix = $request->getVal( 'prefix', '' );
166 $user = $this->getUser();
168 # Extract manually requested namespaces
169 $nslist = $this->powerSearch( $request );
170 if ( !count( $nslist ) ) {
171 # Fallback to user preference
172 $nslist = $this->searchConfig->userNamespaces( $user );
175 $profile = null;
176 if ( !count( $nslist ) ) {
177 $profile = 'default';
180 $profile = $request->getVal( 'profile', $profile );
181 $profiles = $this->getSearchProfiles();
182 if ( $profile === null ) {
183 // BC with old request format
184 $profile = 'advanced';
185 foreach ( $profiles as $key => $data ) {
186 if ( $nslist === $data['namespaces'] && $key !== 'advanced' ) {
187 $profile = $key;
190 $this->namespaces = $nslist;
191 } elseif ( $profile === 'advanced' ) {
192 $this->namespaces = $nslist;
193 } else {
194 if ( isset( $profiles[$profile]['namespaces'] ) ) {
195 $this->namespaces = $profiles[$profile]['namespaces'];
196 } else {
197 // Unknown profile requested
198 $profile = 'default';
199 $this->namespaces = $profiles['default']['namespaces'];
203 $this->fulltext = $request->getVal( 'fulltext' );
204 $this->runSuggestion = (bool)$request->getVal( 'runsuggestion', true );
205 $this->profile = $profile;
209 * If an exact title match can be found, jump straight ahead to it.
211 * @param string $term
213 public function goResult( $term ) {
214 $this->setupPage( $term );
215 # Try to go to page as entered.
216 $title = Title::newFromText( $term );
217 # If the string cannot be used to create a title
218 if ( is_null( $title ) ) {
219 $this->showResults( $term );
221 return;
223 # If there's an exact or very near match, jump right there.
224 $title = $this->getSearchEngine()
225 ->getNearMatcher( $this->getConfig() )->getNearMatch( $term );
227 if ( !is_null( $title ) &&
228 Hooks::run( 'SpecialSearchGoResult', [ $term, $title, &$url ] )
230 if ( $url === null ) {
231 $url = $title->getFullURL();
233 $this->getOutput()->redirect( $url );
235 return;
237 $this->showResults( $term );
241 * @param string $term
243 public function showResults( $term ) {
244 global $wgContLang;
246 $search = $this->getSearchEngine();
247 $search->setFeatureData( 'rewrite', $this->runSuggestion );
248 $search->setLimitOffset( $this->limit, $this->offset );
249 $search->setNamespaces( $this->namespaces );
250 $search->prefix = $this->mPrefix;
251 $term = $search->transformSearchTerm( $term );
253 Hooks::run( 'SpecialSearchSetupEngine', [ $this, $this->profile, $search ] );
255 $this->setupPage( $term );
257 $out = $this->getOutput();
259 if ( $this->getConfig()->get( 'DisableTextSearch' ) ) {
260 $searchFowardUrl = $this->getConfig()->get( 'SearchForwardUrl' );
261 if ( $searchFowardUrl ) {
262 $url = str_replace( '$1', urlencode( $term ), $searchFowardUrl );
263 $out->redirect( $url );
264 } else {
265 $out->addHTML(
266 Xml::openElement( 'fieldset' ) .
267 Xml::element( 'legend', null, $this->msg( 'search-external' )->text() ) .
268 Xml::element(
269 'p',
270 [ 'class' => 'mw-searchdisabled' ],
271 $this->msg( 'searchdisabled' )->text()
273 $this->msg( 'googlesearch' )->rawParams(
274 htmlspecialchars( $term ),
275 'UTF-8',
276 $this->msg( 'searchbutton' )->escaped()
277 )->text() .
278 Xml::closeElement( 'fieldset' )
282 return;
285 $title = Title::newFromText( $term );
286 $showSuggestion = $title === null || !$title->isKnown();
287 $search->setShowSuggestion( $showSuggestion );
289 // fetch search results
290 $rewritten = $search->replacePrefixes( $term );
292 $titleMatches = $search->searchTitle( $rewritten );
293 $textMatches = $search->searchText( $rewritten );
295 $textStatus = null;
296 if ( $textMatches instanceof Status ) {
297 $textStatus = $textMatches;
298 $textMatches = $textStatus->getValue();
301 // did you mean... suggestions
302 $didYouMeanHtml = '';
303 if ( $showSuggestion && $textMatches ) {
304 if ( $textMatches->hasRewrittenQuery() ) {
305 $didYouMeanHtml = $this->getDidYouMeanRewrittenHtml( $term, $textMatches );
306 } elseif ( $textMatches->hasSuggestion() ) {
307 $didYouMeanHtml = $this->getDidYouMeanHtml( $textMatches );
311 if ( !Hooks::run( 'SpecialSearchResultsPrepend', [ $this, $out, $term ] ) ) {
312 # Hook requested termination
313 return;
316 // start rendering the page
317 $out->addHTML(
318 Xml::openElement(
319 'form',
321 'id' => ( $this->isPowerSearch() ? 'powersearch' : 'search' ),
322 'method' => 'get',
323 'action' => wfScript(),
328 // Get number of results
329 $titleMatchesNum = $textMatchesNum = $numTitleMatches = $numTextMatches = 0;
330 if ( $titleMatches ) {
331 $titleMatchesNum = $titleMatches->numRows();
332 $numTitleMatches = $titleMatches->getTotalHits();
334 if ( $textMatches ) {
335 $textMatchesNum = $textMatches->numRows();
336 $numTextMatches = $textMatches->getTotalHits();
338 $num = $titleMatchesNum + $textMatchesNum;
339 $totalRes = $numTitleMatches + $numTextMatches;
341 $out->enableOOUI();
342 $out->addHTML(
343 # This is an awful awful ID name. It's not a table, but we
344 # named it poorly from when this was a table so now we're
345 # stuck with it
346 Xml::openElement( 'div', [ 'id' => 'mw-search-top-table' ] ) .
347 $this->shortDialog( $term, $num, $totalRes ) .
348 Xml::closeElement( 'div' ) .
349 $this->searchProfileTabs( $term ) .
350 $this->searchOptions( $term ) .
351 Xml::closeElement( 'form' ) .
352 $didYouMeanHtml
355 $filePrefix = $wgContLang->getFormattedNsText( NS_FILE ) . ':';
356 if ( trim( $term ) === '' || $filePrefix === trim( $term ) ) {
357 // Empty query -- straight view of search form
358 return;
361 $out->addHTML( "<div class='searchresults'>" );
363 $hasErrors = $textStatus && $textStatus->getErrors();
364 if ( $hasErrors ) {
365 list( $error, $warning ) = $textStatus->splitByErrorType();
366 if ( $error->getErrors() ) {
367 $out->addHTML( Html::rawElement(
368 'div',
369 [ 'class' => 'errorbox' ],
370 $error->getHTML( 'search-error' )
371 ) );
373 if ( $warning->getErrors() ) {
374 $out->addHTML( Html::rawElement(
375 'div',
376 [ 'class' => 'warningbox' ],
377 $warning->getHTML( 'search-warning' )
378 ) );
382 // prev/next links
383 $prevnext = null;
384 if ( $num || $this->offset ) {
385 // Show the create link ahead
386 $this->showCreateLink( $title, $num, $titleMatches, $textMatches );
387 if ( $totalRes > $this->limit || $this->offset ) {
388 if ( $this->searchEngineType !== null ) {
389 $this->setExtraParam( 'srbackend', $this->searchEngineType );
391 $prevnext = $this->getLanguage()->viewPrevNext(
392 $this->getPageTitle(),
393 $this->offset,
394 $this->limit,
395 $this->powerSearchOptions() + [ 'search' => $term ],
396 $this->limit + $this->offset >= $totalRes
400 Hooks::run( 'SpecialSearchResults', [ $term, &$titleMatches, &$textMatches ] );
402 $out->parserOptions()->setEditSection( false );
403 if ( $titleMatches ) {
404 if ( $numTitleMatches > 0 ) {
405 $out->wrapWikiMsg( "==$1==\n", 'titlematches' );
406 $out->addHTML( $this->showMatches( $titleMatches ) );
408 $titleMatches->free();
411 if ( $textMatches ) {
412 // output appropriate heading
413 if ( $numTextMatches > 0 && $numTitleMatches > 0 ) {
414 $out->addHTML( '<div class="mw-search-visualclear"></div>' );
415 // if no title matches the heading is redundant
416 $out->wrapWikiMsg( "==$1==\n", 'textmatches' );
419 // show results
420 if ( $numTextMatches > 0 ) {
421 $search->augmentSearchResults( $textMatches );
422 $out->addHTML( $this->showMatches( $textMatches ) );
425 // show secondary interwiki results if any
426 if ( $textMatches->hasInterwikiResults( SearchResultSet::SECONDARY_RESULTS ) ) {
427 $out->addHTML( $this->showInterwiki( $textMatches->getInterwikiResults(
428 SearchResultSet::SECONDARY_RESULTS ), $term ) );
432 $hasOtherResults = $textMatches &&
433 $textMatches->hasInterwikiResults( SearchResultSet::INLINE_RESULTS );
435 // If we have no results and we have not already displayed an error message
436 if ( $num === 0 && !$hasErrors ) {
437 if ( !$this->offset ) {
438 // If we have an offset the create link was rendered earlier in this function.
439 // This class needs a good de-spaghettification, but for now this will
440 // do the job.
441 $this->showCreateLink( $title, $num, $titleMatches, $textMatches );
443 $out->wrapWikiMsg( "<p class=\"mw-search-nonefound\">\n$1</p>", [
444 $hasOtherResults ? 'search-nonefound-thiswiki' : 'search-nonefound',
445 wfEscapeWikiText( $term )
446 ] );
449 if ( $hasOtherResults ) {
450 foreach ( $textMatches->getInterwikiResults( SearchResultSet::INLINE_RESULTS )
451 as $interwiki => $interwikiResult ) {
452 if ( $interwikiResult instanceof Status || $interwikiResult->numRows() == 0 ) {
453 // ignore bad interwikis for now
454 continue;
456 // TODO: wiki header
457 $out->addHTML( $this->showMatches( $interwikiResult, $interwiki ) );
461 if ( $textMatches ) {
462 $textMatches->free();
465 $out->addHTML( '<div class="mw-search-visualclear"></div>' );
467 if ( $prevnext ) {
468 $out->addHTML( "<p class='mw-search-pager-bottom'>{$prevnext}</p>\n" );
471 $out->addHTML( "</div>" );
473 Hooks::run( 'SpecialSearchResultsAppend', [ $this, $out, $term ] );
477 * Produce wiki header for interwiki results
478 * @param string $interwiki Interwiki name
479 * @param SearchResultSet $interwikiResult The result set
480 * @return string
482 protected function interwikiHeader( $interwiki, $interwikiResult ) {
483 // TODO: we need to figure out how to name wikis correctly
484 $wikiMsg = $this->msg( 'search-interwiki-results-' . $interwiki )->parse();
485 return "<p class=\"mw-search-interwiki-header mw-search-visualclear\">\n$wikiMsg</p>";
489 * Generates HTML shown to the user when we have a suggestion about a query
490 * that might give more results than their current query.
492 protected function getDidYouMeanHtml( SearchResultSet $textMatches ) {
493 # mirror Go/Search behavior of original request ..
494 $params = [ 'search' => $textMatches->getSuggestionQuery() ];
495 if ( $this->fulltext === null ) {
496 $params['fulltext'] = 'Search';
497 } else {
498 $params['fulltext'] = $this->fulltext;
500 $stParams = array_merge( $params, $this->powerSearchOptions() );
502 $linkRenderer = $this->getLinkRenderer();
504 $snippet = $textMatches->getSuggestionSnippet() ?: null;
505 if ( $snippet !== null ) {
506 $snippet = new HtmlArmor( $snippet );
509 $suggest = $linkRenderer->makeKnownLink(
510 $this->getPageTitle(),
511 $snippet,
512 [ 'id' => 'mw-search-DYM-suggestion' ],
513 $stParams
516 # HTML of did you mean... search suggestion link
517 return Html::rawElement(
518 'div',
519 [ 'class' => 'searchdidyoumean' ],
520 $this->msg( 'search-suggest' )->rawParams( $suggest )->parse()
525 * Generates HTML shown to user when their query has been internally rewritten,
526 * and the results of the rewritten query are being returned.
528 * @param string $term The users search input
529 * @param SearchResultSet $textMatches The response to the users initial search request
530 * @return string HTML linking the user to their original $term query, and the one
531 * suggested by $textMatches.
533 protected function getDidYouMeanRewrittenHtml( $term, SearchResultSet $textMatches ) {
534 // Showing results for '$rewritten'
535 // Search instead for '$orig'
537 $params = [ 'search' => $textMatches->getQueryAfterRewrite() ];
538 if ( $this->fulltext === null ) {
539 $params['fulltext'] = 'Search';
540 } else {
541 $params['fulltext'] = $this->fulltext;
543 $stParams = array_merge( $params, $this->powerSearchOptions() );
545 $linkRenderer = $this->getLinkRenderer();
547 $snippet = $textMatches->getQueryAfterRewriteSnippet() ?: null;
548 if ( $snippet !== null ) {
549 $snippet = new HtmlArmor( $snippet );
552 $rewritten = $linkRenderer->makeKnownLink(
553 $this->getPageTitle(),
554 $snippet,
555 [ 'id' => 'mw-search-DYM-rewritten' ],
556 $stParams
559 $stParams['search'] = $term;
560 $stParams['runsuggestion'] = 0;
561 $original = $linkRenderer->makeKnownLink(
562 $this->getPageTitle(),
563 $term,
564 [ 'id' => 'mw-search-DYM-original' ],
565 $stParams
568 return Html::rawElement(
569 'div',
570 [ 'class' => 'searchdidyoumean' ],
571 $this->msg( 'search-rewritten' )->rawParams( $rewritten, $original )->escaped()
576 * @param Title $title
577 * @param int $num The number of search results found
578 * @param null|SearchResultSet $titleMatches Results from title search
579 * @param null|SearchResultSet $textMatches Results from text search
581 protected function showCreateLink( $title, $num, $titleMatches, $textMatches ) {
582 // show direct page/create link if applicable
584 // Check DBkey !== '' in case of fragment link only.
585 if ( is_null( $title ) || $title->getDBkey() === ''
586 || ( $titleMatches !== null && $titleMatches->searchContainedSyntax() )
587 || ( $textMatches !== null && $textMatches->searchContainedSyntax() )
589 // invalid title
590 // preserve the paragraph for margins etc...
591 $this->getOutput()->addHTML( '<p></p>' );
593 return;
596 $messageName = 'searchmenu-new-nocreate';
597 $linkClass = 'mw-search-createlink';
599 if ( !$title->isExternal() ) {
600 if ( $title->isKnown() ) {
601 $messageName = 'searchmenu-exists';
602 $linkClass = 'mw-search-exists';
603 } elseif ( $title->quickUserCan( 'create', $this->getUser() ) ) {
604 $messageName = 'searchmenu-new';
608 $params = [
609 $messageName,
610 wfEscapeWikiText( $title->getPrefixedText() ),
611 Message::numParam( $num )
613 Hooks::run( 'SpecialSearchCreateLink', [ $title, &$params ] );
615 // Extensions using the hook might still return an empty $messageName
616 if ( $messageName ) {
617 $this->getOutput()->wrapWikiMsg( "<p class=\"$linkClass\">\n$1</p>", $params );
618 } else {
619 // preserve the paragraph for margins etc...
620 $this->getOutput()->addHTML( '<p></p>' );
625 * @param string $term
627 protected function setupPage( $term ) {
628 $out = $this->getOutput();
629 if ( strval( $term ) !== '' ) {
630 $out->setPageTitle( $this->msg( 'searchresults' ) );
631 $out->setHTMLTitle( $this->msg( 'pagetitle' )
632 ->rawParams( $this->msg( 'searchresults-title' )->rawParams( $term )->text() )
633 ->inContentLanguage()->text()
636 // add javascript specific to special:search
637 $out->addModules( 'mediawiki.special.search' );
641 * Return true if current search is a power (advanced) search
643 * @return bool
645 protected function isPowerSearch() {
646 return $this->profile === 'advanced';
650 * Extract "power search" namespace settings from the request object,
651 * returning a list of index numbers to search.
653 * @param WebRequest $request
654 * @return array
656 protected function powerSearch( &$request ) {
657 $arr = [];
658 foreach ( $this->searchConfig->searchableNamespaces() as $ns => $name ) {
659 if ( $request->getCheck( 'ns' . $ns ) ) {
660 $arr[] = $ns;
664 return $arr;
668 * Reconstruct the 'power search' options for links
670 * @return array
672 protected function powerSearchOptions() {
673 $opt = [];
674 if ( !$this->isPowerSearch() ) {
675 $opt['profile'] = $this->profile;
676 } else {
677 foreach ( $this->namespaces as $n ) {
678 $opt['ns' . $n] = 1;
682 return $opt + $this->extraParams;
686 * Save namespace preferences when we're supposed to
688 * @return bool Whether we wrote something
690 protected function saveNamespaces() {
691 $user = $this->getUser();
692 $request = $this->getRequest();
694 if ( $user->isLoggedIn() &&
695 $user->matchEditToken(
696 $request->getVal( 'nsRemember' ),
697 'searchnamespace',
698 $request
699 ) && !wfReadOnly()
701 // Reset namespace preferences: namespaces are not searched
702 // when they're not mentioned in the URL parameters.
703 foreach ( MWNamespace::getValidNamespaces() as $n ) {
704 $user->setOption( 'searchNs' . $n, false );
706 // The request parameters include all the namespaces to be searched.
707 // Even if they're the same as an existing profile, they're not eaten.
708 foreach ( $this->namespaces as $n ) {
709 $user->setOption( 'searchNs' . $n, true );
712 DeferredUpdates::addCallableUpdate( function () use ( $user ) {
713 $user->saveSettings();
714 } );
716 return true;
719 return false;
723 * Show whole set of results
725 * @param SearchResultSet $matches
726 * @param string $interwiki Interwiki name
728 * @return string
730 protected function showMatches( $matches, $interwiki = null ) {
731 global $wgContLang;
733 $terms = $wgContLang->convertForSearchResult( $matches->termMatches() );
734 $out = '';
735 $result = $matches->next();
736 $pos = $this->offset;
738 if ( $result && $interwiki ) {
739 $out .= $this->interwikiHeader( $interwiki, $matches );
742 $out .= "<ul class='mw-search-results'>\n";
743 $widget = new \MediaWiki\Widget\Search\FullSearchResultWidget(
744 $this,
745 $this->getLinkRenderer()
747 while ( $result ) {
748 $out .= $widget->render( $result, $terms, $pos++ );
749 $result = $matches->next();
751 $out .= "</ul>\n";
753 // convert the whole thing to desired language variant
754 $out = $wgContLang->convert( $out );
756 return $out;
760 * Extract custom captions from search-interwiki-custom message
762 protected function getCustomCaptions() {
763 if ( is_null( $this->customCaptions ) ) {
764 $this->customCaptions = [];
765 // format per line <iwprefix>:<caption>
766 $customLines = explode( "\n", $this->msg( 'search-interwiki-custom' )->text() );
767 foreach ( $customLines as $line ) {
768 $parts = explode( ":", $line, 2 );
769 if ( count( $parts ) == 2 ) { // validate line
770 $this->customCaptions[$parts[0]] = $parts[1];
777 * Show results from other wikis
779 * @param SearchResultSet|array $matches
780 * @param string $terms
782 * @return string
784 protected function showInterwiki( $matches, $terms ) {
785 global $wgContLang;
787 // work out custom project captions
788 $this->getCustomCaptions();
790 if ( !is_array( $matches ) ) {
791 $matches = [ $matches ];
794 $iwResults = [];
795 foreach ( $matches as $set ) {
796 $result = $set->next();
797 while ( $result ) {
798 if ( !$result->isBrokenTitle() ) {
799 $iwResults[$result->getTitle()->getInterwiki()][] = $result;
801 $result = $set->next();
805 $out = '';
806 $widget = new MediaWiki\Widget\Search\SimpleSearchResultWidget(
807 $this,
808 $this->getLinkRenderer()
810 foreach ( $iwResults as $iwPrefix => $results ) {
811 $out .= $this->iwHeaderHtml( $iwPrefix, $terms );
812 $out .= "<ul class='mw-search-iwresults'>";
813 foreach ( $results as $result ) {
814 // This makes the bold asumption interwiki results are never paginated.
815 // That's currently true, but could change at some point?
816 $out .= $widget->render( $result, $terms, 0 );
818 $out .= "</ul>";
821 $out =
822 "<div id='mw-search-interwiki'>" .
823 "<div id='mw-search-interwiki-caption'>" .
824 $this->msg( 'search-interwiki-caption' )->escaped() .
825 "</div>" .
826 $out .
827 "</div>";
829 // convert the whole thing to desired language variant
830 return $wgContLang->convert( $out );
834 * @param string $iwPrefix The interwiki prefix to render a header for
835 * @param string $terms The user-provided search terms
837 protected function iwHeaderHtml( $iwPrefix, $terms ) {
838 if ( isset( $this->customCaptions[$iwPrefix] ) ) {
839 $caption = $this->customCaptions[$iwPrefix];
840 } else {
841 $iwLookup = MediaWiki\MediaWikiServices::getInstance()->getInterwikiLookup();
842 $interwiki = $iwLookup->fetch( $iwPrefix );
843 $parsed = wfParseUrl( wfExpandUrl( $interwiki ? $interwiki->getURL() : '/' ) );
844 $caption = $this->msg( 'search-interwiki-default', $parsed['host'] )->text();
846 $searchLink = Linker::linkKnown(
847 Title::newFromText( "$iwPrefix:Special:Search" ),
848 $this->msg( 'search-interwiki-more' )->text(),
851 'search' => $terms,
852 'fulltext' => 1,
855 return
856 "<div class='mw-search-interwiki-project'>" .
857 "<span class='mw-search-interwiki-more'>{$searchLink}</span>" .
858 $caption .
859 "</div>";
863 * Generates the power search box at [[Special:Search]]
865 * @param string $term Search term
866 * @param array $opts
867 * @return string HTML form
869 protected function powerSearchBox( $term, $opts ) {
870 global $wgContLang;
872 // Groups namespaces into rows according to subject
873 $rows = [];
874 foreach ( $this->searchConfig->searchableNamespaces() as $namespace => $name ) {
875 $subject = MWNamespace::getSubject( $namespace );
876 if ( !array_key_exists( $subject, $rows ) ) {
877 $rows[$subject] = "";
880 $name = $wgContLang->getConverter()->convertNamespace( $namespace );
881 if ( $name == '' ) {
882 $name = $this->msg( 'blanknamespace' )->text();
885 $rows[$subject] .=
886 Xml::openElement( 'td' ) .
887 Xml::checkLabel(
888 $name,
889 "ns{$namespace}",
890 "mw-search-ns{$namespace}",
891 in_array( $namespace, $this->namespaces )
893 Xml::closeElement( 'td' );
896 $rows = array_values( $rows );
897 $numRows = count( $rows );
899 // Lays out namespaces in multiple floating two-column tables so they'll
900 // be arranged nicely while still accommodating different screen widths
901 $namespaceTables = '';
902 for ( $i = 0; $i < $numRows; $i += 4 ) {
903 $namespaceTables .= Xml::openElement( 'table' );
905 for ( $j = $i; $j < $i + 4 && $j < $numRows; $j++ ) {
906 $namespaceTables .= Xml::tags( 'tr', null, $rows[$j] );
909 $namespaceTables .= Xml::closeElement( 'table' );
912 $showSections = [ 'namespaceTables' => $namespaceTables ];
914 Hooks::run( 'SpecialSearchPowerBox', [ &$showSections, $term, $opts ] );
916 $hidden = '';
917 foreach ( $opts as $key => $value ) {
918 $hidden .= Html::hidden( $key, $value );
921 # Stuff to feed saveNamespaces()
922 $remember = '';
923 $user = $this->getUser();
924 if ( $user->isLoggedIn() ) {
925 $remember .= Xml::checkLabel(
926 $this->msg( 'powersearch-remember' )->text(),
927 'nsRemember',
928 'mw-search-powersearch-remember',
929 false,
930 // The token goes here rather than in a hidden field so it
931 // is only sent when necessary (not every form submission).
932 [ 'value' => $user->getEditToken(
933 'searchnamespace',
934 $this->getRequest()
939 // Return final output
940 return Xml::openElement( 'fieldset', [ 'id' => 'mw-searchoptions' ] ) .
941 Xml::element( 'legend', null, $this->msg( 'powersearch-legend' )->text() ) .
942 Xml::tags( 'h4', null, $this->msg( 'powersearch-ns' )->parse() ) .
943 Xml::element( 'div', [ 'id' => 'mw-search-togglebox' ], '', false ) .
944 Xml::element( 'div', [ 'class' => 'divider' ], '', false ) .
945 implode( Xml::element( 'div', [ 'class' => 'divider' ], '', false ), $showSections ) .
946 $hidden .
947 Xml::element( 'div', [ 'class' => 'divider' ], '', false ) .
948 $remember .
949 Xml::closeElement( 'fieldset' );
953 * @return array
955 protected function getSearchProfiles() {
956 // Builds list of Search Types (profiles)
957 $nsAllSet = array_keys( $this->searchConfig->searchableNamespaces() );
958 $defaultNs = $this->searchConfig->defaultNamespaces();
959 $profiles = [
960 'default' => [
961 'message' => 'searchprofile-articles',
962 'tooltip' => 'searchprofile-articles-tooltip',
963 'namespaces' => $defaultNs,
964 'namespace-messages' => $this->searchConfig->namespacesAsText(
965 $defaultNs
968 'images' => [
969 'message' => 'searchprofile-images',
970 'tooltip' => 'searchprofile-images-tooltip',
971 'namespaces' => [ NS_FILE ],
973 'all' => [
974 'message' => 'searchprofile-everything',
975 'tooltip' => 'searchprofile-everything-tooltip',
976 'namespaces' => $nsAllSet,
978 'advanced' => [
979 'message' => 'searchprofile-advanced',
980 'tooltip' => 'searchprofile-advanced-tooltip',
981 'namespaces' => self::NAMESPACES_CURRENT,
985 Hooks::run( 'SpecialSearchProfiles', [ &$profiles ] );
987 foreach ( $profiles as &$data ) {
988 if ( !is_array( $data['namespaces'] ) ) {
989 continue;
991 sort( $data['namespaces'] );
994 return $profiles;
998 * @param string $term
999 * @return string
1001 protected function searchProfileTabs( $term ) {
1002 $out = Html::element( 'div', [ 'class' => 'mw-search-visualclear' ] ) .
1003 Xml::openElement( 'div', [ 'class' => 'mw-search-profile-tabs' ] );
1005 $bareterm = $term;
1006 if ( $this->startsWithImage( $term ) ) {
1007 // Deletes prefixes
1008 $bareterm = substr( $term, strpos( $term, ':' ) + 1 );
1011 $profiles = $this->getSearchProfiles();
1012 $lang = $this->getLanguage();
1014 // Outputs XML for Search Types
1015 $out .= Xml::openElement( 'div', [ 'class' => 'search-types' ] );
1016 $out .= Xml::openElement( 'ul' );
1017 foreach ( $profiles as $id => $profile ) {
1018 if ( !isset( $profile['parameters'] ) ) {
1019 $profile['parameters'] = [];
1021 $profile['parameters']['profile'] = $id;
1023 $tooltipParam = isset( $profile['namespace-messages'] ) ?
1024 $lang->commaList( $profile['namespace-messages'] ) : null;
1025 $out .= Xml::tags(
1026 'li',
1028 'class' => $this->profile === $id ? 'current' : 'normal'
1030 $this->makeSearchLink(
1031 $bareterm,
1033 $this->msg( $profile['message'] )->text(),
1034 $this->msg( $profile['tooltip'], $tooltipParam )->text(),
1035 $profile['parameters']
1039 $out .= Xml::closeElement( 'ul' );
1040 $out .= Xml::closeElement( 'div' );
1041 $out .= Xml::element( 'div', [ 'style' => 'clear:both' ], '', false );
1042 $out .= Xml::closeElement( 'div' );
1044 return $out;
1048 * @param string $term Search term
1049 * @return string
1051 protected function searchOptions( $term ) {
1052 $out = '';
1053 $opts = [];
1054 $opts['profile'] = $this->profile;
1056 if ( $this->isPowerSearch() ) {
1057 $out .= $this->powerSearchBox( $term, $opts );
1058 } else {
1059 $form = '';
1060 Hooks::run( 'SpecialSearchProfileForm', [ $this, &$form, $this->profile, $term, $opts ] );
1061 $out .= $form;
1064 return $out;
1068 * @param string $term
1069 * @param int $resultsShown
1070 * @param int $totalNum
1071 * @return string
1073 protected function shortDialog( $term, $resultsShown, $totalNum ) {
1074 $searchWidget = new MediaWiki\Widget\SearchInputWidget( [
1075 'id' => 'searchText',
1076 'name' => 'search',
1077 'autofocus' => trim( $term ) === '',
1078 'value' => $term,
1079 'dataLocation' => 'content',
1080 'infusable' => true,
1081 ] );
1083 $layout = new OOUI\ActionFieldLayout( $searchWidget, new OOUI\ButtonInputWidget( [
1084 'type' => 'submit',
1085 'label' => $this->msg( 'searchbutton' )->text(),
1086 'flags' => [ 'progressive', 'primary' ],
1087 ] ), [
1088 'align' => 'top',
1089 ] );
1091 $out =
1092 Html::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) .
1093 Html::hidden( 'profile', $this->profile ) .
1094 Html::hidden( 'fulltext', 'Search' ) .
1095 $layout;
1097 // Results-info
1098 if ( $totalNum > 0 && $this->offset < $totalNum ) {
1099 $top = $this->msg( 'search-showingresults' )
1100 ->numParams( $this->offset + 1, $this->offset + $resultsShown, $totalNum )
1101 ->numParams( $resultsShown )
1102 ->parse();
1103 $out .= Xml::tags( 'div', [ 'class' => 'results-info' ], $top );
1106 return $out;
1110 * Make a search link with some target namespaces
1112 * @param string $term
1113 * @param array $namespaces Ignored
1114 * @param string $label Link's text
1115 * @param string $tooltip Link's tooltip
1116 * @param array $params Query string parameters
1117 * @return string HTML fragment
1119 protected function makeSearchLink( $term, $namespaces, $label, $tooltip, $params = [] ) {
1120 $opt = $params;
1121 foreach ( $namespaces as $n ) {
1122 $opt['ns' . $n] = 1;
1125 $stParams = array_merge(
1127 'search' => $term,
1128 'fulltext' => $this->msg( 'search' )->text()
1130 $opt
1133 return Xml::element(
1134 'a',
1136 'href' => $this->getPageTitle()->getLocalURL( $stParams ),
1137 'title' => $tooltip
1139 $label
1144 * Check if query starts with image: prefix
1146 * @param string $term The string to check
1147 * @return bool
1149 protected function startsWithImage( $term ) {
1150 global $wgContLang;
1152 $parts = explode( ':', $term );
1153 if ( count( $parts ) > 1 ) {
1154 return $wgContLang->getNsIndex( $parts[0] ) == NS_FILE;
1157 return false;
1161 * @since 1.18
1163 * @return SearchEngine
1165 public function getSearchEngine() {
1166 if ( $this->searchEngine === null ) {
1167 $this->searchEngine = $this->searchEngineType ?
1168 MediaWikiServices::getInstance()->getSearchEngineFactory()->create( $this->searchEngineType ) :
1169 MediaWikiServices::getInstance()->newSearchEngine();
1172 return $this->searchEngine;
1176 * Current search profile.
1177 * @return null|string
1179 function getProfile() {
1180 return $this->profile;
1184 * Current namespaces.
1185 * @return array
1187 function getNamespaces() {
1188 return $this->namespaces;
1192 * Users of hook SpecialSearchSetupEngine can use this to
1193 * add more params to links to not lose selection when
1194 * user navigates search results.
1195 * @since 1.18
1197 * @param string $key
1198 * @param mixed $value
1200 public function setExtraParam( $key, $value ) {
1201 $this->extraParams[$key] = $value;
1204 protected function getGroupName() {
1205 return 'pages';