]> git.mxchange.org Git - friendica.git/blob - src/Module/Profile/Common.php
Merge pull request #10632 from annando/fox-notifications
[friendica.git] / src / Module / Profile / Common.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 namespace Friendica\Module\Profile;
23
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\Module;
30 use Friendica\DI;
31 use Friendica\Model\Contact;
32 use Friendica\Model\Profile;
33 use Friendica\Module\BaseProfile;
34 use Friendica\Network\HTTPException;
35
36 class Common extends BaseProfile
37 {
38         public static function content(array $parameters = [])
39         {
40                 if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
41                         throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
42                 }
43
44                 $a = DI::app();
45
46                 Nav::setSelected('home');
47
48                 $nickname = $parameters['nickname'];
49
50                 $profile = Profile::load($a, $nickname);
51                 if (empty($profile)) {
52                         throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
53                 }
54
55                 if (!empty($profile['hide-friends'])) {
56                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
57                 }
58
59                 $displayCommonTab = Session::isAuthenticated() && $profile['uid'] != local_user();
60
61                 if (!$displayCommonTab) {
62                         $a->redirect('profile/' . $nickname . '/contacts');
63                 };
64
65                 $o = self::getTabsHTML($a, 'contacts', false, $profile['nickname'], $profile['hide-friends']);
66
67                 $tabs = self::getContactFilterTabs('profile/' . $nickname, 'common', $displayCommonTab);
68
69                 $sourceId = Contact::getIdForURL(Profile::getMyURL());
70                 $targetId = Contact::getPublicIdByUserId($profile['uid']);
71
72                 $condition = [
73                         'blocked' => false,
74                         'deleted' => false,
75                         'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED],
76                 ];
77
78                 $total = Contact\Relation::countCommon($sourceId, $targetId, $condition);
79
80                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 30);
81
82                 $commonFollows = Contact\Relation::listCommon($sourceId, $targetId, $condition, $pager->getItemsPerPage(), $pager->getStart());
83
84                 $contacts = array_map([Module\Contact::class, 'getContactTemplateVars'], $commonFollows);
85
86                 $title = DI::l10n()->tt('Common contact (%s)', 'Common contacts (%s)', $total);
87                 $desc = DI::l10n()->t(
88                         'Both <strong>%s</strong> and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).',
89                         htmlentities($profile['name'], ENT_COMPAT, 'UTF-8')
90                 );
91
92                 $tpl = Renderer::getMarkupTemplate('profile/contacts.tpl');
93                 $o .= Renderer::replaceMacros($tpl, [
94                         '$title'    => $title,
95                         '$desc'     => $desc,
96                         '$tabs'     => $tabs,
97
98                         '$noresult_label'  => DI::l10n()->t('No common contacts.'),
99
100                         '$contacts' => $contacts,
101                         '$paginate' => $pager->renderFull($total),
102                 ]);
103
104                 return $o;
105         }
106 }