MediaWiki REL1_32
|
Search engine hook base class for Mssql (ConText). More...
Public Member Functions | |
getIndexField ( $fulltext) | |
Picks which field to index on, depending on what type of query. | |
queryRanking ( $filteredTerm, $fulltext) | |
Does not do anything for generic search engine subclasses may define this though. | |
update ( $id, $title, $text) | |
Create or update the search index record for the given page. | |
updateTitle ( $id, $title) | |
Update a search index record's title only. | |
Public Member Functions inherited from SearchDatabase | |
__construct (IDatabase $db=null) | |
doSearchText ( $term) | |
doSearchTitle ( $term) | |
Public Member Functions inherited from SearchEngine | |
augmentSearchResults (SearchResultSet $resultSet) | |
Augment search results with extra data. | |
completionSearch ( $search) | |
Perform a completion search. | |
completionSearchWithVariants ( $search) | |
Perform a completion search with variants. | |
defaultPrefixSearch ( $search) | |
Simple prefix search for subpages. | |
delete ( $id, $title) | |
Delete an indexed page Title should be pre-processed. | |
extractTitles (SearchSuggestionSet $completionResults) | |
Extract titles from completion results. | |
getFeatureData ( $feature) | |
Way to retrieve custom data set by setFeatureData or by the engine itself. | |
getNearMatcher (Config $config) | |
Get service class to finding near matches. | |
getProfiles ( $profileType, User $user=null) | |
Get a list of supported profiles. | |
getSearchIndexFields () | |
Get fields for search index. | |
getSort () | |
Get the sort direction of the search results. | |
getTextFromContent (Title $t, Content $c=null) | |
Get the raw text for updating the index from a content object Nicer search backends could possibly do something cooler than just returning raw text. | |
getValidSorts () | |
Get the valid sort directions. | |
makeSearchFieldMapping ( $name, $type) | |
Create a search field definition. | |
normalizeText ( $string) | |
When overridden in derived class, performs database-specific conversions on text to be used for searching or updating search index. | |
replacePrefixes ( $query) | |
Parse some common prefixes: all (search everything) or namespace names and set the list of namespaces of this class accordingly. | |
searchArchiveTitle ( $term) | |
Perform a title search in the article archive. | |
searchText ( $term) | |
Perform a full text search query and return a result set. | |
searchTitle ( $term) | |
Perform a title-only search query and return a result set. | |
setFeatureData ( $feature, $data) | |
Way to pass custom data for engines. | |
setLimitOffset ( $limit, $offset=0) | |
Set the maximum number of results to return and how many to skip before returning the first. | |
setNamespaces ( $namespaces) | |
Set which namespaces the search should include. | |
setShowSuggestion ( $showSuggestion) | |
Set whether the searcher should try to build a suggestion. | |
setSort ( $sort) | |
Set the sort direction of the search results. | |
supports ( $feature) | |
textAlreadyUpdatedForIndex () | |
If an implementation of SearchEngine handles all of its own text processing in getTextFromContent() and doesn't require SearchUpdate::updateText()'s rather silly handling, it should return true here instead. | |
transformSearchTerm ( $term) | |
Transform search term in cases when parts of the query came as different GET params (when supported), e.g. | |
Protected Member Functions | |
doSearchTextInDB ( $term) | |
Perform a full text search query and return a result set. | |
doSearchTitleInDB ( $term) | |
Perform a title-only search query and return a result set. | |
Protected Member Functions inherited from SearchDatabase | |
extractNamespacePrefix ( $term) | |
Extract the optional namespace prefix and set self::namespaces accordingly and return the query string. | |
filter ( $text) | |
Return a 'cleaned up' search string. | |
Protected Member Functions inherited from SearchEngine | |
completionSearchBackend ( $search) | |
Perform a completion search. | |
completionSearchBackendOverfetch ( $search) | |
Perform an overfetch of completion search results. | |
doSearchArchiveTitle ( $term) | |
Perform a title search in the article archive. | |
normalizeNamespaces ( $search) | |
Makes search simple string if it was namespaced. | |
processCompletionResults ( $search, SearchSuggestionSet $suggestions) | |
Process completion search results. | |
simplePrefixSearch ( $search) | |
Call out to simple search backend. | |
Private Member Functions | |
getQuery ( $filteredTerm, $fulltext) | |
Construct the full SQL query to do the search. | |
parseQuery ( $filteredText, $fulltext) | |
queryLimit ( $sql) | |
Return a LIMIT clause to limit results on the query. | |
queryMain ( $filteredTerm, $fulltext) | |
Get the base part of the search query. | |
queryNamespaces () | |
Return a partial WHERE clause to limit the search to the given namespaces. | |
Additional Inherited Members | |
Static Public Member Functions inherited from SearchEngine | |
static | create ( $type=null) |
Load up the appropriate search engine class for the currently active database backend, and return a configured instance. | |
static | defaultNamespaces () |
An array of namespaces indexes to be searched by default. | |
static | getNearMatch ( $searchterm) |
If an exact title match can be found, or a very slightly close match, return the title. | |
static | getNearMatchResultSet ( $searchterm) |
Do a near match (see SearchEngine::getNearMatch) and wrap it into a SearchResultSet. | |
static | getSearchTypes () |
Return the search engines we support. | |
static | legalSearchChars ( $type=self::CHARS_ALL) |
Get chars legal for search NOTE: usage as static is deprecated and preserved only as BC measure. | |
static | namespacesAsText ( $namespaces) |
Get a list of namespace names useful for showing in tooltips and preferences. | |
static | parseNamespacePrefixes ( $query, $withAllKeyword=true, $withPrefixSearchExtractNamespaceHook=false) |
Parse some common prefixes: all (search everything) or namespace names. | |
static | searchableNamespaces () |
Make a list of searchable namespaces and their canonical names. | |
static | userHighlightPrefs () |
Find snippet highlight settings for all users. | |
static | userNamespaces ( $user) |
Extract default namespaces to search from the given user's settings, returning a list of index numbers. | |
Public Attributes inherited from SearchEngine | |
int[] null | $namespaces = [ NS_MAIN ] |
string | $prefix = '' |
const | CHARS_ALL = 1 |
@const int flag for legalSearchChars: includes all chars allowed in a search query | |
const | CHARS_NO_SYNTAX = 2 |
@const int flag for legalSearchChars: includes all chars allowed in a search term | |
const | COMPLETION_PROFILE_TYPE = 'completionSearchProfile' |
@const string profile type for completionSearch | |
const | DEFAULT_SORT = 'relevance' |
const | FT_QUERY_INDEP_PROFILE_TYPE = 'fulltextQueryIndepProfile' |
@const string profile type for query independent ranking features | |
Static Protected Member Functions inherited from SearchEngine | |
static | defaultNearMatcher () |
Get near matcher for default SearchEngine. | |
Protected Attributes inherited from SearchDatabase | |
IDatabase | $db |
Slave database for reading from for results. | |
Protected Attributes inherited from SearchEngine | |
array | $features = [] |
Feature values. | |
int | $limit = 10 |
int | $offset = 0 |
array string | $searchTerms = [] |
bool | $showSuggestion = true |
Search engine hook base class for Mssql (ConText).
Definition at line 31 of file SearchMssql.php.
|
protected |
Perform a full text search query and return a result set.
string | $term | Raw search term |
Reimplemented from SearchDatabase.
Definition at line 38 of file SearchMssql.php.
References $term, SearchDatabase\filter(), and getQuery().
|
protected |
Perform a title-only search query and return a result set.
string | $term | Raw search term |
Reimplemented from SearchDatabase.
Definition at line 49 of file SearchMssql.php.
References $term, SearchDatabase\filter(), and getQuery().
SearchMssql::getIndexField | ( | $fulltext | ) |
Picks which field to index on, depending on what type of query.
bool | $fulltext |
Definition at line 110 of file SearchMssql.php.
Referenced by parseQuery().
|
private |
Construct the full SQL query to do the search.
The guts shoulds be constructed in queryMain()
string | $filteredTerm | |
bool | $fulltext |
Definition at line 98 of file SearchMssql.php.
References queryLimit(), queryMain(), queryNamespaces(), and queryRanking().
Referenced by doSearchTextInDB(), and doSearchTitleInDB().
|
private |
string | $filteredText | |
bool | $fulltext |
Definition at line 136 of file SearchMssql.php.
References as, getIndexField(), and SearchEngine\legalSearchChars().
Referenced by queryMain().
|
private |
Return a LIMIT clause to limit results on the query.
string | $sql |
Definition at line 74 of file SearchMssql.php.
Referenced by getQuery().
|
private |
Get the base part of the search query.
string | $filteredTerm | |
bool | $fulltext |
Definition at line 121 of file SearchMssql.php.
References parseQuery().
Referenced by getQuery().
|
private |
Return a partial WHERE clause to limit the search to the given namespaces.
Definition at line 59 of file SearchMssql.php.
References SearchEngine\$namespaces, and namespaces.
Referenced by getQuery().
SearchMssql::queryRanking | ( | $filteredTerm, | |
$fulltext | |||
) |
Does not do anything for generic search engine subclasses may define this though.
string | $filteredTerm | |
bool | $fulltext |
Definition at line 86 of file SearchMssql.php.
Referenced by getQuery().
SearchMssql::update | ( | $id, | |
$title, | |||
$text | |||
) |
Create or update the search index record for the given page.
Title and text should be pre-processed.
int | $id | |
string | $title | |
string | $text |
Reimplemented from SearchEngine.
Definition at line 176 of file SearchMssql.php.
References $title.
SearchMssql::updateTitle | ( | $id, | |
$title | |||
) |
Update a search index record's title only.
Title should be pre-processed.
int | $id | |
string | $title |
Reimplemented from SearchEngine.
Definition at line 199 of file SearchMssql.php.
References $title.