. * */ namespace OC; use OCP\Search\Provider; use OCP\ISearch; /** * Provide an interface to all search providers */ class Search implements ISearch { private $providers = array(); private $registeredProviders = array(); /** * Search all providers for $query * @param string $query * @return array An array of OC\Search\Result's */ public function search($query) { $this->initProviders(); $results = array(); foreach($this->providers as $provider) { /** @var $provider Provider */ $results = array_merge($results, $provider->search($query)); } return $results; } /** * Remove all registered search providers */ public function clearProviders() { $this->providers=array(); $this->registeredProviders=array(); } /** * Remove one existing search provider * @param string $provider class name of a OC\Search\Provider */ public function removeProvider($provider) { $this->registeredProviders = array_filter( $this->registeredProviders, function ($element) use ($provider) { return ($element['class'] != $provider); } ); // force regeneration of providers on next search $this->providers=array(); } /** * Register a new search provider to search with * @param string $class class name of a OC\Search\Provider * @param array $options optional */ public function registerProvider($class, $options=array()) { $this->registeredProviders[]=array('class'=>$class, 'options'=>$options); } /** * Create instances of all the registered search providers */ private function initProviders() { if(count($this->providers)>0) { return; } foreach($this->registeredProviders as $provider) { $class = $provider['class']; $options = $provider['options']; $this->providers[]=new $class($options); } } }