2019-05-18 11:47:39 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\Profile;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Content\ContactSelector;
|
|
|
|
use Friendica\Content\Nav;
|
|
|
|
use Friendica\Content\Pager;
|
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Core\Protocol;
|
|
|
|
use Friendica\Core\Renderer;
|
2019-09-28 14:09:11 -04:00
|
|
|
use Friendica\Core\Session;
|
2019-05-18 11:47:39 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-05-18 11:47:39 -04:00
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Model\Profile;
|
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
|
|
|
|
|
|
|
class Contacts extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-18 11:47:39 -04:00
|
|
|
{
|
2019-09-28 14:09:11 -04:00
|
|
|
if (Config::get('system', 'block_public') && !Session::isAuthenticated()) {
|
2019-05-18 11:47:39 -04:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException(L10n::t('User not found.'));
|
|
|
|
}
|
|
|
|
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2019-05-18 11:47:39 -04:00
|
|
|
|
|
|
|
//@TODO: Get value from router parameters
|
|
|
|
$nickname = $a->argv[1];
|
2019-10-15 09:20:32 -04:00
|
|
|
$type = ($a->argv[3] ?? '') ?: 'all';
|
2019-05-18 11:47:39 -04:00
|
|
|
|
|
|
|
Nav::setSelected('home');
|
|
|
|
|
|
|
|
$user = DBA::selectFirst('user', [], ['nickname' => $nickname, 'blocked' => false]);
|
|
|
|
if (!DBA::isResult($user)) {
|
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException(L10n::t('User not found.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$a->profile_uid = $user['uid'];
|
|
|
|
|
|
|
|
Profile::load($a, $nickname);
|
|
|
|
|
|
|
|
$is_owner = $a->profile['profile_uid'] == local_user();
|
|
|
|
|
|
|
|
// tabs
|
2019-05-20 15:09:33 -04:00
|
|
|
$o = Profile::getTabs($a, 'contacts', $is_owner, $nickname);
|
2019-05-18 11:47:39 -04:00
|
|
|
|
|
|
|
if (!count($a->profile) || $a->profile['hide-friends']) {
|
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
$condition = [
|
|
|
|
'uid' => $a->profile['uid'],
|
|
|
|
'blocked' => false,
|
|
|
|
'pending' => false,
|
|
|
|
'hidden' => false,
|
|
|
|
'archive' => false,
|
|
|
|
'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED]
|
|
|
|
];
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case 'followers': $condition['rel'] = [1, 3]; break;
|
|
|
|
case 'following': $condition['rel'] = [2, 3]; break;
|
|
|
|
case 'mutuals': $condition['rel'] = 3; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$total = DBA::count('contact', $condition);
|
|
|
|
|
|
|
|
$pager = new Pager($a->query_string);
|
|
|
|
|
|
|
|
$params = ['order' => ['name' => false], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
|
|
|
|
|
|
|
|
$contacts_stmt = DBA::select('contact', [], $condition, $params);
|
|
|
|
|
|
|
|
if (!DBA::isResult($contacts_stmt)) {
|
|
|
|
info(L10n::t('No contacts.') . EOL);
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contacts = [];
|
|
|
|
|
|
|
|
while ($contact = DBA::fetch($contacts_stmt)) {
|
|
|
|
if ($contact['self']) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact_details = Contact::getDetailsByURL($contact['url'], $a->profile['uid'], $contact);
|
|
|
|
|
|
|
|
$contacts[] = [
|
|
|
|
'id' => $contact['id'],
|
|
|
|
'img_hover' => L10n::t('Visit %s\'s profile [%s]', $contact_details['name'], $contact['url']),
|
|
|
|
'photo_menu' => Contact::photoMenu($contact),
|
|
|
|
'thumb' => ProxyUtils::proxifyUrl($contact_details['thumb'], false, ProxyUtils::SIZE_THUMB),
|
|
|
|
'name' => substr($contact_details['name'], 0, 20),
|
|
|
|
'username' => $contact_details['name'],
|
|
|
|
'details' => $contact_details['location'],
|
|
|
|
'tags' => $contact_details['keywords'],
|
|
|
|
'about' => $contact_details['about'],
|
|
|
|
'account_type' => Contact::getAccountType($contact_details),
|
|
|
|
'url' => Contact::magicLink($contact['url']),
|
|
|
|
'sparkle' => '',
|
|
|
|
'itemurl' => $contact_details['addr'] ? : $contact['url'],
|
2019-12-27 12:24:29 -05:00
|
|
|
'network' => ContactSelector::networkToName($contact['network'], $contact['url'], $contact['protocol']),
|
2019-05-18 11:47:39 -04:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
DBA::close($contacts_stmt);
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case 'followers': $title = L10n::tt('Follower (%s)', 'Followers (%s)', $total); break;
|
|
|
|
case 'following': $title = L10n::tt('Following (%s)', 'Following (%s)', $total); break;
|
|
|
|
case 'mutuals': $title = L10n::tt('Mutual friend (%s)', 'Mutual friends (%s)', $total); break;
|
|
|
|
|
|
|
|
case 'all': default: $title = L10n::tt('Contact (%s)', 'Contacts (%s)', $total); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('profile/contacts.tpl');
|
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
|
|
|
'$title' => $title,
|
|
|
|
'$nickname' => $nickname,
|
|
|
|
'$type' => $type,
|
|
|
|
|
|
|
|
'$all_label' => L10n::t('All contacts'),
|
|
|
|
'$followers_label' => L10n::t('Followers'),
|
|
|
|
'$following_label' => L10n::t('Following'),
|
|
|
|
'$mutuals_label' => L10n::t('Mutual friends'),
|
|
|
|
|
|
|
|
'$contacts' => $contacts,
|
|
|
|
'$paginate' => $pager->renderFull($total),
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
}
|