53 protected $limit = 10;
56 protected $offset = 0;
62 protected $searchTerms = [];
65 protected $showSuggestion =
true;
67 private $sort = self::DEFAULT_SORT;
70 protected $features = [];
73 private $hookContainer;
101 return $this->maybePaginate(
function () use ( $term ) {
147 return Status::newGood( [] );
162 return $this->maybePaginate(
function () use ( $term ) {
188 private function maybePaginate( Closure $fn ) {
194 $resultSetOrStatus = $fn();
201 $resultSet = $resultSetOrStatus;
202 } elseif ( $resultSetOrStatus instanceof
Status &&
205 $resultSet = $resultSetOrStatus->getValue();
208 $resultSet->shrink( $this->limit );
211 return $resultSetOrStatus;
222 switch ( $feature ) {
223 case 'search-update':
225 case 'title-suffix-filter':
238 $this->features[$feature] = $data;
249 return $this->features[$feature] ??
null;
262 return MediaWikiServices::getInstance()->getContentLanguage()->segmentByWord( $string );
272 return MediaWikiServices::getInstance()->getTitleMatcher();
283 return MediaWikiServices::getInstance()->getTitleMatcher();
293 return "A-Za-z_'.0-9\\x80-\\xFF\\-";
304 $this->limit = intval( $limit );
305 $this->offset = intval( $offset );
317 $validNs = MediaWikiServices::getInstance()->getSearchEngineConfig()->searchableNamespaces();
319 return $ns < 0 || isset( $validNs[$ns] );
335 $this->showSuggestion = $showSuggestion;
348 return [ self::DEFAULT_SORT ];
360 throw new InvalidArgumentException(
"Invalid sort: $sort. " .
361 "Must be one of: " . implode(
', ', $this->
getValidSorts() ) );
404 $withAllKeyword =
true,
405 $withPrefixSearchExtractNamespaceHook =
false
408 if ( strpos( $query,
':' ) ===
false ) {
411 $extractedNamespace =
null;
414 if ( $withAllKeyword ) {
417 $allkeywords[] =
wfMessage(
'searchall' )->inContentLanguage()->text() .
":";
419 if ( !in_array(
'all:', $allkeywords ) ) {
420 $allkeywords[] =
'all:';
423 foreach ( $allkeywords as $kw ) {
424 if ( str_starts_with( $query, $kw ) ) {
425 $parsed = substr( $query, strlen( $kw ) );
432 if ( !$allQuery && strpos( $query,
':' ) !==
false ) {
433 $prefix = str_replace(
' ',
'_', substr( $query, 0, strpos( $query,
':' ) ) );
434 $services = MediaWikiServices::getInstance();
435 $index = $services->getContentLanguage()->getNsIndex( $prefix );
436 if ( $index !==
false ) {
437 $extractedNamespace = [ $index ];
438 $parsed = substr( $query, strlen( $prefix ) + 1 );
439 } elseif ( $withPrefixSearchExtractNamespaceHook ) {
442 (
new HookRunner( $services->getHookContainer() ) )
443 ->onPrefixSearchExtractNamespace( $hookNamespaces, $hookQuery );
444 if ( $hookQuery !== $query ) {
445 $parsed = $hookQuery;
446 $extractedNamespace = $hookNamespaces;
455 return [ $parsed, $extractedNamespace ];
468 return [ $contextlines, $contextchars ];
480 public function update( $id, $title, $text ) {
504 public function delete( $id, $title ) {
520 return $c ? $c->getTextForSearchIndex() :
'';
542 $queryAndNs = self::parseNamespacePrefixes( $search,
false,
true );
543 if ( $queryAndNs !==
false ) {
545 return $queryAndNs[0];
579 $search = trim( $search );
581 if ( !in_array(
NS_SPECIAL, $this->namespaces ) &&
583 $this->namespaces, $search, $this->limit, $results, $this->offset )
602 if ( trim( $search ) ===
'' ) {
618 if ( trim( $search ) ===
'' ) {
624 $fallbackLimit = 1 + $this->limit - $results->getSize();
625 if ( $fallbackLimit > 0 ) {
626 $services = MediaWikiServices::getInstance();
627 $fallbackSearches = $services->getLanguageConverterFactory()
628 ->getLanguageConverter( $services->getContentLanguage() )
629 ->autoConvertToAllVariants( $search );
630 $fallbackSearches = array_diff( array_unique( $fallbackSearches ), [ $search ] );
632 foreach ( $fallbackSearches as $fbs ) {
635 $results->appendAll( $fallbackSearchResult );
636 $fallbackLimit -= $fallbackSearchResult->getSize();
637 if ( $fallbackLimit <= 0 ) {
666 $suggestions->
shrink( $this->limit );
668 $search = trim( $search );
670 $linkBatchFactory = MediaWikiServices::getInstance()->getLinkBatchFactory();
671 $lb = $linkBatchFactory->newLinkBatch( $suggestions->
map(
static function (
SearchSuggestion $sugg ) {
674 $lb->setCaller( __METHOD__ );
681 MediaWikiServices::getInstance()->getStatsdDataFactory()
682 ->updateCount(
'search.completion.missing', $diff );
693 if ( $this->offset === 0 ) {
699 $rescoredResults = $rescorer->rescore( $search, $this->namespaces, $results, $this->limit );
704 $rescoredResults = $results;
707 if ( count( $rescoredResults ) > 0 ) {
708 $found = array_search( $rescoredResults[0], $results );
709 if ( $found ===
false ) {
712 $exactMatch = SearchSuggestion::fromTitle( 0, Title::newFromText( $rescoredResults[0] ) );
713 $suggestions->
prepend( $exactMatch );
714 if ( $rescorer->getReplacedRedirect() !==
null ) {
717 $suggestions->
remove( SearchSuggestion::fromTitle( 0,
718 Title::newFromText( $rescorer->getReplacedRedirect() ) ) );
720 $suggestions->
shrink( $this->limit );
724 $suggestions->
rescore( $found );
738 if ( trim( $search ) ===
'' ) {
755 return $backend->
defaultSearchBackend( $this->namespaces, $search, $this->limit, $this->offset );
800 $models = MediaWikiServices::getInstance()->getContentHandlerFactory()->getContentModels();
802 $seenHandlers =
new SplObjectStorage();
803 foreach ( $models as $model ) {
805 $handler = MediaWikiServices::getInstance()
806 ->getContentHandlerFactory()
807 ->getContentHandler( $model );
813 if ( $seenHandlers->contains( $handler ) ) {
817 $seenHandlers->attach( $handler );
818 $handlerFields = $handler->getFieldsForSearchIndex( $this );
819 foreach ( $handlerFields as $fieldName => $fieldData ) {
820 if ( empty( $fields[$fieldName] ) ) {
821 $fields[$fieldName] = $fieldData;
824 $mergeDef = $fields[$fieldName]->merge( $fieldData );
826 throw new InvalidArgumentException(
"Duplicate field $fieldName for model $model" );
828 $fields[$fieldName] = $mergeDef;
833 $this->
getHookRunner()->onSearchIndexFields( $fields, $this );
845 $this->
getHookRunner()->onSearchResultsAugment( $setAugmentors, $rowAugmentors );
846 if ( !$setAugmentors && !$rowAugmentors ) {
852 foreach ( $rowAugmentors as $name => $row ) {
853 if ( isset( $setAugmentors[$name] ) ) {
854 throw new InvalidArgumentException(
"Both row and set augmentors are defined for $name" );
863 foreach ( $setAugmentors as $name => $augmentor ) {
864 $data = $augmentor->augmentAll( $resultSet );
877 $this->hookContainer = $hookContainer;
878 $this->hookRunner =
new HookRunner( $hookContainer );
888 if ( !$this->hookContainer ) {
892 $this->hookContainer = MediaWikiServices::getInstance()->getHookContainer();
894 return $this->hookContainer;
906 if ( !$this->hookRunner ) {
907 $this->hookRunner =
new HookRunner( $this->getHookContainer() );
909 return $this->hookRunner;
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Logs a warning that a deprecated feature was used.
if(!defined('MW_SETUP_CALLBACK'))
Exception thrown when an unregistered content model is requested.
Null index field - means search engine does not implement this field.
Perform augmentation of each row and return composite result, indexed by ID.
defaultSearchBackend( $namespaces, $search, $limit, $offset)
Unless overridden by PrefixSearchBackend hook... This is case-sensitive (First character may be autom...
Contain a class for special pages.
completionSearchBackendOverfetch( $search)
Perform an overfetch of completion search results.
makeSearchFieldMapping( $name, $type)
Create a search field definition.
getNearMatcher(Config $config)
Get service class to finding near matches.
getHookRunner()
Get a HookRunner for running core hooks.
searchTitle( $term)
Perform a title-only search query and return a result set.
processCompletionResults( $search, SearchSuggestionSet $suggestions)
Process completion search results.
getFeatureData( $feature)
Way to retrieve custom data set by setFeatureData or by the engine itself.
update( $id, $title, $text)
Create or update the search index record for the given page.
setNamespaces( $namespaces)
Set which namespaces the search should include.
static parseNamespacePrefixes( $query, $withAllKeyword=true, $withPrefixSearchExtractNamespaceHook=false)
Parse some common prefixes: all (search everything) or namespace names.
doSearchArchiveTitle( $term)
Perform a title search in the article archive.
getTextFromContent(Title $t, ?Content $c=null)
Get the raw text for updating the index from a content object Nicer search backends could possibly do...
array $features
Feature values.
replacePrefixes( $query)
Parse some common prefixes: all (search everything) or namespace names and set the list of namespaces...
textAlreadyUpdatedForIndex()
If an implementation of SearchEngine handles all of its own text processing in getTextFromContent() a...
defaultPrefixSearch( $search)
Simple prefix search for subpages.
augmentSearchResults(ISearchResultSet $resultSet)
Augment search results with extra data.
searchArchiveTitle( $term)
Perform a title search in the article archive.
normalizeText( $string)
When overridden in derived class, performs database-specific conversions on text to be used for searc...
setFeatureData( $feature, $data)
Way to pass custom data for engines.
completionSearchBackend( $search)
Perform a completion search.
getSort()
Get the sort direction of the search results.
static defaultNearMatcher()
Get near matcher for default SearchEngine.
getSearchIndexFields()
Get fields for search index.
getValidSorts()
Get the valid sort directions.
static userHighlightPrefs()
Find snippet highlight settings for all users.
updateTitle( $id, $title)
Update a search index record's title only.
completionSearchWithVariants( $search)
Perform a completion search with variants.
doSearchText( $term)
Perform a full text search query and return a result set.
normalizeNamespaces( $search)
Makes search simple string if it was namespaced.
const CHARS_ALL
Integer flag for legalSearchChars: includes all chars allowed in a search query.
getHookContainer()
Get a HookContainer, for running extension hooks or for hook metadata.
completionSearch( $search)
Perform a completion search.
setLimitOffset( $limit, $offset=0)
Set the maximum number of results to return and how many to skip before returning the first.
const CHARS_NO_SYNTAX
Integer flag for legalSearchChars: includes all chars allowed in a search term.
setShowSuggestion( $showSuggestion)
Set whether the searcher should try to build a suggestion.
getProfiles( $profileType, ?User $user=null)
Get a list of supported profiles.
simplePrefixSearch( $search)
Call out to simple search backend.
setSort( $sort)
Set the sort direction of the search results.
const FT_QUERY_INDEP_PROFILE_TYPE
Profile type for query independent ranking features.
setHookContainer(HookContainer $hookContainer)
searchText( $term)
Perform a full text search query and return a result set.
legalSearchChars( $type=self::CHARS_ALL)
Get chars legal for search.
extractTitles(SearchSuggestionSet $completionResults)
Extract titles from completion results.
const COMPLETION_PROFILE_TYPE
Profile type for completionSearch.
doSearchTitle( $term)
Perform a title-only search query and return a result set.
An utility class to rescore search results by looking for an exact match in the db and add the page f...
const DEFAULT_CONTEXT_LINES
const DEFAULT_CONTEXT_CHARS
A set of search suggestions.
filter( $callback)
Filter the suggestions array.
rescore( $key)
Move the suggestion at index $key to the first position.
shrink( $limit)
Remove any extra elements in the suggestions set.
static fromStrings(array $titles, $hasMoreResults=false)
Builds a new set of suggestion based on a string array.
static fromTitles(array $titles, $hasMoreResults=false)
Builds a new set of suggestion based on a title array.
static emptySuggestionSet()
map( $callback)
Call array_map on the suggestions array.
prepend(SearchSuggestion $suggestion)
Add a new suggestion at the top.
remove(SearchSuggestion $suggestion)
Remove a suggestion from the set.
getSuggestedTitle()
Title object in the case this suggestion is based on a title.
Performs prefix search, returning Title objects.
A set of SearchEngine results.
setAugmentedData( $name, $data)
Sets augmented data for result set.
Base interface for representing page content.
Marker class for search engines that can handle their own pagination, by reporting in their ISearchRe...