]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact/Profile.php
Merge pull request #13288 from MrPetovan/task/user-server-block
[friendica.git] / src / Module / Contact / Profile.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Contact;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Contact\LocalRelationship;
27 use Friendica\Content\ContactSelector;
28 use Friendica\Content\Nav;
29 use Friendica\Content\Text\BBCode;
30 use Friendica\Content\Widget;
31 use Friendica\Core\Config\Capability\IManageConfigValues;
32 use Friendica\Core\Hook;
33 use Friendica\Core\L10n;
34 use Friendica\Core\Protocol;
35 use Friendica\Core\Renderer;
36 use Friendica\Core\Session\Capability\IHandleUserSessions;
37 use Friendica\Database\Database;
38 use Friendica\Database\DBA;
39 use Friendica\Model\Circle;
40 use Friendica\Model\Contact;
41 use Friendica\Module;
42 use Friendica\Module\Response;
43 use Friendica\Navigation\SystemMessages;
44 use Friendica\Network\HTTPException;
45 use Friendica\User\Settings;
46 use Friendica\Util\DateTimeFormat;
47 use Friendica\Util\Profiler;
48 use Psr\Log\LoggerInterface;
49
50 /**
51  *  Show a contact profile
52  */
53 class Profile extends BaseModule
54 {
55         /** @var LocalRelationship\Repository\LocalRelationship */
56         private $localRelationship;
57         /** @var App\Page */
58         private $page;
59         /** @var IManageConfigValues */
60         private $config;
61         /** @var IHandleUserSessions */
62         private $session;
63         /** @var SystemMessages */
64         private $systemMessages;
65         /** @var Database */
66         private $db;
67         /** @var Settings\Repository\UserGServer */
68         private $userGServer;
69
70         public function __construct(Settings\Repository\UserGServer $userGServer, Database $db, SystemMessages $systemMessages, IHandleUserSessions $session, L10n $l10n, LocalRelationship\Repository\LocalRelationship $localRelationship, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, App\Page $page, IManageConfigValues $config, array $server, array $parameters = [])
71         {
72                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
73
74                 $this->localRelationship = $localRelationship;
75                 $this->page              = $page;
76                 $this->config            = $config;
77                 $this->session           = $session;
78                 $this->systemMessages    = $systemMessages;
79                 $this->db                = $db;
80                 $this->userGServer       = $userGServer;
81         }
82
83         protected function post(array $request = [])
84         {
85                 if (!$this->session->getLocalUserId()) {
86                         return;
87                 }
88
89                 $contact_id = $this->parameters['id'];
90
91                 // Backward compatibility: The update still needs a user-specific contact ID
92                 // Change to user-contact table check by version 2022.03
93                 $cdata = Contact::getPublicAndUserContactID($contact_id, $this->session->getLocalUserId());
94                 if (empty($cdata['user']) || !$this->db->exists('contact', ['id' => $cdata['user'], 'deleted' => false])) {
95                         return;
96                 }
97
98                 Hook::callAll('contact_edit_post', $_POST);
99
100                 $fields = [];
101
102                 if (isset($_POST['hidden'])) {
103                         $fields['hidden'] = !empty($_POST['hidden']);
104                 }
105
106                 if (isset($_POST['notify_new_posts'])) {
107                         $fields['notify_new_posts'] = !empty($_POST['notify_new_posts']);
108                 }
109
110                 if (isset($_POST['fetch_further_information'])) {
111                         $fields['fetch_further_information'] = intval($_POST['fetch_further_information']);
112                 }
113
114                 if (isset($_POST['remote_self'])) {
115                         $fields['remote_self'] = intval($_POST['remote_self']);
116                 }
117
118                 if (isset($_POST['ffi_keyword_denylist'])) {
119                         $fields['ffi_keyword_denylist'] = $_POST['ffi_keyword_denylist'];
120                 }
121
122                 if (isset($_POST['poll'])) {
123                         $priority = intval($_POST['poll']);
124                         if ($priority > 5 || $priority < 0) {
125                                 $priority = 0;
126                         }
127
128                         $fields['priority'] = $priority;
129                 }
130
131                 if (isset($_POST['info'])) {
132                         $fields['info'] = $_POST['info'];
133                 }
134
135                 if (!Contact::update($fields, ['id' => $cdata['user'], 'uid' => $this->session->getLocalUserId()])) {
136                         $this->systemMessages->addNotice($this->t('Failed to update contact record.'));
137                 }
138         }
139
140         protected function content(array $request = []): string
141         {
142                 if (!$this->session->getLocalUserId()) {
143                         return Module\Security\Login::form($_SERVER['REQUEST_URI']);
144                 }
145
146                 // Backward compatibility: Ensure to use the public contact when the user contact is provided
147                 // Remove by version 2022.03
148                 $data = Contact::getPublicAndUserContactID(intval($this->parameters['id']), $this->session->getLocalUserId());
149                 if (empty($data)) {
150                         throw new HTTPException\NotFoundException($this->t('Contact not found.'));
151                 }
152
153                 $contact = Contact::getById($data['public']);
154                 if (!$this->db->isResult($contact)) {
155                         throw new HTTPException\NotFoundException($this->t('Contact not found.'));
156                 }
157
158                 // Don't display contacts that are about to be deleted
159                 if ($this->db->isResult($contact) && (!empty($contact['deleted']) || !empty($contact['network']) && $contact['network'] == Protocol::PHANTOM)) {
160                         throw new HTTPException\NotFoundException($this->t('Contact not found.'));
161                 }
162
163                 $localRelationship = $this->localRelationship->getForUserContact($this->session->getLocalUserId(), $contact['id']);
164
165                 if ($localRelationship->rel === Contact::SELF) {
166                         $this->baseUrl->redirect('profile/' . $contact['nick'] . '/profile');
167                 }
168
169                 if (isset($this->parameters['action'])) {
170                         self::checkFormSecurityTokenRedirectOnError('contact/' . $contact['id'], 'contact_action', 't');
171
172                         $cmd = $this->parameters['action'];
173                         if ($cmd === 'update' && $localRelationship->rel !== Contact::NOTHING) {
174                                 Module\Contact::updateContactFromPoll($contact['id']);
175                         }
176
177                         if ($cmd === 'updateprofile') {
178                                 $this->updateContactFromProbe($contact['id']);
179                         }
180
181                         if ($cmd === 'block') {
182                                 if ($localRelationship->blocked) {
183                                         // @TODO Backward compatibility, replace with $localRelationship->unblock()
184                                         Contact\User::setBlocked($contact['id'], $this->session->getLocalUserId(), false);
185
186                                         $message = $this->t('Contact has been unblocked');
187                                 } else {
188                                         // @TODO Backward compatibility, replace with $localRelationship->block()
189                                         Contact\User::setBlocked($contact['id'], $this->session->getLocalUserId(), true);
190                                         $message = $this->t('Contact has been blocked');
191                                 }
192
193                                 // @TODO: add $this->localRelationship->save($localRelationship);
194                                 $this->systemMessages->addInfo($message);
195                         }
196
197                         if ($cmd === 'ignore') {
198                                 if ($localRelationship->ignored) {
199                                         // @TODO Backward compatibility, replace with $localRelationship->unblock()
200                                         Contact\User::setIgnored($contact['id'], $this->session->getLocalUserId(), false);
201
202                                         $message = $this->t('Contact has been unignored');
203                                 } else {
204                                         // @TODO Backward compatibility, replace with $localRelationship->block()
205                                         Contact\User::setIgnored($contact['id'], $this->session->getLocalUserId(), true);
206                                         $message = $this->t('Contact has been ignored');
207                                 }
208
209                                 // @TODO: add $this->localRelationship->save($localRelationship);
210                                 $this->systemMessages->addInfo($message);
211                         }
212
213                         if ($cmd === 'collapse') {
214                                 if ($localRelationship->collapsed) {
215                                         // @TODO Backward compatibility, replace with $localRelationship->unblock()
216                                         Contact\User::setCollapsed($contact['id'], $this->session->getLocalUserId(), false);
217
218                                         $message = $this->t('Contact has been uncollapsed');
219                                 } else {
220                                         // @TODO Backward compatibility, replace with $localRelationship->block()
221                                         Contact\User::setCollapsed($contact['id'], $this->session->getLocalUserId(), true);
222                                         $message = $this->t('Contact has been collapsed');
223                                 }
224
225                                 // @TODO: add $this->localRelationship->save($localRelationship);
226                                 $this->systemMessages->addInfo($message);
227                         }
228
229                         $this->baseUrl->redirect('contact/' . $contact['id']);
230                 }
231
232                 $vcard_widget  = Widget\VCard::getHTML($contact);
233                 $circles_widget = '';
234
235                 if (!in_array($localRelationship->rel, [Contact::NOTHING, Contact::SELF])) {
236                         $circles_widget = Circle::sidebarWidget('contact', 'circle', 'full', 'everyone', $data['user']);
237                 }
238
239                 $this->page['aside'] .= $vcard_widget . $circles_widget;
240
241                 $o = '';
242                 Nav::setSelected('contact');
243
244                 $_SESSION['return_path'] = $this->args->getQueryString();
245
246                 $this->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('contact_head.tpl'), [
247                 ]);
248
249                 switch ($localRelationship->rel) {
250                         case Contact::FRIEND:   $relation_text = $this->t('You are mutual friends with %s', $contact['name']); break;
251                         case Contact::FOLLOWER: $relation_text = $this->t('You are sharing with %s', $contact['name']); break;
252                         case Contact::SHARING:  $relation_text = $this->t('%s is sharing with you', $contact['name']); break;
253                         default:
254                                 $relation_text = '';
255                 }
256
257                 if (!Protocol::supportsFollow($contact['network'])) {
258                         $relation_text = '';
259                 }
260
261                 $url = Contact::magicLinkByContact($contact);
262                 if (strpos($url, 'contact/redir/') === 0) {
263                         $sparkle = ' class="sparkle" ';
264                 } else {
265                         $sparkle = '';
266                 }
267
268                 $insecure = $this->t('Private communications are not available for this contact.');
269
270                 $serverIgnored =
271                         $this->userGServer->isIgnoredByUser($this->session->getLocalUserId(), $contact['gsid']) ?
272                                 $this->t('This contact is on a server you ignored.')
273                                 : '';
274
275                 $last_update = (($contact['last-update'] <= DBA::NULL_DATETIME) ? $this->t('Never') : DateTimeFormat::local($contact['last-update'], 'D, j M Y, g:i A'));
276
277                 if ($contact['last-update'] > DBA::NULL_DATETIME) {
278                         $last_update .= ' ' . ($contact['failed'] ? $this->t('(Update was not successful)') : $this->t('(Update was successful)'));
279                 }
280                 $lblsuggest = (($contact['network'] === Protocol::DFRN) ? $this->t('Suggest friends') : '');
281
282                 $poll_enabled = in_array($contact['network'], [Protocol::DFRN, Protocol::OSTATUS, Protocol::FEED, Protocol::MAIL]);
283
284                 $nettype = $this->t('Network type: %s', ContactSelector::networkToName($contact['network'], $contact['url'], $contact['protocol'], $contact['gsid']));
285
286                 // tabs
287                 $tab_str = Module\Contact::getTabsHTML($contact, Module\Contact::TAB_PROFILE);
288
289                 $lost_contact = (($contact['archive'] && $contact['term-date'] > DBA::NULL_DATETIME && $contact['term-date'] < DateTimeFormat::utcNow()) ? $this->t('Communications lost with this contact!') : '');
290
291                 $fetch_further_information = null;
292                 if ($contact['network'] == Protocol::FEED) {
293                         $fetch_further_information = [
294                                 'fetch_further_information',
295                                 $this->t('Fetch further information for feeds'),
296                                 $localRelationship->fetchFurtherInformation,
297                                 $this->t('Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn\'t contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags.'),
298                                 [
299                                         Entity\LocalRelationship::FFI_NONE        => $this->t('Disabled'),
300                                         Entity\LocalRelationship::FFI_INFORMATION => $this->t('Fetch information'),
301                                         Entity\LocalRelationship::FFI_KEYWORD     => $this->t('Fetch keywords'),
302                                         Entity\LocalRelationship::FFI_BOTH        => $this->t('Fetch information and keywords')
303                                 ]
304                         ];
305                 }
306
307                 $allow_remote_self = in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::FEED, Protocol::DFRN, Protocol::DIASPORA, Protocol::TWITTER])
308                         && $this->config->get('system', 'allow_users_remote_self');
309
310                 if ($contact['network'] == Protocol::FEED) {
311                         $remote_self_options = [
312                                 Contact::MIRROR_DEACTIVATED => $this->t('No mirroring'),
313                                 Contact::MIRROR_OWN_POST    => $this->t('Mirror as my own posting')
314                         ];
315                 } elseif ($contact['network'] == Protocol::ACTIVITYPUB) {
316                         $remote_self_options = [
317                                 Contact::MIRROR_DEACTIVATED    => $this->t('No mirroring'),
318                                 Contact::MIRROR_NATIVE_RESHARE => $this->t('Native reshare')
319                         ];
320                 } elseif ($contact['network'] == Protocol::DFRN) {
321                         $remote_self_options = [
322                                 Contact::MIRROR_DEACTIVATED    => $this->t('No mirroring'),
323                                 Contact::MIRROR_OWN_POST       => $this->t('Mirror as my own posting'),
324                                 Contact::MIRROR_NATIVE_RESHARE => $this->t('Native reshare')
325                         ];
326                 } else {
327                         $remote_self_options = [
328                                 Contact::MIRROR_DEACTIVATED => $this->t('No mirroring'),
329                                 Contact::MIRROR_OWN_POST    => $this->t('Mirror as my own posting')
330                         ];
331                 }
332
333                 $poll_interval = null;
334                 if ((($contact['network'] == Protocol::FEED) && !$this->config->get('system', 'adjust_poll_frequency')) || ($contact['network'] == Protocol::MAIL)) {
335                         $poll_interval = ContactSelector::pollInterval($localRelationship->priority, !$poll_enabled);
336                 }
337
338                 $contact_actions = $this->getContactActions($contact, $localRelationship);
339
340                 if ($localRelationship->rel !== Contact::NOTHING) {
341                         $lbl_info1              = $this->t('Contact Information / Notes');
342                         $contact_settings_label = $this->t('Contact Settings');
343                 } else {
344                         $lbl_info1              = null;
345                         $contact_settings_label = null;
346                 }
347
348                 $tpl = Renderer::getMarkupTemplate('contact_edit.tpl');
349                 $o .= Renderer::replaceMacros($tpl, [
350                         '$header'                    => $this->t('Contact'),
351                         '$tab_str'                   => $tab_str,
352                         '$submit'                    => $this->t('Submit'),
353                         '$lbl_info1'                 => $lbl_info1,
354                         '$lbl_info2'                 => $this->t('Their personal note'),
355                         '$reason'                    => trim($contact['reason'] ?? ''),
356                         '$infedit'                   => $this->t('Edit contact notes'),
357                         '$common_link'               => 'contact/' . $contact['id'] . '/contacts/common',
358                         '$relation_text'             => $relation_text,
359                         '$visit'                     => $this->t('Visit %s\'s profile [%s]', $contact['name'], $contact['url']),
360                         '$blockunblock'              => $this->t('Block/Unblock contact'),
361                         '$ignorecont'                => $this->t('Ignore contact'),
362                         '$lblrecent'                 => $this->t('View conversations'),
363                         '$lblsuggest'                => $lblsuggest,
364                         '$nettype'                   => $nettype,
365                         '$poll_interval'             => $poll_interval,
366                         '$poll_enabled'              => $poll_enabled,
367                         '$lastupdtext'               => $this->t('Last update:'),
368                         '$lost_contact'              => $lost_contact,
369                         '$updpub'                    => $this->t('Update public posts'),
370                         '$last_update'               => $last_update,
371                         '$udnow'                     => $this->t('Update now'),
372                         '$contact_id'                => $contact['id'],
373                         '$pending'                   => $localRelationship->pending   ? $this->t('Awaiting connection acknowledge') : '',
374                         '$blocked'                   => $localRelationship->blocked   ? $this->t('Currently blocked') : '',
375                         '$ignored'                   => $localRelationship->ignored   ? $this->t('Currently ignored') : '',
376                         '$collapsed'                 => $localRelationship->collapsed ? $this->t('Currently collapsed') : '',
377                         '$archived'                  => ($contact['archive'] ? $this->t('Currently archived') : ''),
378                         '$insecure'                  => (in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::MAIL, Protocol::DIASPORA]) ? '' : $insecure),
379                         '$serverIgnored'             => $serverIgnored,
380                         '$manageServers'             => $this->t('Manage remote servers'),
381                         '$cinfo'                     => ['info', '', $localRelationship->info, ''],
382                         '$hidden'                    => ['hidden', $this->t('Hide this contact from others'), $localRelationship->hidden, $this->t('Replies/likes to your public posts <strong>may</strong> still be visible')],
383                         '$notify_new_posts'          => ['notify_new_posts', $this->t('Notification for new posts'), ($localRelationship->notifyNewPosts), $this->t('Send a notification of every new post of this contact')],
384                         '$fetch_further_information' => $fetch_further_information,
385                         '$ffi_keyword_denylist'      => ['ffi_keyword_denylist', $this->t('Keyword Deny List'), $localRelationship->ffiKeywordDenylist, $this->t('Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected')],
386                         '$photo'                     => Contact::getPhoto($contact),
387                         '$name'                      => $contact['name'],
388                         '$sparkle'                   => $sparkle,
389                         '$url'                       => $url,
390                         '$profileurllabel'           => $this->t('Profile URL'),
391                         '$profileurl'                => $contact['url'],
392                         '$account_type'              => Contact::getAccountType($contact['contact-type']),
393                         '$location'                  => BBCode::convertForUriId($contact['uri-id'] ?? 0, $contact['location']),
394                         '$location_label'            => $this->t('Location:'),
395                         '$xmpp'                      => BBCode::convertForUriId($contact['uri-id'] ?? 0, $contact['xmpp']),
396                         '$xmpp_label'                => $this->t('XMPP:'),
397                         '$matrix'                    => BBCode::convertForUriId($contact['uri-id'] ?? 0, $contact['matrix']),
398                         '$matrix_label'              => $this->t('Matrix:'),
399                         '$about'                     => BBCode::convertForUriId($contact['uri-id'] ?? 0, $contact['about'], BBCode::EXTERNAL),
400                         '$about_label'               => $this->t('About:'),
401                         '$keywords'                  => $contact['keywords'],
402                         '$keywords_label'            => $this->t('Tags:'),
403                         '$contact_action_button'     => $this->t('Actions'),
404                         '$contact_actions'           => $contact_actions,
405                         '$contact_status'            => $this->t('Status'),
406                         '$contact_settings_label'    => $contact_settings_label,
407                         '$contact_profile_label'     => $this->t('Profile'),
408                         '$allow_remote_self'         => $allow_remote_self,
409                         '$remote_self'               => [
410                                 'remote_self',
411                                 $this->t('Mirror postings from this contact'),
412                                 $localRelationship->remoteSelf,
413                                 $this->t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'),
414                                 $remote_self_options
415                         ],
416                 ]);
417
418                 $arr = ['contact' => $contact, 'output' => $o];
419
420                 Hook::callAll('contact_edit', $arr);
421
422                 return $arr['output'];
423         }
424
425         /**
426          * Returns the list of available actions that can performed on the provided contact
427          *
428          * This includes actions like e.g. 'block', 'hide', 'delete' and others
429          *
430          * @param array                    $contact           Public contact row
431          * @param LocalRelationship\Entity\LocalRelationship $localRelationship
432          * @return array with contact related actions
433          * @throws HTTPException\InternalServerErrorException
434          */
435         private function getContactActions(array $contact, LocalRelationship\Entity\LocalRelationship $localRelationship): array
436         {
437                 $poll_enabled    = in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::OSTATUS, Protocol::FEED, Protocol::MAIL]);
438                 $contact_actions = [];
439
440                 $formSecurityToken = self::getFormSecurityToken('contact_action');
441
442                 if ($localRelationship->rel & Contact::SHARING) {
443                         $contact_actions['unfollow'] = [
444                                 'label' => $this->t('Unfollow'),
445                                 'url'   => 'contact/unfollow?url=' . urlencode($contact['url']) . '&auto=1',
446                                 'title' => '',
447                                 'sel'   => '',
448                                 'id'    => 'unfollow',
449                         ];
450                 } else {
451                         $contact_actions['follow'] = [
452                                 'label' => $this->t('Follow'),
453                                 'url'   => 'contact/follow?url=' . urlencode($contact['url']) . '&auto=1',
454                                 'title' => '',
455                                 'sel'   => '',
456                                 'id'    => 'follow',
457                         ];
458                 }
459
460                 // Provide friend suggestion only for Friendica contacts
461                 if ($contact['network'] === Protocol::DFRN) {
462                         $contact_actions['suggest'] = [
463                                 'label' => $this->t('Suggest friends'),
464                                 'url'   => 'fsuggest/' . $contact['id'],
465                                 'title' => '',
466                                 'sel'   => '',
467                                 'id'    => 'suggest',
468                         ];
469                 }
470
471                 if ($poll_enabled) {
472                         $contact_actions['update'] = [
473                                 'label' => $this->t('Update now'),
474                                 'url'   => 'contact/' . $contact['id'] . '/update?t=' . $formSecurityToken,
475                                 'title' => '',
476                                 'sel'   => '',
477                                 'id'    => 'update',
478                         ];
479                 }
480
481                 if (Protocol::supportsProbe($contact['network'])) {
482                         $contact_actions['updateprofile'] = [
483                                 'label' => $this->t('Refetch contact data'),
484                                 'url'   => 'contact/' . $contact['id'] . '/updateprofile?t=' . $formSecurityToken,
485                                 'title' => '',
486                                 'sel'   => '',
487                                 'id'    => 'updateprofile',
488                         ];
489                 }
490
491                 $contact_actions['block'] = [
492                         'label' => $localRelationship->blocked ? $this->t('Unblock') : $this->t('Block'),
493                         'url'   => 'contact/' . $contact['id'] . '/block?t=' . $formSecurityToken,
494                         'title' => $this->t('Toggle Blocked status'),
495                         'sel'   => $localRelationship->blocked ? 'active' : '',
496                         'id'    => 'toggle-block',
497                 ];
498
499                 $contact_actions['ignore'] = [
500                         'label' => $localRelationship->ignored ? $this->t('Unignore') : $this->t('Ignore'),
501                         'url'   => 'contact/' . $contact['id'] . '/ignore?t=' . $formSecurityToken,
502                         'title' => $this->t('Toggle Ignored status'),
503                         'sel'   => $localRelationship->ignored ? 'active' : '',
504                         'id'    => 'toggle-ignore',
505                 ];
506
507                 $contact_actions['collapse'] = [
508                         'label' => $localRelationship->collapsed ? $this->t('Uncollapse') : $this->t('Collapse'),
509                         'url'   => 'contact/' . $contact['id'] . '/collapse?t=' . $formSecurityToken,
510                         'title' => $this->t('Toggle Collapsed status'),
511                         'sel'   => $localRelationship->collapsed ? 'active' : '',
512                         'id'    => 'toggle-collapse',
513                 ];
514
515                 if (Protocol::supportsRevokeFollow($contact['network']) && in_array($localRelationship->rel, [Contact::FOLLOWER, Contact::FRIEND])) {
516                         $contact_actions['revoke_follow'] = [
517                                 'label' => $this->t('Revoke Follow'),
518                                 'url'   => 'contact/' . $contact['id'] . '/revoke',
519                                 'title' => $this->t('Revoke the follow from this contact'),
520                                 'sel'   => '',
521                                 'id'    => 'revoke_follow',
522                         ];
523                 }
524
525                 return $contact_actions;
526         }
527
528         /**
529          * Updates contact from probing
530          *
531          * @param int $contact_id Id of the contact with uid != 0
532          * @return void
533          * @throws HTTPException\InternalServerErrorException
534          * @throws \ImagickException
535          */
536         private function updateContactFromProbe(int $contact_id)
537         {
538                 if (!$this->db->exists('contact', ['id' => $contact_id, 'uid' => [0, $this->session->getLocalUserId()], 'deleted' => false])) {
539                         return;
540                 }
541
542                 // Update the entry in the contact table
543                 Contact::updateFromProbe($contact_id);
544         }
545 }