2011-04-24 18:09:07 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
2012-05-26 21:14:24 +04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-04-24 18:09:07 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-08-23 07:04:06 +04:00
|
|
|
namespace OC;
|
2014-06-06 03:17:02 +04:00
|
|
|
use OCP\Search\Provider;
|
|
|
|
use OCP\ISearch;
|
2011-04-24 18:09:07 +04:00
|
|
|
|
|
|
|
/**
|
2013-08-23 07:04:06 +04:00
|
|
|
* Provide an interface to all search providers
|
2011-04-24 18:09:07 +04:00
|
|
|
*/
|
2014-06-06 03:17:02 +04:00
|
|
|
class Search implements ISearch {
|
2013-08-23 07:04:06 +04:00
|
|
|
|
2014-06-06 03:17:02 +04:00
|
|
|
private $providers = array();
|
|
|
|
private $registeredProviders = array();
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-04-14 13:29:44 +04:00
|
|
|
/**
|
2013-08-23 07:04:06 +04:00
|
|
|
* Search all providers for $query
|
2014-06-05 21:35:24 +04:00
|
|
|
* @param string $query
|
2014-12-02 19:31:04 +03:00
|
|
|
* @param string[] $inApps optionally limit results to the given apps
|
2013-08-23 07:04:06 +04:00
|
|
|
* @return array An array of OC\Search\Result's
|
2011-04-24 18:09:07 +04:00
|
|
|
*/
|
2014-12-02 19:31:04 +03:00
|
|
|
public function search($query, array $inApps = array()) {
|
2014-06-06 03:17:02 +04:00
|
|
|
$this->initProviders();
|
|
|
|
$results = array();
|
|
|
|
foreach($this->providers as $provider) {
|
2014-06-05 21:35:24 +04:00
|
|
|
/** @var $provider Provider */
|
2014-12-02 19:31:04 +03:00
|
|
|
if ($provider->providesResultsFor($inApps)) {
|
|
|
|
$results = array_merge($results, $provider->search($query));
|
|
|
|
}
|
2011-04-24 18:09:07 +04:00
|
|
|
}
|
|
|
|
return $results;
|
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-02-01 22:21:54 +04:00
|
|
|
/**
|
2013-08-23 07:04:06 +04:00
|
|
|
* Remove all registered search providers
|
|
|
|
*/
|
2014-06-06 03:17:02 +04:00
|
|
|
public function clearProviders() {
|
2014-12-02 19:31:04 +03:00
|
|
|
$this->providers = array();
|
|
|
|
$this->registeredProviders = array();
|
2013-08-23 07:04:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove one existing search provider
|
|
|
|
* @param string $provider class name of a OC\Search\Provider
|
2013-02-01 22:21:54 +04:00
|
|
|
*/
|
2014-06-06 03:17:02 +04:00
|
|
|
public function removeProvider($provider) {
|
|
|
|
$this->registeredProviders = array_filter(
|
|
|
|
$this->registeredProviders,
|
2013-08-26 16:12:06 +04:00
|
|
|
function ($element) use ($provider) {
|
|
|
|
return ($element['class'] != $provider);
|
|
|
|
}
|
2013-02-01 22:21:54 +04:00
|
|
|
);
|
|
|
|
// force regeneration of providers on next search
|
2014-12-02 19:31:04 +03:00
|
|
|
$this->providers = array();
|
2013-02-01 22:21:54 +04:00
|
|
|
}
|
|
|
|
|
2013-08-23 07:04:06 +04:00
|
|
|
/**
|
|
|
|
* Register a new search provider to search with
|
2014-06-05 21:35:24 +04:00
|
|
|
* @param string $class class name of a OC\Search\Provider
|
|
|
|
* @param array $options optional
|
2013-08-23 07:04:06 +04:00
|
|
|
*/
|
2014-12-02 19:31:04 +03:00
|
|
|
public function registerProvider($class, array $options = array()) {
|
|
|
|
$this->registeredProviders[] = array('class' => $class, 'options' => $options);
|
2013-08-23 07:04:06 +04:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-04-14 13:29:44 +04:00
|
|
|
/**
|
2013-08-23 07:04:06 +04:00
|
|
|
* Create instances of all the registered search providers
|
2012-04-14 13:29:44 +04:00
|
|
|
*/
|
2014-06-06 03:17:02 +04:00
|
|
|
private function initProviders() {
|
2014-12-02 19:31:04 +03:00
|
|
|
if( ! empty($this->providers) ) {
|
2012-04-14 13:29:44 +04:00
|
|
|
return;
|
|
|
|
}
|
2014-06-06 03:17:02 +04:00
|
|
|
foreach($this->registeredProviders as $provider) {
|
|
|
|
$class = $provider['class'];
|
|
|
|
$options = $provider['options'];
|
2014-12-02 19:31:04 +03:00
|
|
|
$this->providers[] = new $class($options);
|
2012-04-14 13:29:44 +04:00
|
|
|
}
|
|
|
|
}
|
2013-08-26 16:12:06 +04:00
|
|
|
|
2011-04-24 18:09:07 +04:00
|
|
|
}
|