2011-10-03 08:10:15 -04:00
|
|
|
<?php
|
2017-04-30 00:07:00 -04:00
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
|
2017-05-07 17:08:32 -04:00
|
|
|
require_once 'include/contact_widgets.php';
|
|
|
|
require_once 'include/probe.php';
|
|
|
|
require_once 'include/socgraph.php';
|
|
|
|
require_once 'include/Contact.php';
|
|
|
|
require_once 'include/contact_selectors.php';
|
|
|
|
require_once 'mod/contacts.php';
|
2011-10-03 08:10:15 -04:00
|
|
|
|
2017-01-09 07:12:54 -05:00
|
|
|
function dirfind_init(App $a) {
|
2011-10-11 22:27:58 -04:00
|
|
|
|
2016-12-20 05:56:34 -05:00
|
|
|
if (! local_user()) {
|
2015-10-10 10:23:20 -04:00
|
|
|
notice( t('Permission denied.') . EOL );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (! x($a->page,'aside')) {
|
2011-10-11 22:27:58 -04:00
|
|
|
$a->page['aside'] = '';
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2011-10-11 22:27:58 -04:00
|
|
|
|
|
|
|
$a->page['aside'] .= findpeople_widget();
|
2015-10-22 18:12:00 -04:00
|
|
|
|
|
|
|
$a->page['aside'] .= follow_widget();
|
2011-10-11 22:27:58 -04:00
|
|
|
}
|
|
|
|
|
2017-01-09 07:12:54 -05:00
|
|
|
function dirfind_content(App $a, $prefix = "") {
|
2011-10-03 08:10:15 -04:00
|
|
|
|
2015-07-30 17:27:50 -04:00
|
|
|
$community = false;
|
2015-11-08 08:48:47 -05:00
|
|
|
$discover_user = false;
|
2015-07-30 17:27:50 -04:00
|
|
|
|
2015-07-19 12:02:24 -04:00
|
|
|
$local = get_config('system','poco_local_search');
|
2015-07-19 07:23:01 -04:00
|
|
|
|
2015-08-24 05:55:29 -04:00
|
|
|
$search = $prefix.notags(trim($_REQUEST['search']));
|
2012-05-20 00:53:27 -04:00
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (strpos($search,'@') === 0) {
|
2012-05-20 00:53:27 -04:00
|
|
|
$search = substr($search,1);
|
2016-06-10 14:34:25 -04:00
|
|
|
$header = sprintf( t('People Search - %s'), $search);
|
2015-11-08 09:00:52 -05:00
|
|
|
if ((valid_email($search) AND validate_email($search)) OR
|
|
|
|
(substr(normalise_link($search), 0, 7) == "http://")) {
|
2015-11-08 08:48:47 -05:00
|
|
|
$user_data = probe_url($search);
|
|
|
|
$discover_user = (in_array($user_data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)));
|
|
|
|
}
|
|
|
|
}
|
2015-07-19 07:23:01 -04:00
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (strpos($search,'!') === 0) {
|
2015-07-30 17:27:50 -04:00
|
|
|
$search = substr($search,1);
|
|
|
|
$community = true;
|
2016-06-10 14:34:25 -04:00
|
|
|
$header = sprintf( t('Forum Search - %s'), $search);
|
2015-07-30 17:27:50 -04:00
|
|
|
}
|
|
|
|
|
2011-10-03 08:10:15 -04:00
|
|
|
$o = '';
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if ($search) {
|
2011-10-03 17:47:18 -04:00
|
|
|
|
2015-11-08 08:48:47 -05:00
|
|
|
if ($discover_user) {
|
|
|
|
$j = new stdClass();
|
2015-11-08 09:17:08 -05:00
|
|
|
$j->total = 1;
|
2015-11-08 08:48:47 -05:00
|
|
|
$j->items_page = 1;
|
|
|
|
$j->page = $a->pager['page'];
|
|
|
|
|
|
|
|
$objresult = new stdClass();
|
|
|
|
$objresult->cid = 0;
|
|
|
|
$objresult->name = $user_data["name"];
|
|
|
|
$objresult->addr = $user_data["addr"];
|
|
|
|
$objresult->url = $user_data["url"];
|
|
|
|
$objresult->photo = $user_data["photo"];
|
|
|
|
$objresult->tags = "";
|
|
|
|
$objresult->network = $user_data["network"];
|
|
|
|
|
2016-06-12 04:46:15 -04:00
|
|
|
$contact = get_contact_details_by_url($user_data["url"], local_user());
|
|
|
|
$objresult->cid = $contact["cid"];
|
2015-11-08 08:48:47 -05:00
|
|
|
|
|
|
|
$j->results[] = $objresult;
|
|
|
|
|
2016-06-12 04:46:15 -04:00
|
|
|
// Add the contact to the global contacts if it isn't already in our system
|
2017-03-22 03:11:58 -04:00
|
|
|
if (($contact["cid"] == 0) AND ($contact["zid"] == 0) AND ($contact["gid"] == 0)) {
|
|
|
|
update_gcontact($user_data);
|
|
|
|
}
|
2015-11-08 08:48:47 -05:00
|
|
|
} elseif ($local) {
|
2015-07-19 07:23:01 -04:00
|
|
|
|
2015-07-30 17:27:50 -04:00
|
|
|
if ($community)
|
|
|
|
$extra_sql = " AND `community`";
|
|
|
|
else
|
|
|
|
$extra_sql = "";
|
|
|
|
|
2015-07-19 07:23:01 -04:00
|
|
|
$perpage = 80;
|
|
|
|
$startrec = (($a->pager['page']) * $perpage) - $perpage;
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (get_config('system','diaspora_enabled')) {
|
2015-11-01 07:55:49 -05:00
|
|
|
$diaspora = NETWORK_DIASPORA;
|
2016-12-21 17:04:09 -05:00
|
|
|
} else {
|
2015-11-01 07:55:49 -05:00
|
|
|
$diaspora = NETWORK_DFRN;
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2015-11-01 07:55:49 -05:00
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (!get_config('system','ostatus_disabled')) {
|
2015-11-01 07:55:49 -05:00
|
|
|
$ostatus = NETWORK_OSTATUS;
|
2016-12-21 17:04:09 -05:00
|
|
|
} else {
|
2015-11-01 07:55:49 -05:00
|
|
|
$ostatus = NETWORK_DFRN;
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2015-11-01 07:55:49 -05:00
|
|
|
|
2016-04-19 01:27:26 -04:00
|
|
|
$search2 = "%".$search."%";
|
|
|
|
|
2016-12-21 17:04:09 -05:00
|
|
|
/// @TODO These 2 SELECTs are not checked on validity with dbm::is_result()
|
2016-01-06 08:13:59 -05:00
|
|
|
$count = q("SELECT count(*) AS `total` FROM `gcontact`
|
|
|
|
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl`
|
2016-06-12 04:46:15 -04:00
|
|
|
AND `contact`.`network` = `gcontact`.`network`
|
2016-01-06 08:13:59 -05:00
|
|
|
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-04-19 01:27:26 -04:00
|
|
|
(`gcontact`.`url` LIKE '%s' OR `gcontact`.`name` LIKE '%s' OR `gcontact`.`location` LIKE '%s' OR
|
|
|
|
`gcontact`.`addr` LIKE '%s' OR `gcontact`.`about` LIKE '%s' OR `gcontact`.`keywords` LIKE '%s') $extra_sql",
|
2016-01-06 08:13:59 -05:00
|
|
|
intval(local_user()), dbesc(CONTACT_IS_SHARING), dbesc(CONTACT_IS_FRIEND),
|
2015-11-01 07:55:49 -05:00
|
|
|
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
2016-04-19 01:27:26 -04:00
|
|
|
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
|
|
|
|
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)));
|
2015-07-19 07:23:01 -04:00
|
|
|
|
2015-11-05 18:47:54 -05:00
|
|
|
$results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`network`, `gcontact`.`keywords`, `gcontact`.`addr`
|
2015-07-19 12:02:24 -04:00
|
|
|
FROM `gcontact`
|
2015-08-16 09:48:26 -04:00
|
|
|
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl`
|
2016-06-12 04:46:15 -04:00
|
|
|
AND `contact`.`network` = `gcontact`.`network`
|
2015-08-16 09:48:26 -04:00
|
|
|
AND `contact`.`uid` = %d AND NOT `contact`.`blocked`
|
|
|
|
AND NOT `contact`.`pending` AND `contact`.`rel` IN ('%s', '%s')
|
2016-01-06 08:13:59 -05:00
|
|
|
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-04-19 01:27:26 -04:00
|
|
|
(`gcontact`.`url` LIKE '%s' OR `gcontact`.`name` LIKE '%s' OR `gcontact`.`location` LIKE '%s' OR
|
|
|
|
`gcontact`.`addr` LIKE '%s' OR `gcontact`.`about` LIKE '%s' OR `gcontact`.`keywords` LIKE '%s') $extra_sql
|
2015-07-19 12:02:24 -04:00
|
|
|
GROUP BY `gcontact`.`nurl`
|
|
|
|
ORDER BY `gcontact`.`updated` DESC LIMIT %d, %d",
|
2015-08-16 09:48:26 -04:00
|
|
|
intval(local_user()), dbesc(CONTACT_IS_SHARING), dbesc(CONTACT_IS_FRIEND),
|
2015-11-01 07:55:49 -05:00
|
|
|
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
2016-04-19 01:27:26 -04:00
|
|
|
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
|
|
|
|
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
|
2015-07-19 07:23:01 -04:00
|
|
|
intval($startrec), intval($perpage));
|
|
|
|
$j = new stdClass();
|
|
|
|
$j->total = $count[0]["total"];
|
|
|
|
$j->items_page = $perpage;
|
2015-10-27 18:10:52 -04:00
|
|
|
$j->page = $a->pager['page'];
|
2015-07-19 07:23:01 -04:00
|
|
|
foreach ($results AS $result) {
|
2016-12-20 11:43:46 -05:00
|
|
|
if (poco_alternate_ostatus_url($result["url"])) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-08-24 23:31:21 -04:00
|
|
|
|
2016-06-05 16:21:34 -04:00
|
|
|
$result = get_contact_details_by_url($result["url"], local_user(), $result);
|
|
|
|
|
2015-07-19 07:23:01 -04:00
|
|
|
if ($result["name"] == "") {
|
|
|
|
$urlparts = parse_url($result["url"]);
|
|
|
|
$result["name"] = end(explode("/", $urlparts["path"]));
|
|
|
|
}
|
|
|
|
|
|
|
|
$objresult = new stdClass();
|
2015-07-19 12:02:24 -04:00
|
|
|
$objresult->cid = $result["cid"];
|
2015-07-19 07:23:01 -04:00
|
|
|
$objresult->name = $result["name"];
|
2015-11-05 18:47:54 -05:00
|
|
|
$objresult->addr = $result["addr"];
|
2015-07-19 07:23:01 -04:00
|
|
|
$objresult->url = $result["url"];
|
|
|
|
$objresult->photo = $result["photo"];
|
|
|
|
$objresult->tags = $result["keywords"];
|
2015-10-23 10:48:32 -04:00
|
|
|
$objresult->network = $result["network"];
|
2015-07-19 07:23:01 -04:00
|
|
|
|
|
|
|
$j->results[] = $objresult;
|
|
|
|
}
|
2015-07-19 12:02:24 -04:00
|
|
|
|
|
|
|
// Add found profiles from the global directory to the local directory
|
2016-08-01 01:48:43 -04:00
|
|
|
proc_run(PRIORITY_LOW, 'include/discover_poco.php', "dirsearch", urlencode($search));
|
2015-07-19 07:23:01 -04:00
|
|
|
} else {
|
|
|
|
|
|
|
|
$p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
|
2011-10-03 17:47:18 -04:00
|
|
|
|
2017-03-21 12:02:59 -04:00
|
|
|
if(strlen(get_config('system','directory')))
|
2015-08-23 05:05:10 -04:00
|
|
|
$x = fetch_url(get_server().'/lsearch?f=' . $p . '&search=' . urlencode($search));
|
2011-10-03 08:10:15 -04:00
|
|
|
|
2015-07-19 07:23:01 -04:00
|
|
|
$j = json_decode($x);
|
|
|
|
}
|
2011-10-03 08:10:15 -04:00
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if ($j->total) {
|
2011-10-03 08:10:15 -04:00
|
|
|
$a->set_pager_total($j->total);
|
|
|
|
$a->set_pager_itemspage($j->items_page);
|
|
|
|
}
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (count($j->results)) {
|
2015-07-19 07:23:01 -04:00
|
|
|
|
2015-10-05 02:08:59 -04:00
|
|
|
$id = 0;
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
foreach ($j->results as $jj) {
|
2015-07-19 07:23:01 -04:00
|
|
|
|
2015-10-27 18:10:52 -04:00
|
|
|
$alt_text = "";
|
|
|
|
|
2015-11-05 18:47:54 -05:00
|
|
|
$contact_details = get_contact_details_by_url($jj->url, local_user());
|
|
|
|
|
|
|
|
$itemurl = (($contact_details["addr"] != "") ? $contact_details["addr"] : $jj->url);
|
2015-10-27 18:10:52 -04:00
|
|
|
|
2015-07-19 12:02:24 -04:00
|
|
|
// If We already know this contact then don't show the "connect" button
|
|
|
|
if ($jj->cid > 0) {
|
|
|
|
$connlnk = "";
|
|
|
|
$conntxt = "";
|
2015-10-05 02:08:59 -04:00
|
|
|
$contact = q("SELECT * FROM `contact` WHERE `id` = %d",
|
|
|
|
intval($jj->cid));
|
2015-10-27 18:10:52 -04:00
|
|
|
if ($contact) {
|
2015-10-05 02:08:59 -04:00
|
|
|
$photo_menu = contact_photo_menu($contact[0]);
|
2015-10-27 18:10:52 -04:00
|
|
|
$details = _contact_detail_for_template($contact[0]);
|
|
|
|
$alt_text = $details['alt_text'];
|
2016-12-21 17:04:09 -05:00
|
|
|
} else {
|
2015-10-05 02:08:59 -04:00
|
|
|
$photo_menu = array();
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2015-07-19 12:02:24 -04:00
|
|
|
} else {
|
2016-12-19 08:26:13 -05:00
|
|
|
$connlnk = App::get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url);
|
2015-07-19 12:02:24 -04:00
|
|
|
$conntxt = t('Connect');
|
2016-06-06 10:54:29 -04:00
|
|
|
$photo_menu = array(
|
|
|
|
'profile' => array(t("View Profile"), zrl($jj->url)),
|
|
|
|
'follow' => array(t("Connect/Follow"), $connlnk)
|
|
|
|
);
|
2015-07-19 12:02:24 -04:00
|
|
|
}
|
|
|
|
|
2015-09-15 16:29:02 -04:00
|
|
|
$jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo);
|
|
|
|
|
2015-10-16 18:19:01 -04:00
|
|
|
$entry = array(
|
2015-10-27 18:10:52 -04:00
|
|
|
'alt_text' => $alt_text,
|
2015-10-16 18:19:01 -04:00
|
|
|
'url' => zrl($jj->url),
|
2015-10-27 18:10:52 -04:00
|
|
|
'itemurl' => $itemurl,
|
2015-10-16 18:19:01 -04:00
|
|
|
'name' => htmlentities($jj->name),
|
2015-10-18 11:12:48 -04:00
|
|
|
'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB),
|
|
|
|
'img_hover' => $jj->tags,
|
2015-10-16 18:19:01 -04:00
|
|
|
'conntxt' => $conntxt,
|
|
|
|
'connlnk' => $connlnk,
|
|
|
|
'photo_menu' => $photo_menu,
|
2015-11-05 18:47:54 -05:00
|
|
|
'details' => $contact_details['location'],
|
|
|
|
'tags' => $contact_details['keywords'],
|
|
|
|
'about' => $contact_details['about'],
|
2016-10-01 16:03:27 -04:00
|
|
|
'account_type' => account_type($contact_details),
|
2015-10-23 10:48:32 -04:00
|
|
|
'network' => network_to_name($jj->network, $jj->url),
|
2015-10-16 18:19:01 -04:00
|
|
|
'id' => ++$id,
|
|
|
|
);
|
|
|
|
$entries[] = $entry;
|
2011-10-03 08:10:15 -04:00
|
|
|
}
|
2015-10-16 18:19:01 -04:00
|
|
|
|
2015-10-18 11:12:48 -04:00
|
|
|
$tpl = get_markup_template('viewcontact_template.tpl');
|
2015-10-16 18:19:01 -04:00
|
|
|
|
|
|
|
$o .= replace_macros($tpl,array(
|
2016-06-10 14:34:25 -04:00
|
|
|
'title' => $header,
|
2015-10-18 11:12:48 -04:00
|
|
|
'$contacts' => $entries,
|
2015-10-17 16:09:19 -04:00
|
|
|
'$paginate' => paginate($a),
|
2015-10-16 18:19:01 -04:00
|
|
|
));
|
|
|
|
|
2016-12-21 17:04:09 -05:00
|
|
|
} else {
|
2011-10-03 08:10:15 -04:00
|
|
|
info( t('No matches') . EOL);
|
2015-07-19 07:23:01 -04:00
|
|
|
}
|
2011-10-03 08:10:15 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|