]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact.php
Ensure that cached avatar fields are set
[friendica.git] / src / Module / Contact.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;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Content\ContactSelector;
27 use Friendica\Content\Nav;
28 use Friendica\Content\Pager;
29 use Friendica\Content\Text\BBCode;
30 use Friendica\Content\Widget;
31 use Friendica\Core\ACL;
32 use Friendica\Core\Hook;
33 use Friendica\Core\Protocol;
34 use Friendica\Core\Renderer;
35 use Friendica\Core\Worker;
36 use Friendica\Database\DBA;
37 use Friendica\DI;
38 use Friendica\Model;
39 use Friendica\Model\Contact as ModelContact;
40 use Friendica\Module\Security\Login;
41 use Friendica\Network\HTTPException\BadRequestException;
42 use Friendica\Network\HTTPException\NotFoundException;
43 use Friendica\Util\DateTimeFormat;
44 use Friendica\Util\Proxy as ProxyUtils;
45 use Friendica\Util\Strings;
46
47 /**
48  *  Manages and show Contacts and their content
49  */
50 class Contact extends BaseModule
51 {
52         private static function batchActions()
53         {
54                 if (empty($_POST['contact_batch']) || !is_array($_POST['contact_batch'])) {
55                         return;
56                 }
57
58                 $contacts_id = $_POST['contact_batch'];
59
60                 $stmt = DBA::select('contact', ['id', 'archive'], ['id' => $contacts_id, 'uid' => local_user(), 'self' => false, 'deleted' => false]);
61                 $orig_records = DBA::toArray($stmt);
62
63                 $count_actions = 0;
64                 foreach ($orig_records as $orig_record) {
65                         $contact_id = $orig_record['id'];
66                         if (!empty($_POST['contacts_batch_update'])) {
67                                 self::updateContactFromPoll($contact_id);
68                                 $count_actions++;
69                         }
70                         if (!empty($_POST['contacts_batch_block'])) {
71                                 self::blockContact($contact_id);
72                                 $count_actions++;
73                         }
74                         if (!empty($_POST['contacts_batch_ignore'])) {
75                                 self::ignoreContact($contact_id);
76                                 $count_actions++;
77                         }
78                         if (!empty($_POST['contacts_batch_archive'])
79                                 && self::archiveContact($contact_id, $orig_record)
80                         ) {
81                                 $count_actions++;
82                         }
83                         if (!empty($_POST['contacts_batch_drop'])) {
84                                 self::dropContact($orig_record);
85                                 $count_actions++;
86                         }
87                 }
88                 if ($count_actions > 0) {
89                         info(DI::l10n()->tt('%d contact edited.', '%d contacts edited.', $count_actions));
90                 }
91
92                 DI::baseUrl()->redirect('contact');
93         }
94
95         public static function post(array $parameters = [])
96         {
97                 $a = DI::app();
98
99                 if (!local_user()) {
100                         return;
101                 }
102
103                 // @TODO: Replace with parameter from router
104                 if ($a->argv[1] === 'batch') {
105                         self::batchActions();
106                         return;
107                 }
108
109                 // @TODO: Replace with parameter from router
110                 $contact_id = intval($a->argv[1]);
111                 if (!$contact_id) {
112                         return;
113                 }
114
115                 if (!DBA::exists('contact', ['id' => $contact_id, 'uid' => local_user(), 'deleted' => false])) {
116                         notice(DI::l10n()->t('Could not access contact record.'));
117                         DI::baseUrl()->redirect('contact');
118                         return; // NOTREACHED
119                 }
120
121                 Hook::callAll('contact_edit_post', $_POST);
122
123                 $hidden = !empty($_POST['hidden']);
124
125                 $notify = !empty($_POST['notify']);
126
127                 $fetch_further_information = intval($_POST['fetch_further_information'] ?? 0);
128
129                 $ffi_keyword_denylist = Strings::escapeHtml(trim($_POST['ffi_keyword_denylist'] ?? ''));
130
131                 $priority = intval($_POST['poll'] ?? 0);
132                 if ($priority > 5 || $priority < 0) {
133                         $priority = 0;
134                 }
135
136                 $info = Strings::escapeHtml(trim($_POST['info'] ?? ''));
137
138                 $r = DBA::update('contact', [
139                         'priority'   => $priority,
140                         'info'       => $info,
141                         'hidden'     => $hidden,
142                         'notify_new_posts' => $notify,
143                         'fetch_further_information' => $fetch_further_information,
144                         'ffi_keyword_denylist'     => $ffi_keyword_denylist],
145                         ['id' => $contact_id, 'uid' => local_user()]
146                 );
147
148                 if (!DBA::isResult($r)) {
149                         notice(DI::l10n()->t('Failed to update contact record.'));
150                 }
151
152                 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => local_user(), 'deleted' => false]);
153                 if (DBA::isResult($contact)) {
154                         $a->data['contact'] = $contact;
155                 }
156
157                 return;
158         }
159
160         /* contact actions */
161
162         private static function updateContactFromPoll($contact_id)
163         {
164                 $contact = DBA::selectFirst('contact', ['uid', 'url', 'network'], ['id' => $contact_id, 'uid' => local_user(), 'deleted' => false]);
165                 if (!DBA::isResult($contact)) {
166                         return;
167                 }
168
169                 if ($contact['network'] == Protocol::OSTATUS) {
170                         $user = Model\User::getById($contact['uid']);
171                         $result = Model\Contact::createFromProbe($user, $contact['url'], false, $contact['network']);
172
173                         if ($result['success']) {
174                                 DBA::update('contact', ['subhub' => 1], ['id' => $contact_id]);
175                         }
176                 } else {
177                         // pull feed and consume it, which should subscribe to the hub.
178                         Worker::add(PRIORITY_HIGH, 'OnePoll', $contact_id, 'force');
179                 }
180         }
181
182         private static function updateContactFromProbe($contact_id)
183         {
184                 $contact = DBA::selectFirst('contact', ['url'], ['id' => $contact_id, 'uid' => local_user(), 'deleted' => false]);
185                 if (!DBA::isResult($contact)) {
186                         return;
187                 }
188
189                 // Update the entry in the contact table
190                 Model\Contact::updateFromProbe($contact_id, '', true);
191
192                 // Update the entry in the gcontact table
193                 Model\GContact::updateFromProbe($contact['url']);
194         }
195
196         /**
197          * Toggles the blocked status of a contact identified by id.
198          *
199          * @param $contact_id
200          * @throws \Exception
201          */
202         private static function blockContact($contact_id)
203         {
204                 $blocked = !Model\Contact::isBlockedByUser($contact_id, local_user());
205                 Model\Contact::setBlockedForUser($contact_id, local_user(), $blocked);
206         }
207
208         /**
209          * Toggles the ignored status of a contact identified by id.
210          *
211          * @param $contact_id
212          * @throws \Exception
213          */
214         private static function ignoreContact($contact_id)
215         {
216                 $ignored = !Model\Contact::isIgnoredByUser($contact_id, local_user());
217                 Model\Contact::setIgnoredForUser($contact_id, local_user(), $ignored);
218         }
219
220         /**
221          * Toggles the archived status of a contact identified by id.
222          * If the current status isn't provided, this will always archive the contact.
223          *
224          * @param $contact_id
225          * @param $orig_record
226          * @return bool
227          * @throws \Exception
228          */
229         private static function archiveContact($contact_id, $orig_record)
230         {
231                 $archived = empty($orig_record['archive']);
232                 $r = DBA::update('contact', ['archive' => $archived], ['id' => $contact_id, 'uid' => local_user()]);
233
234                 return DBA::isResult($r);
235         }
236
237         private static function dropContact($orig_record)
238         {
239                 $owner = Model\User::getOwnerDataById(local_user());
240                 if (!DBA::isResult($owner)) {
241                         return;
242                 }
243
244                 Model\Contact::terminateFriendship($owner, $orig_record, true);
245                 Model\Contact::remove($orig_record['id']);
246         }
247
248         public static function content(array $parameters = [], $update = 0)
249         {
250                 if (!local_user()) {
251                         return Login::form($_SERVER['REQUEST_URI']);
252                 }
253
254                 $a = DI::app();
255
256                 $search = Strings::escapeTags(trim($_GET['search'] ?? ''));
257                 $nets   = Strings::escapeTags(trim($_GET['nets']   ?? ''));
258                 $rel    = Strings::escapeTags(trim($_GET['rel']    ?? ''));
259                 $group  = Strings::escapeTags(trim($_GET['group']  ?? ''));
260
261                 if (empty(DI::page()['aside'])) {
262                         DI::page()['aside'] = '';
263                 }
264
265                 $contact_id = null;
266                 $contact = null;
267                 // @TODO: Replace with parameter from router
268                 if ($a->argc == 2 && intval($a->argv[1])
269                         || $a->argc == 3 && intval($a->argv[1]) && in_array($a->argv[2], ['posts', 'conversations'])
270                 ) {
271                         $contact_id = intval($a->argv[1]);
272                         $contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => local_user(), 'deleted' => false]);
273
274                         if (!DBA::isResult($contact)) {
275                                 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => 0, 'deleted' => false]);
276                         }
277
278                         // Don't display contacts that are about to be deleted
279                         if ($contact['network'] == Protocol::PHANTOM) {
280                                 $contact = false;
281                         }
282
283                         $contact = ModelContact::checkAvatarCacheArray($contact);
284                 }
285
286                 if (DBA::isResult($contact)) {
287                         if ($contact['self']) {
288                                 // @TODO: Replace with parameter from router
289                                 if (($a->argc == 3) && intval($a->argv[1]) && in_array($a->argv[2], ['posts', 'conversations'])) {
290                                         DI::baseUrl()->redirect('profile/' . $contact['nick']);
291                                 } else {
292                                         DI::baseUrl()->redirect('profile/' . $contact['nick'] . '/profile');
293                                 }
294                         }
295
296                         $a->data['contact'] = $contact;
297
298                         if (($contact['network'] != '') && ($contact['network'] != Protocol::DFRN)) {
299                                 $network_link = Strings::formatNetworkName($contact['network'], $contact['url']);
300                         } else {
301                                 $network_link = '';
302                         }
303
304                         $follow_link = '';
305                         $unfollow_link = '';
306                         if (in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
307                                 if ($contact['uid'] && in_array($contact['rel'], [Model\Contact::SHARING, Model\Contact::FRIEND])) {
308                                         $unfollow_link = 'unfollow?url=' . urlencode($contact['url']);
309                                 } elseif(!$contact['pending']) {
310                                         $follow_link = 'follow?url=' . urlencode($contact['url']);
311                                 }
312                         }
313
314                         $wallmessage_link = '';
315                         if ($contact['uid'] && Model\Contact::canReceivePrivateMessages($contact)) {
316                                 $wallmessage_link = 'message/new/' . $contact['id'];
317                         }
318
319                         $vcard_widget = Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/vcard.tpl'), [
320                                 '$name'         => $contact['name'],
321                                 '$photo'        => $contact['photo'],
322                                 '$url'          => Model\Contact::magicLinkByContact($contact, $contact['url']),
323                                 '$addr'         => $contact['addr'] ?? '',
324                                 '$network_link' => $network_link,
325                                 '$network'      => DI::l10n()->t('Network:'),
326                                 '$account_type' => Model\Contact::getAccountType($contact),
327                                 '$follow'       => DI::l10n()->t('Follow'),
328                                 '$follow_link'   => $follow_link,
329                                 '$unfollow'     => DI::l10n()->t('Unfollow'),
330                                 '$unfollow_link' => $unfollow_link,
331                                 '$wallmessage'  => DI::l10n()->t('Message'),
332                                 '$wallmessage_link' => $wallmessage_link,
333                         ]);
334
335                         $findpeople_widget = '';
336                         $follow_widget = '';
337                         $networks_widget = '';
338                         $rel_widget = '';
339
340                         if ($contact['uid'] != 0) {
341                                 $groups_widget = Model\Group::sidebarWidget('contact', 'group', 'full', 'everyone', $contact_id);
342                         } else {
343                                 $groups_widget = '';
344                         }
345                 } else {
346                         $vcard_widget = '';
347                         $findpeople_widget = Widget::findPeople();
348                         if (isset($_GET['add'])) {
349                                 $follow_widget = Widget::follow($_GET['add']);
350                         } else {
351                                 $follow_widget = Widget::follow();
352                         }
353
354                         $networks_widget = Widget::networks($_SERVER['REQUEST_URI'], $nets);
355                         $rel_widget = Widget::contactRels($_SERVER['REQUEST_URI'], $rel);
356                         $groups_widget = Widget::groups($_SERVER['REQUEST_URI'], $group);
357                 }
358
359                 DI::page()['aside'] .= $vcard_widget . $findpeople_widget . $follow_widget . $groups_widget . $networks_widget . $rel_widget;
360
361                 $tpl = Renderer::getMarkupTemplate('contacts-head.tpl');
362                 DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
363                         '$baseurl' => DI::baseUrl()->get(true),
364                 ]);
365
366                 $o = '';
367                 Nav::setSelected('contact');
368
369                 if (!local_user()) {
370                         notice(DI::l10n()->t('Permission denied.'));
371                         return Login::form();
372                 }
373
374                 if ($a->argc == 3) {
375                         $contact_id = intval($a->argv[1]);
376                         if (!$contact_id) {
377                                 throw new BadRequestException();
378                         }
379
380                         // @TODO: Replace with parameter from router
381                         $cmd = $a->argv[2];
382
383                         $orig_record = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => [0, local_user()], 'self' => false, 'deleted' => false]);
384                         if (!DBA::isResult($orig_record)) {
385                                 throw new NotFoundException(DI::l10n()->t('Contact not found'));
386                         }
387
388                         if ($cmd === 'update' && ($orig_record['uid'] != 0)) {
389                                 self::updateContactFromPoll($contact_id);
390                                 DI::baseUrl()->redirect('contact/' . $contact_id);
391                                 // NOTREACHED
392                         }
393
394                         if ($cmd === 'updateprofile' && ($orig_record['uid'] != 0)) {
395                                 self::updateContactFromProbe($contact_id);
396                                 DI::baseUrl()->redirect('contact/' . $contact_id . '/advanced/');
397                                 // NOTREACHED
398                         }
399
400                         if ($cmd === 'block') {
401                                 self::blockContact($contact_id);
402
403                                 $blocked = Model\Contact::isBlockedByUser($contact_id, local_user());
404                                 info(($blocked ? DI::l10n()->t('Contact has been blocked') : DI::l10n()->t('Contact has been unblocked')));
405
406                                 DI::baseUrl()->redirect('contact/' . $contact_id);
407                                 // NOTREACHED
408                         }
409
410                         if ($cmd === 'ignore') {
411                                 self::ignoreContact($contact_id);
412
413                                 $ignored = Model\Contact::isIgnoredByUser($contact_id, local_user());
414                                 info(($ignored ? DI::l10n()->t('Contact has been ignored') : DI::l10n()->t('Contact has been unignored')));
415
416                                 DI::baseUrl()->redirect('contact/' . $contact_id);
417                                 // NOTREACHED
418                         }
419
420                         if ($cmd === 'archive' && ($orig_record['uid'] != 0)) {
421                                 $r = self::archiveContact($contact_id, $orig_record);
422                                 if ($r) {
423                                         $archived = (($orig_record['archive']) ? 0 : 1);
424                                         info((($archived) ? DI::l10n()->t('Contact has been archived') : DI::l10n()->t('Contact has been unarchived')));
425                                 }
426
427                                 DI::baseUrl()->redirect('contact/' . $contact_id);
428                                 // NOTREACHED
429                         }
430
431                         if ($cmd === 'drop' && ($orig_record['uid'] != 0)) {
432                                 // Check if we should do HTML-based delete confirmation
433                                 if (!empty($_REQUEST['confirm'])) {
434                                         // <form> can't take arguments in its 'action' parameter
435                                         // so add any arguments as hidden inputs
436                                         $query = explode_querystring(DI::args()->getQueryString());
437                                         $inputs = [];
438                                         foreach ($query['args'] as $arg) {
439                                                 if (strpos($arg, 'confirm=') === false) {
440                                                         $arg_parts = explode('=', $arg);
441                                                         $inputs[] = ['name' => $arg_parts[0], 'value' => $arg_parts[1]];
442                                                 }
443                                         }
444
445                                         DI::page()['aside'] = '';
446
447                                         return Renderer::replaceMacros(Renderer::getMarkupTemplate('contact_drop_confirm.tpl'), [
448                                                 '$header' => DI::l10n()->t('Drop contact'),
449                                                 '$contact' => self::getContactTemplateVars($orig_record),
450                                                 '$method' => 'get',
451                                                 '$message' => DI::l10n()->t('Do you really want to delete this contact?'),
452                                                 '$extra_inputs' => $inputs,
453                                                 '$confirm' => DI::l10n()->t('Yes'),
454                                                 '$confirm_url' => $query['base'],
455                                                 '$confirm_name' => 'confirmed',
456                                                 '$cancel' => DI::l10n()->t('Cancel'),
457                                         ]);
458                                 }
459                                 // Now check how the user responded to the confirmation query
460                                 if (!empty($_REQUEST['canceled'])) {
461                                         DI::baseUrl()->redirect('contact');
462                                 }
463
464                                 self::dropContact($orig_record);
465                                 info(DI::l10n()->t('Contact has been removed.'));
466
467                                 DI::baseUrl()->redirect('contact');
468                                 // NOTREACHED
469                         }
470                         if ($cmd === 'posts') {
471                                 return self::getPostsHTML($a, $contact_id);
472                         }
473                         if ($cmd === 'conversations') {
474                                 return self::getConversationsHMTL($a, $contact_id, $update);
475                         }
476                 }
477
478                 $_SESSION['return_path'] = DI::args()->getQueryString();
479
480                 if (!empty($a->data['contact']) && is_array($a->data['contact'])) {
481                         $contact = $a->data['contact'];
482
483                         DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('contact_head.tpl'), [
484                                 '$baseurl' => DI::baseUrl()->get(true),
485                         ]);
486
487                         $contact['blocked']  = Model\Contact::isBlockedByUser($contact['id'], local_user());
488                         $contact['readonly'] = Model\Contact::isIgnoredByUser($contact['id'], local_user());
489
490                         $dir_icon = '';
491                         $relation_text = '';
492                         switch ($contact['rel']) {
493                                 case Model\Contact::FRIEND:
494                                         $dir_icon = 'images/lrarrow.gif';
495                                         $relation_text = DI::l10n()->t('You are mutual friends with %s');
496                                         break;
497
498                                 case Model\Contact::FOLLOWER;
499                                         $dir_icon = 'images/larrow.gif';
500                                         $relation_text = DI::l10n()->t('You are sharing with %s');
501                                         break;
502
503                                 case Model\Contact::SHARING;
504                                         $dir_icon = 'images/rarrow.gif';
505                                         $relation_text = DI::l10n()->t('%s is sharing with you');
506                                         break;
507
508                                 default:
509                                         break;
510                         }
511
512                         if ($contact['uid'] == 0) {
513                                 $relation_text = '';
514                         }
515
516                         if (!in_array($contact['network'], array_merge(Protocol::FEDERATED, [Protocol::TWITTER]))) {
517                                 $relation_text = '';
518                         }
519
520                         $relation_text = sprintf($relation_text, $contact['name']);
521
522                         $url = Model\Contact::magicLink($contact['url']);
523                         if (strpos($url, 'redir/') === 0) {
524                                 $sparkle = ' class="sparkle" ';
525                         } else {
526                                 $sparkle = '';
527                         }
528
529                         $insecure = DI::l10n()->t('Private communications are not available for this contact.');
530
531                         $last_update = (($contact['last-update'] <= DBA::NULL_DATETIME) ? DI::l10n()->t('Never') : DateTimeFormat::local($contact['last-update'], 'D, j M Y, g:i A'));
532
533                         if ($contact['last-update'] > DBA::NULL_DATETIME) {
534                                 $last_update .= ' ' . (($contact['last-update'] <= $contact['success_update']) ? DI::l10n()->t('(Update was successful)') : DI::l10n()->t('(Update was not successful)'));
535                         }
536                         $lblsuggest = (($contact['network'] === Protocol::DFRN) ? DI::l10n()->t('Suggest friends') : '');
537
538                         $poll_enabled = in_array($contact['network'], [Protocol::DFRN, Protocol::OSTATUS, Protocol::FEED, Protocol::MAIL]);
539
540                         $nettype = DI::l10n()->t('Network type: %s', ContactSelector::networkToName($contact['network'], $contact['url'], $contact['protocol']));
541
542                         // tabs
543                         $tab_str = self::getTabsHTML($a, $contact, 3);
544
545                         $lost_contact = (($contact['archive'] && $contact['term-date'] > DBA::NULL_DATETIME && $contact['term-date'] < DateTimeFormat::utcNow()) ? DI::l10n()->t('Communications lost with this contact!') : '');
546
547                         $fetch_further_information = null;
548                         if ($contact['network'] == Protocol::FEED) {
549                                 $fetch_further_information = [
550                                         'fetch_further_information',
551                                         DI::l10n()->t('Fetch further information for feeds'),
552                                         $contact['fetch_further_information'],
553                                         DI::l10n()->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.'),
554                                         [
555                                                 '0' => DI::l10n()->t('Disabled'),
556                                                 '1' => DI::l10n()->t('Fetch information'),
557                                                 '3' => DI::l10n()->t('Fetch keywords'),
558                                                 '2' => DI::l10n()->t('Fetch information and keywords')
559                                         ]
560                                 ];
561                         }
562
563                         $poll_interval = null;
564                         if (in_array($contact['network'], [Protocol::FEED, Protocol::MAIL])) {
565                                 $poll_interval = ContactSelector::pollInterval($contact['priority'], !$poll_enabled);
566                         }
567
568                         // Load contactact related actions like hide, suggest, delete and others
569                         $contact_actions = self::getContactActions($contact);
570
571                         if ($contact['uid'] != 0) {
572                                 $lbl_info1 = DI::l10n()->t('Contact Information / Notes');
573                                 $contact_settings_label = DI::l10n()->t('Contact Settings');
574                         } else {
575                                 $lbl_info1 = null;
576                                 $contact_settings_label = null;
577                         }
578
579                         $tpl = Renderer::getMarkupTemplate('contact_edit.tpl');
580                         $o .= Renderer::replaceMacros($tpl, [
581                                 '$header'         => DI::l10n()->t('Contact'),
582                                 '$tab_str'        => $tab_str,
583                                 '$submit'         => DI::l10n()->t('Submit'),
584                                 '$lbl_info1'      => $lbl_info1,
585                                 '$lbl_info2'      => DI::l10n()->t('Their personal note'),
586                                 '$reason'         => trim(Strings::escapeTags($contact['reason'])),
587                                 '$infedit'        => DI::l10n()->t('Edit contact notes'),
588                                 '$common_link'    => 'common/loc/' . local_user() . '/' . $contact['id'],
589                                 '$relation_text'  => $relation_text,
590                                 '$visit'          => DI::l10n()->t('Visit %s\'s profile [%s]', $contact['name'], $contact['url']),
591                                 '$blockunblock'   => DI::l10n()->t('Block/Unblock contact'),
592                                 '$ignorecont'     => DI::l10n()->t('Ignore contact'),
593                                 '$lblrecent'      => DI::l10n()->t('View conversations'),
594                                 '$lblsuggest'     => $lblsuggest,
595                                 '$nettype'        => $nettype,
596                                 '$poll_interval'  => $poll_interval,
597                                 '$poll_enabled'   => $poll_enabled,
598                                 '$lastupdtext'    => DI::l10n()->t('Last update:'),
599                                 '$lost_contact'   => $lost_contact,
600                                 '$updpub'         => DI::l10n()->t('Update public posts'),
601                                 '$last_update'    => $last_update,
602                                 '$udnow'          => DI::l10n()->t('Update now'),
603                                 '$contact_id'     => $contact['id'],
604                                 '$block_text'     => ($contact['blocked'] ? DI::l10n()->t('Unblock') : DI::l10n()->t('Block')),
605                                 '$ignore_text'    => ($contact['readonly'] ? DI::l10n()->t('Unignore') : DI::l10n()->t('Ignore')),
606                                 '$insecure'       => (in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::MAIL, Protocol::DIASPORA]) ? '' : $insecure),
607                                 '$info'           => $contact['info'],
608                                 '$cinfo'          => ['info', '', $contact['info'], ''],
609                                 '$blocked'        => ($contact['blocked'] ? DI::l10n()->t('Currently blocked') : ''),
610                                 '$ignored'        => ($contact['readonly'] ? DI::l10n()->t('Currently ignored') : ''),
611                                 '$archived'       => ($contact['archive'] ? DI::l10n()->t('Currently archived') : ''),
612                                 '$pending'        => ($contact['pending'] ? DI::l10n()->t('Awaiting connection acknowledge') : ''),
613                                 '$hidden'         => ['hidden', DI::l10n()->t('Hide this contact from others'), ($contact['hidden'] == 1), DI::l10n()->t('Replies/likes to your public posts <strong>may</strong> still be visible')],
614                                 '$notify'         => ['notify', DI::l10n()->t('Notification for new posts'), ($contact['notify_new_posts'] == 1), DI::l10n()->t('Send a notification of every new post of this contact')],
615                                 '$fetch_further_information' => $fetch_further_information,
616                                 '$ffi_keyword_denylist' => ['ffi_keyword_denylist', DI::l10n()->t('Keyword Deny List'), $contact['ffi_keyword_denylist'], DI::l10n()->t('Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected')],
617                                 '$photo'          => $contact['photo'],
618                                 '$name'           => $contact['name'],
619                                 '$dir_icon'       => $dir_icon,
620                                 '$sparkle'        => $sparkle,
621                                 '$url'            => $url,
622                                 '$profileurllabel'=> DI::l10n()->t('Profile URL'),
623                                 '$profileurl'     => $contact['url'],
624                                 '$account_type'   => Model\Contact::getAccountType($contact),
625                                 '$location'       => BBCode::convert($contact['location']),
626                                 '$location_label' => DI::l10n()->t('Location:'),
627                                 '$xmpp'           => BBCode::convert($contact['xmpp']),
628                                 '$xmpp_label'     => DI::l10n()->t('XMPP:'),
629                                 '$about'          => BBCode::convert($contact['about'], false),
630                                 '$about_label'    => DI::l10n()->t('About:'),
631                                 '$keywords'       => $contact['keywords'],
632                                 '$keywords_label' => DI::l10n()->t('Tags:'),
633                                 '$contact_action_button' => DI::l10n()->t('Actions'),
634                                 '$contact_actions'=> $contact_actions,
635                                 '$contact_status' => DI::l10n()->t('Status'),
636                                 '$contact_settings_label' => $contact_settings_label,
637                                 '$contact_profile_label' => DI::l10n()->t('Profile'),
638                         ]);
639
640                         $arr = ['contact' => $contact, 'output' => $o];
641
642                         Hook::callAll('contact_edit', $arr);
643
644                         return $arr['output'];
645                 }
646
647                 $sql_values = [local_user()];
648
649                 // @TODO: Replace with parameter from router
650                 $type = $a->argv[1] ?? '';
651
652                 switch ($type) {
653                         case 'blocked':
654                                 $sql_extra = " AND EXISTS(SELECT `id` from `user-contact` WHERE `contact`.`id` = `user-contact`.`cid` and `user-contact`.`uid` = ? and `user-contact`.`blocked`)";
655                                 // This makes the query look for contact.uid = 0
656                                 array_unshift($sql_values, 0);
657                                 break;
658                         case 'hidden':
659                                 $sql_extra = " AND `hidden` AND NOT `blocked` AND NOT `pending`";
660                                 break;
661                         case 'ignored':
662                                 $sql_extra = " AND EXISTS(SELECT `id` from `user-contact` WHERE `contact`.`id` = `user-contact`.`cid` and `user-contact`.`uid` = ? and `user-contact`.`ignored`)";
663                                 // This makes the query look for contact.uid = 0
664                                 array_unshift($sql_values, 0);
665                                 break;
666                         case 'archived':
667                                 $sql_extra = " AND `archive` AND NOT `blocked` AND NOT `pending`";
668                                 break;
669                         case 'pending':
670                                 $sql_extra = " AND `pending` AND NOT `archive` AND ((`rel` = ?)
671                                         OR EXISTS (SELECT `id` FROM `intro` WHERE `contact-id` = `contact`.`id` AND NOT `ignore`))";
672                                 $sql_values[] = Model\Contact::SHARING;
673                                 break;
674                         default:
675                                 $sql_extra = " AND NOT `archive` AND NOT `blocked` AND NOT `pending`";
676                                 break;
677                 }
678
679                 $searching = false;
680                 $search_hdr = null;
681                 if ($search) {
682                         $searching = true;
683                         $search_hdr = $search;
684                         $search_txt = preg_quote($search);
685                         $sql_extra .= " AND (name REGEXP ? OR url REGEXP ? OR nick REGEXP ?)";
686                         $sql_values[] = $search_txt;
687                         $sql_values[] = $search_txt;
688                         $sql_values[] = $search_txt;
689                 }
690
691                 if ($nets) {
692                         $sql_extra .= " AND network = ? ";
693                         $sql_values[] = $nets;
694                 }
695
696                 switch ($rel) {
697                         case 'followers':
698                                 $sql_extra .= " AND `rel` IN (?, ?)";
699                                 $sql_values[] = Model\Contact::FOLLOWER;
700                                 $sql_values[] = Model\Contact::FRIEND;
701                                 break;
702                         case 'following':
703                                 $sql_extra .= " AND `rel` IN (?, ?)";
704                                 $sql_values[] = Model\Contact::SHARING;
705                                 $sql_values[] = Model\Contact::FRIEND;
706                                 break;
707                         case 'mutuals':
708                                 $sql_extra .= " AND `rel` = ?";
709                                 $sql_values[] = Model\Contact::FRIEND;
710                                 break;
711                 }
712
713                 if ($group) {
714                         $sql_extra = " AND EXISTS(SELECT `id` FROM `group_member` WHERE `gid` = ? AND `contact`.`id` = `contact-id`)";
715                         $sql_values[] = $group;
716                 }
717
718                 $total = 0;
719                 $stmt = DBA::p("SELECT COUNT(*) AS `total`
720                         FROM `contact`
721                         WHERE `uid` = ?
722                         AND `self` = 0
723                         AND NOT `deleted`
724                         $sql_extra
725                         " . Widget::unavailableNetworks(),
726                         $sql_values
727                 );
728                 if (DBA::isResult($stmt)) {
729                         $total = DBA::fetch($stmt)['total'];
730                 }
731                 DBA::close($stmt);
732
733                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
734
735                 $sql_values[] = $pager->getStart();
736                 $sql_values[] = $pager->getItemsPerPage();
737
738                 $contacts = [];
739
740                 $stmt = DBA::p("SELECT *
741                         FROM `contact`
742                         WHERE `uid` = ?
743                         AND `self` = 0
744                         AND NOT `deleted`
745                         $sql_extra
746                         ORDER BY `name` ASC
747                         LIMIT ?, ?",
748                         $sql_values
749                 );
750                 while ($contact = DBA::fetch($stmt)) {
751                         $contact['blocked'] = Model\Contact::isBlockedByUser($contact['id'], local_user());
752                         $contact['readonly'] = Model\Contact::isIgnoredByUser($contact['id'], local_user());
753                         $contacts[] = self::getContactTemplateVars($contact);
754                 }
755                 DBA::close($stmt);
756
757                 $tabs = [
758                         [
759                                 'label' => DI::l10n()->t('All Contacts'),
760                                 'url'   => 'contact',
761                                 'sel'   => !$type ? 'active' : '',
762                                 'title' => DI::l10n()->t('Show all contacts'),
763                                 'id'    => 'showall-tab',
764                                 'accesskey' => 'l',
765                         ],
766                         [
767                                 'label' => DI::l10n()->t('Pending'),
768                                 'url'   => 'contact/pending',
769                                 'sel'   => $type == 'pending' ? 'active' : '',
770                                 'title' => DI::l10n()->t('Only show pending contacts'),
771                                 'id'    => 'showpending-tab',
772                                 'accesskey' => 'p',
773                         ],
774                         [
775                                 'label' => DI::l10n()->t('Blocked'),
776                                 'url'   => 'contact/blocked',
777                                 'sel'   => $type == 'blocked' ? 'active' : '',
778                                 'title' => DI::l10n()->t('Only show blocked contacts'),
779                                 'id'    => 'showblocked-tab',
780                                 'accesskey' => 'b',
781                         ],
782                         [
783                                 'label' => DI::l10n()->t('Ignored'),
784                                 'url'   => 'contact/ignored',
785                                 'sel'   => $type == 'ignored' ? 'active' : '',
786                                 'title' => DI::l10n()->t('Only show ignored contacts'),
787                                 'id'    => 'showignored-tab',
788                                 'accesskey' => 'i',
789                         ],
790                         [
791                                 'label' => DI::l10n()->t('Archived'),
792                                 'url'   => 'contact/archived',
793                                 'sel'   => $type == 'archived' ? 'active' : '',
794                                 'title' => DI::l10n()->t('Only show archived contacts'),
795                                 'id'    => 'showarchived-tab',
796                                 'accesskey' => 'y',
797                         ],
798                         [
799                                 'label' => DI::l10n()->t('Hidden'),
800                                 'url'   => 'contact/hidden',
801                                 'sel'   => $type == 'hidden' ? 'active' : '',
802                                 'title' => DI::l10n()->t('Only show hidden contacts'),
803                                 'id'    => 'showhidden-tab',
804                                 'accesskey' => 'h',
805                         ],
806                         [
807                                 'label' => DI::l10n()->t('Groups'),
808                                 'url'   => 'group',
809                                 'sel'   => '',
810                                 'title' => DI::l10n()->t('Organize your contact groups'),
811                                 'id'    => 'contactgroups-tab',
812                                 'accesskey' => 'e',
813                         ],
814                 ];
815
816                 $tabs_tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
817                 $tabs_html = Renderer::replaceMacros($tabs_tpl, ['$tabs' => $tabs]);
818
819                 switch ($rel) {
820                         case 'followers': $header = DI::l10n()->t('Followers'); break;
821                         case 'following': $header = DI::l10n()->t('Following'); break;
822                         case 'mutuals':   $header = DI::l10n()->t('Mutual friends'); break;
823                         default:          $header = DI::l10n()->t('Contacts');
824                 }
825
826                 switch ($type) {
827                         case 'pending':  $header .= ' - ' . DI::l10n()->t('Pending'); break;
828                         case 'blocked':  $header .= ' - ' . DI::l10n()->t('Blocked'); break;
829                         case 'hidden':   $header .= ' - ' . DI::l10n()->t('Hidden'); break;
830                         case 'ignored':  $header .= ' - ' . DI::l10n()->t('Ignored'); break;
831                         case 'archived': $header .= ' - ' . DI::l10n()->t('Archived'); break;
832                 }
833
834                 $header .= $nets ? ' - ' . ContactSelector::networkToName($nets) : '';
835
836                 $tpl = Renderer::getMarkupTemplate('contacts-template.tpl');
837                 $o .= Renderer::replaceMacros($tpl, [
838                         '$header'     => $header,
839                         '$tabs'       => $tabs_html,
840                         '$total'      => $total,
841                         '$search'     => $search_hdr,
842                         '$desc'       => DI::l10n()->t('Search your contacts'),
843                         '$finding'    => $searching ? DI::l10n()->t('Results for: %s', $search) : '',
844                         '$submit'     => DI::l10n()->t('Find'),
845                         '$cmd'        => DI::args()->getCommand(),
846                         '$contacts'   => $contacts,
847                         '$contact_drop_confirm' => DI::l10n()->t('Do you really want to delete this contact?'),
848                         'multiselect' => 1,
849                         '$batch_actions' => [
850                                 'contacts_batch_update'  => DI::l10n()->t('Update'),
851                                 'contacts_batch_block'   => DI::l10n()->t('Block') . '/' . DI::l10n()->t('Unblock'),
852                                 'contacts_batch_ignore'  => DI::l10n()->t('Ignore') . '/' . DI::l10n()->t('Unignore'),
853                                 'contacts_batch_archive' => DI::l10n()->t('Archive') . '/' . DI::l10n()->t('Unarchive'),
854                                 'contacts_batch_drop'    => DI::l10n()->t('Delete'),
855                         ],
856                         '$h_batch_actions' => DI::l10n()->t('Batch Actions'),
857                         '$paginate'   => $pager->renderFull($total),
858                 ]);
859
860                 return $o;
861         }
862
863         /**
864          * List of pages for the Contact TabBar
865          *
866          * Available Pages are 'Status', 'Profile', 'Contacts' and 'Common Friends'
867          *
868          * @param App   $a
869          * @param array $contact    The contact array
870          * @param int   $active_tab 1 if tab should be marked as active
871          *
872          * @return string HTML string of the contact page tabs buttons.
873          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
874          */
875         public static function getTabsHTML($a, $contact, $active_tab)
876         {
877                 // tabs
878                 $tabs = [
879                         [
880                                 'label' => DI::l10n()->t('Status'),
881                                 'url'   => "contact/" . $contact['id'] . "/conversations",
882                                 'sel'   => (($active_tab == 1) ? 'active' : ''),
883                                 'title' => DI::l10n()->t('Conversations started by this contact'),
884                                 'id'    => 'status-tab',
885                                 'accesskey' => 'm',
886                         ],
887                         [
888                                 'label' => DI::l10n()->t('Posts and Comments'),
889                                 'url'   => "contact/" . $contact['id'] . "/posts",
890                                 'sel'   => (($active_tab == 2) ? 'active' : ''),
891                                 'title' => DI::l10n()->t('Status Messages and Posts'),
892                                 'id'    => 'posts-tab',
893                                 'accesskey' => 'p',
894                         ],
895                         [
896                                 'label' => DI::l10n()->t('Profile'),
897                                 'url'   => "contact/" . $contact['id'],
898                                 'sel'   => (($active_tab == 3) ? 'active' : ''),
899                                 'title' => DI::l10n()->t('Profile Details'),
900                                 'id'    => 'profile-tab',
901                                 'accesskey' => 'o',
902                         ]
903                 ];
904
905                 // Show this tab only if there is visible friend list
906                 $x = Model\GContact::countAllFriends(local_user(), $contact['id']);
907                 if ($x) {
908                         $tabs[] = ['label' => DI::l10n()->t('Contacts'),
909                                 'url'   => "allfriends/" . $contact['id'],
910                                 'sel'   => (($active_tab == 4) ? 'active' : ''),
911                                 'title' => DI::l10n()->t('View all contacts'),
912                                 'id'    => 'allfriends-tab',
913                                 'accesskey' => 't'];
914                 }
915
916                 // Show this tab only if there is visible common friend list
917                 $common = Model\GContact::countCommonFriends(local_user(), $contact['id']);
918                 if ($common) {
919                         $tabs[] = ['label' => DI::l10n()->t('Common Friends'),
920                                 'url'   => "common/loc/" . local_user() . "/" . $contact['id'],
921                                 'sel'   => (($active_tab == 5) ? 'active' : ''),
922                                 'title' => DI::l10n()->t('View all common friends'),
923                                 'id'    => 'common-loc-tab',
924                                 'accesskey' => 'd'
925                         ];
926                 }
927
928                 if (!empty($contact['uid'])) {
929                         $tabs[] = ['label' => DI::l10n()->t('Advanced'),
930                                 'url'   => 'contact/' . $contact['id'] . '/advanced/',
931                                 'sel'   => (($active_tab == 6) ? 'active' : ''),
932                                 'title' => DI::l10n()->t('Advanced Contact Settings'),
933                                 'id'    => 'advanced-tab',
934                                 'accesskey' => 'r'
935                         ];
936                 }
937
938                 $tab_tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
939                 $tab_str = Renderer::replaceMacros($tab_tpl, ['$tabs' => $tabs]);
940
941                 return $tab_str;
942         }
943
944         private static function getConversationsHMTL($a, $contact_id, $update)
945         {
946                 $o = '';
947
948                 if (!$update) {
949                         // We need the editor here to be able to reshare an item.
950                         if (local_user()) {
951                                 $x = [
952                                         'is_owner' => true,
953                                         'allow_location' => $a->user['allow_location'],
954                                         'default_location' => $a->user['default-location'],
955                                         'nickname' => $a->user['nickname'],
956                                         'lockstate' => (is_array($a->user) && (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) || strlen($a->user['deny_cid']) || strlen($a->user['deny_gid'])) ? 'lock' : 'unlock'),
957                                         'acl' => ACL::getFullSelectorHTML(DI::page(), $a->user, true),
958                                         'bang' => '',
959                                         'visitor' => 'block',
960                                         'profile_uid' => local_user(),
961                                 ];
962                                 $o = status_editor($a, $x, 0, true);
963                         }
964                 }
965
966                 $contact = DBA::selectFirst('contact', ['uid', 'url', 'id'], ['id' => $contact_id, 'deleted' => false]);
967
968                 if (!$update) {
969                         $o .= self::getTabsHTML($a, $contact, 1);
970                 }
971
972                 if (DBA::isResult($contact)) {
973                         DI::page()['aside'] = '';
974
975                         $profiledata = Model\Contact::getByURL($contact['url'], false);
976
977                         Model\Profile::load($a, '', $profiledata, true);
978
979                         if ($contact['uid'] == 0) {
980                                 $o .= Model\Contact::getPostsFromId($contact['id'], true, $update);
981                         } else {
982                                 $o .= Model\Contact::getPostsFromUrl($contact['url'], true, $update);
983                         }
984                 }
985
986                 return $o;
987         }
988
989         private static function getPostsHTML($a, $contact_id)
990         {
991                 $contact = DBA::selectFirst('contact', ['uid', 'url', 'id'], ['id' => $contact_id, 'deleted' => false]);
992
993                 $o = self::getTabsHTML($a, $contact, 2);
994
995                 if (DBA::isResult($contact)) {
996                         DI::page()['aside'] = '';
997
998                         $profiledata = Model\Contact::getByURL($contact['url'], false);
999
1000                         if (local_user() && in_array($profiledata['network'], Protocol::FEDERATED)) {
1001                                 $profiledata['remoteconnect'] = DI::baseUrl() . '/follow?url=' . urlencode($profiledata['url']);
1002                         }
1003
1004                         Model\Profile::load($a, '', $profiledata, true);
1005
1006                         if ($contact['uid'] == 0) {
1007                                 $o .= Model\Contact::getPostsFromId($contact['id']);
1008                         } else {
1009                                 $o .= Model\Contact::getPostsFromUrl($contact['url']);
1010                         }
1011                 }
1012
1013                 return $o;
1014         }
1015
1016         public static function getContactTemplateVars(array $rr)
1017         {
1018                 $dir_icon = '';
1019                 $alt_text = '';
1020
1021                 if (!empty($rr['uid']) && !empty($rr['rel'])) {
1022                         switch ($rr['rel']) {
1023                                 case Model\Contact::FRIEND:
1024                                         $dir_icon = 'images/lrarrow.gif';
1025                                         $alt_text = DI::l10n()->t('Mutual Friendship');
1026                                         break;
1027
1028                                 case Model\Contact::FOLLOWER;
1029                                         $dir_icon = 'images/larrow.gif';
1030                                         $alt_text = DI::l10n()->t('is a fan of yours');
1031                                         break;
1032
1033                                 case Model\Contact::SHARING;
1034                                         $dir_icon = 'images/rarrow.gif';
1035                                         $alt_text = DI::l10n()->t('you are a fan of');
1036                                         break;
1037
1038                                 default:
1039                                         break;
1040                         }
1041                 }
1042
1043                 $url = Model\Contact::magicLink($rr['url']);
1044
1045                 if (strpos($url, 'redir/') === 0) {
1046                         $sparkle = ' class="sparkle" ';
1047                 } else {
1048                         $sparkle = '';
1049                 }
1050
1051                 if ($rr['pending']) {
1052                         if (in_array($rr['rel'], [Model\Contact::FRIEND, Model\Contact::SHARING])) {
1053                                 $alt_text = DI::l10n()->t('Pending outgoing contact request');
1054                         } else {
1055                                 $alt_text = DI::l10n()->t('Pending incoming contact request');
1056                         }
1057                 }
1058
1059                 if ($rr['self']) {
1060                         $dir_icon = 'images/larrow.gif';
1061                         $alt_text = DI::l10n()->t('This is you');
1062                         $url = $rr['url'];
1063                         $sparkle = '';
1064                 }
1065
1066                 return [
1067                         'img_hover' => DI::l10n()->t('Visit %s\'s profile [%s]', $rr['name'], $rr['url']),
1068                         'edit_hover'=> DI::l10n()->t('Edit contact'),
1069                         'photo_menu'=> Model\Contact::photoMenu($rr),
1070                         'id'        => $rr['id'],
1071                         'alt_text'  => $alt_text,
1072                         'dir_icon'  => $dir_icon,
1073                         'thumb'     => ProxyUtils::proxifyUrl($rr['thumb'], false, ProxyUtils::SIZE_THUMB),
1074                         'name'      => $rr['name'],
1075                         'username'  => $rr['name'],
1076                         'account_type' => Model\Contact::getAccountType($rr),
1077                         'sparkle'   => $sparkle,
1078                         'itemurl'   => ($rr['addr'] ?? '') ?: $rr['url'],
1079                         'url'       => $url,
1080                         'network'   => ContactSelector::networkToName($rr['network'], $rr['url'], $rr['protocol']),
1081                         'nick'      => $rr['nick'],
1082                 ];
1083         }
1084
1085         /**
1086          * Gives a array with actions which can performed to a given contact
1087          *
1088          * This includes actions like e.g. 'block', 'hide', 'archive', 'delete' and others
1089          *
1090          * @param array $contact Data about the Contact
1091          * @return array with contact related actions
1092          */
1093         private static function getContactActions($contact)
1094         {
1095                 $poll_enabled = in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::OSTATUS, Protocol::FEED, Protocol::MAIL]);
1096                 $contact_actions = [];
1097
1098                 // Provide friend suggestion only for Friendica contacts
1099                 if ($contact['network'] === Protocol::DFRN) {
1100                         $contact_actions['suggest'] = [
1101                                 'label' => DI::l10n()->t('Suggest friends'),
1102                                 'url'   => 'fsuggest/' . $contact['id'],
1103                                 'title' => '',
1104                                 'sel'   => '',
1105                                 'id'    => 'suggest',
1106                         ];
1107                 }
1108
1109                 if ($poll_enabled) {
1110                         $contact_actions['update'] = [
1111                                 'label' => DI::l10n()->t('Update now'),
1112                                 'url'   => 'contact/' . $contact['id'] . '/update',
1113                                 'title' => '',
1114                                 'sel'   => '',
1115                                 'id'    => 'update',
1116                         ];
1117                 }
1118
1119                 $contact_actions['block'] = [
1120                         'label' => (intval($contact['blocked']) ? DI::l10n()->t('Unblock') : DI::l10n()->t('Block')),
1121                         'url'   => 'contact/' . $contact['id'] . '/block',
1122                         'title' => DI::l10n()->t('Toggle Blocked status'),
1123                         'sel'   => (intval($contact['blocked']) ? 'active' : ''),
1124                         'id'    => 'toggle-block',
1125                 ];
1126
1127                 $contact_actions['ignore'] = [
1128                         'label' => (intval($contact['readonly']) ? DI::l10n()->t('Unignore') : DI::l10n()->t('Ignore')),
1129                         'url'   => 'contact/' . $contact['id'] . '/ignore',
1130                         'title' => DI::l10n()->t('Toggle Ignored status'),
1131                         'sel'   => (intval($contact['readonly']) ? 'active' : ''),
1132                         'id'    => 'toggle-ignore',
1133                 ];
1134
1135                 if ($contact['uid'] != 0) {
1136                         $contact_actions['archive'] = [
1137                                 'label' => (intval($contact['archive']) ? DI::l10n()->t('Unarchive') : DI::l10n()->t('Archive')),
1138                                 'url'   => 'contact/' . $contact['id'] . '/archive',
1139                                 'title' => DI::l10n()->t('Toggle Archive status'),
1140                                 'sel'   => (intval($contact['archive']) ? 'active' : ''),
1141                                 'id'    => 'toggle-archive',
1142                         ];
1143
1144                         $contact_actions['delete'] = [
1145                                 'label' => DI::l10n()->t('Delete'),
1146                                 'url'   => 'contact/' . $contact['id'] . '/drop',
1147                                 'title' => DI::l10n()->t('Delete contact'),
1148                                 'sel'   => '',
1149                                 'id'    => 'delete',
1150                         ];
1151                 }
1152
1153                 return $contact_actions;
1154         }
1155 }