2011-10-03 12:10:15 +00:00
|
|
|
<?php
|
2017-11-15 15:53:16 +00:00
|
|
|
/**
|
|
|
|
* @file mod/dirfind.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-10 03:42:04 +00:00
|
|
|
use Friendica\Content\ContactSelector;
|
2018-01-15 14:50:06 +00:00
|
|
|
use Friendica\Content\Widget;
|
2017-11-07 02:22:52 +00:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 18:33:59 +00:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2017-11-05 12:15:53 +00:00
|
|
|
use Friendica\Core\Worker;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-07 14:09:28 +00:00
|
|
|
use Friendica\Model\GContact;
|
2018-01-15 02:22:39 +00:00
|
|
|
use Friendica\Model\Profile;
|
2017-11-07 02:22:52 +00:00
|
|
|
use Friendica\Network\Probe;
|
2017-11-15 15:53:16 +00:00
|
|
|
use Friendica\Protocol\PortableContact;
|
2018-01-27 04:09:48 +00:00
|
|
|
use Friendica\Util\Network;
|
2018-03-17 06:17:32 +00:00
|
|
|
use Friendica\Database\DBM;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2017-05-07 21:08:32 +00:00
|
|
|
require_once 'mod/contacts.php';
|
2011-10-03 12:10:15 +00:00
|
|
|
|
2017-01-09 12:12:54 +00:00
|
|
|
function dirfind_init(App $a) {
|
2011-10-12 02:27:58 +00:00
|
|
|
|
2016-12-20 10:56:34 +00:00
|
|
|
if (! local_user()) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Permission denied.') . EOL );
|
2015-10-10 14:23:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-20 16:43:46 +00:00
|
|
|
if (! x($a->page,'aside')) {
|
2011-10-12 02:27:58 +00:00
|
|
|
$a->page['aside'] = '';
|
2016-12-20 16:43:46 +00:00
|
|
|
}
|
2011-10-12 02:27:58 +00:00
|
|
|
|
2018-01-15 14:50:06 +00:00
|
|
|
$a->page['aside'] .= Widget::findPeople();
|
2015-10-22 22:12:00 +00:00
|
|
|
|
2018-01-15 14:50:06 +00:00
|
|
|
$a->page['aside'] .= Widget::follow();
|
2011-10-12 02:27:58 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 12:12:54 +00:00
|
|
|
function dirfind_content(App $a, $prefix = "") {
|
2011-10-03 12:10:15 +00:00
|
|
|
|
2015-07-30 21:27:50 +00:00
|
|
|
$community = false;
|
2015-11-08 13:48:47 +00:00
|
|
|
$discover_user = false;
|
2015-07-30 21:27:50 +00:00
|
|
|
|
2017-11-07 02:22:52 +00:00
|
|
|
$local = Config::get('system','poco_local_search');
|
2015-07-19 11:23:01 +00:00
|
|
|
|
2015-08-24 09:55:29 +00:00
|
|
|
$search = $prefix.notags(trim($_REQUEST['search']));
|
2012-05-20 04:53:27 +00:00
|
|
|
|
2016-12-20 16:43:46 +00:00
|
|
|
if (strpos($search,'@') === 0) {
|
2012-05-20 04:53:27 +00:00
|
|
|
$search = substr($search,1);
|
2018-01-24 02:59:16 +00:00
|
|
|
$header = L10n::t('People Search - %s', $search);
|
2018-01-27 16:13:41 +00:00
|
|
|
if ((valid_email($search) && Network::isEmailDomainValid($search)) ||
|
2015-11-08 14:00:52 +00:00
|
|
|
(substr(normalise_link($search), 0, 7) == "http://")) {
|
2017-11-07 02:22:52 +00:00
|
|
|
$user_data = Probe::uri($search);
|
2018-01-15 13:05:12 +00:00
|
|
|
$discover_user = (in_array($user_data["network"], [NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA]));
|
2015-11-08 13:48:47 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-19 11:23:01 +00:00
|
|
|
|
2016-12-20 16:43:46 +00:00
|
|
|
if (strpos($search,'!') === 0) {
|
2015-07-30 21:27:50 +00:00
|
|
|
$search = substr($search,1);
|
|
|
|
$community = true;
|
2018-01-24 02:59:16 +00:00
|
|
|
$header = L10n::t('Forum Search - %s', $search);
|
2015-07-30 21:27:50 +00:00
|
|
|
}
|
|
|
|
|
2011-10-03 12:10:15 +00:00
|
|
|
$o = '';
|
|
|
|
|
2016-12-20 16:43:46 +00:00
|
|
|
if ($search) {
|
2011-10-03 21:47:18 +00:00
|
|
|
|
2015-11-08 13:48:47 +00:00
|
|
|
if ($discover_user) {
|
|
|
|
$j = new stdClass();
|
2015-11-08 14:17:08 +00:00
|
|
|
$j->total = 1;
|
2015-11-08 13:48:47 +00: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"];
|
|
|
|
|
2017-11-19 22:03:39 +00:00
|
|
|
$contact = Contact::getDetailsByURL($user_data["url"], local_user());
|
2016-06-12 08:46:15 +00:00
|
|
|
$objresult->cid = $contact["cid"];
|
2015-11-08 13:48:47 +00:00
|
|
|
|
|
|
|
$j->results[] = $objresult;
|
|
|
|
|
2016-06-12 08:46:15 +00:00
|
|
|
// Add the contact to the global contacts if it isn't already in our system
|
2017-06-08 02:00:59 +00:00
|
|
|
if (($contact["cid"] == 0) && ($contact["zid"] == 0) && ($contact["gid"] == 0)) {
|
2017-12-07 14:09:28 +00:00
|
|
|
GContact::update($user_data);
|
2017-03-22 07:11:58 +00:00
|
|
|
}
|
2015-11-08 13:48:47 +00:00
|
|
|
} elseif ($local) {
|
2015-07-19 11:23:01 +00:00
|
|
|
|
2015-07-30 21:27:50 +00:00
|
|
|
if ($community)
|
|
|
|
$extra_sql = " AND `community`";
|
|
|
|
else
|
|
|
|
$extra_sql = "";
|
|
|
|
|
2015-07-19 11:23:01 +00:00
|
|
|
$perpage = 80;
|
|
|
|
$startrec = (($a->pager['page']) * $perpage) - $perpage;
|
|
|
|
|
2017-11-07 02:22:52 +00:00
|
|
|
if (Config::get('system','diaspora_enabled')) {
|
2015-11-01 12:55:49 +00:00
|
|
|
$diaspora = NETWORK_DIASPORA;
|
2016-12-21 22:04:09 +00:00
|
|
|
} else {
|
2015-11-01 12:55:49 +00:00
|
|
|
$diaspora = NETWORK_DFRN;
|
2016-12-20 16:43:46 +00:00
|
|
|
}
|
2015-11-01 12:55:49 +00:00
|
|
|
|
2017-11-07 02:22:52 +00:00
|
|
|
if (!Config::get('system','ostatus_disabled')) {
|
2015-11-01 12:55:49 +00:00
|
|
|
$ostatus = NETWORK_OSTATUS;
|
2016-12-21 22:04:09 +00:00
|
|
|
} else {
|
2015-11-01 12:55:49 +00:00
|
|
|
$ostatus = NETWORK_DFRN;
|
2016-12-20 16:43:46 +00:00
|
|
|
}
|
2015-11-01 12:55:49 +00:00
|
|
|
|
2016-04-19 05:27:26 +00:00
|
|
|
$search2 = "%".$search."%";
|
|
|
|
|
2017-11-08 03:57:46 +00:00
|
|
|
/// @TODO These 2 SELECTs are not checked on validity with DBM::is_result()
|
2016-01-06 13:13:59 +00:00
|
|
|
$count = q("SELECT count(*) AS `total` FROM `gcontact`
|
2018-03-17 06:17:32 +00:00
|
|
|
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = 0
|
|
|
|
WHERE NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
|
|
|
|
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR
|
|
|
|
(`gcontact`.`updated` >= `gcontact`.`last_failure`)) AND
|
|
|
|
(`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-11-01 12:55:49 +00:00
|
|
|
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
2016-04-19 05:27:26 +00: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 11:23:01 +00:00
|
|
|
|
2018-03-17 06:17:32 +00:00
|
|
|
$results = q("SELECT `gcontact`.`nurl`
|
2015-07-19 16:02:24 +00:00
|
|
|
FROM `gcontact`
|
2018-03-17 06:17:32 +00:00
|
|
|
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = 0
|
|
|
|
WHERE NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
|
|
|
|
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR
|
|
|
|
(`gcontact`.`updated` >= `gcontact`.`last_failure`)) AND
|
|
|
|
(`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 16:02:24 +00:00
|
|
|
GROUP BY `gcontact`.`nurl`
|
|
|
|
ORDER BY `gcontact`.`updated` DESC LIMIT %d, %d",
|
2015-11-01 12:55:49 +00:00
|
|
|
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
2016-04-19 05:27:26 +00: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 11:23:01 +00:00
|
|
|
intval($startrec), intval($perpage));
|
|
|
|
$j = new stdClass();
|
|
|
|
$j->total = $count[0]["total"];
|
|
|
|
$j->items_page = $perpage;
|
2015-10-27 22:10:52 +00:00
|
|
|
$j->page = $a->pager['page'];
|
2015-07-19 11:23:01 +00:00
|
|
|
foreach ($results AS $result) {
|
2018-03-17 06:17:32 +00:00
|
|
|
if (PortableContact::alternateOStatusUrl($result["nurl"])) {
|
2016-12-20 16:43:46 +00:00
|
|
|
continue;
|
|
|
|
}
|
2015-08-25 03:31:21 +00:00
|
|
|
|
2018-03-17 06:17:32 +00:00
|
|
|
$result = Contact::getDetailsByURL($result["nurl"], local_user());
|
2016-06-05 20:21:34 +00:00
|
|
|
|
2015-07-19 11:23:01 +00:00
|
|
|
if ($result["name"] == "") {
|
2018-03-17 06:17:32 +00:00
|
|
|
$urlparts = parse_url($result["nurl"]);
|
2015-07-19 11:23:01 +00:00
|
|
|
$result["name"] = end(explode("/", $urlparts["path"]));
|
|
|
|
}
|
|
|
|
|
|
|
|
$objresult = new stdClass();
|
2015-07-19 16:02:24 +00:00
|
|
|
$objresult->cid = $result["cid"];
|
2015-07-19 11:23:01 +00:00
|
|
|
$objresult->name = $result["name"];
|
2015-11-05 23:47:54 +00:00
|
|
|
$objresult->addr = $result["addr"];
|
2015-07-19 11:23:01 +00:00
|
|
|
$objresult->url = $result["url"];
|
|
|
|
$objresult->photo = $result["photo"];
|
|
|
|
$objresult->tags = $result["keywords"];
|
2015-10-23 14:48:32 +00:00
|
|
|
$objresult->network = $result["network"];
|
2015-07-19 11:23:01 +00:00
|
|
|
|
|
|
|
$j->results[] = $objresult;
|
|
|
|
}
|
2015-07-19 16:02:24 +00:00
|
|
|
|
|
|
|
// Add found profiles from the global directory to the local directory
|
2017-11-18 11:02:46 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'DiscoverPoCo', "dirsearch", urlencode($search));
|
2015-07-19 11:23:01 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
$p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
|
2011-10-03 21:47:18 +00:00
|
|
|
|
2017-11-07 02:22:52 +00:00
|
|
|
if(strlen(Config::get('system','directory')))
|
2018-01-27 16:13:41 +00:00
|
|
|
$x = Network::fetchUrl(get_server().'/lsearch?f=' . $p . '&search=' . urlencode($search));
|
2011-10-03 12:10:15 +00:00
|
|
|
|
2015-07-19 11:23:01 +00:00
|
|
|
$j = json_decode($x);
|
|
|
|
}
|
2011-10-03 12:10:15 +00:00
|
|
|
|
2016-12-20 16:43:46 +00:00
|
|
|
if ($j->total) {
|
2011-10-03 12:10:15 +00:00
|
|
|
$a->set_pager_total($j->total);
|
|
|
|
$a->set_pager_itemspage($j->items_page);
|
|
|
|
}
|
|
|
|
|
2016-12-20 16:43:46 +00:00
|
|
|
if (count($j->results)) {
|
2015-07-19 11:23:01 +00:00
|
|
|
|
2015-10-05 06:08:59 +00:00
|
|
|
$id = 0;
|
|
|
|
|
2016-12-20 16:43:46 +00:00
|
|
|
foreach ($j->results as $jj) {
|
2015-07-19 11:23:01 +00:00
|
|
|
|
2015-10-27 22:10:52 +00:00
|
|
|
$alt_text = "";
|
|
|
|
|
2017-11-19 22:03:39 +00:00
|
|
|
$contact_details = Contact::getDetailsByURL($jj->url, local_user());
|
2015-11-05 23:47:54 +00:00
|
|
|
|
|
|
|
$itemurl = (($contact_details["addr"] != "") ? $contact_details["addr"] : $jj->url);
|
2015-10-27 22:10:52 +00:00
|
|
|
|
2015-07-19 16:02:24 +00:00
|
|
|
// If We already know this contact then don't show the "connect" button
|
|
|
|
if ($jj->cid > 0) {
|
|
|
|
$connlnk = "";
|
|
|
|
$conntxt = "";
|
2018-03-17 06:17:32 +00:00
|
|
|
$contact = dba::selectFirst('contact', [], ['id' => $jj->cid]);
|
|
|
|
if (DBM::is_result($contact)) {
|
|
|
|
$photo_menu = Contact::photoMenu($contact);
|
|
|
|
$details = _contact_detail_for_template($contact);
|
2015-10-27 22:10:52 +00:00
|
|
|
$alt_text = $details['alt_text'];
|
2016-12-21 22:04:09 +00:00
|
|
|
} else {
|
2018-01-15 13:05:12 +00:00
|
|
|
$photo_menu = [];
|
2016-12-20 16:43:46 +00:00
|
|
|
}
|
2015-07-19 16:02:24 +00:00
|
|
|
} else {
|
2017-08-26 07:32:10 +00:00
|
|
|
$connlnk = System::baseUrl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url);
|
2018-01-21 18:33:59 +00:00
|
|
|
$conntxt = L10n::t('Connect');
|
2018-01-15 13:05:12 +00:00
|
|
|
$photo_menu = [
|
2018-01-22 21:59:31 +00:00
|
|
|
'profile' => [L10n::t("View Profile"), Profile::zrl($jj->url)],
|
|
|
|
'follow' => [L10n::t("Connect/Follow"), $connlnk]
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2015-07-19 16:02:24 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 20:29:02 +00:00
|
|
|
$jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo);
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$entry = [
|
2015-10-27 22:10:52 +00:00
|
|
|
'alt_text' => $alt_text,
|
2018-01-15 02:22:39 +00:00
|
|
|
'url' => Profile::zrl($jj->url),
|
2015-10-27 22:10:52 +00:00
|
|
|
'itemurl' => $itemurl,
|
2015-10-16 22:19:01 +00:00
|
|
|
'name' => htmlentities($jj->name),
|
2015-10-18 15:12:48 +00:00
|
|
|
'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB),
|
|
|
|
'img_hover' => $jj->tags,
|
2015-10-16 22:19:01 +00:00
|
|
|
'conntxt' => $conntxt,
|
|
|
|
'connlnk' => $connlnk,
|
|
|
|
'photo_menu' => $photo_menu,
|
2015-11-05 23:47:54 +00:00
|
|
|
'details' => $contact_details['location'],
|
|
|
|
'tags' => $contact_details['keywords'],
|
|
|
|
'about' => $contact_details['about'],
|
2017-11-19 22:03:39 +00:00
|
|
|
'account_type' => Contact::getAccountType($contact_details),
|
2018-01-10 03:42:04 +00:00
|
|
|
'network' => ContactSelector::networkToName($jj->network, $jj->url),
|
2015-10-16 22:19:01 +00:00
|
|
|
'id' => ++$id,
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2015-10-16 22:19:01 +00:00
|
|
|
$entries[] = $entry;
|
2011-10-03 12:10:15 +00:00
|
|
|
}
|
2015-10-16 22:19:01 +00:00
|
|
|
|
2015-10-18 15:12:48 +00:00
|
|
|
$tpl = get_markup_template('viewcontact_template.tpl');
|
2015-10-16 22:19:01 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$o .= replace_macros($tpl,[
|
2016-06-10 18:34:25 +00:00
|
|
|
'title' => $header,
|
2015-10-18 15:12:48 +00:00
|
|
|
'$contacts' => $entries,
|
2015-10-17 20:09:19 +00:00
|
|
|
'$paginate' => paginate($a),
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2015-10-16 22:19:01 +00:00
|
|
|
|
2016-12-21 22:04:09 +00:00
|
|
|
} else {
|
2018-01-21 18:33:59 +00:00
|
|
|
info(L10n::t('No matches') . EOL);
|
2015-07-19 11:23:01 +00:00
|
|
|
}
|
2011-10-03 12:10:15 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|