[ augmentor name => data, ... ] * @var array[] */ protected $extraData = []; public function __construct( $containedSyntax = false ) { $this->containedSyntax = $containedSyntax; } /** * Fetch an array of regular expression fragments for matching * the search terms as parsed by this engine in a text extract. * STUB * * @return array */ function termMatches() { return []; } function numRows() { return 0; } /** * 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. * * @return int */ function getTotalHits() { return null; } /** * 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. * * @return bool */ function hasRewrittenQuery() { return false; } /** * @return string|null The search the query was internally rewritten to, * or null when the result of the original query was returned. */ function getQueryAfterRewrite() { return null; } /** * @return string|null Same as self::getQueryAfterRewrite(), but in HTML * and with changes highlighted. Null when the query was not rewritten. */ function getQueryAfterRewriteSnippet() { return null; } /** * Some search modes return a suggested alternate term if there are * no exact hits. Returns true if there is one on this set. * * @return bool */ function hasSuggestion() { return false; } /** * @return string|null Suggested query, null if none */ function getSuggestionQuery() { return null; } /** * @return string HTML highlighted suggested query, '' if none */ function getSuggestionSnippet() { return ''; } /** * Return a result set of hits on other (multiple) wikis associated with this one * * @param int $type * @return SearchResultSet[] */ function getInterwikiResults( $type = self::SECONDARY_RESULTS ) { return null; } /** * Check if there are results on other wikis * * @param int $type * @return bool */ function hasInterwikiResults( $type = self::SECONDARY_RESULTS ) { return false; } /** * Fetches next search result, or false. * STUB * FIXME: refactor as iterator, so we could use nicer interfaces. * @return SearchResult|false */ function next() { return false; } /** * Rewind result set back to beginning */ function rewind() { } /** * Frees the result set, if applicable. */ function free() { // ... } /** * 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. * @return bool */ public function searchContainedSyntax() { return $this->containedSyntax; } /** * Extract all the results in the result set as array. * @return SearchResult[] */ public function extractResults() { if ( is_null( $this->results ) ) { $this->results = []; if ( $this->numRows() == 0 ) { // Don't bother if we've got empty result return $this->results; } $this->rewind(); while ( ( $result = $this->next() ) != false ) { $this->results[] = $result; } $this->rewind(); } return $this->results; } /** * Extract all the titles in the result set. * @return Title[] */ public function extractTitles() { if ( is_null( $this->titles ) ) { if ( $this->numRows() == 0 ) { // Don't bother if we've got empty result $this->titles = []; } else { $this->titles = array_map( function ( SearchResult $result ) { return $result->getTitle(); }, $this->extractResults() ); } } return $this->titles; } /** * Sets augmented data for result set. * @param string $name Extra data item name * @param array[] $data Extra data as PAGEID => data */ public function setAugmentedData( $name, $data ) { foreach ( $data as $id => $resultData ) { $this->extraData[$id][$name] = $resultData; } } /** * Returns extra data for specific result and store it in SearchResult object. * @param SearchResult $result * @return array|null List of data as name => value or null if none present. */ public function augmentResult( SearchResult $result ) { $id = $result->getTitle()->getArticleID(); if ( !$id || !isset( $this->extraData[$id] ) ) { return null; } $result->setExtensionData( $this->extraData[$id] ); return $this->extraData[$id]; } /** * @return int|null The offset the current page starts at. Typically * this should be null to allow the UI to decide on its own, but in * special cases like interleaved AB tests specifying explicitly is * necessary. */ public function getOffset() { return null; } }