MediaWiki  1.32.0
SearchEngine.php
Go to the documentation of this file.
1 <?php
29 
34 abstract class SearchEngine {
35  const DEFAULT_SORT = 'relevance';
36 
38  public $prefix = '';
39 
41  public $namespaces = [ NS_MAIN ];
42 
44  protected $limit = 10;
45 
47  protected $offset = 0;
48 
50  protected $searchTerms = [];
51 
53  protected $showSuggestion = true;
55 
57  protected $features = [];
58 
60  const COMPLETION_PROFILE_TYPE = 'completionSearchProfile';
61 
63  const FT_QUERY_INDEP_PROFILE_TYPE = 'fulltextQueryIndepProfile';
64 
66  const CHARS_ALL = 1;
67 
69  const CHARS_NO_SYNTAX = 2;
70 
81  public function searchText( $term ) {
82  return $this->maybePaginate( function () use ( $term ) {
83  return $this->doSearchText( $term );
84  } );
85  }
86 
94  protected function doSearchText( $term ) {
95  return null;
96  }
97 
112  public function searchArchiveTitle( $term ) {
113  return $this->doSearchArchiveTitle( $term );
114  }
115 
123  protected function doSearchArchiveTitle( $term ) {
124  return Status::newGood( [] );
125  }
126 
138  public function searchTitle( $term ) {
139  return $this->maybePaginate( function () use ( $term ) {
140  return $this->doSearchTitle( $term );
141  } );
142  }
143 
151  protected function doSearchTitle( $term ) {
152  return null;
153  }
154 
163  private function maybePaginate( Closure $fn ) {
164  if ( $this instanceof PaginatingSearchEngine ) {
165  return $fn();
166  }
167  $this->limit++;
168  try {
169  $resultSetOrStatus = $fn();
170  } finally {
171  $this->limit--;
172  }
173 
174  $resultSet = null;
175  if ( $resultSetOrStatus instanceof SearchResultSet ) {
176  $resultSet = $resultSetOrStatus;
177  } elseif ( $resultSetOrStatus instanceof Status &&
178  $resultSetOrStatus->getValue() instanceof SearchResultSet
179  ) {
180  $resultSet = $resultSetOrStatus->getValue();
181  }
182  if ( $resultSet ) {
183  $resultSet->shrink( $this->limit );
184  }
185 
186  return $resultSetOrStatus;
187  }
188 
194  public function supports( $feature ) {
195  switch ( $feature ) {
196  case 'search-update':
197  return true;
198  case 'title-suffix-filter':
199  default:
200  return false;
201  }
202  }
203 
210  public function setFeatureData( $feature, $data ) {
211  $this->features[$feature] = $data;
212  }
213 
221  public function getFeatureData( $feature ) {
222  if ( isset( $this->features[$feature] ) ) {
223  return $this->features[$feature];
224  }
225  return null;
226  }
227 
236  public function normalizeText( $string ) {
237  // Some languages such as Chinese require word segmentation
238  return MediaWikiServices::getInstance()->getContentLanguage()->segmentByWord( $string );
239  }
240 
250  public function transformSearchTerm( $term ) {
251  return $term;
252  }
253 
259  public function getNearMatcher( Config $config ) {
260  return new SearchNearMatcher( $config,
261  MediaWikiServices::getInstance()->getContentLanguage() );
262  }
263 
268  protected static function defaultNearMatcher() {
269  $services = MediaWikiServices::getInstance();
270  $config = $services->getMainConfig();
271  return $services->newSearchEngine()->getNearMatcher( $config );
272  }
273 
281  public static function getNearMatch( $searchterm ) {
282  return static::defaultNearMatcher()->getNearMatch( $searchterm );
283  }
284 
292  public static function getNearMatchResultSet( $searchterm ) {
293  return static::defaultNearMatcher()->getNearMatchResultSet( $searchterm );
294  }
295 
303  public static function legalSearchChars( $type = self::CHARS_ALL ) {
304  return "A-Za-z_'.0-9\\x80-\\xFF\\-";
305  }
306 
314  function setLimitOffset( $limit, $offset = 0 ) {
315  $this->limit = intval( $limit );
316  $this->offset = intval( $offset );
317  }
318 
326  if ( $namespaces ) {
327  // Filter namespaces to only keep valid ones
328  $validNs = $this->searchableNamespaces();
329  $namespaces = array_filter( $namespaces, function ( $ns ) use( $validNs ) {
330  return $ns < 0 || isset( $validNs[$ns] );
331  } );
332  } else {
333  $namespaces = [];
334  }
335  $this->namespaces = $namespaces;
336  }
337 
346  $this->showSuggestion = $showSuggestion;
347  }
348 
356  public function getValidSorts() {
357  return [ self::DEFAULT_SORT ];
358  }
359 
368  public function setSort( $sort ) {
369  if ( !in_array( $sort, $this->getValidSorts() ) ) {
370  throw new InvalidArgumentException( "Invalid sort: $sort. " .
371  "Must be one of: " . implode( ', ', $this->getValidSorts() ) );
372  }
373  $this->sort = $sort;
374  }
375 
382  public function getSort() {
383  return $this->sort;
384  }
385 
395  function replacePrefixes( $query ) {
396  return $query;
397  }
398 
414  public static function parseNamespacePrefixes(
415  $query,
416  $withAllKeyword = true,
417  $withPrefixSearchExtractNamespaceHook = false
418  ) {
419  $parsed = $query;
420  if ( strpos( $query, ':' ) === false ) { // nothing to do
421  return false;
422  }
423  $extractedNamespace = null;
424 
425  $allQuery = false;
426  if ( $withAllKeyword ) {
427  $allkeywords = [];
428 
429  $allkeywords[] = wfMessage( 'searchall' )->inContentLanguage()->text() . ":";
430  // force all: so that we have a common syntax for all the wikis
431  if ( !in_array( 'all:', $allkeywords ) ) {
432  $allkeywords[] = 'all:';
433  }
434 
435  foreach ( $allkeywords as $kw ) {
436  if ( strncmp( $query, $kw, strlen( $kw ) ) == 0 ) {
437  $extractedNamespace = null;
438  $parsed = substr( $query, strlen( $kw ) );
439  $allQuery = true;
440  break;
441  }
442  }
443  }
444 
445  if ( !$allQuery && strpos( $query, ':' ) !== false ) {
446  $prefix = str_replace( ' ', '_', substr( $query, 0, strpos( $query, ':' ) ) );
447  $index = MediaWikiServices::getInstance()->getContentLanguage()->getNsIndex( $prefix );
448  if ( $index !== false ) {
449  $extractedNamespace = [ $index ];
450  $parsed = substr( $query, strlen( $prefix ) + 1 );
451  } elseif ( $withPrefixSearchExtractNamespaceHook ) {
452  $hookNamespaces = [ NS_MAIN ];
453  $hookQuery = $query;
454  Hooks::run( 'PrefixSearchExtractNamespace', [ &$hookNamespaces, &$hookQuery ] );
455  if ( $hookQuery !== $query ) {
456  $parsed = $hookQuery;
457  $extractedNamespace = $hookNamespaces;
458  } else {
459  return false;
460  }
461  } else {
462  return false;
463  }
464  }
465 
466  return [ $parsed, $extractedNamespace ];
467  }
468 
473  public static function userHighlightPrefs() {
474  $contextlines = 2; // Hardcode this. Old defaults sucked. :)
475  $contextchars = 75; // same as above.... :P
476  return [ $contextlines, $contextchars ];
477  }
478 
488  function update( $id, $title, $text ) {
489  // no-op
490  }
491 
500  function updateTitle( $id, $title ) {
501  // no-op
502  }
503 
512  function delete( $id, $title ) {
513  // no-op
514  }
515 
526  public function getTextFromContent( Title $t, Content $c = null ) {
527  return $c ? $c->getTextForSearchIndex() : '';
528  }
529 
537  public function textAlreadyUpdatedForIndex() {
538  return false;
539  }
540 
547  protected function normalizeNamespaces( $search ) {
548  $queryAndNs = self::parseNamespacePrefixes( $search, false, true );
549  if ( $queryAndNs !== false ) {
550  $this->setNamespaces( $queryAndNs[1] );
551  return $queryAndNs[0];
552  }
553  return $search;
554  }
555 
563  protected function completionSearchBackendOverfetch( $search ) {
564  $this->limit++;
565  try {
566  return $this->completionSearchBackend( $search );
567  } finally {
568  $this->limit--;
569  }
570  }
571 
579  protected function completionSearchBackend( $search ) {
580  $results = [];
581 
582  $search = trim( $search );
583 
584  if ( !in_array( NS_SPECIAL, $this->namespaces ) && // We do not run hook on Special: search
585  !Hooks::run( 'PrefixSearchBackend',
586  [ $this->namespaces, $search, $this->limit, &$results, $this->offset ]
587  ) ) {
588  // False means hook worked.
589  // FIXME: Yes, the API is weird. That's why it is going to be deprecated.
590 
591  return SearchSuggestionSet::fromStrings( $results );
592  } else {
593  // Hook did not do the job, use default simple search
594  $results = $this->simplePrefixSearch( $search );
595  return SearchSuggestionSet::fromTitles( $results );
596  }
597  }
598 
604  public function completionSearch( $search ) {
605  if ( trim( $search ) === '' ) {
606  return SearchSuggestionSet::emptySuggestionSet(); // Return empty result
607  }
608  $search = $this->normalizeNamespaces( $search );
609  $suggestions = $this->completionSearchBackendOverfetch( $search );
610  return $this->processCompletionResults( $search, $suggestions );
611  }
612 
618  public function completionSearchWithVariants( $search ) {
619  if ( trim( $search ) === '' ) {
620  return SearchSuggestionSet::emptySuggestionSet(); // Return empty result
621  }
622  $search = $this->normalizeNamespaces( $search );
623 
624  $results = $this->completionSearchBackendOverfetch( $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 ] );
630 
631  foreach ( $fallbackSearches as $fbs ) {
632  $this->setLimitOffset( $fallbackLimit );
633  $fallbackSearchResult = $this->completionSearch( $fbs );
634  $results->appendAll( $fallbackSearchResult );
635  $fallbackLimit -= $fallbackSearchResult->getSize();
636  if ( $fallbackLimit <= 0 ) {
637  break;
638  }
639  }
640  }
641  return $this->processCompletionResults( $search, $results );
642  }
643 
649  public function extractTitles( SearchSuggestionSet $completionResults ) {
650  return $completionResults->map( function ( SearchSuggestion $sugg ) {
651  return $sugg->getSuggestedTitle();
652  } );
653  }
654 
662  protected function processCompletionResults( $search, SearchSuggestionSet $suggestions ) {
663  // We over-fetched to determine pagination. Shrink back down if we have extra results
664  // and mark if pagination is possible
665  $suggestions->shrink( $this->limit );
666 
667  $search = trim( $search );
668  // preload the titles with LinkBatch
669  $lb = new LinkBatch( $suggestions->map( function ( SearchSuggestion $sugg ) {
670  return $sugg->getSuggestedTitle();
671  } ) );
672  $lb->setCaller( __METHOD__ );
673  $lb->execute();
674 
675  $diff = $suggestions->filter( function ( SearchSuggestion $sugg ) {
676  return $sugg->getSuggestedTitle()->isKnown();
677  } );
678  if ( $diff > 0 ) {
679  MediaWikiServices::getInstance()->getStatsdDataFactory()
680  ->updateCount( 'search.completion.missing', $diff );
681  }
682 
683  $results = $suggestions->map( function ( SearchSuggestion $sugg ) {
684  return $sugg->getSuggestedTitle()->getPrefixedText();
685  } );
686 
687  if ( $this->offset === 0 ) {
688  // Rescore results with an exact title match
689  // NOTE: in some cases like cross-namespace redirects
690  // (frequently used as shortcuts e.g. WP:WP on huwiki) some
691  // backends like Cirrus will return no results. We should still
692  // try an exact title match to workaround this limitation
693  $rescorer = new SearchExactMatchRescorer();
694  $rescoredResults = $rescorer->rescore( $search, $this->namespaces, $results, $this->limit );
695  } else {
696  // No need to rescore if offset is not 0
697  // The exact match must have been returned at position 0
698  // if it existed.
699  $rescoredResults = $results;
700  }
701 
702  if ( count( $rescoredResults ) > 0 ) {
703  $found = array_search( $rescoredResults[0], $results );
704  if ( $found === false ) {
705  // If the first result is not in the previous array it
706  // means that we found a new exact match
707  $exactMatch = SearchSuggestion::fromTitle( 0, Title::newFromText( $rescoredResults[0] ) );
708  $suggestions->prepend( $exactMatch );
709  $suggestions->shrink( $this->limit );
710  } else {
711  // if the first result is not the same we need to rescore
712  if ( $found > 0 ) {
713  $suggestions->rescore( $found );
714  }
715  }
716  }
717 
718  return $suggestions;
719  }
720 
726  public function defaultPrefixSearch( $search ) {
727  if ( trim( $search ) === '' ) {
728  return [];
729  }
730 
731  $search = $this->normalizeNamespaces( $search );
732  return $this->simplePrefixSearch( $search );
733  }
734 
741  protected function simplePrefixSearch( $search ) {
742  // Use default database prefix search
743  $backend = new TitlePrefixSearch;
744  return $backend->defaultSearchBackend( $this->namespaces, $search, $this->limit, $this->offset );
745  }
746 
752  public static function searchableNamespaces() {
753  return MediaWikiServices::getInstance()->getSearchEngineConfig()->searchableNamespaces();
754  }
755 
763  public static function userNamespaces( $user ) {
764  return MediaWikiServices::getInstance()->getSearchEngineConfig()->userNamespaces( $user );
765  }
766 
772  public static function defaultNamespaces() {
773  return MediaWikiServices::getInstance()->getSearchEngineConfig()->defaultNamespaces();
774  }
775 
783  public static function namespacesAsText( $namespaces ) {
784  return MediaWikiServices::getInstance()->getSearchEngineConfig()->namespacesAsText( $namespaces );
785  }
786 
794  public static function create( $type = null ) {
795  return MediaWikiServices::getInstance()->getSearchEngineFactory()->create( $type );
796  }
797 
804  public static function getSearchTypes() {
805  return MediaWikiServices::getInstance()->getSearchEngineConfig()->getSearchTypes();
806  }
807 
823  public function getProfiles( $profileType, User $user = null ) {
824  return null;
825  }
826 
835  public function makeSearchFieldMapping( $name, $type ) {
836  return new NullIndexField();
837  }
838 
844  public function getSearchIndexFields() {
846  $fields = [];
847  $seenHandlers = new SplObjectStorage();
848  foreach ( $models as $model ) {
849  try {
851  }
853  // If we can find no handler, ignore it
854  continue;
855  }
856  // Several models can have the same handler, so avoid processing it repeatedly
857  if ( $seenHandlers->contains( $handler ) ) {
858  // We already did this one
859  continue;
860  }
861  $seenHandlers->attach( $handler );
862  $handlerFields = $handler->getFieldsForSearchIndex( $this );
863  foreach ( $handlerFields as $fieldName => $fieldData ) {
864  if ( empty( $fields[$fieldName] ) ) {
865  $fields[$fieldName] = $fieldData;
866  } else {
867  // TODO: do we allow some clashes with the same type or reject all of them?
868  $mergeDef = $fields[$fieldName]->merge( $fieldData );
869  if ( !$mergeDef ) {
870  throw new InvalidArgumentException( "Duplicate field $fieldName for model $model" );
871  }
872  $fields[$fieldName] = $mergeDef;
873  }
874  }
875  }
876  // Hook to allow extensions to produce search mapping fields
877  Hooks::run( 'SearchIndexFields', [ &$fields, $this ] );
878  return $fields;
879  }
880 
886  public function augmentSearchResults( SearchResultSet $resultSet ) {
887  $setAugmentors = [];
888  $rowAugmentors = [];
889  Hooks::run( "SearchResultsAugment", [ &$setAugmentors, &$rowAugmentors ] );
890  if ( !$setAugmentors && !$rowAugmentors ) {
891  // We're done here
892  return;
893  }
894 
895  // Convert row augmentors to set augmentor
896  foreach ( $rowAugmentors as $name => $row ) {
897  if ( isset( $setAugmentors[$name] ) ) {
898  throw new InvalidArgumentException( "Both row and set augmentors are defined for $name" );
899  }
900  $setAugmentors[$name] = new PerRowAugmentor( $row );
901  }
902 
903  foreach ( $setAugmentors as $name => $augmentor ) {
904  $data = $augmentor->augmentAll( $resultSet );
905  if ( $data ) {
906  $resultSet->setAugmentedData( $name, $data );
907  }
908  }
909  }
910 }
911 
919  // no-op
920 }
SearchEngine\legalSearchChars
static legalSearchChars( $type=self::CHARS_ALL)
Get chars legal for search NOTE: usage as static is deprecated and preserved only as BC measure.
Definition: SearchEngine.php:303
SearchEngine\$showSuggestion
bool $showSuggestion
Definition: SearchEngine.php:53
SearchSuggestionSet\fromStrings
static fromStrings(array $titles, $hasMoreResults=false)
Builds a new set of suggestion based on a string array.
Definition: SearchSuggestionSet.php:227
SearchEngine\getSearchIndexFields
getSearchIndexFields()
Get fields for search index.
Definition: SearchEngine.php:844
SearchEngine\getProfiles
getProfiles( $profileType, User $user=null)
Get a list of supported profiles.
Definition: SearchEngine.php:823
ContentHandler\getForModelID
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
Definition: ContentHandler.php:297
SearchEngine\augmentSearchResults
augmentSearchResults(SearchResultSet $resultSet)
Augment search results with extra data.
Definition: SearchEngine.php:886
$user
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
Definition: hooks.txt:244
$rowAugmentors
the value to return A Title object or null for latest all implement SearchIndexField must implement ResultSetAugmentor & $rowAugmentors
Definition: hooks.txt:2938
SearchSuggestionSet\map
map( $callback)
Call array_map on the suggestions array.
Definition: SearchSuggestionSet.php:86
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:280
$term
For QUnit the mediawiki tests qunit testrunner dependency will be added to any module whereas SearchGetNearMatch runs after $term
Definition: hooks.txt:2891
SearchEngine\supports
supports( $feature)
Definition: SearchEngine.php:194
SearchEngine\setFeatureData
setFeatureData( $feature, $data)
Way to pass custom data for engines.
Definition: SearchEngine.php:210
SearchEngine\$limit
int $limit
Definition: SearchEngine.php:44
SearchEngine\getValidSorts
getValidSorts()
Get the valid sort directions.
Definition: SearchEngine.php:356
SearchEngine\$sort
$sort
Definition: SearchEngine.php:54
SearchEngine\completionSearchWithVariants
completionSearchWithVariants( $search)
Perform a completion search with variants.
Definition: SearchEngine.php:618
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:34
TitlePrefixSearch
Performs prefix search, returning Title objects.
Definition: PrefixSearch.php:334
captcha-old.count
count
Definition: captcha-old.py:249
SearchEngine\searchableNamespaces
static searchableNamespaces()
Make a list of searchable namespaces and their canonical names.
Definition: SearchEngine.php:752
SearchEngine\normalizeText
normalizeText( $string)
When overridden in derived class, performs database-specific conversions on text to be used for searc...
Definition: SearchEngine.php:236
SearchEngine\getSort
getSort()
Get the sort direction of the search results.
Definition: SearchEngine.php:382
SearchEngine\$namespaces
int[] null $namespaces
Definition: SearchEngine.php:41
SearchEngine\searchTitle
searchTitle( $term)
Perform a title-only search query and return a result set.
Definition: SearchEngine.php:138
SearchEngine\userHighlightPrefs
static userHighlightPrefs()
Find snippet highlight settings for all users.
Definition: SearchEngine.php:473
SearchEngine\FT_QUERY_INDEP_PROFILE_TYPE
const FT_QUERY_INDEP_PROFILE_TYPE
@const string profile type for query independent ranking features
Definition: SearchEngine.php:63
SearchEngine\completionSearchBackend
completionSearchBackend( $search)
Perform a completion search.
Definition: SearchEngine.php:579
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 function
Definition: injection.txt:30
SearchSuggestionSet\prepend
prepend(SearchSuggestion $suggestion)
Add a new suggestion at the top.
Definition: SearchSuggestionSet.php:148
SearchEngine\parseNamespacePrefixes
static parseNamespacePrefixes( $query, $withAllKeyword=true, $withPrefixSearchExtractNamespaceHook=false)
Parse some common prefixes: all (search everything) or namespace names.
Definition: SearchEngine.php:414
SearchEngine\doSearchTitle
doSearchTitle( $term)
Perform a title-only search query and return a result set.
Definition: SearchEngine.php:151
SearchEngine\completionSearchBackendOverfetch
completionSearchBackendOverfetch( $search)
Perform an overfetch of completion search results.
Definition: SearchEngine.php:563
SearchEngine\defaultNamespaces
static defaultNamespaces()
An array of namespaces indexes to be searched by default.
Definition: SearchEngine.php:772
php
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
Definition: injection.txt:35
SearchEngine\replacePrefixes
replacePrefixes( $query)
Parse some common prefixes: all (search everything) or namespace names and set the list of namespaces...
Definition: SearchEngine.php:395
SearchSuggestion\fromTitle
static fromTitle( $score, Title $title)
Create suggestion from Title.
Definition: SearchSuggestion.php:166
SearchEngine\DEFAULT_SORT
const DEFAULT_SORT
Definition: SearchEngine.php:35
SearchEngine\defaultPrefixSearch
defaultPrefixSearch( $search)
Simple prefix search for subpages.
Definition: SearchEngine.php:726
SearchEngine\COMPLETION_PROFILE_TYPE
const COMPLETION_PROFILE_TYPE
@const string profile type for completionSearch
Definition: SearchEngine.php:60
Status
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition: Status.php:40
NS_MAIN
const NS_MAIN
Definition: Defines.php:64
StatusValue\getValue
getValue()
Definition: StatusValue.php:137
SearchEngine\textAlreadyUpdatedForIndex
textAlreadyUpdatedForIndex()
If an implementation of SearchEngine handles all of its own text processing in getTextFromContent() a...
Definition: SearchEngine.php:537
SearchSuggestionSet\fromTitles
static fromTitles(array $titles, $hasMoreResults=false)
Builds a new set of suggestion based on a title array.
Definition: SearchSuggestionSet.php:210
$query
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
Definition: hooks.txt:1627
Config
Interface for configuration instances.
Definition: Config.php:28
NS_SPECIAL
const NS_SPECIAL
Definition: Defines.php:53
SearchEngine\setSort
setSort( $sort)
Set the sort direction of the search results.
Definition: SearchEngine.php:368
SearchExactMatchRescorer
An utility class to rescore search results by looking for an exact match in the db and add the page f...
Definition: SearchExactMatchRescorer.php:31
namespaces
to move a page</td >< td > &*You are moving the page across namespaces
Definition: All_system_messages.txt:2670
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
SearchNearMatcher
Implementation of near match title search.
Definition: SearchNearMatcher.php:7
SearchEngine\$offset
int $offset
Definition: SearchEngine.php:47
ContentHandler\getContentModels
static getContentModels()
Definition: ContentHandler.php:372
SearchEngine\CHARS_NO_SYNTAX
const CHARS_NO_SYNTAX
@const int flag for legalSearchChars: includes all chars allowed in a search term
Definition: SearchEngine.php:69
SearchEngine\getNearMatcher
getNearMatcher(Config $config)
Get service class to finding near matches.
Definition: SearchEngine.php:259
SearchEngine\searchText
searchText( $term)
Perform a full text search query and return a result set.
Definition: SearchEngine.php:81
use
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
Definition: MIT-LICENSE.txt:10
SearchSuggestion
Search suggestion.
Definition: SearchSuggestion.php:25
PaginatingSearchEngine
Marker class for search engines that can handle their own pagination, by reporting in their SearchRes...
Definition: PaginatingSearchEngine.php:11
SearchResultSet
Definition: SearchResultSet.php:27
array
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))
SearchEngine\$prefix
string $prefix
Definition: SearchEngine.php:38
SearchEngine\updateTitle
updateTitle( $id, $title)
Update a search index record's title only.
Definition: SearchEngine.php:500
SearchEngine\setNamespaces
setNamespaces( $namespaces)
Set which namespaces the search should include.
Definition: SearchEngine.php:325
SearchSuggestionSet\filter
filter( $callback)
Filter the suggestions array.
Definition: SearchSuggestionSet.php:96
SearchEngine\maybePaginate
maybePaginate(Closure $fn)
Performs an overfetch and shrink operation to determine if the next page is available for search engi...
Definition: SearchEngine.php:163
SearchEngine\update
update( $id, $title, $text)
Create or update the search index record for the given page.
Definition: SearchEngine.php:488
SearchResultSet\setAugmentedData
setAugmentedData( $name, $data)
Sets augmented data for result set.
Definition: SearchResultSet.php:325
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2213
SearchEngine\getNearMatchResultSet
static getNearMatchResultSet( $searchterm)
Do a near match (see SearchEngine::getNearMatch) and wrap it into a SearchResultSet.
Definition: SearchEngine.php:292
SearchEngine\getTextFromContent
getTextFromContent(Title $t, Content $c=null)
Get the raw text for updating the index from a content object Nicer search backends could possibly do...
Definition: SearchEngine.php:526
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:81
SearchSuggestionSet\shrink
shrink( $limit)
Remove any extra elements in the suggestions set.
Definition: SearchSuggestionSet.php:193
SearchEngine\transformSearchTerm
transformSearchTerm( $term)
Transform search term in cases when parts of the query came as different GET params (when supported),...
Definition: SearchEngine.php:250
SearchEngine\normalizeNamespaces
normalizeNamespaces( $search)
Makes search simple string if it was namespaced.
Definition: SearchEngine.php:547
SearchSuggestionSet\rescore
rescore( $key)
Move the suggestion at index $key to the first position.
Definition: SearchSuggestionSet.php:137
SearchEngine\setShowSuggestion
setShowSuggestion( $showSuggestion)
Set whether the searcher should try to build a suggestion.
Definition: SearchEngine.php:345
$handler
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
Definition: hooks.txt:813
SearchEngine\doSearchArchiveTitle
doSearchArchiveTitle( $term)
Perform a title search in the article archive.
Definition: SearchEngine.php:123
SearchSuggestionSet
Search suggestion sets.
Definition: SearchSuggestionSet.php:26
SearchSuggestionSet\emptySuggestionSet
static emptySuggestionSet()
Definition: SearchSuggestionSet.php:238
SearchEngine
Contain a class for special pages.
Definition: SearchEngine.php:34
SearchEngineDummy
Dummy class to be used when non-supported Database engine is present.
Definition: SearchEngine.php:918
SearchEngine\defaultNearMatcher
static defaultNearMatcher()
Get near matcher for default SearchEngine.
Definition: SearchEngine.php:268
Content
Base interface for content objects.
Definition: Content.php:34
SearchEngine\completionSearch
completionSearch( $search)
Perform a completion search.
Definition: SearchEngine.php:604
SearchSuggestion\getSuggestedTitle
getSuggestedTitle()
Title object in the case this suggestion is based on a title.
Definition: SearchSuggestion.php:95
SearchEngine\doSearchText
doSearchText( $term)
Perform a full text search query and return a result set.
Definition: SearchEngine.php:94
PrefixSearch\defaultSearchBackend
defaultSearchBackend( $namespaces, $search, $limit, $offset)
Unless overridden by PrefixSearchBackend hook...
Definition: PrefixSearch.php:254
SearchEngine\makeSearchFieldMapping
makeSearchFieldMapping( $name, $type)
Create a search field definition.
Definition: SearchEngine.php:835
SearchEngine\simplePrefixSearch
simplePrefixSearch( $search)
Call out to simple search backend.
Definition: SearchEngine.php:741
Title
Represents a title within MediaWiki.
Definition: Title.php:39
SearchEngine\getNearMatch
static getNearMatch( $searchterm)
If an exact title match can be found, or a very slightly close match, return the title.
Definition: SearchEngine.php:281
NullIndexField
Null index field - means search engine does not implement this field.
Definition: NullIndexField.php:6
PerRowAugmentor
Perform augmentation of each row and return composite result, indexed by ID.
Definition: PerRowAugmentor.php:7
as
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
Definition: distributors.txt:9
SearchEngine\extractTitles
extractTitles(SearchSuggestionSet $completionResults)
Extract titles from completion results.
Definition: SearchEngine.php:649
SearchEngine\CHARS_ALL
const CHARS_ALL
@const int flag for legalSearchChars: includes all chars allowed in a search query
Definition: SearchEngine.php:66
MWUnknownContentModelException
Exception thrown when an unregistered content model is requested.
Definition: MWUnknownContentModelException.php:10
$t
$t
Definition: testCompression.php:69
$services
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
Definition: hooks.txt:2270
MediaWikiServices
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
Definition: injection.txt:23
wfMessage
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 "&lt
SearchEngine\$features
array $features
Feature values.
Definition: SearchEngine.php:57
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:47
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
SearchEngine\searchArchiveTitle
searchArchiveTitle( $term)
Perform a title search in the article archive.
Definition: SearchEngine.php:112
SearchEngine\create
static create( $type=null)
Load up the appropriate search engine class for the currently active database backend,...
Definition: SearchEngine.php:794
SearchEngine\setLimitOffset
setLimitOffset( $limit, $offset=0)
Set the maximum number of results to return and how many to skip before returning the first.
Definition: SearchEngine.php:314
SearchEngine\getFeatureData
getFeatureData( $feature)
Way to retrieve custom data set by setFeatureData or by the engine itself.
Definition: SearchEngine.php:221
SearchEngine\getSearchTypes
static getSearchTypes()
Return the search engines we support.
Definition: SearchEngine.php:804
SearchEngine\namespacesAsText
static namespacesAsText( $namespaces)
Get a list of namespace names useful for showing in tooltips and preferences.
Definition: SearchEngine.php:783
SearchEngine\userNamespaces
static userNamespaces( $user)
Extract default namespaces to search from the given user's settings, returning a list of index number...
Definition: SearchEngine.php:763
SearchEngine\$searchTerms
array string $searchTerms
Definition: SearchEngine.php:50
SearchEngine\processCompletionResults
processCompletionResults( $search, SearchSuggestionSet $suggestions)
Process completion search results.
Definition: SearchEngine.php:662
$type
$type
Definition: testCompression.php:48