5 * Created on July 30, 2007
7 * Copyright © 2007 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
27 use MediaWiki\MediaWikiServices
;
30 * Query module to perform full text search within wiki titles and content
34 class ApiQuerySearch
extends ApiQueryGeneratorBase
{
37 /** @var array list of api allowed params */
38 private $allowedParams;
41 * When $wgSearchType is null, $wgSearchAlternatives[0] is null. Null isn't
42 * a valid option for an array for PARAM_TYPE, so we'll use a fake name
43 * that can't possibly be a class name and describes what the null behavior
46 const BACKEND_NULL_PARAM
= 'database-backed';
48 public function __construct( ApiQuery
$query, $moduleName ) {
49 parent
::__construct( $query, $moduleName, 'sr' );
52 public function execute() {
56 public function executeGenerator( $resultPageSet ) {
57 $this->run( $resultPageSet );
61 * @param ApiPageSet $resultPageSet
64 private function run( $resultPageSet = null ) {
66 $params = $this->extractRequestParams();
68 if ( isset( $params['backend'] ) && $params['backend'] == self
::BACKEND_NULL_PARAM
) {
69 unset( $params['backend'] );
73 $query = $params['search'];
74 $what = $params['what'];
75 $interwiki = $params['interwiki'];
76 $searchInfo = array_flip( $params['info'] );
77 $prop = array_flip( $params['prop'] );
79 // Deprecated parameters
80 if ( isset( $prop['hasrelated'] ) ) {
81 $this->logFeatureUsage( 'action=search&srprop=hasrelated' );
82 $this->setWarning( 'srprop=hasrelated has been deprecated' );
84 if ( isset( $prop['score'] ) ) {
85 $this->logFeatureUsage( 'action=search&srprop=score' );
86 $this->setWarning( 'srprop=score has been deprecated' );
89 // Create search engine instance and set options
90 $search = $this->buildSearchEngine( $params );
91 $search->setFeatureData( 'rewrite', (bool)$params['enablerewrites'] );
93 $query = $search->transformSearchTerm( $query );
94 $query = $search->replacePrefixes( $query );
96 // Perform the actual search
97 if ( $what == 'text' ) {
98 $matches = $search->searchText( $query );
99 } elseif ( $what == 'title' ) {
100 $matches = $search->searchTitle( $query );
101 } elseif ( $what == 'nearmatch' ) {
102 // near matches must receive the user input as provided, otherwise
103 // the near matches within namespaces are lost.
104 $matches = $search->getNearMatcher( $this->getConfig() )
105 ->getNearMatchResultSet( $params['search'] );
107 // We default to title searches; this is a terrible legacy
108 // of the way we initially set up the MySQL fulltext-based
109 // search engine with separate title and text fields.
110 // In the future, the default should be for a combined index.
112 $matches = $search->searchTitle( $query );
114 // Not all search engines support a separate title search,
115 // for instance the Lucene-based engine we use on Wikipedia.
116 // In this case, fall back to full-text search (which will
117 // include titles in it!)
118 if ( is_null( $matches ) ) {
120 $matches = $search->searchText( $query );
123 if ( is_null( $matches ) ) {
124 $this->dieUsage( "{$what} search is disabled", "search-{$what}-disabled" );
125 } elseif ( $matches instanceof Status
&& !$matches->isGood() ) {
126 $this->dieUsage( $matches->getWikiText( false, false, 'en' ), 'search-error' );
129 if ( $resultPageSet === null ) {
130 $apiResult = $this->getResult();
131 // Add search meta data to result
132 if ( isset( $searchInfo['totalhits'] ) ) {
133 $totalhits = $matches->getTotalHits();
134 if ( $totalhits !== null ) {
135 $apiResult->addValue( [ 'query', 'searchinfo' ],
136 'totalhits', $totalhits );
139 if ( isset( $searchInfo['suggestion'] ) && $matches->hasSuggestion() ) {
140 $apiResult->addValue( [ 'query', 'searchinfo' ],
141 'suggestion', $matches->getSuggestionQuery() );
142 $apiResult->addValue( [ 'query', 'searchinfo' ],
143 'suggestionsnippet', $matches->getSuggestionSnippet() );
145 if ( isset( $searchInfo['rewrittenquery'] ) && $matches->hasRewrittenQuery() ) {
146 $apiResult->addValue( [ 'query', 'searchinfo' ],
147 'rewrittenquery', $matches->getQueryAfterRewrite() );
148 $apiResult->addValue( [ 'query', 'searchinfo' ],
149 'rewrittenquerysnippet', $matches->getQueryAfterRewriteSnippet() );
153 // Add the search results to the result
154 $terms = $wgContLang->convertForSearchResult( $matches->termMatches() );
157 $result = $matches->next();
158 $limit = $params['limit'];
161 if ( ++
$count > $limit ) {
162 // We've reached the one extra which shows that there are
163 // additional items to be had. Stop here...
164 $this->setContinueEnumParameter( 'offset', $params['offset'] +
$params['limit'] );
168 // Silently skip broken and missing titles
169 if ( $result->isBrokenTitle() ||
$result->isMissingRevision() ) {
170 $result = $matches->next();
174 $title = $result->getTitle();
175 if ( $resultPageSet === null ) {
177 ApiQueryBase
::addTitleInfo( $vals, $title );
179 if ( isset( $prop['snippet'] ) ) {
180 $vals['snippet'] = $result->getTextSnippet( $terms );
182 if ( isset( $prop['size'] ) ) {
183 $vals['size'] = $result->getByteSize();
185 if ( isset( $prop['wordcount'] ) ) {
186 $vals['wordcount'] = $result->getWordCount();
188 if ( isset( $prop['timestamp'] ) ) {
189 $vals['timestamp'] = wfTimestamp( TS_ISO_8601
, $result->getTimestamp() );
191 if ( isset( $prop['titlesnippet'] ) ) {
192 $vals['titlesnippet'] = $result->getTitleSnippet();
194 if ( isset( $prop['categorysnippet'] ) ) {
195 $vals['categorysnippet'] = $result->getCategorySnippet();
197 if ( !is_null( $result->getRedirectTitle() ) ) {
198 if ( isset( $prop['redirecttitle'] ) ) {
199 $vals['redirecttitle'] = $result->getRedirectTitle()->getPrefixedText();
201 if ( isset( $prop['redirectsnippet'] ) ) {
202 $vals['redirectsnippet'] = $result->getRedirectSnippet();
205 if ( !is_null( $result->getSectionTitle() ) ) {
206 if ( isset( $prop['sectiontitle'] ) ) {
207 $vals['sectiontitle'] = $result->getSectionTitle()->getFragment();
209 if ( isset( $prop['sectionsnippet'] ) ) {
210 $vals['sectionsnippet'] = $result->getSectionSnippet();
213 if ( isset( $prop['isfilematch'] ) ) {
214 $vals['isfilematch'] = $result->isFileMatch();
217 // Add item to results and see whether it fits
218 $fit = $apiResult->addValue( [ 'query', $this->getModuleName() ],
221 $this->setContinueEnumParameter( 'offset', $params['offset'] +
$count - 1 );
228 $result = $matches->next();
231 $hasInterwikiResults = false;
233 if ( $interwiki && $resultPageSet === null && $matches->hasInterwikiResults() ) {
234 foreach ( $matches->getInterwikiResults() as $matches ) {
235 $matches = $matches->getInterwikiResults();
236 $hasInterwikiResults = true;
238 // Include number of results if requested
239 if ( $resultPageSet === null && isset( $searchInfo['totalhits'] ) ) {
240 $totalhits +
= $matches->getTotalHits();
243 $result = $matches->next();
245 $title = $result->getTitle();
247 if ( $resultPageSet === null ) {
249 'namespace' => $result->getInterwikiNamespaceText(),
250 'title' => $title->getText(),
251 'url' => $title->getFullUrl(),
254 // Add item to results and see whether it fits
255 $fit = $apiResult->addValue(
256 [ 'query', 'interwiki' . $this->getModuleName(), $result->getInterwikiPrefix() ],
262 // We hit the limit. We can't really provide any meaningful
263 // pagination info so just bail out
270 $result = $matches->next();
273 if ( $totalhits !== null ) {
274 $apiResult->addValue( [ 'query', 'interwikisearchinfo' ],
275 'totalhits', $totalhits );
279 if ( $resultPageSet === null ) {
280 $apiResult->addIndexedTagName( [
281 'query', $this->getModuleName()
283 if ( $hasInterwikiResults ) {
284 $apiResult->addIndexedTagName( [
285 'query', 'interwiki' . $this->getModuleName()
289 $resultPageSet->setRedirectMergePolicy( function ( $current, $new ) {
290 if ( !isset( $current['index'] ) ||
$new['index'] < $current['index'] ) {
291 $current['index'] = $new['index'];
295 $resultPageSet->populateFromTitles( $titles );
296 $offset = $params['offset'] +
1;
297 foreach ( $titles as $index => $title ) {
298 $resultPageSet->setGeneratorData( $title, [ 'index' => $index +
$offset ] );
303 public function getCacheMode( $params ) {
307 public function getAllowedParams() {
308 if ( $this->allowedParams
!== null ) {
309 return $this->allowedParams
;
312 $this->allowedParams
= [
314 ApiBase
::PARAM_TYPE
=> 'string',
315 ApiBase
::PARAM_REQUIRED
=> true
318 ApiBase
::PARAM_DFLT
=> NS_MAIN
,
319 ApiBase
::PARAM_TYPE
=> 'namespace',
320 ApiBase
::PARAM_ISMULTI
=> true,
323 ApiBase
::PARAM_TYPE
=> [
330 ApiBase
::PARAM_DFLT
=> 'totalhits|suggestion|rewrittenquery',
331 ApiBase
::PARAM_TYPE
=> [
336 ApiBase
::PARAM_ISMULTI
=> true,
339 ApiBase
::PARAM_DFLT
=> 'size|wordcount|timestamp|snippet',
340 ApiBase
::PARAM_TYPE
=> [
352 'score', // deprecated
353 'hasrelated', // deprecated
355 ApiBase
::PARAM_ISMULTI
=> true,
356 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> [],
359 ApiBase
::PARAM_DFLT
=> 0,
360 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
363 ApiBase
::PARAM_DFLT
=> 10,
364 ApiBase
::PARAM_TYPE
=> 'limit',
365 ApiBase
::PARAM_MIN
=> 1,
366 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
367 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
369 'interwiki' => false,
370 'enablerewrites' => false,
373 $searchConfig = MediaWikiServices
::getInstance()->getSearchEngineConfig();
374 $alternatives = $searchConfig->getSearchTypes();
375 if ( count( $alternatives ) > 1 ) {
376 if ( $alternatives[0] === null ) {
377 $alternatives[0] = self
::BACKEND_NULL_PARAM
;
379 $this->allowedParams
['backend'] = [
380 ApiBase
::PARAM_DFLT
=> $searchConfig->getSearchType(),
381 ApiBase
::PARAM_TYPE
=> $alternatives,
383 // @todo: support profile selection when multiple
384 // backends are available. The solution could be to
385 // merge all possible profiles and let ApiBase
386 // subclasses do the check. Making ApiHelp and ApiSandbox
387 // comprehensive might be more difficult.
389 $profileParam = $this->buildProfileApiParam( SearchEngine
::FT_QUERY_INDEP_PROFILE_TYPE
,
390 'apihelp-query+search-param-qiprofile' );
391 if ( $profileParam ) {
392 $this->allowedParams
['qiprofile'] = $profileParam;
396 return $this->allowedParams
;
399 public function getSearchProfileParams() {
400 if ( isset( $this->getAllowedParams()['qiprofile'] ) ) {
401 return [ SearchEngine
::FT_QUERY_INDEP_PROFILE_TYPE
=> 'qiprofile' ];
406 protected function getExamplesMessages() {
408 'action=query&list=search&srsearch=meaning'
409 => 'apihelp-query+search-example-simple',
410 'action=query&list=search&srwhat=text&srsearch=meaning'
411 => 'apihelp-query+search-example-text',
412 'action=query&generator=search&gsrsearch=meaning&prop=info'
413 => 'apihelp-query+search-example-generator',
417 public function getHelpUrls() {
418 return 'https://www.mediawiki.org/wiki/API:Search';