From 9c9dc276b7a1d2592c4fb0a887888632dc1f1e29 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 25 Sep 2013 13:36:30 +0200 Subject: move the private namespace OC into lib/private - OCP will stay in lib/public Conflicts: lib/private/vcategories.php --- lib/private/search.php | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 lib/private/search.php (limited to 'lib/private/search.php') diff --git a/lib/private/search.php b/lib/private/search.php new file mode 100644 index 00000000000..b9c75dfc333 --- /dev/null +++ b/lib/private/search.php @@ -0,0 +1,90 @@ +. + * + */ + + +/** + * provides an interface to all search providers + */ +class OC_Search{ + static private $providers=array(); + static private $registeredProviders=array(); + + /** + * remove all registered search providers + */ + public static function clearProviders() { + self::$providers=array(); + self::$registeredProviders=array(); + } + + /** + * register a new search provider to be used + * @param string $provider class name of a OC_Search_Provider + */ + public static function registerProvider($class, $options=array()) { + self::$registeredProviders[]=array('class'=>$class, 'options'=>$options); + } + + /** + * search all provider for $query + * @param string query + * @return array An array of OC_Search_Result's + */ + public static function search($query) { + self::initProviders(); + $results=array(); + foreach(self::$providers as $provider) { + $results=array_merge($results, $provider->search($query)); + } + return $results; + } + + /** + * remove an existing search provider + * @param string $provider class name of a OC_Search_Provider + */ + public static function removeProvider($provider) { + self::$registeredProviders = array_filter( + self::$registeredProviders, + function ($element) use ($provider) { + return ($element['class'] != $provider); + } + ); + // force regeneration of providers on next search + self::$providers=array(); + } + + + /** + * create instances of all the registered search providers + */ + private static function initProviders() { + if(count(self::$providers)>0) { + return; + } + foreach(self::$registeredProviders as $provider) { + $class=$provider['class']; + $options=$provider['options']; + self::$providers[]=new $class($options); + } + } +} -- cgit v1.2.3