Go to the documentation of this file.
169 $resultSetOrStatus = $fn();
176 $resultSet = $resultSetOrStatus;
177 } elseif ( $resultSetOrStatus instanceof
Status &&
180 $resultSet = $resultSetOrStatus->getValue();
183 $resultSet->shrink( $this->limit );
186 return $resultSetOrStatus;
195 switch ( $feature ) {
196 case 'search-update':
198 case 'title-suffix-filter':
211 $this->features[$feature] = $data;
222 if ( isset( $this->features[$feature] ) ) {
223 return $this->features[$feature];
238 return MediaWikiServices::getInstance()->getContentLanguage()->segmentByWord( $string );
261 MediaWikiServices::getInstance()->getContentLanguage() );
269 $services = MediaWikiServices::getInstance();
271 return $services->newSearchEngine()->getNearMatcher( $config );
282 return static::defaultNearMatcher()->getNearMatch( $searchterm );
293 return static::defaultNearMatcher()->getNearMatchResultSet( $searchterm );
304 return "A-Za-z_'.0-9\\x80-\\xFF\\-";
315 $this->limit = intval(
$limit );
316 $this->offset = intval(
$offset );
330 return $ns < 0 || isset( $validNs[$ns] );
370 throw new InvalidArgumentException(
"Invalid sort: $sort. " .
371 "Must be one of: " . implode(
', ', $this->
getValidSorts() ) );
416 $withAllKeyword =
true,
417 $withPrefixSearchExtractNamespaceHook =
false
420 if ( strpos(
$query,
':' ) ===
false ) {
423 $extractedNamespace =
null;
426 if ( $withAllKeyword ) {
429 $allkeywords[] =
wfMessage(
'searchall' )->inContentLanguage()->text() .
":";
431 if ( !in_array(
'all:', $allkeywords ) ) {
432 $allkeywords[] =
'all:';
435 foreach ( $allkeywords
as $kw ) {
436 if ( strncmp(
$query, $kw, strlen( $kw ) ) == 0 ) {
437 $extractedNamespace =
null;
438 $parsed = substr(
$query, strlen( $kw ) );
445 if ( !$allQuery && strpos(
$query,
':' ) !==
false ) {
447 $index = MediaWikiServices::getInstance()->getContentLanguage()->getNsIndex(
$prefix );
448 if ( $index !==
false ) {
449 $extractedNamespace = [ $index ];
451 } elseif ( $withPrefixSearchExtractNamespaceHook ) {
454 Hooks::run(
'PrefixSearchExtractNamespace', [ &$hookNamespaces, &$hookQuery ] );
455 if ( $hookQuery !==
$query ) {
456 $parsed = $hookQuery;
457 $extractedNamespace = $hookNamespaces;
466 return [ $parsed, $extractedNamespace ];
476 return [ $contextlines, $contextchars ];
527 return $c ? $c->getTextForSearchIndex() :
'';
549 if ( $queryAndNs !==
false ) {
551 return $queryAndNs[0];
582 $search = trim( $search );
586 [ $this->
namespaces, $search, $this->limit, &$results, $this->offset ]
605 if ( trim( $search ) ===
'' ) {
619 if ( trim( $search ) ===
'' ) {
625 $fallbackLimit = 1 + $this->limit - $results->getSize();
626 if ( $fallbackLimit > 0 ) {
627 $fallbackSearches = MediaWikiServices::getInstance()->getContentLanguage()->
628 autoConvertToAllVariants( $search );
629 $fallbackSearches = array_diff( array_unique( $fallbackSearches ), [ $search ] );
631 foreach ( $fallbackSearches
as $fbs ) {
634 $results->appendAll( $fallbackSearchResult );
635 $fallbackLimit -= $fallbackSearchResult->getSize();
636 if ( $fallbackLimit <= 0 ) {
665 $suggestions->
shrink( $this->limit );
667 $search = trim( $search );
672 $lb->setCaller( __METHOD__ );
679 MediaWikiServices::getInstance()->getStatsdDataFactory()
680 ->updateCount(
'search.completion.missing', $diff );
687 if ( $this->offset === 0 ) {
694 $rescoredResults = $rescorer->rescore( $search, $this->
namespaces, $results, $this->limit );
699 $rescoredResults = $results;
702 if (
count( $rescoredResults ) > 0 ) {
703 $found = array_search( $rescoredResults[0], $results );
704 if ( $found ===
false ) {
708 $suggestions->
prepend( $exactMatch );
709 $suggestions->
shrink( $this->limit );
713 $suggestions->
rescore( $found );
727 if ( trim( $search ) ===
'' ) {
753 return MediaWikiServices::getInstance()->getSearchEngineConfig()->searchableNamespaces();
764 return MediaWikiServices::getInstance()->getSearchEngineConfig()->userNamespaces(
$user );
773 return MediaWikiServices::getInstance()->getSearchEngineConfig()->defaultNamespaces();
784 return MediaWikiServices::getInstance()->getSearchEngineConfig()->namespacesAsText(
$namespaces );
795 return MediaWikiServices::getInstance()->getSearchEngineFactory()->create(
$type );
805 return MediaWikiServices::getInstance()->getSearchEngineConfig()->getSearchTypes();
847 $seenHandlers =
new SplObjectStorage();
848 foreach ( $models
as $model ) {
857 if ( $seenHandlers->contains(
$handler ) ) {
862 $handlerFields =
$handler->getFieldsForSearchIndex( $this );
863 foreach ( $handlerFields
as $fieldName => $fieldData ) {
864 if ( empty( $fields[$fieldName] ) ) {
865 $fields[$fieldName] = $fieldData;
868 $mergeDef = $fields[$fieldName]->merge( $fieldData );
870 throw new InvalidArgumentException(
"Duplicate field $fieldName for model $model" );
872 $fields[$fieldName] = $mergeDef;
877 Hooks::run(
'SearchIndexFields', [ &$fields, $this ] );
897 if ( isset( $setAugmentors[
$name] ) ) {
898 throw new InvalidArgumentException(
"Both row and set augmentors are defined for $name" );
903 foreach ( $setAugmentors
as $name => $augmentor ) {
904 $data = $augmentor->augmentAll( $resultSet );
static legalSearchChars( $type=self::CHARS_ALL)
Get chars legal for search NOTE: usage as static is deprecated and preserved only as BC measure.
static fromStrings(array $titles, $hasMoreResults=false)
Builds a new set of suggestion based on a string array.
getSearchIndexFields()
Get fields for search index.
getProfiles( $profileType, User $user=null)
Get a list of supported profiles.
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
augmentSearchResults(SearchResultSet $resultSet)
Augment search results with extra data.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
the value to return A Title object or null for latest all implement SearchIndexField must implement ResultSetAugmentor & $rowAugmentors
map( $callback)
Call array_map on the suggestions array.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
For QUnit the mediawiki tests qunit testrunner dependency will be added to any module whereas SearchGetNearMatch runs after $term
setFeatureData( $feature, $data)
Way to pass custom data for engines.
getValidSorts()
Get the valid sort directions.
completionSearchWithVariants( $search)
Perform a completion search with variants.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Performs prefix search, returning Title objects.
static searchableNamespaces()
Make a list of searchable namespaces and their canonical names.
normalizeText( $string)
When overridden in derived class, performs database-specific conversions on text to be used for searc...
getSort()
Get the sort direction of the search results.
searchTitle( $term)
Perform a title-only search query and return a result set.
static userHighlightPrefs()
Find snippet highlight settings for all users.
const FT_QUERY_INDEP_PROFILE_TYPE
@const string profile type for query independent ranking features
completionSearchBackend( $search)
Perform a completion search.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback function
prepend(SearchSuggestion $suggestion)
Add a new suggestion at the top.
static parseNamespacePrefixes( $query, $withAllKeyword=true, $withPrefixSearchExtractNamespaceHook=false)
Parse some common prefixes: all (search everything) or namespace names.
doSearchTitle( $term)
Perform a title-only search query and return a result set.
completionSearchBackendOverfetch( $search)
Perform an overfetch of completion search results.
static defaultNamespaces()
An array of namespaces indexes to be searched by default.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
replacePrefixes( $query)
Parse some common prefixes: all (search everything) or namespace names and set the list of namespaces...
static fromTitle( $score, Title $title)
Create suggestion from Title.
defaultPrefixSearch( $search)
Simple prefix search for subpages.
const COMPLETION_PROFILE_TYPE
@const string profile type for completionSearch
Generic operation result class Has warning/error list, boolean status and arbitrary value.
textAlreadyUpdatedForIndex()
If an implementation of SearchEngine handles all of its own text processing in getTextFromContent() a...
static fromTitles(array $titles, $hasMoreResults=false)
Builds a new set of suggestion based on a title array.
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Interface for configuration instances.
setSort( $sort)
Set the sort direction of the search results.
An utility class to rescore search results by looking for an exact match in the db and add the page f...
to move a page</td >< td > &*You are moving the page across namespaces
namespace and then decline to actually register it file or subcat img or subcat $title
Implementation of near match title search.
static getContentModels()
const CHARS_NO_SYNTAX
@const int flag for legalSearchChars: includes all chars allowed in a search term
getNearMatcher(Config $config)
Get service class to finding near matches.
searchText( $term)
Perform a full text search query and return a result set.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Marker class for search engines that can handle their own pagination, by reporting in their SearchRes...
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
updateTitle( $id, $title)
Update a search index record's title only.
setNamespaces( $namespaces)
Set which namespaces the search should include.
filter( $callback)
Filter the suggestions array.
maybePaginate(Closure $fn)
Performs an overfetch and shrink operation to determine if the next page is available for search engi...
update( $id, $title, $text)
Create or update the search index record for the given page.
setAugmentedData( $name, $data)
Sets augmented data for result set.
Allows to change the fields on the form that will be generated $name
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
static getNearMatchResultSet( $searchterm)
Do a near match (see SearchEngine::getNearMatch) and wrap it into a SearchResultSet.
getTextFromContent(Title $t, Content $c=null)
Get the raw text for updating the index from a content object Nicer search backends could possibly do...
static newGood( $value=null)
Factory function for good results.
shrink( $limit)
Remove any extra elements in the suggestions set.
transformSearchTerm( $term)
Transform search term in cases when parts of the query came as different GET params (when supported),...
normalizeNamespaces( $search)
Makes search simple string if it was namespaced.
rescore( $key)
Move the suggestion at index $key to the first position.
setShowSuggestion( $showSuggestion)
Set whether the searcher should try to build a suggestion.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
doSearchArchiveTitle( $term)
Perform a title search in the article archive.
static emptySuggestionSet()
Contain a class for special pages.
Dummy class to be used when non-supported Database engine is present.
static defaultNearMatcher()
Get near matcher for default SearchEngine.
Base interface for content objects.
completionSearch( $search)
Perform a completion search.
getSuggestedTitle()
Title object in the case this suggestion is based on a title.
doSearchText( $term)
Perform a full text search query and return a result set.
defaultSearchBackend( $namespaces, $search, $limit, $offset)
Unless overridden by PrefixSearchBackend hook...
makeSearchFieldMapping( $name, $type)
Create a search field definition.
simplePrefixSearch( $search)
Call out to simple search backend.
Represents a title within MediaWiki.
static getNearMatch( $searchterm)
If an exact title match can be found, or a very slightly close match, return the title.
Null index field - means search engine does not implement this field.
Perform augmentation of each row and return composite result, indexed by ID.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
extractTitles(SearchSuggestionSet $completionResults)
Extract titles from completion results.
const CHARS_ALL
@const int flag for legalSearchChars: includes all chars allowed in a search query
Exception thrown when an unregistered content model is requested.
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<
array $features
Feature values.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
searchArchiveTitle( $term)
Perform a title search in the article archive.
static create( $type=null)
Load up the appropriate search engine class for the currently active database backend,...
setLimitOffset( $limit, $offset=0)
Set the maximum number of results to return and how many to skip before returning the first.
getFeatureData( $feature)
Way to retrieve custom data set by setFeatureData or by the engine itself.
static getSearchTypes()
Return the search engines we support.
static namespacesAsText( $namespaces)
Get a list of namespace names useful for showing in tooltips and preferences.
static userNamespaces( $user)
Extract default namespaces to search from the given user's settings, returning a list of index number...
array string $searchTerms
processCompletionResults( $search, SearchSuggestionSet $suggestions)
Process completion search results.