2011-04-24 18:09:07 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* provides an interface to all search providers
|
|
|
|
*/
|
2011-07-29 23:36:03 +04:00
|
|
|
class OC_Search{
|
2011-04-24 18:09:07 +04:00
|
|
|
static private $providers=array();
|
2012-04-14 13:29:44 +04:00
|
|
|
static private $registeredProviders=array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* remove all registered search providers
|
|
|
|
*/
|
|
|
|
public static function clearProviders(){
|
|
|
|
self::$providers=array();
|
|
|
|
self::$registeredProviders=array();
|
|
|
|
}
|
2011-04-24 18:09:07 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* register a new search provider to be used
|
2012-03-02 01:58:44 +04:00
|
|
|
* @param string $provider class name of a OC_Search_Provider
|
2011-04-24 18:09:07 +04:00
|
|
|
*/
|
2012-04-14 13:29:44 +04:00
|
|
|
public static function registerProvider($class,$options=array()){
|
|
|
|
self::$registeredProviders[]=array('class'=>$class,'options'=>$options);
|
2011-04-24 18:09:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* search all provider for $query
|
|
|
|
* @param string query
|
2011-07-29 23:03:53 +04:00
|
|
|
* @return array An array of OC_Search_Result's
|
2011-04-24 18:09:07 +04:00
|
|
|
*/
|
|
|
|
public static function search($query){
|
2012-04-14 13:29:44 +04:00
|
|
|
self::initProviders();
|
2011-04-24 18:09:07 +04:00
|
|
|
$results=array();
|
|
|
|
foreach(self::$providers as $provider){
|
2012-04-14 13:29:44 +04:00
|
|
|
$results=array_merge($results, $provider->search($query));
|
2011-04-24 18:09:07 +04:00
|
|
|
}
|
|
|
|
return $results;
|
|
|
|
}
|
2012-04-14 13:29:44 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
}
|
|
|
|
}
|
2011-04-24 18:09:07 +04:00
|
|
|
}
|