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