X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/membres/fiche.php?a=blobdiff_plain;f=includes%2Fsearch%2FSearchEngine.php;h=d0912c55b20bf6052a740539d3e119b19e1c09ca;hb=c3e549a732b8ed47973a28aa350d3c5b6b96928c;hp=1f64dd4023de473e9de2708f293dcd186ca90c2c;hpb=f2e75982e13aa594e5bb5a276aabbb0b47970708;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/search/SearchEngine.php b/includes/search/SearchEngine.php index 1f64dd4023..d0912c55b2 100644 --- a/includes/search/SearchEngine.php +++ b/includes/search/SearchEngine.php @@ -56,16 +56,16 @@ abstract class SearchEngine { /** @var array Feature values */ protected $features = []; - /** @const string profile type for completionSearch */ + /** Profile type for completionSearch */ const COMPLETION_PROFILE_TYPE = 'completionSearchProfile'; - /** @const string profile type for query independent ranking features */ + /** Profile type for query independent ranking features */ const FT_QUERY_INDEP_PROFILE_TYPE = 'fulltextQueryIndepProfile'; - /** @const int flag for legalSearchChars: includes all chars allowed in a search query */ + /** Integer flag for legalSearchChars: includes all chars allowed in a search query */ const CHARS_ALL = 1; - /** @const int flag for legalSearchChars: includes all chars allowed in a search term */ + /** Integer flag for legalSearchChars: includes all chars allowed in a search term */ const CHARS_NO_SYNTAX = 2; /** @@ -268,17 +268,6 @@ abstract class SearchEngine { return $services->newSearchEngine()->getNearMatcher( $config ); } - /** - * If an exact title match can be found, or a very slightly close match, - * return the title. If no match, returns NULL. - * @deprecated since 1.27; Use SearchEngine::getNearMatcher() - * @param string $searchterm - * @return Title - */ - public static function getNearMatch( $searchterm ) { - return static::defaultNearMatcher()->getNearMatch( $searchterm ); - } - /** * Get chars legal for search * @param int $type type of search chars (see self::CHARS_ALL @@ -310,7 +299,7 @@ abstract class SearchEngine { function setNamespaces( $namespaces ) { if ( $namespaces ) { // Filter namespaces to only keep valid ones - $validNs = $this->searchableNamespaces(); + $validNs = MediaWikiServices::getInstance()->getSearchEngineConfig()->searchableNamespaces(); $namespaces = array_filter( $namespaces, function ( $ns ) use( $validNs ) { return $ns < 0 || isset( $validNs[$ns] ); } ); @@ -729,67 +718,6 @@ abstract class SearchEngine { return $backend->defaultSearchBackend( $this->namespaces, $search, $this->limit, $this->offset ); } - /** - * Make a list of searchable namespaces and their canonical names. - * @deprecated since 1.27; use SearchEngineConfig::searchableNamespaces() - * @return array - */ - public static function searchableNamespaces() { - return MediaWikiServices::getInstance()->getSearchEngineConfig()->searchableNamespaces(); - } - - /** - * Extract default namespaces to search from the given user's - * settings, returning a list of index numbers. - * @deprecated since 1.27; use SearchEngineConfig::userNamespaces() - * @param user $user - * @return array - */ - public static function userNamespaces( $user ) { - return MediaWikiServices::getInstance()->getSearchEngineConfig()->userNamespaces( $user ); - } - - /** - * An array of namespaces indexes to be searched by default - * @deprecated since 1.27; use SearchEngineConfig::defaultNamespaces() - * @return array - */ - public static function defaultNamespaces() { - return MediaWikiServices::getInstance()->getSearchEngineConfig()->defaultNamespaces(); - } - - /** - * Get a list of namespace names useful for showing in tooltips - * and preferences - * @deprecated since 1.27; use SearchEngineConfig::namespacesAsText() - * @param array $namespaces - * @return array - */ - public static function namespacesAsText( $namespaces ) { - return MediaWikiServices::getInstance()->getSearchEngineConfig()->namespacesAsText( $namespaces ); - } - - /** - * Load up the appropriate search engine class for the currently - * active database backend, and return a configured instance. - * @deprecated since 1.27; Use SearchEngineFactory::create - * @param string $type Type of search backend, if not the default - * @return SearchEngine - */ - public static function create( $type = null ) { - return MediaWikiServices::getInstance()->getSearchEngineFactory()->create( $type ); - } - - /** - * Return the search engines we support. If only $wgSearchType - * is set, it'll be an array of just that one item. - * @deprecated since 1.27; use SearchEngineConfig::getSearchTypes() - * @return array - */ - public static function getSearchTypes() { - return MediaWikiServices::getInstance()->getSearchEngineConfig()->getSearchTypes(); - } - /** * Get a list of supported profiles. * Some search engine implementations may expose specific profiles to fine-tune @@ -813,7 +741,7 @@ abstract class SearchEngine { * Create a search field definition. * Specific search engines should override this method to create search fields. * @param string $name - * @param int $type One of the types in SearchIndexField::INDEX_TYPE_* + * @param string $type One of the types in SearchIndexField::INDEX_TYPE_* * @return SearchIndexField * @since 1.28 */