96 case 'title-suffix-filter':
110 $this->features[$feature] = $data;
125 return $wgContLang->segmentByWord( $string );
154 $config = MediaWikiServices::getInstance()->getMainConfig();
155 return MediaWikiServices::getInstance()->newSearchEngine()->getNearMatcher( $config );
166 return static::defaultNearMatcher()->getNearMatch( $searchterm );
177 return static::defaultNearMatcher()->getNearMatchResultSet( $searchterm );
186 return "A-Za-z_'.0-9\\x80-\\xFF\\-";
197 $this->limit = intval(
$limit );
198 $this->offset = intval(
$offset );
212 return $ns < 0 || isset( $validNs[$ns] );
239 return [
'relevance' ];
253 "Must be one of: " . implode(
', ', $this->
getValidSorts() ) );
277 $queryAndNs = self::parseNamespacePrefixes(
$query );
278 if ( $queryAndNs ===
false ) {
282 return $queryAndNs[0];
298 if ( strpos(
$query,
':' ) ===
false ) {
301 $extractedNamespace = null;
303 $allkeyword =
wfMessage(
'searchall' )->inContentLanguage()->text() .
":";
304 if ( strncmp(
$query, $allkeyword, strlen( $allkeyword ) ) == 0 ) {
305 $extractedNamespace = null;
306 $parsed = substr(
$query, strlen( $allkeyword ) );
307 } elseif ( strpos(
$query,
':' ) !==
false ) {
310 $index = $wgContLang->getNsIndex(
$prefix );
311 if ( $index !==
false ) {
312 $extractedNamespace = [ $index ];
319 if ( trim( $parsed ) ==
'' ) {
323 return [ $parsed, $extractedNamespace ];
333 return [ $contextlines, $contextchars ];
395 return $c ? $c->getTextForSearchIndex() :
'';
420 $ns = [
$title->getNamespace() ];
421 $search =
$title->getText();
424 Hooks::run(
'PrefixSearchExtractNamespace', [ &$ns, &$search ] );
430 && !
$title->isExternal() )
432 $ns = [
$title->getNamespace() ];
435 Hooks::run(
'PrefixSearchExtractNamespace', [ &$ns, &$search ] );
439 $ns = array_map(
function( $space ) {
457 $search = trim( $search );
461 [ $this->
namespaces, $search, $this->limit, &$results, $this->offset ]
480 if ( trim( $search ) ===
'' ) {
493 if ( trim( $search ) ===
'' ) {
499 $fallbackLimit = $this->limit - $results->getSize();
500 if ( $fallbackLimit > 0 ) {
503 $fallbackSearches = $wgContLang->autoConvertToAllVariants( $search );
504 $fallbackSearches = array_diff( array_unique( $fallbackSearches ), [ $search ] );
506 foreach ( $fallbackSearches
as $fbs ) {
509 $results->appendAll( $fallbackSearchResult );
510 $fallbackLimit -= count( $fallbackSearchResult );
511 if ( $fallbackLimit <= 0 ) {
537 $search = trim( $search );
543 $lb->setCaller( __METHOD__ );
550 if ( $this->offset === 0 ) {
557 $rescoredResults = $rescorer->rescore( $search, $this->
namespaces, $results, $this->limit );
562 $rescoredResults = $results;
565 if ( count( $rescoredResults ) > 0 ) {
566 $found = array_search( $rescoredResults[0], $results );
567 if ( $found ===
false ) {
571 $suggestions->
prepend( $exactMatch );
572 $suggestions->
shrink( $this->limit );
576 $suggestions->
rescore( $found );
590 if ( trim( $search ) ===
'' ) {
616 return MediaWikiServices::getInstance()->getSearchEngineConfig()->searchableNamespaces();
627 return MediaWikiServices::getInstance()->getSearchEngineConfig()->userNamespaces(
$user );
636 return MediaWikiServices::getInstance()->getSearchEngineConfig()->defaultNamespaces();
647 return MediaWikiServices::getInstance()->getSearchEngineConfig()->namespacesAsText(
$namespaces );
658 return MediaWikiServices::getInstance()->getSearchEngineFactory()->create(
$type );
668 return MediaWikiServices::getInstance()->getSearchEngineConfig()->getSearchTypes();
710 foreach ( $models
as $model ) {
712 $handlerFields =
$handler->getFieldsForSearchIndex( $this );
713 foreach ( $handlerFields
as $fieldName => $fieldData ) {
714 if ( empty( $fields[$fieldName] ) ) {
715 $fields[$fieldName] = $fieldData;
718 $mergeDef = $fields[$fieldName]->merge( $fieldData );
722 $fields[$fieldName] = $mergeDef;
727 Hooks::run(
'SearchIndexFields', [ &$fields, $this ] );
748 if ( isset( $setAugmentors[
$name] ) ) {
754 foreach ( $setAugmentors
as $name => $augmentor ) {
755 $data = $augmentor->augmentAll( $resultSet );
Dummy class to be used when non-supported Database engine is present.
getSort()
Get the sort direction of the search results.
the value to return A Title object or null for latest all implement SearchIndexField must implement ResultSetAugmentor & $rowAugmentors
replacePrefixes($query)
Parse some common prefixes: all (search everything) or namespace names and set the list of namespaces...
static getNearMatchResultSet($searchterm)
Do a near match (see SearchEngine::getNearMatch) and wrap it into a SearchResultSet.
external whereas SearchGetNearMatch runs after $term
transformSearchTerm($term)
Transform search term in cases when parts of the query came as different GET params (when supported)...
static searchableNamespaces()
Make a list of searchable namespaces and their canonical names.
searchText($term)
Perform a full text search query and return a result set.
null for the local 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
completionSearchBackend($search)
Perform a completion search.
static defaultNamespaces()
An array of namespaces indexes to be searched by default.
static namespacesAsText($namespaces)
Get a list of namespace names useful for showing in tooltips and preferences.
to move a page</td >< td > &*You are moving the page across namespaces
static userNamespaces($user)
Extract default namespaces to search from the given user's settings, returning a list of index number...
makeSearchFieldMapping($name, $type)
Create a search field definition.
static legalSearchChars()
Get chars legal for search.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static getForModelID($modelId)
Returns the ContentHandler singleton for the given model ID.
static getContentModels()
update($id, $title, $text)
Create or update the search index record for the given page.
setShowSuggestion($showSuggestion)
Set whether the searcher should try to build a suggestion.
defaultPrefixSearch($search)
Simple prefix search for subpages.
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
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
static fromStrings(array $titles)
Builds a new set of suggestion based on a string array.
when a variable name is used in a it is silently declared as a new local masking the global
getSuggestedTitle()
Title object in the case this suggestion is based on a title.
simplePrefixSearch($search)
Call out to simple search backend.
Null index field - means search engine does not implement this field.
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 ...
normalizeNamespaces($search)
Makes search simple string if it was namespaced.
static getOpenSearchTemplate()
Get OpenSearch suggestion template.
setLimitOffset($limit, $offset=0)
Set the maximum number of results to return and how many to skip before returning the first...
normalizeText($string)
When overridden in derived class, performs database-specific conversions on text to be used for searc...
map($callback)
Call array_map on the suggestions array.
prepend(SearchSuggestion $suggestion)
Add a new suggestion at the top.
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 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 unsetoffset-wrap String Wrap the message in html(usually something like"<
defaultSearchBackend($namespaces, $search, $limit, $offset)
Unless overridden by PrefixSearchBackend hook...
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 string $searchTerms
searchTitle($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...
getProfiles($profileType, User $user=null)
Get a list of supported profiles.
Base interface for content objects.
textAlreadyUpdatedForIndex()
If an implementation of SearchEngine handles all of its own text processing in getTextFromContent() a...
static getNearMatch($searchterm)
If an exact title match can be found, or a very slightly close match, return the title.
getValidSorts()
Get the valid sort directions.
static defaultNearMatcher()
Get near matcher for default SearchEngine.
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
const COMPLETION_PROFILE_TYPE
string profile type for completionSearch
namespace and then decline to actually register it file or subcat img or subcat $title
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
static emptySuggestionSet()
extractTitles(SearchSuggestionSet $completionResults)
Extract titles from completion results.
static getSearchTypes()
Return the search engines we support.
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
Performs prefix search, returning Title objects.
updateTitle($id, $title)
Update a search index record's title only.
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 local account $user
shrink($limit)
Remove any extra elements in the suggestions set.
const FT_QUERY_INDEP_PROFILE_TYPE
string profile type for query independent ranking features
setSort($sort)
Set the sort direction of the search results.
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
setFeatureData($feature, $data)
Way to pass custom data for engines.
Implementation of near match title search.
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
static parseNamespacePrefixes($query)
Parse some common prefixes: all (search everything) or namespace names.
array $features
Feature values.
setNamespaces($namespaces)
Set which namespaces the search should include.
augmentSearchResults(SearchResultSet $resultSet)
Augment search results with extra data.
completionSearch($search)
Perform a completion search.
rescore($key)
Move the suggestion at index $key to the first position.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
getSearchIndexFields()
Get fields for search index.
Perform augmentation of each row and return composite result, indexed by ID.
static create($type=null)
Load up the appropriate search engine class for the currently active database backend, and return a configured instance.
setAugmentedData($name, $data)
Sets augmented data for result set.
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
getNearMatcher(Config $config)
Get service class to finding near matches.
static fromTitle($score, Title $title)
Create suggestion from Title.
static fromTitles(array $titles)
Builds a new set of suggestion based on a title array.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
processCompletionResults($search, SearchSuggestionSet $suggestions)
Process completion search results.
static userHighlightPrefs()
Find snippet highlight settings for all users.
static getOpenSearchTemplate($type)
Fetch the template for a type.
Allows to change the fields on the form that will be generated $name