]> git.mxchange.org Git - friendica.git/blob - src/Module/Profile/Contacts.php
Fetch photo fields, ensuring that they are filled
[friendica.git] / src / Module / Profile / Contacts.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\ContactSelector;
25 use Friendica\Content\Nav;
26 use Friendica\Content\Pager;
27 use Friendica\Core\Protocol;
28 use Friendica\Core\Renderer;
29 use Friendica\Core\Session;
30 use Friendica\Database\DBA;
31 use Friendica\DI;
32 use Friendica\Model\Contact;
33 use Friendica\Model\Profile;
34 use Friendica\Module\BaseProfile;
35
36 class Contacts extends BaseProfile
37 {
38         public static function content(array $parameters = [])
39         {
40                 if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
41                         throw new \Friendica\Network\HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
42                 }
43
44                 $a = DI::app();
45
46                 //@TODO: Get value from router parameters
47                 $nickname = $a->argv[1];
48                 $type = ($a->argv[3] ?? '') ?: 'all';
49
50                 Nav::setSelected('home');
51
52                 $user = DBA::selectFirst('user', [], ['nickname' => $nickname, 'blocked' => false]);
53                 if (!DBA::isResult($user)) {
54                         throw new \Friendica\Network\HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
55                 }
56
57                 $a->profile_uid  = $user['uid'];
58
59                 Profile::load($a, $nickname);
60
61                 $is_owner = $a->profile['uid'] == local_user();
62
63                 $o = self::getTabsHTML($a, 'contacts', $is_owner, $nickname);
64
65                 if (!count($a->profile) || $a->profile['hide-friends']) {
66                         notice(DI::l10n()->t('Permission denied.'));
67                         return $o;
68                 }
69
70                 $condition = [
71                         'uid'     => $a->profile['uid'],
72                         'blocked' => false,
73                         'pending' => false,
74                         'hidden'  => false,
75                         'archive' => false,
76                         'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED]
77                 ];
78
79                 switch ($type) {
80                         case 'followers': $condition['rel'] = [1, 3]; break;
81                         case 'following': $condition['rel'] = [2, 3]; break;
82                         case 'mutuals': $condition['rel'] = 3; break;
83                 }
84
85                 $total = DBA::count('contact', $condition);
86
87                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
88
89                 $params = ['order' => ['name' => false], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
90
91                 $contacts_stmt = DBA::select('contact', [], $condition, $params);
92
93                 if (!DBA::isResult($contacts_stmt)) {
94                         notice(DI::l10n()->t('No contacts.'));
95                         return $o;
96                 }
97
98                 $contacts = [];
99
100                 while ($contact = DBA::fetch($contacts_stmt)) {
101                         if ($contact['self']) {
102                                 continue;
103                         }
104
105                         $contact_details = Contact::getByURLForUser($contact['url'], $a->profile['uid']) ?: $contact;
106
107                         $contacts[] = [
108                                 'id'           => $contact['id'],
109                                 'img_hover'    => DI::l10n()->t('Visit %s\'s profile [%s]', $contact_details['name'], $contact['url']),
110                                 'photo_menu'   => Contact::photoMenu($contact),
111                                 'thumb'        => Contact::getThumb($contact_details),
112                                 'name'         => substr($contact_details['name'], 0, 20),
113                                 'username'     => $contact_details['name'],
114                                 'details'      => $contact_details['location'],
115                                 'tags'         => $contact_details['keywords'],
116                                 'about'        => $contact_details['about'],
117                                 'account_type' => Contact::getAccountType($contact_details),
118                                 'url'          => Contact::magicLink($contact['url']),
119                                 'sparkle'      => '',
120                                 'itemurl'      => $contact_details['addr'] ? : $contact['url'],
121                                 'network'      => ContactSelector::networkToName($contact['network'], $contact['url'], $contact['protocol']),
122                         ];
123                 }
124
125                 DBA::close($contacts_stmt);
126
127                 switch ($type) {
128                         case 'followers':    $title = DI::l10n()->tt('Follower (%s)', 'Followers (%s)', $total); break;
129                         case 'following':    $title = DI::l10n()->tt('Following (%s)', 'Following (%s)', $total); break;
130                         case 'mutuals':      $title = DI::l10n()->tt('Mutual friend (%s)', 'Mutual friends (%s)', $total); break;
131
132                         case 'all': default: $title = DI::l10n()->tt('Contact (%s)', 'Contacts (%s)', $total); break;
133                 }
134
135                 $tpl = Renderer::getMarkupTemplate('profile/contacts.tpl');
136                 $o .= Renderer::replaceMacros($tpl, [
137                         '$title'    => $title,
138                         '$nickname' => $nickname,
139                         '$type'     => $type,
140
141                         '$all_label' => DI::l10n()->t('All contacts'),
142                         '$followers_label' => DI::l10n()->t('Followers'),
143                         '$following_label' => DI::l10n()->t('Following'),
144                         '$mutuals_label' => DI::l10n()->t('Mutual friends'),
145
146                         '$contacts' => $contacts,
147                         '$paginate' => $pager->renderFull($total),
148                 ]);
149
150                 return $o;
151         }
152 }