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
28 * Query module to perform full text search within wiki titles and content
32 class ApiQuerySearch
extends ApiQueryGeneratorBase
{
35 /** @var array list of api allowed params */
36 private $allowedParams;
38 public function __construct( ApiQuery
$query, $moduleName ) {
39 parent
::__construct( $query, $moduleName, 'sr' );
42 public function execute() {
46 public function executeGenerator( $resultPageSet ) {
47 $this->run( $resultPageSet );
51 * @param ApiPageSet $resultPageSet
54 private function run( $resultPageSet = null ) {
56 $params = $this->extractRequestParams();
59 $query = $params['search'];
60 $what = $params['what'];
61 $interwiki = $params['interwiki'];
62 $searchInfo = array_flip( $params['info'] );
63 $prop = array_flip( $params['prop'] );
65 // Create search engine instance and set options
66 $search = $this->buildSearchEngine( $params );
67 $search->setFeatureData( 'rewrite', (bool)$params['enablerewrites'] );
68 $search->setFeatureData( 'interwiki', (bool)$interwiki );
70 $query = $search->transformSearchTerm( $query );
71 $query = $search->replacePrefixes( $query );
73 // Perform the actual search
74 if ( $what == 'text' ) {
75 $matches = $search->searchText( $query );
76 } elseif ( $what == 'title' ) {
77 $matches = $search->searchTitle( $query );
78 } elseif ( $what == 'nearmatch' ) {
79 // near matches must receive the user input as provided, otherwise
80 // the near matches within namespaces are lost.
81 $matches = $search->getNearMatcher( $this->getConfig() )
82 ->getNearMatchResultSet( $params['search'] );
84 // We default to title searches; this is a terrible legacy
85 // of the way we initially set up the MySQL fulltext-based
86 // search engine with separate title and text fields.
87 // In the future, the default should be for a combined index.
89 $matches = $search->searchTitle( $query );
91 // Not all search engines support a separate title search,
92 // for instance the Lucene-based engine we use on Wikipedia.
93 // In this case, fall back to full-text search (which will
94 // include titles in it!)
95 if ( is_null( $matches ) ) {
97 $matches = $search->searchText( $query );
101 if ( $matches instanceof Status
) {
103 $matches = $status->getValue();
109 if ( $status->isOK() ) {
110 $this->getMain()->getErrorFormatter()->addMessagesFromStatus(
111 $this->getModuleName(),
115 $this->dieStatus( $status );
117 } elseif ( is_null( $matches ) ) {
118 $this->dieWithError( [ 'apierror-searchdisabled', $what ], "search-{$what}-disabled" );
121 if ( $resultPageSet === null ) {
122 $apiResult = $this->getResult();
123 // Add search meta data to result
124 if ( isset( $searchInfo['totalhits'] ) ) {
125 $totalhits = $matches->getTotalHits();
126 if ( $totalhits !== null ) {
127 $apiResult->addValue( [ 'query', 'searchinfo' ],
128 'totalhits', $totalhits );
131 if ( isset( $searchInfo['suggestion'] ) && $matches->hasSuggestion() ) {
132 $apiResult->addValue( [ 'query', 'searchinfo' ],
133 'suggestion', $matches->getSuggestionQuery() );
134 $apiResult->addValue( [ 'query', 'searchinfo' ],
135 'suggestionsnippet', $matches->getSuggestionSnippet() );
137 if ( isset( $searchInfo['rewrittenquery'] ) && $matches->hasRewrittenQuery() ) {
138 $apiResult->addValue( [ 'query', 'searchinfo' ],
139 'rewrittenquery', $matches->getQueryAfterRewrite() );
140 $apiResult->addValue( [ 'query', 'searchinfo' ],
141 'rewrittenquerysnippet', $matches->getQueryAfterRewriteSnippet() );
145 // Add the search results to the result
146 $terms = $wgContLang->convertForSearchResult( $matches->termMatches() );
149 $result = $matches->next();
150 $limit = $params['limit'];
153 if ( ++
$count > $limit ) {
154 // We've reached the one extra which shows that there are
155 // additional items to be had. Stop here...
156 $this->setContinueEnumParameter( 'offset', $params['offset'] +
$params['limit'] );
160 // Silently skip broken and missing titles
161 if ( $result->isBrokenTitle() ||
$result->isMissingRevision() ) {
162 $result = $matches->next();
166 if ( $resultPageSet === null ) {
167 $vals = $this->getSearchResultData( $result, $prop, $terms );
169 // Add item to results and see whether it fits
170 $fit = $apiResult->addValue( [ 'query', $this->getModuleName() ], null, $vals );
172 $this->setContinueEnumParameter( 'offset', $params['offset'] +
$count - 1 );
177 $titles[] = $result->getTitle();
180 $result = $matches->next();
183 // Here we assume interwiki results do not count with
184 // regular search results. We may want to reconsider this
185 // if we ever return a lot of interwiki results or want pagination
187 // Interwiki results inside main result set
188 $canAddInterwiki = (bool)$params['enablerewrites'] && ( $resultPageSet === null );
189 if ( $canAddInterwiki ) {
190 $this->addInterwikiResults( $matches, $apiResult, $prop, $terms, 'additional',
191 SearchResultSet
::INLINE_RESULTS
);
194 // Interwiki results outside main result set
195 if ( $interwiki && $resultPageSet === null ) {
196 $this->addInterwikiResults( $matches, $apiResult, $prop, $terms, 'interwiki',
197 SearchResultSet
::SECONDARY_RESULTS
);
200 if ( $resultPageSet === null ) {
201 $apiResult->addIndexedTagName( [
202 'query', $this->getModuleName()
205 $resultPageSet->setRedirectMergePolicy( function ( $current, $new ) {
206 if ( !isset( $current['index'] ) ||
$new['index'] < $current['index'] ) {
207 $current['index'] = $new['index'];
211 $resultPageSet->populateFromTitles( $titles );
212 $offset = $params['offset'] +
1;
213 foreach ( $titles as $index => $title ) {
214 $resultPageSet->setGeneratorData( $title, [ 'index' => $index +
$offset ] );
220 * Assemble search result data.
221 * @param SearchResult $result Search result
222 * @param array $prop Props to extract (as keys)
223 * @param array $terms Terms list
224 * @return array|null Result data or null if result is broken in some way.
226 private function getSearchResultData( SearchResult
$result, $prop, $terms ) {
227 // Silently skip broken and missing titles
228 if ( $result->isBrokenTitle() ||
$result->isMissingRevision() ) {
234 $title = $result->getTitle();
235 ApiQueryBase
::addTitleInfo( $vals, $title );
236 $vals['pageid'] = $title->getArticleID();
238 if ( isset( $prop['size'] ) ) {
239 $vals['size'] = $result->getByteSize();
241 if ( isset( $prop['wordcount'] ) ) {
242 $vals['wordcount'] = $result->getWordCount();
244 if ( isset( $prop['snippet'] ) ) {
245 $vals['snippet'] = $result->getTextSnippet( $terms );
247 if ( isset( $prop['timestamp'] ) ) {
248 $vals['timestamp'] = wfTimestamp( TS_ISO_8601
, $result->getTimestamp() );
250 if ( isset( $prop['titlesnippet'] ) ) {
251 $vals['titlesnippet'] = $result->getTitleSnippet();
253 if ( isset( $prop['categorysnippet'] ) ) {
254 $vals['categorysnippet'] = $result->getCategorySnippet();
256 if ( !is_null( $result->getRedirectTitle() ) ) {
257 if ( isset( $prop['redirecttitle'] ) ) {
258 $vals['redirecttitle'] = $result->getRedirectTitle()->getPrefixedText();
260 if ( isset( $prop['redirectsnippet'] ) ) {
261 $vals['redirectsnippet'] = $result->getRedirectSnippet();
264 if ( !is_null( $result->getSectionTitle() ) ) {
265 if ( isset( $prop['sectiontitle'] ) ) {
266 $vals['sectiontitle'] = $result->getSectionTitle()->getFragment();
268 if ( isset( $prop['sectionsnippet'] ) ) {
269 $vals['sectionsnippet'] = $result->getSectionSnippet();
272 if ( isset( $prop['isfilematch'] ) ) {
273 $vals['isfilematch'] = $result->isFileMatch();
279 * Add interwiki results as a section in query results.
280 * @param SearchResultSet $matches
281 * @param ApiResult $apiResult
282 * @param array $prop Props to extract (as keys)
283 * @param array $terms Terms list
284 * @param string $section Section name where results would go
285 * @param int $type Interwiki result type
286 * @return int|null Number of total hits in the data or null if none was produced
288 private function addInterwikiResults(
289 SearchResultSet
$matches, ApiResult
$apiResult, $prop,
290 $terms, $section, $type
293 if ( $matches->hasInterwikiResults( $type ) ) {
294 foreach ( $matches->getInterwikiResults( $type ) as $interwikiMatches ) {
295 // Include number of results if requested
296 $totalhits +
= $interwikiMatches->getTotalHits();
298 $result = $interwikiMatches->next();
300 $title = $result->getTitle();
301 $vals = $this->getSearchResultData( $result, $prop, $terms );
303 $vals['namespace'] = $result->getInterwikiNamespaceText();
304 $vals['title'] = $title->getText();
305 $vals['url'] = $title->getFullURL();
307 // Add item to results and see whether it fits
308 $fit = $apiResult->addValue( [
310 $section . $this->getModuleName(),
311 $result->getInterwikiPrefix()
315 // We hit the limit. We can't really provide any meaningful
316 // pagination info so just bail out
320 $result = $interwikiMatches->next();
323 if ( $totalhits !== null ) {
324 $apiResult->addValue( [ 'query', $section . 'searchinfo' ], 'totalhits', $totalhits );
325 $apiResult->addIndexedTagName( [
326 'query', $section . $this->getModuleName()
333 public function getCacheMode( $params ) {
337 public function getAllowedParams() {
338 if ( $this->allowedParams
!== null ) {
339 return $this->allowedParams
;
342 $this->allowedParams
= $this->buildCommonApiParams() +
[
344 ApiBase
::PARAM_TYPE
=> [
351 ApiBase
::PARAM_DFLT
=> 'totalhits|suggestion|rewrittenquery',
352 ApiBase
::PARAM_TYPE
=> [
357 ApiBase
::PARAM_ISMULTI
=> true,
360 ApiBase
::PARAM_DFLT
=> 'size|wordcount|timestamp|snippet',
361 ApiBase
::PARAM_TYPE
=> [
373 'score', // deprecated
374 'hasrelated', // deprecated
376 ApiBase
::PARAM_ISMULTI
=> true,
377 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> [],
378 ApiBase
::PARAM_DEPRECATED_VALUES
=> [
383 'interwiki' => false,
384 'enablerewrites' => false,
387 return $this->allowedParams
;
390 public function getSearchProfileParams() {
393 'profile-type' => SearchEngine
::FT_QUERY_INDEP_PROFILE_TYPE
,
394 'help-message' => 'apihelp-query+search-param-qiprofile',
399 protected function getExamplesMessages() {
401 'action=query&list=search&srsearch=meaning'
402 => 'apihelp-query+search-example-simple',
403 'action=query&list=search&srwhat=text&srsearch=meaning'
404 => 'apihelp-query+search-example-text',
405 'action=query&generator=search&gsrsearch=meaning&prop=info'
406 => 'apihelp-query+search-example-generator',
410 public function getHelpUrls() {
411 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Search';