2016-01-20 03:34:22 +01:00
|
|
|
<?php
|
|
|
|
|
2016-01-24 19:56:23 +01:00
|
|
|
/**
|
|
|
|
* @file include/dir_fns.php
|
|
|
|
*/
|
2016-01-20 03:34:22 +01:00
|
|
|
|
2016-02-01 18:21:29 +01:00
|
|
|
|
2016-01-24 19:56:23 +01:00
|
|
|
/**
|
2016-02-01 18:21:29 +01:00
|
|
|
* @brief This class handels directory related functions
|
2016-01-24 19:56:23 +01:00
|
|
|
*/
|
2016-02-01 18:21:29 +01:00
|
|
|
class dir {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Search global contact table by nick or name
|
|
|
|
* *
|
|
|
|
* @param string $search Name or nick
|
2016-02-02 22:33:14 +01:00
|
|
|
* @param string $mode Search mode
|
2016-02-01 18:21:29 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
2016-02-02 22:33:14 +01:00
|
|
|
public static function global_search_by_name($search, $mode = '') {
|
2016-02-01 18:21:29 +01:00
|
|
|
|
|
|
|
if($search) {
|
|
|
|
// check supported networks
|
|
|
|
if (get_config('system','diaspora_enabled'))
|
|
|
|
$diaspora = NETWORK_DIASPORA;
|
|
|
|
else
|
|
|
|
$diaspora = NETWORK_DFRN;
|
|
|
|
|
|
|
|
if (!get_config('system','ostatus_disabled'))
|
|
|
|
$ostatus = NETWORK_OSTATUS;
|
|
|
|
else
|
|
|
|
$ostatus = NETWORK_DFRN;
|
|
|
|
|
2016-02-02 22:33:14 +01:00
|
|
|
// check if fo
|
|
|
|
if($mode === "community")
|
|
|
|
$extra_sql = " AND `community`";
|
|
|
|
else
|
|
|
|
$extra_sql = "";
|
|
|
|
|
2016-02-01 18:21:29 +01:00
|
|
|
$results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`nick`, `gcontact`.`photo`,
|
|
|
|
`gcontact`.`network`, `gcontact`.`keywords`, `gcontact`.`addr`
|
|
|
|
FROM `gcontact`
|
|
|
|
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl`
|
|
|
|
AND `contact`.`uid` = %d AND NOT `contact`.`blocked`
|
|
|
|
AND NOT `contact`.`pending` AND `contact`.`rel` IN ('%s', '%s')
|
|
|
|
WHERE (`contact`.`id` > 0 OR (NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
|
|
|
|
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)))) AND
|
2016-02-02 22:33:14 +01:00
|
|
|
(`gcontact`.`name` REGEXP '%s' OR `gcontact`.`nick` REGEXP '%s') $extra_sql
|
2016-02-01 18:21:29 +01:00
|
|
|
GROUP BY `gcontact`.`nurl`
|
|
|
|
ORDER BY `gcontact`.`updated` DESC ",
|
|
|
|
intval(local_user()), dbesc(CONTACT_IS_SHARING), dbesc(CONTACT_IS_FRIEND),
|
|
|
|
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
2016-02-02 22:33:14 +01:00
|
|
|
dbesc(escape_tags($search)), dbesc(escape_tags($search)));
|
2016-02-01 18:21:29 +01:00
|
|
|
return $results;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:34:22 +01:00
|
|
|
}
|
2016-02-01 18:21:29 +01:00
|
|
|
}
|