2012-01-12 19:06:27 +04:00
|
|
|
<?php
|
2012-04-14 13:29:44 +04:00
|
|
|
class OC_Search_Provider_Contacts extends OC_Search_Provider{
|
|
|
|
function search($query){
|
2012-05-01 20:50:31 +04:00
|
|
|
$addressbooks = OC_Contacts_Addressbook::all(OCP\USER::getUser(), 1);
|
2012-01-12 19:06:27 +04:00
|
|
|
// if(count($calendars)==0 || !OC_App::isEnabled('contacts')){
|
|
|
|
// //return false;
|
|
|
|
// }
|
|
|
|
// NOTE: Does the following do anything
|
|
|
|
$results=array();
|
|
|
|
$searchquery=array();
|
|
|
|
if(substr_count($query, ' ') > 0){
|
|
|
|
$searchquery = explode(' ', $query);
|
|
|
|
}else{
|
|
|
|
$searchquery[] = $query;
|
|
|
|
}
|
|
|
|
$l = new OC_l10n('contacts');
|
|
|
|
foreach($addressbooks as $addressbook){
|
|
|
|
$vcards = OC_Contacts_VCard::all($addressbook['id']);
|
|
|
|
foreach($vcards as $vcard){
|
|
|
|
if(substr_count(strtolower($vcard['fullname']), strtolower($query)) > 0){
|
2012-02-16 22:48:20 +04:00
|
|
|
$link = OC_Helper::linkTo('contacts', 'index.php').'?id='.urlencode($vcard['id']);
|
2012-01-12 19:06:27 +04:00
|
|
|
$results[]=new OC_Search_Result($vcard['fullname'],'', $link,$l->t('Contact'));//$name,$text,$link,$type
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $results;
|
|
|
|
}
|
|
|
|
}
|