]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact.php
23a2e9c493e70e27ebbe6d3733ecf59093bb9016
[friendica.git] / src / Module / Contact.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;
23
24 use Friendica\BaseModule;
25 use Friendica\Content\ContactSelector;
26 use Friendica\Content\Nav;
27 use Friendica\Content\Pager;
28 use Friendica\Content\Widget;
29 use Friendica\Core\Logger;
30 use Friendica\Core\Protocol;
31 use Friendica\Core\Renderer;
32 use Friendica\Core\System;
33 use Friendica\Core\Theme;
34 use Friendica\Core\Worker;
35 use Friendica\Database\DBA;
36 use Friendica\DI;
37 use Friendica\Model;
38 use Friendica\Model\User;
39 use Friendica\Module\Security\Login;
40 use Friendica\Network\HTTPException\InternalServerErrorException;
41 use Friendica\Network\HTTPException\NotFoundException;
42 use Friendica\Worker\UpdateContact;
43
44 /**
45  *  Manages and show Contacts and their content
46  */
47 class Contact extends BaseModule
48 {
49         const TAB_CONVERSATIONS = 1;
50         const TAB_POSTS = 2;
51         const TAB_PROFILE = 3;
52         const TAB_CONTACTS = 4;
53         const TAB_ADVANCED = 5;
54         const TAB_MEDIA = 6;
55
56         private static function batchActions()
57         {
58                 if (empty($_POST['contact_batch']) || !is_array($_POST['contact_batch'])) {
59                         return;
60                 }
61
62                 $redirectUrl = $_POST['redirect_url'] ?? 'contact';
63
64                 self::checkFormSecurityTokenRedirectOnError($redirectUrl, 'contact_batch_actions');
65
66                 $orig_records = Model\Contact::selectToArray(['id', 'uid'], ['id' => $_POST['contact_batch'], 'uid' => [0, DI::userSession()->getLocalUserId()], 'self' => false, 'deleted' => false]);
67
68                 $count_actions = 0;
69                 foreach ($orig_records as $orig_record) {
70                         $cdata = Model\Contact::getPublicAndUserContactID($orig_record['id'], DI::userSession()->getLocalUserId());
71                         if (empty($cdata) || DI::userSession()->getPublicContactId() === $cdata['public']) {
72                                 // No action available on your own contact
73                                 continue;
74                         }
75
76                         if (!empty($_POST['contacts_batch_update']) && $cdata['user']) {
77                                 self::updateContactFromPoll($cdata['user']);
78                                 $count_actions++;
79                         }
80
81                         if (!empty($_POST['contacts_batch_block'])) {
82                                 self::toggleBlockContact($cdata['public'], DI::userSession()->getLocalUserId());
83                                 $count_actions++;
84                         }
85
86                         if (!empty($_POST['contacts_batch_ignore'])) {
87                                 self::toggleIgnoreContact($cdata['public']);
88                                 $count_actions++;
89                         }
90
91                         if (!empty($_POST['contacts_batch_collapse'])) {
92                                 self::toggleCollapseContact($cdata['public']);
93                                 $count_actions++;
94                         }
95                 }
96                 if ($count_actions > 0) {
97                         DI::sysmsg()->addInfo(DI::l10n()->tt('%d contact edited.', '%d contacts edited.', $count_actions));
98                 }
99
100                 DI::baseUrl()->redirect($redirectUrl);
101         }
102
103         protected function post(array $request = [])
104         {
105                 if (!DI::userSession()->getLocalUserId()) {
106                         return;
107                 }
108
109                 // @TODO: Replace with parameter from router
110                 if (DI::args()->getArgv()[1] === 'batch') {
111                         self::batchActions();
112                 }
113         }
114
115         /* contact actions */
116
117         /**
118          * @param int $contact_id Id of contact with uid != 0
119          * @throws NotFoundException
120          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
121          * @throws \ImagickException
122          */
123         public static function updateContactFromPoll(int $contact_id)
124         {
125                 $contact = DBA::selectFirst('contact', ['uid', 'url', 'network'], ['id' => $contact_id, 'uid' => DI::userSession()->getLocalUserId(), 'deleted' => false]);
126                 if (!DBA::isResult($contact)) {
127                         return;
128                 }
129
130                 if ($contact['network'] == Protocol::OSTATUS) {
131                         $result = Model\Contact::createFromProbeForUser($contact['uid'], $contact['url'], $contact['network']);
132
133                         if ($result['success']) {
134                                 Model\Contact::update(['subhub' => 1], ['id' => $contact_id]);
135                         }
136
137                         // pull feed and consume it, which should subscribe to the hub.
138                         Worker::add(Worker::PRIORITY_HIGH, 'OnePoll', $contact_id, 'force');
139                 } else {
140                         try {
141                                 UpdateContact::add(Worker::PRIORITY_HIGH, $contact_id);
142                         } catch (\InvalidArgumentException $e) {
143                                 Logger::notice($e->getMessage(), ['contact' => $contact, 'callstack' => System::callstack()]);
144                         }
145                 }
146         }
147
148         /**
149          * Toggles the blocked status of a contact identified by id.
150          *
151          * @param int $contact_id Id of the contact with uid = 0
152          * @param int $owner_id   Id of the user we want to block the contact for
153          * @throws \Exception
154          */
155         private static function toggleBlockContact(int $contact_id, int $owner_id)
156         {
157                 $blocked = !Model\Contact\User::isBlocked($contact_id, $owner_id);
158                 Model\Contact\User::setBlocked($contact_id, $owner_id, $blocked);
159         }
160
161         /**
162          * Toggles the ignored status of a contact identified by id.
163          *
164          * @param int $contact_id Id of the contact with uid = 0
165          * @throws \Exception
166          */
167         private static function toggleIgnoreContact(int $contact_id)
168         {
169                 $ignored = !Model\Contact\User::isIgnored($contact_id, DI::userSession()->getLocalUserId());
170                 Model\Contact\User::setIgnored($contact_id, DI::userSession()->getLocalUserId(), $ignored);
171         }
172
173         /**
174          * Toggles the collapsed status of a contact identified by id.
175          *
176          * @param int $contact_id Id of the contact with uid = 0
177          * @throws \Exception
178          */
179         private static function toggleCollapseContact(int $contact_id)
180         {
181                 $collapsed = !Model\Contact\User::isCollapsed($contact_id, DI::userSession()->getLocalUserId());
182                 Model\Contact\User::setCollapsed($contact_id, DI::userSession()->getLocalUserId(), $collapsed);
183         }
184
185         protected function content(array $request = []): string
186         {
187                 if (!DI::userSession()->getLocalUserId()) {
188                         return Login::form($_SERVER['REQUEST_URI']);
189                 }
190
191                 $search = trim($_GET['search'] ?? '');
192                 $nets   = trim($_GET['nets']   ?? '');
193                 $rel    = trim($_GET['rel']    ?? '');
194                 $group  = trim($_GET['group']  ?? '');
195
196                 $accounttype = $_GET['accounttype'] ?? '';
197                 $accounttypeid = User::getAccountTypeByString($accounttype);
198
199                 $page = DI::page();
200
201                 $page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js'));
202                 $page->registerFooterScript(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.js'));
203                 $page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.css'));
204                 $page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput-typeahead.css'));
205
206                 $vcard_widget = '';
207                 $findpeople_widget = Widget::findPeople();
208                 if (isset($_GET['add'])) {
209                         $follow_widget = Widget::follow($_GET['add']);
210                 } else {
211                         $follow_widget = Widget::follow();
212                 }
213
214                 $account_widget = Widget::accountTypes($_SERVER['REQUEST_URI'], $accounttype);
215                 $networks_widget = Widget::networks($_SERVER['REQUEST_URI'], $nets);
216                 $rel_widget = Widget::contactRels($_SERVER['REQUEST_URI'], $rel);
217                 $groups_widget = Widget::groups($_SERVER['REQUEST_URI'], $group);
218
219                 DI::page()['aside'] .= $vcard_widget . $findpeople_widget . $follow_widget . $rel_widget . $groups_widget . $networks_widget . $account_widget;
220
221                 $tpl = Renderer::getMarkupTemplate('contacts-head.tpl');
222                 DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
223                         '$baseurl' => DI::baseUrl()->get(true),
224                 ]);
225
226                 $o = '';
227                 Nav::setSelected('contact');
228
229                 $_SESSION['return_path'] = DI::args()->getQueryString();
230
231                 $sql_values = [DI::userSession()->getLocalUserId()];
232
233                 // @TODO: Replace with parameter from router
234                 $type = DI::args()->getArgv()[1] ?? '';
235
236                 switch ($type) {
237                         case 'blocked':
238                                 $sql_extra = " AND `id` IN (SELECT `cid` FROM `user-contact` WHERE `user-contact`.`uid` = ? AND `user-contact`.`blocked`)";
239                                 // This makes the query look for contact.uid = 0
240                                 array_unshift($sql_values, 0);
241                                 break;
242                         case 'hidden':
243                                 $sql_extra = " AND `hidden` AND NOT `blocked` AND NOT `pending`";
244                                 break;
245                         case 'ignored':
246                                 $sql_extra = " AND `id` IN (SELECT `cid` FROM `user-contact` WHERE `user-contact`.`uid` = ? AND `user-contact`.`ignored`)";
247                                 // This makes the query look for contact.uid = 0
248                                 array_unshift($sql_values, 0);
249                                 break;
250                         case 'archived':
251                                 $sql_extra = " AND `archive` AND NOT `blocked` AND NOT `pending`";
252                                 break;
253                         case 'pending':
254                                 $sql_extra = " AND `pending` AND NOT `archive` AND NOT `failed` AND ((`rel` = ?)
255                                         OR `id` IN (SELECT `contact-id` FROM `intro` WHERE `intro`.`uid` = ? AND NOT `ignore`))";
256                                 $sql_values[] = Model\Contact::SHARING;
257                                 $sql_values[] = DI::userSession()->getLocalUserId();
258                                 break;
259                         default:
260                                 $sql_extra = " AND NOT `archive` AND NOT `blocked` AND NOT `pending`";
261                                 break;
262                 }
263
264                 if (isset($accounttypeid)) {
265                         $sql_extra .= " AND `contact-type` = ?";
266                         $sql_values[] = $accounttypeid;
267                 }
268
269                 $searching = false;
270                 $search_hdr = null;
271                 if ($search) {
272                         $searching = true;
273                         $search_hdr = $search;
274                         $search_txt = preg_quote(trim($search, ' @!'));
275                         $sql_extra .= " AND (`name` REGEXP ? OR `url` REGEXP ? OR `nick` REGEXP ? OR `addr` REGEXP ? OR `alias` REGEXP ?)";
276                         $sql_values[] = $search_txt;
277                         $sql_values[] = $search_txt;
278                         $sql_values[] = $search_txt;
279                         $sql_values[] = $search_txt;
280                         $sql_values[] = $search_txt;
281                 }
282
283                 if ($nets) {
284                         $sql_extra .= " AND network = ? ";
285                         $sql_values[] = $nets;
286                 }
287
288                 switch ($rel) {
289                         case 'followers':
290                                 $sql_extra .= " AND `rel` IN (?, ?)";
291                                 $sql_values[] = Model\Contact::FOLLOWER;
292                                 $sql_values[] = Model\Contact::FRIEND;
293                                 break;
294                         case 'following':
295                                 $sql_extra .= " AND `rel` IN (?, ?)";
296                                 $sql_values[] = Model\Contact::SHARING;
297                                 $sql_values[] = Model\Contact::FRIEND;
298                                 break;
299                         case 'mutuals':
300                                 $sql_extra .= " AND `rel` = ?";
301                                 $sql_values[] = Model\Contact::FRIEND;
302                                 break;
303                 }
304
305                 if ($group) {
306                         $sql_extra .= " AND `id` IN (SELECT `contact-id` FROM `group_member` WHERE `gid` = ?)";
307                         $sql_values[] = $group;
308                 }
309
310                 $networks = Widget::unavailableNetworks();
311                 $sql_extra .= " AND NOT `network` IN (" . substr(str_repeat("?, ", count($networks)), 0, -2) . ")";
312                 $sql_values = array_merge($sql_values, $networks);
313
314                 $condition = ["`uid` = ? AND NOT `self` AND NOT `deleted`" . $sql_extra];
315                 $condition = array_merge($condition, $sql_values);
316
317                 $total = DBA::count('contact', $condition);
318
319                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
320
321                 $contacts = [];
322
323                 $stmt = DBA::select('contact', [], $condition, ['order' => ['name'], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]]);
324
325                 while ($contact = DBA::fetch($stmt)) {
326                         $contact['blocked'] = Model\Contact\User::isBlocked($contact['id'], DI::userSession()->getLocalUserId());
327                         $contact['readonly'] = Model\Contact\User::isIgnored($contact['id'], DI::userSession()->getLocalUserId());
328                         $contacts[] = self::getContactTemplateVars($contact);
329                 }
330                 DBA::close($stmt);
331
332                 $tabs = [
333                         [
334                                 'label' => DI::l10n()->t('All Contacts'),
335                                 'url'   => 'contact',
336                                 'sel'   => !$type ? 'active' : '',
337                                 'title' => DI::l10n()->t('Show all contacts'),
338                                 'id'    => 'showall-tab',
339                                 'accesskey' => 'l',
340                         ],
341                         [
342                                 'label' => DI::l10n()->t('Pending'),
343                                 'url'   => 'contact/pending',
344                                 'sel'   => $type == 'pending' ? 'active' : '',
345                                 'title' => DI::l10n()->t('Only show pending contacts'),
346                                 'id'    => 'showpending-tab',
347                                 'accesskey' => 'p',
348                         ],
349                         [
350                                 'label' => DI::l10n()->t('Blocked'),
351                                 'url'   => 'contact/blocked',
352                                 'sel'   => $type == 'blocked' ? 'active' : '',
353                                 'title' => DI::l10n()->t('Only show blocked contacts'),
354                                 'id'    => 'showblocked-tab',
355                                 'accesskey' => 'b',
356                         ],
357                         [
358                                 'label' => DI::l10n()->t('Ignored'),
359                                 'url'   => 'contact/ignored',
360                                 'sel'   => $type == 'ignored' ? 'active' : '',
361                                 'title' => DI::l10n()->t('Only show ignored contacts'),
362                                 'id'    => 'showignored-tab',
363                                 'accesskey' => 'i',
364                         ],
365                         [
366                                 'label' => DI::l10n()->t('Archived'),
367                                 'url'   => 'contact/archived',
368                                 'sel'   => $type == 'archived' ? 'active' : '',
369                                 'title' => DI::l10n()->t('Only show archived contacts'),
370                                 'id'    => 'showarchived-tab',
371                                 'accesskey' => 'y',
372                         ],
373                         [
374                                 'label' => DI::l10n()->t('Hidden'),
375                                 'url'   => 'contact/hidden',
376                                 'sel'   => $type == 'hidden' ? 'active' : '',
377                                 'title' => DI::l10n()->t('Only show hidden contacts'),
378                                 'id'    => 'showhidden-tab',
379                                 'accesskey' => 'h',
380                         ],
381                         [
382                                 'label' => DI::l10n()->t('Groups'),
383                                 'url'   => 'group',
384                                 'sel'   => '',
385                                 'title' => DI::l10n()->t('Organize your contact groups'),
386                                 'id'    => 'contactgroups-tab',
387                                 'accesskey' => 'e',
388                         ],
389                 ];
390
391                 $tabs_tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
392                 $tabs_html = Renderer::replaceMacros($tabs_tpl, ['$tabs' => $tabs]);
393
394                 switch ($rel) {
395                         case 'followers': $header = DI::l10n()->t('Followers'); break;
396                         case 'following': $header = DI::l10n()->t('Following'); break;
397                         case 'mutuals':   $header = DI::l10n()->t('Mutual friends'); break;
398                         default:          $header = DI::l10n()->t('Contacts');
399                 }
400
401                 switch ($type) {
402                         case 'pending':  $header .= ' - ' . DI::l10n()->t('Pending'); break;
403                         case 'blocked':  $header .= ' - ' . DI::l10n()->t('Blocked'); break;
404                         case 'hidden':   $header .= ' - ' . DI::l10n()->t('Hidden'); break;
405                         case 'ignored':  $header .= ' - ' . DI::l10n()->t('Ignored'); break;
406                         case 'archived': $header .= ' - ' . DI::l10n()->t('Archived'); break;
407                 }
408
409                 $header .= $nets ? ' - ' . ContactSelector::networkToName($nets) : '';
410
411                 $tpl = Renderer::getMarkupTemplate('contacts-template.tpl');
412                 $o .= Renderer::replaceMacros($tpl, [
413                         '$header'     => $header,
414                         '$tabs'       => $tabs_html,
415                         '$total'      => $total,
416                         '$search'     => $search_hdr,
417                         '$desc'       => DI::l10n()->t('Search your contacts'),
418                         '$finding'    => $searching ? DI::l10n()->t('Results for: %s', $search) : '',
419                         '$submit'     => DI::l10n()->t('Find'),
420                         '$cmd'        => DI::args()->getCommand(),
421                         '$contacts'   => $contacts,
422                         '$form_security_token'  => BaseModule::getFormSecurityToken('contact_batch_actions'),
423                         'multiselect' => 1,
424                         '$batch_actions' => [
425                                 'contacts_batch_update'    => DI::l10n()->t('Update'),
426                                 'contacts_batch_block'     => DI::l10n()->t('Block') . '/' . DI::l10n()->t('Unblock'),
427                                 'contacts_batch_ignore'    => DI::l10n()->t('Ignore') . '/' . DI::l10n()->t('Unignore'),
428                                 'contacts_batch_collapse'  => DI::l10n()->t('Collapse') . '/' . DI::l10n()->t('Uncollapse'),
429                         ],
430                         '$h_batch_actions' => DI::l10n()->t('Batch Actions'),
431                         '$paginate'   => $pager->renderFull($total),
432                 ]);
433
434                 return $o;
435         }
436
437         /**
438          * List of pages for the Contact TabBar
439          *
440          * Available Pages are 'Status', 'Profile', 'Contacts' and 'Common Friends'
441          *
442          * @param array $contact    The contact array
443          * @param int   $active_tab 1 if tab should be marked as active
444          *
445          * @return string HTML string of the contact page tabs buttons.
446          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
447          * @throws \ImagickException
448          */
449         public static function getTabsHTML(array $contact, int $active_tab)
450         {
451                 $cid = $pcid = $contact['id'];
452                 $data = Model\Contact::getPublicAndUserContactID($contact['id'], DI::userSession()->getLocalUserId());
453                 if (!empty($data['user']) && ($contact['id'] == $data['public'])) {
454                         $cid = $data['user'];
455                 } elseif (!empty($data['public'])) {
456                         $pcid = $data['public'];
457                 }
458
459                 // tabs
460                 $tabs = [
461                         [
462                                 'label' => DI::l10n()->t('Status'),
463                                 'url'   => 'contact/' . $pcid . '/conversations',
464                                 'sel'   => (($active_tab == self::TAB_CONVERSATIONS) ? 'active' : ''),
465                                 'title' => DI::l10n()->t('Conversations started by this contact'),
466                                 'id'    => 'status-tab',
467                                 'accesskey' => 'm',
468                         ],
469                         [
470                                 'label' => DI::l10n()->t('Posts and Comments'),
471                                 'url'   => 'contact/' . $pcid . '/posts',
472                                 'sel'   => (($active_tab == self::TAB_POSTS) ? 'active' : ''),
473                                 'title' => DI::l10n()->t('Status Messages and Posts'),
474                                 'id'    => 'posts-tab',
475                                 'accesskey' => 'p',
476                         ],
477                         [
478                                 'label' => DI::l10n()->t('Media'),
479                                 'url'   => 'contact/' . $pcid . '/media',
480                                 'sel'   => (($active_tab == self::TAB_MEDIA) ? 'active' : ''),
481                                 'title' => DI::l10n()->t('Posts containing media objects'),
482                                 'id'    => 'media-tab',
483                                 'accesskey' => 'd',
484                         ],
485                         [
486                                 'label' => DI::l10n()->t('Profile'),
487                                 'url'   => 'contact/' . $cid,
488                                 'sel'   => (($active_tab == self::TAB_PROFILE) ? 'active' : ''),
489                                 'title' => DI::l10n()->t('Profile Details'),
490                                 'id'    => 'profile-tab',
491                                 'accesskey' => 'o',
492                         ],
493                         ['label' => DI::l10n()->t('Contacts'),
494                                 'url'   => 'contact/' . $pcid . '/contacts',
495                                 'sel'   => (($active_tab == self::TAB_CONTACTS) ? 'active' : ''),
496                                 'title' => DI::l10n()->t('View all known contacts'),
497                                 'id'    => 'contacts-tab',
498                                 'accesskey' => 't'
499                         ],
500                 ];
501
502                 if (!empty($contact['network']) && in_array($contact['network'], [Protocol::FEED, Protocol::MAIL]) && ($cid != $pcid)) {
503                         $tabs[] = ['label' => DI::l10n()->t('Advanced'),
504                                 'url'   => 'contact/' . $cid . '/advanced/',
505                                 'sel'   => (($active_tab == self::TAB_ADVANCED) ? 'active' : ''),
506                                 'title' => DI::l10n()->t('Advanced Contact Settings'),
507                                 'id'    => 'advanced-tab',
508                                 'accesskey' => 'r'
509                         ];
510                 }
511
512                 $tab_tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
513                 $tab_str = Renderer::replaceMacros($tab_tpl, ['$tabs' => $tabs]);
514
515                 return $tab_str;
516         }
517
518         /**
519          * Return the fields for the contact template
520          *
521          * @param array $contact Contact array
522          * @return array Template fields
523          * @throws InternalServerErrorException
524          * @throws \ImagickException
525          */
526         public static function getContactTemplateVars(array $contact): array
527         {
528                 $alt_text = '';
529
530                 if (!empty($contact['url']) && isset($contact['uid']) && ($contact['uid'] == 0) && DI::userSession()->getLocalUserId()) {
531                         $personal = Model\Contact::getByURL($contact['url'], false, ['uid', 'rel', 'self'], DI::userSession()->getLocalUserId());
532                         if (!empty($personal)) {
533                                 $contact['uid']  = $personal['uid'];
534                                 $contact['rel']  = $personal['rel'];
535                                 $contact['self'] = $personal['self'];
536                         }
537                 }
538
539                 if (!empty($contact['uid']) && !empty($contact['rel']) && DI::userSession()->getLocalUserId() == $contact['uid']) {
540                         switch ($contact['rel']) {
541                                 case Model\Contact::FRIEND:
542                                         $alt_text = DI::l10n()->t('Mutual Friendship');
543                                         break;
544
545                                 case Model\Contact::FOLLOWER;
546                                         $alt_text = DI::l10n()->t('is a fan of yours');
547                                         break;
548
549                                 case Model\Contact::SHARING;
550                                         $alt_text = DI::l10n()->t('you are a fan of');
551                                         break;
552
553                                 default:
554                                         break;
555                         }
556                 }
557
558                 $url = Model\Contact::magicLinkByContact($contact);
559
560                 if (strpos($url, 'contact/redir/') === 0) {
561                         $sparkle = ' class="sparkle" ';
562                 } else {
563                         $sparkle = '';
564                 }
565
566                 if ($contact['pending']) {
567                         if (in_array($contact['rel'], [Model\Contact::FRIEND, Model\Contact::SHARING])) {
568                                 $alt_text = DI::l10n()->t('Pending outgoing contact request');
569                         } else {
570                                 $alt_text = DI::l10n()->t('Pending incoming contact request');
571                         }
572                 }
573
574                 if ($contact['self']) {
575                         $alt_text = DI::l10n()->t('This is you');
576                         $url      = $contact['url'];
577                         $sparkle  = '';
578                 }
579
580                 return [
581                         'id'           => $contact['id'],
582                         'url'          => $url,
583                         'img_hover'    => DI::l10n()->t('Visit %s\'s profile [%s]', $contact['name'], $contact['url']),
584                         'photo_menu'   => Model\Contact::photoMenu($contact, DI::userSession()->getLocalUserId()),
585                         'thumb'        => Model\Contact::getThumb($contact, true),
586                         'alt_text'     => $alt_text,
587                         'name'         => $contact['name'],
588                         'nick'         => $contact['nick'],
589                         'details'      => $contact['location'],
590                         'tags'         => $contact['keywords'],
591                         'about'        => $contact['about'],
592                         'account_type' => Model\Contact::getAccountType($contact['contact-type']),
593                         'sparkle'      => $sparkle,
594                         'itemurl'      => ($contact['addr'] ?? '') ?: $contact['url'],
595                         'network'      => ContactSelector::networkToName($contact['network'], $contact['url'], $contact['protocol'], $contact['gsid']),
596                 ];
597         }
598 }