2011-10-03 14:10:15 +02:00
|
|
|
<?php
|
|
|
|
|
2011-10-12 04:27:58 +02:00
|
|
|
function dirfind_init(&$a) {
|
|
|
|
|
|
|
|
require_once('include/contact_widgets.php');
|
|
|
|
|
|
|
|
if(! x($a->page,'aside'))
|
|
|
|
$a->page['aside'] = '';
|
|
|
|
|
|
|
|
$a->page['aside'] .= follow_widget();
|
|
|
|
|
|
|
|
$a->page['aside'] .= findpeople_widget();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-03 14:10:15 +02:00
|
|
|
|
2011-10-12 03:24:37 +02:00
|
|
|
function dirfind_content(&$a) {
|
2011-10-03 14:10:15 +02:00
|
|
|
|
2015-07-30 23:27:50 +02:00
|
|
|
$community = false;
|
|
|
|
|
2015-07-19 18:02:24 +02:00
|
|
|
$local = get_config('system','poco_local_search');
|
2015-07-19 13:23:01 +02:00
|
|
|
|
2011-10-03 23:47:18 +02:00
|
|
|
$search = notags(trim($_REQUEST['search']));
|
2012-05-20 06:53:27 +02:00
|
|
|
|
|
|
|
if(strpos($search,'@') === 0)
|
|
|
|
$search = substr($search,1);
|
2015-07-19 13:23:01 +02:00
|
|
|
|
2015-07-30 23:27:50 +02:00
|
|
|
if(strpos($search,'!') === 0) {
|
|
|
|
$search = substr($search,1);
|
|
|
|
$community = true;
|
|
|
|
}
|
|
|
|
|
2011-10-03 14:10:15 +02:00
|
|
|
$o = '';
|
|
|
|
|
2015-05-30 02:21:30 +02:00
|
|
|
$o .= replace_macros(get_markup_template("section_title.tpl"),array(
|
|
|
|
'$title' => sprintf( t('People Search - %s'), $search)
|
|
|
|
));
|
|
|
|
|
2011-10-03 14:10:15 +02:00
|
|
|
if($search) {
|
2011-10-03 23:47:18 +02:00
|
|
|
|
2015-07-19 13:23:01 +02:00
|
|
|
if ($local) {
|
|
|
|
|
2015-07-30 23:27:50 +02:00
|
|
|
if ($community)
|
|
|
|
$extra_sql = " AND `community`";
|
|
|
|
else
|
|
|
|
$extra_sql = "";
|
|
|
|
|
2015-07-19 13:23:01 +02:00
|
|
|
$perpage = 80;
|
|
|
|
$startrec = (($a->pager['page']) * $perpage) - $perpage;
|
|
|
|
|
|
|
|
$count = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `network` IN ('%s', '%s', '%s') AND
|
|
|
|
(`url` REGEXP '%s' OR `name` REGEXP '%s' OR `location` REGEXP '%s' OR
|
2015-07-30 23:27:50 +02:00
|
|
|
`about` REGEXP '%s' OR `keywords` REGEXP '%s')".$extra_sql,
|
2015-07-19 13:23:01 +02:00
|
|
|
dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA),
|
|
|
|
dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)),
|
|
|
|
dbesc(escape_tags($search)), dbesc(escape_tags($search)));
|
|
|
|
|
2015-07-19 18:02:24 +02:00
|
|
|
$results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`keywords`
|
|
|
|
FROM `gcontact`
|
|
|
|
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d
|
2015-07-23 22:21:22 +02:00
|
|
|
WHERE `gcontact`.`network` IN ('%s', '%s', '%s') AND
|
|
|
|
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)) AND
|
2015-07-19 18:02:24 +02:00
|
|
|
(`gcontact`.`url` REGEXP '%s' OR `gcontact`.`name` REGEXP '%s' OR `gcontact`.`location` REGEXP '%s' OR
|
2015-07-30 23:27:50 +02:00
|
|
|
`gcontact`.`about` REGEXP '%s' OR `gcontact`.`keywords` REGEXP '%s') $extra_sql
|
2015-07-19 18:02:24 +02:00
|
|
|
GROUP BY `gcontact`.`nurl`
|
|
|
|
ORDER BY `gcontact`.`updated` DESC LIMIT %d, %d",
|
|
|
|
intval(local_user()), dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA),
|
2015-07-19 13:23:01 +02:00
|
|
|
dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)),
|
|
|
|
dbesc(escape_tags($search)), dbesc(escape_tags($search)),
|
|
|
|
intval($startrec), intval($perpage));
|
|
|
|
$j = new stdClass();
|
|
|
|
$j->total = $count[0]["total"];
|
|
|
|
$j->items_page = $perpage;
|
|
|
|
$j->page = $a->pager['page'];
|
|
|
|
foreach ($results AS $result) {
|
|
|
|
if ($result["name"] == "") {
|
|
|
|
$urlparts = parse_url($result["url"]);
|
|
|
|
$result["name"] = end(explode("/", $urlparts["path"]));
|
|
|
|
}
|
|
|
|
|
|
|
|
$objresult = new stdClass();
|
2015-07-19 18:02:24 +02:00
|
|
|
$objresult->cid = $result["cid"];
|
2015-07-19 13:23:01 +02:00
|
|
|
$objresult->name = $result["name"];
|
|
|
|
$objresult->url = $result["url"];
|
|
|
|
$objresult->photo = $result["photo"];
|
|
|
|
$objresult->tags = $result["keywords"];
|
|
|
|
|
|
|
|
$j->results[] = $objresult;
|
|
|
|
}
|
2015-07-19 18:02:24 +02:00
|
|
|
|
|
|
|
// Add found profiles from the global directory to the local directory
|
|
|
|
proc_run('php','include/discover_poco.php', "dirsearch", urlencode($search));
|
2015-07-19 13:23:01 +02:00
|
|
|
} else {
|
|
|
|
|
|
|
|
$p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
|
2011-10-03 23:47:18 +02:00
|
|
|
|
2015-07-19 13:23:01 +02:00
|
|
|
if(strlen(get_config('system','directory_submit_url')))
|
|
|
|
$x = fetch_url('http://dir.friendica.com/lsearch?f=' . $p . '&search=' . urlencode($search));
|
2011-10-03 14:10:15 +02:00
|
|
|
|
2015-07-19 13:23:01 +02:00
|
|
|
$j = json_decode($x);
|
|
|
|
}
|
2011-10-03 14:10:15 +02:00
|
|
|
|
|
|
|
if($j->total) {
|
|
|
|
$a->set_pager_total($j->total);
|
|
|
|
$a->set_pager_itemspage($j->items_page);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(count($j->results)) {
|
2015-07-19 13:23:01 +02:00
|
|
|
|
2011-10-03 14:10:15 +02:00
|
|
|
$tpl = get_markup_template('match.tpl');
|
|
|
|
foreach($j->results as $jj) {
|
2015-07-19 13:23:01 +02:00
|
|
|
|
2015-07-19 18:02:24 +02:00
|
|
|
// If We already know this contact then don't show the "connect" button
|
|
|
|
if ($jj->cid > 0) {
|
|
|
|
$connlnk = "";
|
|
|
|
$conntxt = "";
|
|
|
|
} else {
|
|
|
|
$connlnk = $a->get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url);
|
|
|
|
$conntxt = t('Connect');
|
|
|
|
}
|
|
|
|
|
2011-10-03 14:10:15 +02:00
|
|
|
$o .= replace_macros($tpl,array(
|
2012-03-30 07:20:14 +02:00
|
|
|
'$url' => zrl($jj->url),
|
2011-10-03 14:10:15 +02:00
|
|
|
'$name' => $jj->name,
|
2015-07-19 13:23:01 +02:00
|
|
|
'$photo' => proxy_url($jj->photo),
|
2015-07-19 18:02:24 +02:00
|
|
|
'$tags' => $jj->tags,
|
|
|
|
'$conntxt' => $conntxt,
|
|
|
|
'$connlnk' => $connlnk,
|
2011-10-03 14:10:15 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
info( t('No matches') . EOL);
|
2015-07-19 13:23:01 +02:00
|
|
|
}
|
2011-10-03 14:10:15 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '<div class="clear"></div>';
|
|
|
|
$o .= paginate($a);
|
|
|
|
return $o;
|
|
|
|
}
|