2010-07-29 03:24:07 +02:00
|
|
|
<?php
|
2018-01-15 03:22:39 +01:00
|
|
|
/**
|
|
|
|
* @file mod/viewcontacts.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-10 04:42:04 +01:00
|
|
|
use Friendica\Content\ContactSelector;
|
2018-01-15 20:51:56 +01:00
|
|
|
use Friendica\Content\Nav;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
function viewcontacts_init(App $a)
|
|
|
|
{
|
|
|
|
if ((Config::get('system', 'block_public')) && (! local_user()) && (! remote_user())) {
|
2011-04-22 04:12:22 +02:00
|
|
|
return;
|
|
|
|
}
|
2010-07-29 03:24:07 +02:00
|
|
|
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('home');
|
2015-11-30 03:25:23 +01:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
if ($a->argc > 1) {
|
2015-11-30 03:25:23 +01:00
|
|
|
$nick = $a->argv[1];
|
|
|
|
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
|
|
|
|
dbesc($nick)
|
|
|
|
);
|
|
|
|
|
2017-11-08 04:57:46 +01:00
|
|
|
if (! DBM::is_result($r)) {
|
2015-11-30 03:25:23 +01:00
|
|
|
return;
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2015-11-30 03:25:23 +01:00
|
|
|
|
|
|
|
$a->data['user'] = $r[0];
|
|
|
|
$a->profile_uid = $r[0]['uid'];
|
|
|
|
$is_owner = (local_user() && (local_user() == $a->profile_uid));
|
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
Profile::load($a, $a->argv[1]);
|
2015-11-30 03:25:23 +01:00
|
|
|
}
|
2010-07-29 03:24:07 +02:00
|
|
|
}
|
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
function viewcontacts_content(App $a)
|
|
|
|
{
|
2015-01-28 10:09:16 +01:00
|
|
|
require_once("mod/proxy.php");
|
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
if ((Config::get('system', 'block_public')) && (! local_user()) && (! remote_user())) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Public access denied.') . EOL);
|
2011-04-22 04:12:22 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-30 03:25:23 +01:00
|
|
|
$o = "";
|
|
|
|
|
|
|
|
// tabs
|
2018-01-15 03:22:39 +01:00
|
|
|
$o .= Profile::getTabs($a, $is_owner, $a->data['user']['nickname']);
|
2010-07-29 03:24:07 +02:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
if (((! count($a->profile)) || ($a->profile['hide-friends']))) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2016-06-28 12:32:09 +02:00
|
|
|
return $o;
|
2016-06-25 16:20:44 +02:00
|
|
|
}
|
|
|
|
|
2015-11-29 09:56:34 +01:00
|
|
|
$r = q("SELECT COUNT(*) AS `total` FROM `contact`
|
2017-02-10 03:51:01 +01:00
|
|
|
WHERE `uid` = %d AND NOT `blocked` AND NOT `pending`
|
|
|
|
AND NOT `hidden` AND NOT `archive`
|
2015-11-29 09:56:34 +01:00
|
|
|
AND `network` IN ('%s', '%s', '%s')",
|
|
|
|
intval($a->profile['uid']),
|
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc(NETWORK_DIASPORA),
|
|
|
|
dbesc(NETWORK_OSTATUS)
|
2010-07-29 03:24:07 +02:00
|
|
|
);
|
2018-01-22 15:16:25 +01:00
|
|
|
if (DBM::is_result($r)) {
|
2010-07-30 15:09:20 +02:00
|
|
|
$a->set_pager_total($r[0]['total']);
|
2018-01-22 15:16:25 +01:00
|
|
|
}
|
2010-07-29 03:24:07 +02:00
|
|
|
|
2015-11-29 09:56:34 +01:00
|
|
|
$r = q("SELECT * FROM `contact`
|
2017-02-10 03:51:01 +01:00
|
|
|
WHERE `uid` = %d AND NOT `blocked` AND NOT `pending`
|
|
|
|
AND NOT `hidden` AND NOT `archive`
|
2015-11-29 09:56:34 +01:00
|
|
|
AND `network` IN ('%s', '%s', '%s')
|
|
|
|
ORDER BY `name` ASC LIMIT %d, %d",
|
2010-07-29 03:24:07 +02:00
|
|
|
intval($a->profile['uid']),
|
2015-11-29 09:56:34 +01:00
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc(NETWORK_DIASPORA),
|
|
|
|
dbesc(NETWORK_OSTATUS),
|
2010-07-29 03:24:07 +02:00
|
|
|
intval($a->pager['start']),
|
|
|
|
intval($a->pager['itemspage'])
|
|
|
|
);
|
2017-11-08 04:57:46 +01:00
|
|
|
if (!DBM::is_result($r)) {
|
2018-01-22 15:16:25 +01:00
|
|
|
info(L10n::t('No contacts.').EOL);
|
2010-07-29 03:24:07 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$contacts = [];
|
2010-07-29 03:24:07 +02:00
|
|
|
|
2016-12-20 21:15:53 +01:00
|
|
|
foreach ($r as $rr) {
|
|
|
|
/// @TODO This triggers an E_NOTICE if 'self' is not there
|
|
|
|
if ($rr['self']) {
|
2010-07-29 03:24:07 +02:00
|
|
|
continue;
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2010-07-29 03:24:07 +02:00
|
|
|
|
2015-10-18 17:12:48 +02:00
|
|
|
$url = $rr['url'];
|
2011-06-06 06:05:55 +02:00
|
|
|
|
|
|
|
// route DFRN profiles through the redirect
|
|
|
|
|
|
|
|
$is_owner = ((local_user() && ($a->profile['profile_uid'] == local_user())) ? true : false);
|
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
if ($is_owner && ($rr['network'] === NETWORK_DFRN) && ($rr['rel'])) {
|
2011-06-06 06:05:55 +02:00
|
|
|
$url = 'redir/' . $rr['id'];
|
2018-01-22 15:16:25 +01:00
|
|
|
} else {
|
2018-01-15 03:22:39 +01:00
|
|
|
$url = Profile::zrl($url);
|
2018-01-22 15:16:25 +01:00
|
|
|
}
|
2011-06-06 06:05:55 +02:00
|
|
|
|
2017-11-19 23:03:39 +01:00
|
|
|
$contact_details = Contact::getDetailsByURL($rr['url'], $a->profile['uid'], $rr);
|
2015-11-06 00:47:54 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$contacts[] = [
|
2012-02-23 11:22:32 +01:00
|
|
|
'id' => $rr['id'],
|
2018-01-24 03:59:16 +01:00
|
|
|
'img_hover' => L10n::t('Visit %s\'s profile [%s]', $contact_details['name'], $rr['url']),
|
2017-11-19 23:03:39 +01:00
|
|
|
'photo_menu' => Contact::photoMenu($rr),
|
2016-06-05 13:57:11 +02:00
|
|
|
'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB),
|
2018-01-22 15:16:25 +01:00
|
|
|
'name' => htmlentities(substr($contact_details['name'], 0, 20)),
|
2016-06-05 13:57:11 +02:00
|
|
|
'username' => htmlentities($contact_details['name']),
|
2015-11-06 00:47:54 +01:00
|
|
|
'details' => $contact_details['location'],
|
2015-11-28 03:50:45 +01:00
|
|
|
'tags' => $contact_details['keywords'],
|
|
|
|
'about' => $contact_details['about'],
|
2017-11-19 23:03:39 +01:00
|
|
|
'account_type' => Contact::getAccountType($contact_details),
|
2012-02-23 11:22:32 +01:00
|
|
|
'url' => $url,
|
|
|
|
'sparkle' => '',
|
2015-11-06 00:47:54 +01:00
|
|
|
'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
|
2018-01-10 04:42:04 +01:00
|
|
|
'network' => ContactSelector::networkToName($rr['network'], $rr['url']),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2010-07-29 03:24:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-23 11:22:32 +01:00
|
|
|
$tpl = get_markup_template("viewcontact_template.tpl");
|
2018-01-15 14:05:12 +01:00
|
|
|
$o .= replace_macros($tpl, [
|
2018-01-22 15:16:25 +01:00
|
|
|
'$title' => L10n::t('Contacts'),
|
2012-02-23 11:22:32 +01:00
|
|
|
'$contacts' => $contacts,
|
|
|
|
'$paginate' => paginate($a),
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2012-02-23 11:22:32 +01:00
|
|
|
|
2010-07-29 03:24:07 +02:00
|
|
|
|
|
|
|
return $o;
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|