2011-04-24 18:09:07 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Andrew Brown <andrew@casabrown.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2011-04-24 18:09:07 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2011-04-24 18:09:07 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2011-04-24 18:09:07 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-04-24 18:09:07 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2011-04-24 18:09:07 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2011-04-24 18:09:07 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-08-23 07:04:06 +04:00
|
|
|
namespace OC;
|
2014-12-11 14:58:22 +03:00
|
|
|
use OCP\Search\PagedProvider;
|
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
|
|
|
|
2014-12-11 14:58:22 +03:00
|
|
|
/**
|
|
|
|
* Search all providers for $query
|
|
|
|
* @param string $query
|
2014-12-17 20:49:39 +03:00
|
|
|
* @param string[] $inApps optionally limit results to the given apps
|
|
|
|
* @param int $page pages start at page 1
|
2014-12-11 14:58:22 +03:00
|
|
|
* @param int $size, 0 = all
|
|
|
|
* @return array An array of OC\Search\Result's
|
|
|
|
*/
|
2014-12-17 20:49:39 +03:00
|
|
|
public function searchPaged($query, array $inApps = array(), $page = 1, $size = 30) {
|
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-11 14:58:22 +03:00
|
|
|
if ( ! $provider->providesResultsFor($inApps) ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ($provider instanceof PagedProvider) {
|
|
|
|
$results = array_merge($results, $provider->searchPaged($query, $page, $size));
|
|
|
|
} else if ($provider instanceof Provider) {
|
|
|
|
$providerResults = $provider->search($query);
|
|
|
|
if ($size > 0) {
|
2014-12-17 20:49:39 +03:00
|
|
|
$slicedResults = array_slice($providerResults, ($page - 1) * $size, $size);
|
2014-12-11 18:23:39 +03:00
|
|
|
$results = array_merge($results, $slicedResults);
|
|
|
|
} else {
|
|
|
|
$results = array_merge($results, $providerResults);
|
2014-12-11 14:58:22 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
\OC::$server->getLogger()->warning('Ignoring Unknown search provider', array('provider' => $provider));
|
2014-12-02 19:31:04 +03:00
|
|
|
}
|
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
|
|
|
}
|