MediaWiki
1.30.0
|
Public Member Functions | |
__construct ( $containedSyntax=false) | |
augmentResult (SearchResult $result) | |
Returns extra data for specific result and store it in SearchResult object. More... | |
extractResults () | |
Extract all the results in the result set as array. More... | |
extractTitles () | |
Extract all the titles in the result set. More... | |
free () | |
Frees the result set, if applicable. More... | |
getInterwikiResults ( $type=self::SECONDARY_RESULTS) | |
Return a result set of hits on other (multiple) wikis associated with this one. More... | |
getOffset () | |
getQueryAfterRewrite () | |
getQueryAfterRewriteSnippet () | |
getSuggestionQuery () | |
getSuggestionSnippet () | |
getTotalHits () | |
Some search modes return a total hit count for the query in the entire article database. More... | |
hasInterwikiResults ( $type=self::SECONDARY_RESULTS) | |
Check if there are results on other wikis. More... | |
hasRewrittenQuery () | |
Some search modes will run an alternative query that it thinks gives a better result than the provided search. More... | |
hasSuggestion () | |
Some search modes return a suggested alternate term if there are no exact hits. More... | |
next () | |
Fetches next search result, or false. More... | |
numRows () | |
rewind () | |
Rewind result set back to beginning. More... | |
searchContainedSyntax () | |
Did the search contain search syntax? If so, Special:Search won't offer the user a link to a create a page named by the search string because the name would contain the search syntax. More... | |
setAugmentedData ( $name, $data) | |
Sets augmented data for result set. More... | |
termMatches () | |
Fetch an array of regular expression fragments for matching the search terms as parsed by this engine in a text extract. More... | |
Protected Attributes | |
$containedSyntax = false | |
Types of interwiki results. More... | |
array[] | $extraData = [] |
Set of result's extra data, indexed per result id and then per data item name. More... | |
Private Attributes | |
SearchResult[] | $results |
Cache of results - serialization of the result iterator as an array. More... | |
Title[] | $titles |
Cache of titles. More... | |
Definition at line 27 of file SearchResultSet.php.
SearchResultSet::__construct | ( | $containedSyntax = false | ) |
Reimplemented in SearchNearMatchResultSet.
Definition at line 68 of file SearchResultSet.php.
References $containedSyntax.
SearchResultSet::augmentResult | ( | SearchResult | $result | ) |
Returns extra data for specific result and store it in SearchResult object.
SearchResult | $result |
Definition at line 261 of file SearchResultSet.php.
SearchResultSet::extractResults | ( | ) |
Extract all the results in the result set as array.
Definition at line 209 of file SearchResultSet.php.
References $results, next(), numRows(), and rewind().
Referenced by PerRowAugmentor\augmentAll(), and extractTitles().
SearchResultSet::extractTitles | ( | ) |
Extract all the titles in the result set.
Definition at line 229 of file SearchResultSet.php.
References $titles, extractResults(), and numRows().
Referenced by AugmentPageProps\augmentAll().
SearchResultSet::free | ( | ) |
Frees the result set, if applicable.
Reimplemented in SqlSearchResultSet.
Definition at line 191 of file SearchResultSet.php.
SearchResultSet::getInterwikiResults | ( | $type = self::SECONDARY_RESULTS | ) |
Return a result set of hits on other (multiple) wikis associated with this one.
int | $type |
Definition at line 158 of file SearchResultSet.php.
SearchResultSet::getOffset | ( | ) |
Definition at line 276 of file SearchResultSet.php.
SearchResultSet::getQueryAfterRewrite | ( | ) |
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 116 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\rewrittenHtml().
SearchResultSet::getQueryAfterRewriteSnippet | ( | ) |
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 124 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\rewrittenHtml().
SearchResultSet::getSuggestionQuery | ( | ) |
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 141 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\suggestionHtml().
SearchResultSet::getSuggestionSnippet | ( | ) |
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 148 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\suggestionHtml().
SearchResultSet::getTotalHits | ( | ) |
Some search modes return a total hit count for the query in the entire article database.
This may include pages in namespaces that would not be matched on the given settings.
Return null if no total hits number is supported.
Reimplemented in SpecialSearchTestMockResultSet, and SqlSearchResultSet.
Definition at line 97 of file SearchResultSet.php.
SearchResultSet::hasInterwikiResults | ( | $type = self::SECONDARY_RESULTS | ) |
Check if there are results on other wikis.
int | $type |
Definition at line 168 of file SearchResultSet.php.
SearchResultSet::hasRewrittenQuery | ( | ) |
Some search modes will run an alternative query that it thinks gives a better result than the provided search.
Returns true if this has occured.
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 108 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\render().
SearchResultSet::hasSuggestion | ( | ) |
Some search modes return a suggested alternate term if there are no exact hits.
Returns true if there is one on this set.
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 134 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\render().
SearchResultSet::next | ( | ) |
Fetches next search result, or false.
STUB FIXME: refactor as iterator, so we could use nicer interfaces.
Reimplemented in SqlSearchResultSet, and SearchNearMatchResultSet.
Definition at line 178 of file SearchResultSet.php.
Referenced by SearchEngineTest\addAugmentors(), extractResults(), and MediaWiki\Widget\Search\BasicSearchResultSetWidget\renderResultSet().
SearchResultSet::numRows | ( | ) |
Reimplemented in SpecialSearchTestMockResultSet, SqlSearchResultSet, and SearchNearMatchResultSet.
Definition at line 83 of file SearchResultSet.php.
Referenced by extractResults(), and extractTitles().
SearchResultSet::rewind | ( | ) |
Rewind result set back to beginning.
Reimplemented in SqlSearchResultSet, and SearchNearMatchResultSet.
Definition at line 185 of file SearchResultSet.php.
Referenced by SearchEngineTest\addAugmentors(), and extractResults().
SearchResultSet::searchContainedSyntax | ( | ) |
Did the search contain search syntax? If so, Special:Search won't offer the user a link to a create a page named by the search string because the name would contain the search syntax.
Definition at line 201 of file SearchResultSet.php.
References $containedSyntax.
SearchResultSet::setAugmentedData | ( | $name, | |
$data | |||
) |
Sets augmented data for result set.
string | $name | Extra data item name |
array[] | $data | Extra data as PAGEID => data |
Definition at line 250 of file SearchResultSet.php.
Referenced by SearchEngine\augmentSearchResults().
SearchResultSet::termMatches | ( | ) |
Fetch an array of regular expression fragments for matching the search terms as parsed by this engine in a text extract.
STUB
Reimplemented in SqlSearchResultSet.
Definition at line 79 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\BasicSearchResultSetWidget\renderResultSet().
|
protected |
Types of interwiki results.
Definition at line 43 of file SearchResultSet.php.
Referenced by __construct(), SpecialSearchTestMockResultSet\__construct(), and searchContainedSyntax().
|
protected |
Set of result's extra data, indexed per result id and then per data item name.
The structure is: PAGE_ID => [ augmentor name => data, ... ]
Definition at line 66 of file SearchResultSet.php.
|
private |
Cache of results - serialization of the result iterator as an array.
Definition at line 57 of file SearchResultSet.php.
Referenced by extractResults().
|
private |
Cache of titles.
Lists titles of the result set, in the same order as results.
Definition at line 50 of file SearchResultSet.php.
Referenced by extractTitles().