3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Module\Profile;
24 use Friendica\Content\Nav;
25 use Friendica\Content\Pager;
26 use Friendica\Core\Protocol;
27 use Friendica\Core\Renderer;
28 use Friendica\Core\Session;
29 use Friendica\Database\DBA;
33 use Friendica\Network\HTTPException;
35 class Contacts extends Module\BaseProfile
37 protected function content(array $request = []): string
39 if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
40 throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
45 $nickname = $this->parameters['nickname'];
46 $type = $this->parameters['type'] ?? 'all';
48 $profile = Model\Profile::load($a, $nickname);
49 if (empty($profile)) {
50 throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
53 $is_owner = $profile['uid'] == local_user();
55 if ($profile['hide-friends'] && !$is_owner) {
56 throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
59 Nav::setSelected('home');
61 $o = self::getTabsHTML($a, 'contacts', $is_owner, $profile['nickname'], $profile['hide-friends']);
63 $tabs = self::getContactFilterTabs('profile/' . $nickname, $type, Session::isAuthenticated() && $profile['uid'] != local_user());
66 'uid' => $profile['uid'],
73 'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED]
77 case 'followers': $condition['rel'] = [Model\Contact::FOLLOWER, Model\Contact::FRIEND]; break;
78 case 'following': $condition['rel'] = [Model\Contact::SHARING, Model\Contact::FRIEND]; break;
79 case 'mutuals': $condition['rel'] = Model\Contact::FRIEND; break;
82 $total = DBA::count('contact', $condition);
84 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 30);
86 $params = ['order' => ['name' => false], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
88 $contacts = array_map(
89 [Module\Contact::class, 'getContactTemplateVars'],
90 Model\Contact::selectToArray([], $condition, $params)
96 $title = DI::l10n()->tt('Follower (%s)', 'Followers (%s)', $total);
99 $title = DI::l10n()->tt('Following (%s)', 'Following (%s)', $total);
102 $title = DI::l10n()->tt('Mutual friend (%s)', 'Mutual friends (%s)', $total);
103 $desc = DI::l10n()->t(
104 'These contacts both follow and are followed by <strong>%s</strong>.',
105 htmlentities($profile['name'], ENT_COMPAT, 'UTF-8')
110 $title = DI::l10n()->tt('Contact (%s)', 'Contacts (%s)', $total);
114 $tpl = Renderer::getMarkupTemplate('profile/contacts.tpl');
115 $o .= Renderer::replaceMacros($tpl, [
120 '$noresult_label' => DI::l10n()->t('No contacts.'),
122 '$contacts' => $contacts,
123 '$paginate' => $pager->renderFull($total),