54 private $sort = self::DEFAULT_SORT;
124 return Status::newGood( [] );
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 return $this->features[$feature] ??
null;
235 return MediaWikiServices::getInstance()->getContentLanguage()->segmentByWord( $string );
258 MediaWikiServices::getInstance()->getContentLanguage() );
266 $services = MediaWikiServices::getInstance();
268 return $services->newSearchEngine()->getNearMatcher( $config );
281 return static::defaultNearMatcher()->getNearMatch( $searchterm );
292 return "A-Za-z_'.0-9\\x80-\\xFF\\-";
303 $this->limit = intval(
$limit );
304 $this->offset = intval(
$offset );
316 $validNs = MediaWikiServices::getInstance()->getSearchEngineConfig()->searchableNamespaces();
318 return $ns < 0 || isset( $validNs[$ns] );
345 return [ self::DEFAULT_SORT ];
358 throw new InvalidArgumentException(
"Invalid sort: $sort. " .
359 "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 ( strncmp(
$query, $kw, strlen( $kw ) ) == 0 ) {
425 $extractedNamespace =
null;
426 $parsed = substr(
$query, strlen( $kw ) );
433 if ( !$allQuery && strpos(
$query,
':' ) !==
false ) {
435 $index = MediaWikiServices::getInstance()->getContentLanguage()->getNsIndex(
$prefix );
436 if ( $index !==
false ) {
437 $extractedNamespace = [ $index ];
439 } elseif ( $withPrefixSearchExtractNamespaceHook ) {
442 Hooks::run(
'PrefixSearchExtractNamespace', [ &$hookNamespaces, &$hookQuery ] );
443 if ( $hookQuery !==
$query ) {
444 $parsed = $hookQuery;
445 $extractedNamespace = $hookNamespaces;
454 return [ $parsed, $extractedNamespace ];
464 return [ $contextlines, $contextchars ];
515 return $c ? $c->getTextForSearchIndex() :
'';
536 $queryAndNs = self::parseNamespacePrefixes( $search,
false,
true );
537 if ( $queryAndNs !==
false ) {
539 return $queryAndNs[0];
570 $search = trim( $search );
573 !Hooks::run(
'PrefixSearchBackend',
574 [ $this->
namespaces, $search, $this->limit, &$results, $this->offset ]
593 if ( trim( $search ) ===
'' ) {
607 if ( trim( $search ) ===
'' ) {
613 $fallbackLimit = 1 + $this->limit - $results->getSize();
614 if ( $fallbackLimit > 0 ) {
615 $fallbackSearches = MediaWikiServices::getInstance()->getContentLanguage()->
616 autoConvertToAllVariants( $search );
617 $fallbackSearches = array_diff( array_unique( $fallbackSearches ), [ $search ] );
619 foreach ( $fallbackSearches
as $fbs ) {
622 $results->appendAll( $fallbackSearchResult );
623 $fallbackLimit -= $fallbackSearchResult->getSize();
624 if ( $fallbackLimit <= 0 ) {
653 $suggestions->
shrink( $this->limit );
655 $search = trim( $search );
660 $lb->setCaller( __METHOD__ );
667 MediaWikiServices::getInstance()->getStatsdDataFactory()
668 ->updateCount(
'search.completion.missing', $diff );
675 if ( $this->offset === 0 ) {
682 $rescoredResults = $rescorer->rescore( $search, $this->
namespaces, $results, $this->limit );
687 $rescoredResults = $results;
690 if ( count( $rescoredResults ) > 0 ) {
691 $found = array_search( $rescoredResults[0], $results );
692 if ( $found ===
false ) {
696 $suggestions->
prepend( $exactMatch );
697 $suggestions->
shrink( $this->limit );
701 $suggestions->
rescore( $found );
715 if ( trim( $search ) ===
'' ) {
743 return MediaWikiServices::getInstance()->getSearchEngineConfig()->searchableNamespaces();
756 return MediaWikiServices::getInstance()->getSearchEngineConfig()->userNamespaces(
$user );
767 return MediaWikiServices::getInstance()->getSearchEngineConfig()->defaultNamespaces();
780 return MediaWikiServices::getInstance()->getSearchEngineConfig()->namespacesAsText(
$namespaces );
793 return MediaWikiServices::getInstance()->getSearchEngineFactory()->create(
$type );
805 return MediaWikiServices::getInstance()->getSearchEngineConfig()->getSearchTypes();
845 $models = ContentHandler::getContentModels();
847 $seenHandlers =
new SplObjectStorage();
848 foreach ( $models
as $model ) {
850 $handler = ContentHandler::getForModelID( $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 ] );
889 Hooks::run(
"SearchResultsAugment", [ &$setAugmentors, &
$rowAugmentors ] );
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 );
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
to move a page</td >< td > &*You are moving the page across namespaces
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
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.
static searchableNamespaces()
Make a list of searchable namespaces and their canonical names.
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.
getNearMatcher(Config $config)
Get service class to finding near matches.
searchTitle( $term)
Perform a title-only search query and return a result set.
maybePaginate(Closure $fn)
Performs an overfetch and shrink operation to determine if the next page is available for search engi...
processCompletionResults( $search, SearchSuggestionSet $suggestions)
Process completion search results.
static namespacesAsText( $namespaces)
Get a list of namespace names useful for showing in tooltips and preferences.
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.
augmentSearchResults(SearchResultSet $resultSet)
Augment search results with extra data.
doSearchArchiveTitle( $term)
Perform a title search in the article archive.
array $features
Feature values.
replacePrefixes( $query)
Parse some common prefixes: all (search everything) or namespace names and set the list of namespaces...
static defaultNamespaces()
An array of namespaces indexes to be searched by default.
array string $searchTerms
textAlreadyUpdatedForIndex()
If an implementation of SearchEngine handles all of its own text processing in getTextFromContent() a...
defaultPrefixSearch( $search)
Simple prefix search for subpages.
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.
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 create( $type=null)
Load up the appropriate search engine class for the currently active database backend,...
getProfiles( $profileType, User $user=null)
Get a list of supported profiles.
transformSearchTerm( $term)
Transform search term in cases when parts of the query came as different GET params (when supported),...
static getNearMatch( $searchterm)
If an exact title match can be found, or a very slightly close match, return the title.
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
@const int flag for legalSearchChars: includes all chars allowed in a search query
static getSearchTypes()
Return the search engines we support.
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
@const int flag for legalSearchChars: includes all chars allowed in a search term
setShowSuggestion( $showSuggestion)
Set whether the searcher should try to build a suggestion.
simplePrefixSearch( $search)
Call out to simple search backend.
setSort( $sort)
Set the sort direction of the search results.
const FT_QUERY_INDEP_PROFILE_TYPE
@const string profile type for query independent ranking features
searchText( $term)
Perform a full text search query and return a result set.
extractTitles(SearchSuggestionSet $completionResults)
Extract titles from completion results.
const COMPLETION_PROFILE_TYPE
@const string profile type for completionSearch
static legalSearchChars( $type=self::CHARS_ALL)
Get chars legal for search NOTE: usage as static is deprecated and preserved only as BC measure.
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...
Implementation of near match title search.
setAugmentedData( $name, $data)
Sets augmented data for result set.
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.
getSuggestedTitle()
Title object in the case this suggestion is based on a title.
static fromTitle( $score, Title $title)
Create suggestion from Title.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Performs prefix search, returning Title objects.
Represents a title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
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
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
namespace and then decline to actually register it & $namespaces
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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
whereas SearchGetNearMatch runs after $term
the value to return A Title object or null for latest all implement SearchIndexField must implement ResultSetAugmentor & $rowAugmentors
namespace and then decline to actually register it file or subcat img or subcat $title
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
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 "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
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
return true to allow those checks to and false if checking is done & $user
returning false will NOT prevent logging $e
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
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
Interface for configuration instances.
Base interface for content objects.
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))