2020-08-07 02:49:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\Contact;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Content\Pager;
|
2020-10-09 19:08:50 +00:00
|
|
|
use Friendica\Content\Widget;
|
2020-08-07 02:49:21 +00:00
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Model;
|
2020-10-09 19:08:50 +00:00
|
|
|
use Friendica\Model\User;
|
2020-08-07 02:49:21 +00:00
|
|
|
use Friendica\Module;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
class Contacts extends BaseModule
|
|
|
|
{
|
2021-11-14 22:13:47 +00:00
|
|
|
public function content(): string
|
2020-08-07 02:49:21 +00:00
|
|
|
{
|
|
|
|
$app = DI::app();
|
|
|
|
|
|
|
|
if (!local_user()) {
|
|
|
|
throw new HTTPException\ForbiddenException();
|
|
|
|
}
|
|
|
|
|
2021-11-14 22:19:25 +00:00
|
|
|
$cid = $this->parameters['id'];
|
|
|
|
$type = $this->parameters['type'] ?? 'all';
|
2020-10-09 19:08:50 +00:00
|
|
|
$accounttype = $_GET['accounttype'] ?? '';
|
|
|
|
$accounttypeid = User::getAccountTypeByString($accounttype);
|
2020-08-07 02:49:21 +00:00
|
|
|
|
|
|
|
if (!$cid) {
|
|
|
|
throw new HTTPException\BadRequestException(DI::l10n()->t('Invalid contact.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact = Model\Contact::getById($cid, []);
|
|
|
|
if (empty($contact)) {
|
|
|
|
throw new HTTPException\NotFoundException(DI::l10n()->t('Contact not found.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$localContactId = Model\Contact::getPublicIdByUserId(local_user());
|
|
|
|
|
2021-07-23 12:39:37 +00:00
|
|
|
DI::page()['aside'] = Widget\VCard::getHTML($contact);
|
2020-08-07 02:49:21 +00:00
|
|
|
|
|
|
|
$condition = [
|
|
|
|
'blocked' => false,
|
|
|
|
'self' => false,
|
|
|
|
'hidden' => false,
|
2020-10-07 20:06:15 +00:00
|
|
|
'failed' => false,
|
2020-08-07 02:49:21 +00:00
|
|
|
];
|
|
|
|
|
2020-10-09 19:08:50 +00:00
|
|
|
if (isset($accounttypeid)) {
|
|
|
|
$condition['contact-type'] = $accounttypeid;
|
|
|
|
}
|
|
|
|
|
2020-08-07 02:49:21 +00:00
|
|
|
$noresult_label = DI::l10n()->t('No known contacts.');
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case 'followers':
|
|
|
|
$total = Model\Contact\Relation::countFollowers($cid, $condition);
|
|
|
|
break;
|
|
|
|
case 'following':
|
|
|
|
$total = Model\Contact\Relation::countFollows($cid, $condition);
|
|
|
|
break;
|
|
|
|
case 'mutuals':
|
|
|
|
$total = Model\Contact\Relation::countMutuals($cid, $condition);
|
|
|
|
break;
|
|
|
|
case 'common':
|
|
|
|
$total = Model\Contact\Relation::countCommon($localContactId, $cid, $condition);
|
|
|
|
$noresult_label = DI::l10n()->t('No common contacts.');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$total = Model\Contact\Relation::countAll($cid, $condition);
|
|
|
|
}
|
|
|
|
|
2020-08-08 01:18:25 +00:00
|
|
|
$pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 30);
|
2020-08-07 02:49:21 +00:00
|
|
|
$desc = '';
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case 'followers':
|
|
|
|
$friends = Model\Contact\Relation::listFollowers($cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
|
|
|
|
$title = DI::l10n()->tt('Follower (%s)', 'Followers (%s)', $total);
|
|
|
|
break;
|
|
|
|
case 'following':
|
|
|
|
$friends = Model\Contact\Relation::listFollows($cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
|
|
|
|
$title = DI::l10n()->tt('Following (%s)', 'Following (%s)', $total);
|
|
|
|
break;
|
|
|
|
case 'mutuals':
|
|
|
|
$friends = Model\Contact\Relation::listMutuals($cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
|
|
|
|
$title = DI::l10n()->tt('Mutual friend (%s)', 'Mutual friends (%s)', $total);
|
|
|
|
$desc = DI::l10n()->t(
|
|
|
|
'These contacts both follow and are followed by <strong>%s</strong>.',
|
|
|
|
htmlentities($contact['name'], ENT_COMPAT, 'UTF-8')
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case 'common':
|
|
|
|
$friends = Model\Contact\Relation::listCommon($localContactId, $cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
|
|
|
|
$title = DI::l10n()->tt('Common contact (%s)', 'Common contacts (%s)', $total);
|
|
|
|
$desc = DI::l10n()->t(
|
|
|
|
'Both <strong>%s</strong> and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).',
|
|
|
|
htmlentities($contact['name'], ENT_COMPAT, 'UTF-8')
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$friends = Model\Contact\Relation::listAll($cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
|
|
|
|
$title = DI::l10n()->tt('Contact (%s)', 'Contacts (%s)', $total);
|
|
|
|
}
|
|
|
|
|
|
|
|
$o = Module\Contact::getTabsHTML($contact, Module\Contact::TAB_CONTACTS);
|
|
|
|
|
|
|
|
$tabs = self::getContactFilterTabs('contact/' . $cid, $type, true);
|
|
|
|
|
|
|
|
$contacts = array_map([Module\Contact::class, 'getContactTemplateVars'], $friends);
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('profile/contacts.tpl');
|
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
|
|
|
'$title' => $title,
|
|
|
|
'$desc' => $desc,
|
|
|
|
'$tabs' => $tabs,
|
|
|
|
|
|
|
|
'$noresult_label' => $noresult_label,
|
|
|
|
|
|
|
|
'$contacts' => $contacts,
|
|
|
|
'$paginate' => $pager->renderFull($total),
|
|
|
|
]);
|
|
|
|
|
2020-10-09 19:08:50 +00:00
|
|
|
DI::page()['aside'] .= Widget::accounttypes($_SERVER['REQUEST_URI'], $accounttype);
|
|
|
|
|
2020-08-07 02:49:21 +00:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
}
|