]> git.mxchange.org Git - friendica.git/blob - src/Model/Contact.php
More avatar handling isolation
[friendica.git] / src / Model / Contact.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Model;
23
24 use Friendica\Contact\Avatar;
25 use Friendica\Contact\Introduction\Exception\IntroductionNotFoundException;
26 use Friendica\Content\Pager;
27 use Friendica\Content\Text\HTML;
28 use Friendica\Core\Hook;
29 use Friendica\Core\Logger;
30 use Friendica\Core\Protocol;
31 use Friendica\Core\Renderer;
32 use Friendica\Core\Session;
33 use Friendica\Core\System;
34 use Friendica\Core\Worker;
35 use Friendica\Database\Database;
36 use Friendica\Database\DBA;
37 use Friendica\DI;
38 use Friendica\Network\HTTPException;
39 use Friendica\Network\Probe;
40 use Friendica\Protocol\Activity;
41 use Friendica\Protocol\ActivityPub;
42 use Friendica\Util\DateTimeFormat;
43 use Friendica\Util\Images;
44 use Friendica\Util\Network;
45 use Friendica\Util\Proxy;
46 use Friendica\Util\Strings;
47
48 /**
49  * functions for interacting with a contact
50  */
51 class Contact
52 {
53         const DEFAULT_AVATAR_PHOTO = '/images/person-300.jpg';
54         const DEFAULT_AVATAR_THUMB = '/images/person-80.jpg';
55         const DEFAULT_AVATAR_MICRO = '/images/person-48.jpg';
56
57         /**
58          * @}
59          */
60
61         const LOCK_INSERT = 'contact-insert';
62
63         /**
64          * Account types
65          *
66          * TYPE_UNKNOWN - unknown type
67          *
68          * TYPE_PERSON - the account belongs to a person
69          *      Associated page types: PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE
70          *
71          * TYPE_ORGANISATION - the account belongs to an organisation
72          *      Associated page type: PAGE_SOAPBOX
73          *
74          * TYPE_NEWS - the account is a news reflector
75          *      Associated page type: PAGE_SOAPBOX
76          *
77          * TYPE_COMMUNITY - the account is community forum
78          *      Associated page types: PAGE_COMMUNITY, PAGE_PRVGROUP
79          *
80          * TYPE_RELAY - the account is a relay
81          *      This will only be assigned to contacts, not to user accounts
82          * @{
83          */
84         const TYPE_UNKNOWN =     -1;
85         const TYPE_PERSON =       User::ACCOUNT_TYPE_PERSON;
86         const TYPE_ORGANISATION = User::ACCOUNT_TYPE_ORGANISATION;
87         const TYPE_NEWS =         User::ACCOUNT_TYPE_NEWS;
88         const TYPE_COMMUNITY =    User::ACCOUNT_TYPE_COMMUNITY;
89         const TYPE_RELAY =        User::ACCOUNT_TYPE_RELAY;
90         /**
91          * @}
92          */
93
94         /**
95          * Contact_is
96          *
97          * Relationship types
98          * @{
99          */
100         const NOTHING  = 0;
101         const FOLLOWER = 1;
102         const SHARING  = 2;
103         const FRIEND   = 3;
104         const SELF     = 4;
105         /**
106          * @}
107          */
108
109          const MIRROR_DEACTIVATED = 0;
110          const MIRROR_FORWARDED = 1;
111          const MIRROR_OWN_POST = 2;
112          const MIRROR_NATIVE_RESHARE = 3;
113
114          /**
115          * @param array $fields    Array of selected fields, empty for all
116          * @param array $condition Array of fields for condition
117          * @param array $params    Array of several parameters
118          * @return array
119          * @throws \Exception
120          */
121         public static function selectToArray(array $fields = [], array $condition = [], array $params = [])
122         {
123                 return DBA::selectToArray('contact', $fields, $condition, $params);
124         }
125
126         /**
127          * @param array $fields    Array of selected fields, empty for all
128          * @param array $condition Array of fields for condition
129          * @param array $params    Array of several parameters
130          * @return array
131          * @throws \Exception
132          */
133         public static function selectFirst(array $fields = [], array $condition = [], array $params = [])
134         {
135                 $contact = DBA::selectFirst('contact', $fields, $condition, $params);
136
137                 return $contact;
138         }
139
140         /**
141          * Insert a row into the contact table
142          * Important: You can't use DBA::lastInsertId() after this call since it will be set to 0.
143          *
144          * @param array $fields         field array
145          * @param int   $duplicate_mode Do an update on a duplicate entry
146          *
147          * @return int  id of the created contact
148          * @throws \Exception
149          */
150         public static function insert(array $fields, int $duplicate_mode = Database::INSERT_DEFAULT)
151         {
152                 if (!empty($fields['baseurl']) && empty($fields['gsid'])) {
153                         $fields['gsid'] = GServer::getID($fields['baseurl'], true);
154                 }
155
156                 $fields['uri-id'] = ItemURI::getIdByURI($fields['url']);
157
158                 if (empty($fields['created'])) {
159                         $fields['created'] = DateTimeFormat::utcNow();
160                 }
161
162                 DBA::insert('contact', $fields, $duplicate_mode);
163                 $contact = DBA::selectFirst('contact', [], ['id' => DBA::lastInsertId()]);
164                 if (!DBA::isResult($contact)) {
165                         // Shouldn't happen
166                         Logger::warning('Created contact could not be found', ['fields' => $fields]);
167                         return 0;
168                 }
169
170                 Contact\User::insertForContactArray($contact);
171
172                 // Search for duplicated contacts and get rid of them
173                 if (!$contact['self']) {
174                         self::removeDuplicates($contact['nurl'], $contact['uid']);
175                 }
176
177                 return $contact['id'];
178         }
179
180         /**
181          * Updates rows in the contact table
182          *
183          * @param array         $fields     contains the fields that are updated
184          * @param array         $condition  condition array with the key values
185          * @param array|boolean $old_fields array with the old field values that are about to be replaced (true = update on duplicate, false = don't update identical fields)
186          *
187          * @return boolean was the update successfull?
188          * @throws \Exception
189          */
190         public static function update(array $fields, array $condition, $old_fields = [])
191         {
192                 $ret = DBA::update('contact', $fields, $condition, $old_fields);
193
194                 // Apply changes to the "user-contact" table on dedicated fields
195                 Contact\User::updateByContactUpdate($fields, $condition);
196
197                 return $ret;
198         }
199
200         /**
201          * @param integer $id     Contact ID
202          * @param array   $fields Array of selected fields, empty for all
203          * @return array|boolean Contact record if it exists, false otherwise
204          * @throws \Exception
205          */
206         public static function getById($id, $fields = [])
207         {
208                 return DBA::selectFirst('contact', $fields, ['id' => $id]);
209         }
210
211         /**
212          * Fetch the first contact with the provided uri-id.
213          *
214          * @param integer $uri_id uri-id of the contact
215          * @param array   $fields Array of selected fields, empty for all
216          * @return array|boolean Contact record if it exists, false otherwise
217          * @throws \Exception
218          */
219         public static function getByUriId($uri_id, $fields = [])
220         {
221                 return DBA::selectFirst('contact', $fields, ['uri-id' => $uri_id], ['order' => ['uid']]);
222         }
223
224         /**
225          * Fetches a contact by a given url
226          *
227          * @param string  $url    profile url
228          * @param boolean $update true = always update, false = never update, null = update when not found or outdated
229          * @param array   $fields Field list
230          * @param integer $uid    User ID of the contact
231          * @return array contact array
232          */
233         public static function getByURL(string $url, $update = null, array $fields = [], int $uid = 0)
234         {
235                 if ($update || is_null($update)) {
236                         $cid = self::getIdForURL($url, $uid, $update);
237                         if (empty($cid)) {
238                                 return [];
239                         }
240
241                         $contact = self::getById($cid, $fields);
242                         if (empty($contact)) {
243                                 return [];
244                         }
245                         return $contact;
246                 }
247
248                 // Add internal fields
249                 $removal = [];
250                 if (!empty($fields)) {
251                         foreach (['id', 'avatar', 'created', 'updated', 'last-update', 'success_update', 'failure_update', 'network'] as $internal) {
252                                 if (!in_array($internal, $fields)) {
253                                         $fields[] = $internal;
254                                         $removal[] = $internal;
255                                 }
256                         }
257                 }
258
259                 // We first try the nurl (http://server.tld/nick), most common case
260                 $options = ['order' => ['id']];
261                 $contact = DBA::selectFirst('contact', $fields, ['nurl' => Strings::normaliseLink($url), 'uid' => $uid, 'deleted' => false], $options);
262
263                 // Then the addr (nick@server.tld)
264                 if (!DBA::isResult($contact)) {
265                         $contact = DBA::selectFirst('contact', $fields, ['addr' => str_replace('acct:', '', $url), 'uid' => $uid, 'deleted' => false], $options);
266                 }
267
268                 // Then the alias (which could be anything)
269                 if (!DBA::isResult($contact)) {
270                         // The link could be provided as http although we stored it as https
271                         $ssl_url = str_replace('http://', 'https://', $url);
272                         $condition = ['`alias` IN (?, ?, ?) AND `uid` = ? AND NOT `deleted`', $url, Strings::normaliseLink($url), $ssl_url, $uid];
273                         $contact = DBA::selectFirst('contact', $fields, $condition, $options);
274                 }
275
276                 if (!DBA::isResult($contact)) {
277                         return [];
278                 }
279
280                 // Update the contact in the background if needed
281                 $updated = max($contact['success_update'], $contact['created'], $contact['updated'], $contact['last-update'], $contact['failure_update']);
282                 if (($updated < DateTimeFormat::utc('now -7 days')) && in_array($contact['network'], Protocol::FEDERATED) && !self::isLocalById($contact['id'])) {
283                         Worker::add(PRIORITY_LOW, "UpdateContact", $contact['id']);
284                 }
285
286                 // Remove the internal fields
287                 foreach ($removal as $internal) {
288                         unset($contact[$internal]);
289                 }
290
291                 return $contact;
292         }
293
294         /**
295          * Fetches a contact for a given user by a given url.
296          * In difference to "getByURL" the function will fetch a public contact when no user contact had been found.
297          *
298          * @param string  $url    profile url
299          * @param integer $uid    User ID of the contact
300          * @param boolean $update true = always update, false = never update, null = update when not found or outdated
301          * @param array   $fields Field list
302          * @return array contact array
303          */
304         public static function getByURLForUser(string $url, int $uid = 0, $update = false, array $fields = [])
305         {
306                 if ($uid != 0) {
307                         $contact = self::getByURL($url, $update, $fields, $uid);
308                         if (!empty($contact)) {
309                                 if (!empty($contact['id'])) {
310                                         $contact['cid'] = $contact['id'];
311                                         $contact['zid'] = 0;
312                                 }
313                                 return $contact;
314                         }
315                 }
316
317                 $contact = self::getByURL($url, $update, $fields);
318                 if (!empty($contact['id'])) {
319                         $contact['cid'] = 0;
320                         $contact['zid'] = $contact['id'];
321                 }
322                 return $contact;
323         }
324
325         /**
326          * Tests if the given contact is a follower
327          *
328          * @param int $cid Either public contact id or user's contact id
329          * @param int $uid User ID
330          *
331          * @return boolean is the contact id a follower?
332          * @throws HTTPException\InternalServerErrorException
333          * @throws \ImagickException
334          */
335         public static function isFollower($cid, $uid)
336         {
337                 if (Contact\User::isBlocked($cid, $uid)) {
338                         return false;
339                 }
340
341                 $cdata = self::getPublicAndUserContactID($cid, $uid);
342                 if (empty($cdata['user'])) {
343                         return false;
344                 }
345
346                 $condition = ['id' => $cdata['user'], 'rel' => [self::FOLLOWER, self::FRIEND]];
347                 return DBA::exists('contact', $condition);
348         }
349
350         /**
351          * Tests if the given contact url is a follower
352          *
353          * @param string $url Contact URL
354          * @param int    $uid User ID
355          *
356          * @return boolean is the contact id a follower?
357          * @throws HTTPException\InternalServerErrorException
358          * @throws \ImagickException
359          */
360         public static function isFollowerByURL($url, $uid)
361         {
362                 $cid = self::getIdForURL($url, $uid);
363
364                 if (empty($cid)) {
365                         return false;
366                 }
367
368                 return self::isFollower($cid, $uid);
369         }
370
371         /**
372          * Tests if the given user follow the given contact
373          *
374          * @param int $cid Either public contact id or user's contact id
375          * @param int $uid User ID
376          *
377          * @return boolean is the contact url being followed?
378          * @throws HTTPException\InternalServerErrorException
379          * @throws \ImagickException
380          */
381         public static function isSharing($cid, $uid)
382         {
383                 if (Contact\User::isBlocked($cid, $uid)) {
384                         return false;
385                 }
386
387                 $cdata = self::getPublicAndUserContactID($cid, $uid);
388                 if (empty($cdata['user'])) {
389                         return false;
390                 }
391
392                 $condition = ['id' => $cdata['user'], 'rel' => [self::SHARING, self::FRIEND]];
393                 return DBA::exists('contact', $condition);
394         }
395
396         /**
397          * Tests if the given user follow the given contact url
398          *
399          * @param string $url Contact URL
400          * @param int    $uid User ID
401          *
402          * @return boolean is the contact url being followed?
403          * @throws HTTPException\InternalServerErrorException
404          * @throws \ImagickException
405          */
406         public static function isSharingByURL($url, $uid)
407         {
408                 $cid = self::getIdForURL($url, $uid);
409
410                 if (empty($cid)) {
411                         return false;
412                 }
413
414                 return self::isSharing($cid, $uid);
415         }
416
417         /**
418          * Get the basepath for a given contact link
419          *
420          * @param string $url The contact link
421          * @param boolean $dont_update Don't update the contact
422          *
423          * @return string basepath
424          * @throws HTTPException\InternalServerErrorException
425          * @throws \ImagickException
426          */
427         public static function getBasepath($url, $dont_update = false)
428         {
429                 $contact = DBA::selectFirst('contact', ['id', 'baseurl'], ['uid' => 0, 'nurl' => Strings::normaliseLink($url)]);
430                 if (!DBA::isResult($contact)) {
431                         return '';
432                 }
433
434                 if (!empty($contact['baseurl'])) {
435                         return $contact['baseurl'];
436                 } elseif ($dont_update) {
437                         return '';
438                 }
439
440                 // Update the existing contact
441                 self::updateFromProbe($contact['id']);
442
443                 // And fetch the result
444                 $contact = DBA::selectFirst('contact', ['baseurl'], ['id' => $contact['id']]);
445                 if (empty($contact['baseurl'])) {
446                         Logger::info('No baseurl for contact', ['url' => $url]);
447                         return '';
448                 }
449
450                 Logger::info('Found baseurl for contact', ['url' => $url, 'baseurl' => $contact['baseurl']]);
451                 return $contact['baseurl'];
452         }
453
454         /**
455          * Check if the given contact url is on the same server
456          *
457          * @param string $url The contact link
458          *
459          * @return boolean Is it the same server?
460          */
461         public static function isLocal($url)
462         {
463                 if (!parse_url($url, PHP_URL_SCHEME)) {
464                         $addr_parts = explode('@', $url);
465                         return (count($addr_parts) == 2) && ($addr_parts[1] == DI::baseUrl()->getHostname());
466                 }
467
468                 return Strings::compareLink(self::getBasepath($url, true), DI::baseUrl());
469         }
470
471         /**
472          * Check if the given contact ID is on the same server
473          *
474          * @param string $url The contact link
475          *
476          * @return boolean Is it the same server?
477          */
478         public static function isLocalById(int $cid)
479         {
480                 $contact = DBA::selectFirst('contact', ['url', 'baseurl'], ['id' => $cid]);
481                 if (!DBA::isResult($contact)) {
482                         return false;
483                 }
484
485                 if (empty($contact['baseurl'])) {
486                         $baseurl = self::getBasepath($contact['url'], true);
487                 } else {
488                         $baseurl = $contact['baseurl'];
489                 }
490
491                 return Strings::compareLink($baseurl, DI::baseUrl());
492         }
493
494         /**
495          * Returns the public contact id of the given user id
496          *
497          * @param  integer $uid User ID
498          *
499          * @return integer|boolean Public contact id for given user id
500          * @throws \Exception
501          */
502         public static function getPublicIdByUserId($uid)
503         {
504                 $self = DBA::selectFirst('contact', ['url'], ['self' => true, 'uid' => $uid]);
505                 if (!DBA::isResult($self)) {
506                         return false;
507                 }
508                 return self::getIdForURL($self['url']);
509         }
510
511         /**
512          * Returns the contact id for the user and the public contact id for a given contact id
513          *
514          * @param int $cid Either public contact id or user's contact id
515          * @param int $uid User ID
516          *
517          * @return array with public and user's contact id
518          * @throws HTTPException\InternalServerErrorException
519          * @throws \ImagickException
520          */
521         public static function getPublicAndUserContactID($cid, $uid)
522         {
523                 // We have to use the legacy function as long as the post update hasn't finished
524                 if (DI::config()->get('system', 'post_update_version') < 1427) {
525                         return self::legacyGetPublicAndUserContactID($cid, $uid);
526                 }
527
528                 if (empty($uid) || empty($cid)) {
529                         return [];
530                 }
531
532                 $contact = DBA::selectFirst('account-user-view', ['id', 'uid', 'pid'], ['id' => $cid]);
533                 if (!DBA::isResult($contact) || !in_array($contact['uid'], [0, $uid])) {
534                         return [];
535                 }
536
537                 $pcid = $contact['pid'];
538                 if ($contact['uid'] == $uid) {
539                         $ucid = $contact['id'];
540                 } else {
541                         $contact = DBA::selectFirst('account-user-view', ['id', 'uid'], ['pid' => $cid, 'uid' => $uid]);
542                         if (DBA::isResult($contact)) {
543                                 $ucid = $contact['id'];
544                         } else {
545                                 $ucid = 0;
546                         }
547                 }
548
549                 return ['public' => $pcid, 'user' => $ucid];
550         }
551
552         /**
553          * Helper function for "getPublicAndUserContactID"
554          *
555          * @param int $cid Either public contact id or user's contact id
556          * @param int $uid User ID
557          *
558          * @return array with public and user's contact id
559          * @throws HTTPException\InternalServerErrorException
560          * @throws \ImagickException
561          */
562         private static function legacyGetPublicAndUserContactID($cid, $uid)
563         {
564                 if (empty($uid) || empty($cid)) {
565                         return [];
566                 }
567
568                 $contact = DBA::selectFirst('contact', ['id', 'uid', 'url'], ['id' => $cid]);
569                 if (!DBA::isResult($contact)) {
570                         return [];
571                 }
572
573                 // We quit when the user id don't match the user id of the provided contact
574                 if (($contact['uid'] != $uid) && ($contact['uid'] != 0)) {
575                         return [];
576                 }
577
578                 if ($contact['uid'] != 0) {
579                         $pcid = self::getIdForURL($contact['url'], 0, false, ['url' => $contact['url']]);
580                         if (empty($pcid)) {
581                                 return [];
582                         }
583                         $ucid = $contact['id'];
584                 } else {
585                         $pcid = $contact['id'];
586                         $ucid = self::getIdForURL($contact['url'], $uid);
587                 }
588
589                 return ['public' => $pcid, 'user' => $ucid];
590         }
591
592         /**
593          * Returns contact details for a given contact id in combination with a user id
594          *
595          * @param int $cid A contact ID
596          * @param int $uid The User ID
597          * @param array $fields The selected fields for the contact
598          *
599          * @return array The contact details
600          *
601          * @throws \Exception
602          */
603         public static function getContactForUser($cid, $uid, array $fields = [])
604         {
605                 $contact = DBA::selectFirst('contact', $fields, ['id' => $cid, 'uid' => $uid]);
606
607                 if (!DBA::isResult($contact)) {
608                         return [];
609                 } else {
610                         return $contact;
611                 }
612         }
613
614         /**
615          * Creates the self-contact for the provided user id
616          *
617          * @param int $uid
618          * @return bool Operation success
619          * @throws HTTPException\InternalServerErrorException
620          */
621         public static function createSelfFromUserId($uid)
622         {
623                 $user = DBA::selectFirst('user', ['uid', 'username', 'nickname', 'pubkey', 'prvkey'],
624                         ['uid' => $uid, 'account_expired' => false]);
625                 if (!DBA::isResult($user)) {
626                         return false;
627                 }
628
629                 $contact = [
630                         'uid'         => $user['uid'],
631                         'created'     => DateTimeFormat::utcNow(),
632                         'self'        => 1,
633                         'name'        => $user['username'],
634                         'nick'        => $user['nickname'],
635                         'pubkey'      => $user['pubkey'],
636                         'prvkey'      => $user['prvkey'],
637                         'photo'       => User::getAvatarUrl($user),
638                         'thumb'       => User::getAvatarUrl($user, Proxy::SIZE_THUMB),
639                         'micro'       => User::getAvatarUrl($user, Proxy::SIZE_MICRO),
640                         'blocked'     => 0,
641                         'pending'     => 0,
642                         'url'         => DI::baseUrl() . '/profile/' . $user['nickname'],
643                         'nurl'        => Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']),
644                         'addr'        => $user['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3),
645                         'request'     => DI::baseUrl() . '/dfrn_request/' . $user['nickname'],
646                         'notify'      => DI::baseUrl() . '/dfrn_notify/'  . $user['nickname'],
647                         'poll'        => DI::baseUrl() . '/dfrn_poll/'    . $user['nickname'],
648                         'confirm'     => DI::baseUrl() . '/dfrn_confirm/' . $user['nickname'],
649                         'poco'        => DI::baseUrl() . '/poco/'         . $user['nickname'],
650                         'name-date'   => DateTimeFormat::utcNow(),
651                         'uri-date'    => DateTimeFormat::utcNow(),
652                         'avatar-date' => DateTimeFormat::utcNow(),
653                         'closeness'   => 0
654                 ];
655
656                 $return = true;
657
658                 // Only create the entry if it doesn't exist yet
659                 if (!DBA::exists('contact', ['uid' => $uid, 'self' => true])) {
660                         $return = (bool)self::insert($contact);
661                 }
662
663                 // Create the public contact
664                 if (!DBA::exists('contact', ['nurl' => $contact['nurl'], 'uid' => 0])) {
665                         $contact['self']   = false;
666                         $contact['uid']    = 0;
667                         $contact['prvkey'] = null;
668
669                         self::insert($contact, Database::INSERT_IGNORE);
670                 }
671
672                 return $return;
673         }
674
675         /**
676          * Updates the self-contact for the provided user id
677          *
678          * @param int     $uid
679          * @param boolean $update_avatar Force the avatar update
680          * @return bool   "true" if updated
681          * @throws HTTPException\InternalServerErrorException
682          */
683         public static function updateSelfFromUserID($uid, $update_avatar = false)
684         {
685                 $fields = ['id', 'name', 'nick', 'location', 'about', 'keywords', 'avatar', 'prvkey', 'pubkey', 'manually-approve',
686                         'xmpp', 'matrix', 'contact-type', 'forum', 'prv', 'avatar-date', 'url', 'nurl', 'unsearchable',
687                         'photo', 'thumb', 'micro', 'header', 'addr', 'request', 'notify', 'poll', 'confirm', 'poco', 'network'];
688                 $self = DBA::selectFirst('contact', $fields, ['uid' => $uid, 'self' => true]);
689                 if (!DBA::isResult($self)) {
690                         return false;
691                 }
692
693                 $fields = ['uid', 'nickname', 'page-flags', 'account-type', 'prvkey', 'pubkey'];
694                 $user = DBA::selectFirst('user', $fields, ['uid' => $uid, 'account_expired' => false]);
695                 if (!DBA::isResult($user)) {
696                         return false;
697                 }
698
699                 $fields = ['name', 'photo', 'thumb', 'about', 'address', 'locality', 'region',
700                         'country-name', 'pub_keywords', 'xmpp', 'matrix', 'net-publish'];
701                 $profile = DBA::selectFirst('profile', $fields, ['uid' => $uid]);
702                 if (!DBA::isResult($profile)) {
703                         return false;
704                 }
705
706                 $file_suffix = 'jpg';
707
708                 $fields = ['name' => $profile['name'], 'nick' => $user['nickname'],
709                         'avatar-date' => $self['avatar-date'], 'location' => Profile::formatLocation($profile),
710                         'about' => $profile['about'], 'keywords' => $profile['pub_keywords'],
711                         'contact-type' => $user['account-type'], 'prvkey' => $user['prvkey'],
712                         'pubkey' => $user['pubkey'], 'xmpp' => $profile['xmpp'], 'matrix' => $profile['matrix'], 'network' => Protocol::DFRN];
713
714                 // it seems as if ported accounts can have wrong values, so we make sure that now everything is fine.
715                 $fields['url'] = DI::baseUrl() . '/profile/' . $user['nickname'];
716                 $fields['nurl'] = Strings::normaliseLink($fields['url']);
717                 $fields['addr'] = $user['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
718                 $fields['request'] = DI::baseUrl() . '/dfrn_request/' . $user['nickname'];
719                 $fields['notify'] = DI::baseUrl() . '/dfrn_notify/' . $user['nickname'];
720                 $fields['poll'] = DI::baseUrl() . '/dfrn_poll/'. $user['nickname'];
721                 $fields['confirm'] = DI::baseUrl() . '/dfrn_confirm/' . $user['nickname'];
722                 $fields['poco'] = DI::baseUrl() . '/poco/' . $user['nickname'];
723
724                 $avatar = Photo::selectFirst(['resource-id', 'type'], ['uid' => $uid, 'profile' => true]);
725                 if (DBA::isResult($avatar)) {
726                         if ($update_avatar) {
727                                 $fields['avatar-date'] = DateTimeFormat::utcNow();
728                         }
729
730                         // Creating the path to the avatar, beginning with the file suffix
731                         $types = Images::supportedTypes();
732                         if (isset($types[$avatar['type']])) {
733                                 $file_suffix = $types[$avatar['type']];
734                         }
735
736                         // We are adding a timestamp value so that other systems won't use cached content
737                         $timestamp = strtotime($fields['avatar-date']);
738
739                         $prefix = DI::baseUrl() . '/photo/' .$avatar['resource-id'] . '-';
740                         $suffix = '.' . $file_suffix . '?ts=' . $timestamp;
741
742                         $fields['photo'] = $prefix . '4' . $suffix;
743                         $fields['thumb'] = $prefix . '5' . $suffix;
744                         $fields['micro'] = $prefix . '6' . $suffix;
745                 } else {
746                         // We hadn't found a photo entry, so we use the default avatar
747                         $fields['photo'] = self::getDefaultAvatar($fields, Proxy::SIZE_SMALL);
748                         $fields['thumb'] = self::getDefaultAvatar($fields, Proxy::SIZE_THUMB);
749                         $fields['micro'] = self::getDefaultAvatar($fields, Proxy::SIZE_MICRO);
750                 }
751
752                 $fields['avatar'] = User::getAvatarUrl($user);
753                 $fields['header'] = User::getBannerUrl($user);
754                 $fields['forum'] = $user['page-flags'] == User::PAGE_FLAGS_COMMUNITY;
755                 $fields['prv'] = $user['page-flags'] == User::PAGE_FLAGS_PRVGROUP;
756                 $fields['unsearchable'] = !$profile['net-publish'];
757                 $fields['manually-approve'] = in_array($user['page-flags'], [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_PRVGROUP]);
758
759                 $update = false;
760
761                 foreach ($fields as $field => $content) {
762                         if ($self[$field] != $content) {
763                                 $update = true;
764                         }
765                 }
766
767                 if ($update) {
768                         if ($fields['name'] != $self['name']) {
769                                 $fields['name-date'] = DateTimeFormat::utcNow();
770                         }
771                         $fields['updated'] = DateTimeFormat::utcNow();
772                         self::update($fields, ['id' => $self['id']]);
773
774                         // Update the public contact as well
775                         $fields['prvkey'] = null;
776                         $fields['self']   = false;
777                         self::update($fields, ['uid' => 0, 'nurl' => $self['nurl']]);
778
779                         // Update the profile
780                         $fields = [
781                                 'photo' => User::getAvatarUrl($user),
782                                 'thumb' => User::getAvatarUrl($user, Proxy::SIZE_THUMB)
783                         ];
784
785                         DBA::update('profile', $fields, ['uid' => $uid]);
786                 }
787
788                 return $update;
789         }
790
791         /**
792          * Marks a contact for removal
793          *
794          * @param int $id contact id
795          * @throws HTTPException\InternalServerErrorException
796          */
797         public static function remove($id)
798         {
799                 // We want just to make sure that we don't delete our "self" contact
800                 $contact = DBA::selectFirst('contact', ['uri-id', 'photo', 'thumb', 'micro'], ['id' => $id, 'self' => false]);
801                 if (!DBA::isResult($contact)) {
802                         return;
803                 }
804
805                 // Archive the contact
806                 self::update(['archive' => true, 'network' => Protocol::PHANTOM, 'deleted' => true], ['id' => $id]);
807
808                 if (!DBA::exists('contact', ['uri-id' => $contact['uri-id'], 'deleted' => false])) {
809                         Avatar::deleteCache($contact);
810                 }
811
812                 // Delete it in the background
813                 Worker::add(PRIORITY_MEDIUM, 'Contact\Remove', $id);
814         }
815
816         /**
817          * Unfollow the remote contact
818          *
819          * @param array $contact Target user-specific contact (uid != 0) array
820          * @throws HTTPException\InternalServerErrorException
821          * @throws \ImagickException
822          */
823         public static function unfollow(array $contact): void
824         {
825                 if (empty($contact['network'])) {
826                         throw new \InvalidArgumentException('Empty network in contact array');
827                 }
828
829                 if (empty($contact['uid'])) {
830                         throw new \InvalidArgumentException('Unexpected public contact record');
831                 }
832
833                 if (in_array($contact['rel'], [self::SHARING, self::FRIEND])) {
834                         $cdata = self::getPublicAndUserContactID($contact['id'], $contact['uid']);
835                         if (!empty($cdata['public'])) {
836                                 Worker::add(PRIORITY_HIGH, 'Contact\Unfollow', $cdata['public'], $contact['uid']);
837                         }
838                 }
839
840                 self::removeSharer($contact);
841         }
842
843         /**
844          * Revoke follow privileges of the remote user contact
845          *
846          * The local relationship is updated immediately, the eventual remote server is messaged in the background.
847          *
848          * @param array $contact User-specific contact array (uid != 0) to revoke the follow from
849          * @throws HTTPException\InternalServerErrorException
850          * @throws \ImagickException
851          */
852         public static function revokeFollow(array $contact): void
853         {
854                 if (empty($contact['network'])) {
855                         throw new \InvalidArgumentException('Empty network in contact array');
856                 }
857
858                 if (empty($contact['uid'])) {
859                         throw new \InvalidArgumentException('Unexpected public contact record');
860                 }
861
862                 if (in_array($contact['rel'], [self::FOLLOWER, self::FRIEND])) {
863                         $cdata = self::getPublicAndUserContactID($contact['id'], $contact['uid']);
864                         if (!empty($cdata['public'])) {
865                                 Worker::add(PRIORITY_HIGH, 'Contact\RevokeFollow', $cdata['public'], $contact['uid']);
866                         }
867                 }
868
869                 self::removeFollower($contact);
870         }
871
872         /**
873          * Completely severs a relationship with a contact
874          *
875          * @param array $contact User-specific contact (uid != 0) array
876          * @throws HTTPException\InternalServerErrorException
877          * @throws \ImagickException
878          */
879         public static function terminateFriendship(array $contact)
880         {
881                 if (empty($contact['network'])) {
882                         throw new \InvalidArgumentException('Empty network in contact array');
883                 }
884
885                 if (empty($contact['uid'])) {
886                         throw new \InvalidArgumentException('Unexpected public contact record');
887                 }
888
889                 $cdata = self::getPublicAndUserContactID($contact['id'], $contact['uid']);
890
891                 if (in_array($contact['rel'], [self::SHARING, self::FRIEND]) && !empty($cdata['public'])) {
892                         Worker::add(PRIORITY_HIGH, 'Contact\Unfollow', $cdata['public'], $contact['uid']);
893                 }
894
895                 if (in_array($contact['rel'], [self::FOLLOWER, self::FRIEND]) && !empty($cdata['public'])) {
896                         Worker::add(PRIORITY_HIGH, 'Contact\RevokeFollow', $cdata['public'], $contact['uid']);
897                 }
898
899                 self::remove($contact['id']);
900         }
901
902
903         /**
904          * Marks a contact for archival after a communication issue delay
905          *
906          * Contact has refused to recognise us as a friend. We will start a countdown.
907          * If they still don't recognise us in 32 days, the relationship is over,
908          * and we won't waste any more time trying to communicate with them.
909          * This provides for the possibility that their database is temporarily messed
910          * up or some other transient event and that there's a possibility we could recover from it.
911          *
912          * @param array $contact contact to mark for archival
913          * @return null
914          * @throws HTTPException\InternalServerErrorException
915          */
916         public static function markForArchival(array $contact)
917         {
918                 if (!isset($contact['url']) && !empty($contact['id'])) {
919                         $fields = ['id', 'url', 'archive', 'self', 'term-date'];
920                         $contact = DBA::selectFirst('contact', $fields, ['id' => $contact['id']]);
921                         if (!DBA::isResult($contact)) {
922                                 return;
923                         }
924                 } elseif (!isset($contact['url'])) {
925                         Logger::info('Empty contact', ['contact' => $contact, 'callstack' => System::callstack(20)]);
926                 }
927
928                 Logger::info('Contact is marked for archival', ['id' => $contact['id'], 'term-date' => $contact['term-date']]);
929
930                 // Contact already archived or "self" contact? => nothing to do
931                 if ($contact['archive'] || $contact['self']) {
932                         return;
933                 }
934
935                 if ($contact['term-date'] <= DBA::NULL_DATETIME) {
936                         self::update(['term-date' => DateTimeFormat::utcNow()], ['id' => $contact['id']]);
937                         self::update(['term-date' => DateTimeFormat::utcNow()], ['`nurl` = ? AND `term-date` <= ? AND NOT `self`', Strings::normaliseLink($contact['url']), DBA::NULL_DATETIME]);
938                 } else {
939                         /* @todo
940                          * We really should send a notification to the owner after 2-3 weeks
941                          * so they won't be surprised when the contact vanishes and can take
942                          * remedial action if this was a serious mistake or glitch
943                          */
944
945                         /// @todo Check for contact vitality via probing
946                         $archival_days = DI::config()->get('system', 'archival_days', 32);
947
948                         $expiry = $contact['term-date'] . ' + ' . $archival_days . ' days ';
949                         if (DateTimeFormat::utcNow() > DateTimeFormat::utc($expiry)) {
950                                 /* Relationship is really truly dead. archive them rather than
951                                  * delete, though if the owner tries to unarchive them we'll start
952                                  * the whole process over again.
953                                  */
954                                 self::update(['archive' => true], ['id' => $contact['id']]);
955                                 self::update(['archive' => true], ['nurl' => Strings::normaliseLink($contact['url']), 'self' => false]);
956                         }
957                 }
958         }
959
960         /**
961          * Cancels the archival countdown
962          *
963          * @see   Contact::markForArchival()
964          *
965          * @param array $contact contact to be unmarked for archival
966          * @return null
967          * @throws \Exception
968          */
969         public static function unmarkForArchival(array $contact)
970         {
971                 // Always unarchive the relay contact entry
972                 if (!empty($contact['batch']) && !empty($contact['term-date']) && ($contact['term-date'] > DBA::NULL_DATETIME)) {
973                         $fields = ['failed' => false, 'term-date' => DBA::NULL_DATETIME, 'archive' => false];
974                         $condition = ['uid' => 0, 'network' => Protocol::FEDERATED, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY];
975                         if (!DBA::exists('contact', array_merge($condition, $fields))) {
976                                 self::update($fields, $condition);
977                         }
978                 }
979
980                 $condition = ['`id` = ? AND (`term-date` > ? OR `archive`)', $contact['id'], DBA::NULL_DATETIME];
981                 $exists = DBA::exists('contact', $condition);
982
983                 // We don't need to update, we never marked this contact for archival
984                 if (!$exists) {
985                         return;
986                 }
987
988                 Logger::info('Contact is marked as vital again', ['id' => $contact['id'], 'term-date' => $contact['term-date']]);
989
990                 if (!isset($contact['url']) && !empty($contact['id'])) {
991                         $fields = ['id', 'url', 'batch'];
992                         $contact = DBA::selectFirst('contact', $fields, ['id' => $contact['id']]);
993                         if (!DBA::isResult($contact)) {
994                                 return;
995                         }
996                 }
997
998                 // It's a miracle. Our dead contact has inexplicably come back to life.
999                 $fields = ['failed' => false, 'term-date' => DBA::NULL_DATETIME, 'archive' => false];
1000                 self::update($fields, ['id' => $contact['id']]);
1001                 self::update($fields, ['nurl' => Strings::normaliseLink($contact['url']), 'self' => false]);
1002         }
1003
1004         /**
1005          * Returns the data array for the photo menu of a given contact
1006          *
1007          * @param array $contact contact
1008          * @param int   $uid     optional, default 0
1009          * @return array
1010          * @throws HTTPException\InternalServerErrorException
1011          * @throws \ImagickException
1012          */
1013         public static function photoMenu(array $contact, $uid = 0)
1014         {
1015                 $pm_url = '';
1016                 $status_link = '';
1017                 $photos_link = '';
1018                 $poke_link = '';
1019
1020                 if ($uid == 0) {
1021                         $uid = local_user();
1022                 }
1023
1024                 if (empty($contact['uid']) || ($contact['uid'] != $uid)) {
1025                         if ($uid == 0) {
1026                                 $profile_link = self::magicLinkByContact($contact);
1027                                 $menu = ['profile' => [DI::l10n()->t('View Profile'), $profile_link, true]];
1028
1029                                 return $menu;
1030                         }
1031
1032                         // Look for our own contact if the uid doesn't match and isn't public
1033                         $contact_own = DBA::selectFirst('contact', [], ['nurl' => $contact['nurl'], 'network' => $contact['network'], 'uid' => $uid]);
1034                         if (DBA::isResult($contact_own)) {
1035                                 return self::photoMenu($contact_own, $uid);
1036                         }
1037                 }
1038
1039                 $sparkle = false;
1040                 if (($contact['network'] === Protocol::DFRN) && !$contact['self'] && empty($contact['pending'])) {
1041                         $sparkle = true;
1042                         $profile_link = DI::baseUrl() . '/redir/' . $contact['id'];
1043                 } else {
1044                         $profile_link = $contact['url'];
1045                 }
1046
1047                 if ($profile_link === 'mailbox') {
1048                         $profile_link = '';
1049                 }
1050
1051                 if ($sparkle) {
1052                         $status_link = $profile_link . '/status';
1053                         $photos_link = str_replace('/profile/', '/photos/', $profile_link);
1054                         $profile_link = $profile_link . '/profile';
1055                 }
1056
1057                 if (self::canReceivePrivateMessages($contact) && empty($contact['pending'])) {
1058                         $pm_url = DI::baseUrl() . '/message/new/' . $contact['id'];
1059                 }
1060
1061                 if (($contact['network'] == Protocol::DFRN) && !$contact['self'] && empty($contact['pending'])) {
1062                         $poke_link = 'contact/' . $contact['id'] . '/poke';
1063                 }
1064
1065                 $contact_url = DI::baseUrl() . '/contact/' . $contact['id'];
1066
1067                 $posts_link = DI::baseUrl() . '/contact/' . $contact['id'] . '/conversations';
1068
1069                 $follow_link = '';
1070                 $unfollow_link = '';
1071                 if (!$contact['self'] && Protocol::supportsFollow($contact['network'])) {
1072                         if ($contact['uid'] && in_array($contact['rel'], [self::SHARING, self::FRIEND])) {
1073                                 $unfollow_link = 'unfollow?url=' . urlencode($contact['url']) . '&auto=1';
1074                         } elseif(!$contact['pending']) {
1075                                 $follow_link = 'follow?url=' . urlencode($contact['url']) . '&auto=1';
1076                         }
1077                 }
1078
1079                 /**
1080                  * Menu array:
1081                  * "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ]
1082                  */
1083                 if (empty($contact['uid'])) {
1084                         $menu = [
1085                                 'profile' => [DI::l10n()->t('View Profile')  , $profile_link , true],
1086                                 'network' => [DI::l10n()->t('Network Posts') , $posts_link   , false],
1087                                 'edit'    => [DI::l10n()->t('View Contact')  , $contact_url  , false],
1088                                 'follow'  => [DI::l10n()->t('Connect/Follow'), $follow_link  , true],
1089                                 'unfollow'=> [DI::l10n()->t('UnFollow')      , $unfollow_link, true],
1090                         ];
1091                 } else {
1092                         $menu = [
1093                                 'status'  => [DI::l10n()->t('View Status')   , $status_link      , true],
1094                                 'profile' => [DI::l10n()->t('View Profile')  , $profile_link     , true],
1095                                 'photos'  => [DI::l10n()->t('View Photos')   , $photos_link      , true],
1096                                 'network' => [DI::l10n()->t('Network Posts') , $posts_link       , false],
1097                                 'edit'    => [DI::l10n()->t('View Contact')  , $contact_url      , false],
1098                                 'pm'      => [DI::l10n()->t('Send PM')       , $pm_url           , false],
1099                                 'poke'    => [DI::l10n()->t('Poke')          , $poke_link        , false],
1100                                 'follow'  => [DI::l10n()->t('Connect/Follow'), $follow_link      , true],
1101                                 'unfollow'=> [DI::l10n()->t('UnFollow')      , $unfollow_link    , true],
1102                         ];
1103
1104                         if (!empty($contact['pending'])) {
1105                                 try {
1106                                         $intro = DI::intro()->selectForContact($contact['id']);
1107                                         $menu['follow'] = [DI::l10n()->t('Approve'), 'notifications/intros/' . $intro->id, true];
1108                                 } catch (IntroductionNotFoundException $exception) {
1109                                         DI::logger()->error('Pending contact doesn\'t have an introduction.', ['exception' => $exception]);
1110                                 }
1111                         }
1112                 }
1113
1114                 $args = ['contact' => $contact, 'menu' => &$menu];
1115
1116                 Hook::callAll('contact_photo_menu', $args);
1117
1118                 $menucondensed = [];
1119
1120                 foreach ($menu as $menuname => $menuitem) {
1121                         if ($menuitem[1] != '') {
1122                                 $menucondensed[$menuname] = $menuitem;
1123                         }
1124                 }
1125
1126                 return $menucondensed;
1127         }
1128
1129         /**
1130          * Fetch the contact id for a given URL and user
1131          *
1132          * First lookup in the contact table to find a record matching either `url`, `nurl`,
1133          * `addr` or `alias`.
1134          *
1135          * If there's no record and we aren't looking for a public contact, we quit.
1136          * If there's one, we check that it isn't time to update the picture else we
1137          * directly return the found contact id.
1138          *
1139          * Second, we probe the provided $url whether it's http://server.tld/profile or
1140          * nick@server.tld. We quit if we can't get any info back.
1141          *
1142          * Third, we create the contact record if it doesn't exist
1143          *
1144          * Fourth, we update the existing record with the new data (avatar, alias, nick)
1145          * if there's any updates
1146          *
1147          * @param string  $url       Contact URL
1148          * @param integer $uid       The user id for the contact (0 = public contact)
1149          * @param boolean $update    true = always update, false = never update, null = update when not found
1150          * @param array   $default   Default value for creating the contact when everything else fails
1151          *
1152          * @return integer Contact ID
1153          * @throws HTTPException\InternalServerErrorException
1154          * @throws \ImagickException
1155          */
1156         public static function getIdForURL($url, $uid = 0, $update = null, $default = [])
1157         {
1158                 $contact_id = 0;
1159
1160                 if ($url == '') {
1161                         Logger::notice('Empty url, quitting', ['url' => $url, 'user' => $uid, 'default' => $default]);
1162                         return 0;
1163                 }
1164
1165                 $contact = self::getByURL($url, false, ['id', 'network', 'uri-id'], $uid);
1166
1167                 if (!empty($contact)) {
1168                         $contact_id = $contact["id"];
1169
1170                         if (empty($update) && (!empty($contact['uri-id']) || is_bool($update))) {
1171                                 Logger::debug('Contact found', ['url' => $url, 'uid' => $uid, 'update' => $update, 'cid' => $contact_id]);
1172                                 return $contact_id;
1173                         }
1174                 } elseif ($uid != 0) {
1175                         Logger::debug('Contact does not exist for the user', ['url' => $url, 'uid' => $uid, 'update' => $update]);
1176                         return 0;
1177                 } elseif (empty($default) && !is_null($update) && !$update) {
1178                         Logger::info('Contact not found, update not desired', ['url' => $url, 'uid' => $uid, 'update' => $update]);
1179                         return 0;
1180                 }
1181
1182                 $data = [];
1183
1184                 if (empty($default['network']) || $update) {
1185                         $data = Probe::uri($url, "", $uid);
1186
1187                         // Take the default values when probing failed
1188                         if (!empty($default) && !in_array($data["network"], array_merge(Protocol::NATIVE_SUPPORT, [Protocol::PUMPIO]))) {
1189                                 $data = array_merge($data, $default);
1190                         }
1191                 } elseif (!empty($default['network'])) {
1192                         $data = $default;
1193                 }
1194
1195                 if (($uid == 0) && (empty($data['network']) || ($data['network'] == Protocol::PHANTOM))) {
1196                         // Fetch data for the public contact via the first found personal contact
1197                         /// @todo Check if this case can happen at all (possibly with mail accounts?)
1198                         $fields = ['name', 'nick', 'url', 'addr', 'alias', 'avatar', 'header', 'contact-type',
1199                                 'keywords', 'location', 'about', 'unsearchable', 'batch', 'notify', 'poll',
1200                                 'request', 'confirm', 'poco', 'subscribe', 'network', 'baseurl', 'gsid'];
1201
1202                         $personal_contact = DBA::selectFirst('contact', $fields, ["`addr` = ? AND `uid` != 0", $url]);
1203                         if (!DBA::isResult($personal_contact)) {
1204                                 $personal_contact = DBA::selectFirst('contact', $fields, ["`nurl` = ? AND `uid` != 0", Strings::normaliseLink($url)]);
1205                         }
1206
1207                         if (DBA::isResult($personal_contact)) {
1208                                 Logger::info('Take contact data from personal contact', ['url' => $url, 'update' => $update, 'contact' => $personal_contact, 'callstack' => System::callstack(20)]);
1209                                 $data = $personal_contact;
1210                                 $data['photo'] = $personal_contact['avatar'];
1211                                 $data['account-type'] = $personal_contact['contact-type'];
1212                                 $data['hide'] = $personal_contact['unsearchable'];
1213                                 unset($data['avatar']);
1214                                 unset($data['contact-type']);
1215                                 unset($data['unsearchable']);
1216                         }
1217                 }
1218
1219                 if (empty($data['network']) || ($data['network'] == Protocol::PHANTOM)) {
1220                         Logger::notice('No valid network found', ['url' => $url, 'uid' => $uid, 'default' => $default, 'update' => $update, 'callstack' => System::callstack(20)]);
1221                         return 0;
1222                 }
1223
1224                 if (!$contact_id) {
1225                         $urls = [Strings::normaliseLink($url), Strings::normaliseLink($data['url'])];
1226                         if (!empty($data['alias'])) {
1227                                 $urls[] = Strings::normaliseLink($data['alias']);
1228                         }
1229                         $contact = self::selectFirst(['id'], ['nurl' => $urls, 'uid' => $uid]);
1230                         if (!empty($contact['id'])) {
1231                                 $contact_id = $contact['id'];
1232                                 Logger::info('Fetched id by url', ['cid' => $contact_id, 'uid' => $uid, 'url' => $url, 'data' => $data]);
1233                         }
1234                 }
1235
1236                 if (!$contact_id) {
1237                         // We only insert the basic data. The rest will be done in "updateFromProbeArray"
1238                         $fields = [
1239                                 'uid'       => $uid,
1240                                 'url'       => $data['url'],
1241                                 'nurl'      => Strings::normaliseLink($data['url']),
1242                                 'network'   => $data['network'],
1243                                 'created'   => DateTimeFormat::utcNow(),
1244                                 'rel'       => self::SHARING,
1245                                 'writable'  => 1,
1246                                 'blocked'   => 0,
1247                                 'readonly'  => 0,
1248                                 'pending'   => 0];
1249
1250                         $condition = ['nurl' => Strings::normaliseLink($data["url"]), 'uid' => $uid, 'deleted' => false];
1251
1252                         // Before inserting we do check if the entry does exist now.
1253                         if (DI::lock()->acquire(self::LOCK_INSERT, 0)) {
1254                                 $contact = DBA::selectFirst('contact', ['id'], $condition, ['order' => ['id']]);
1255                                 if (DBA::isResult($contact)) {
1256                                         $contact_id = $contact['id'];
1257                                         Logger::notice('Contact had been created (shortly) before', ['id' => $contact_id, 'url' => $url, 'uid' => $uid]);
1258                                 } else {
1259                                         $contact_id = self::insert($fields);
1260                                         if ($contact_id) {
1261                                                 Logger::info('Contact inserted', ['id' => $contact_id, 'url' => $url, 'uid' => $uid]);
1262                                         }
1263                                 }
1264                                 DI::lock()->release(self::LOCK_INSERT);
1265                         } else {
1266                                 Logger::warning('Contact lock had not been acquired');
1267                         }
1268
1269                         if (!$contact_id) {
1270                                 Logger::info('Contact was not inserted', ['url' => $url, 'uid' => $uid]);
1271                                 return 0;
1272                         }
1273                 } else {
1274                         Logger::info('Contact will be updated', ['url' => $url, 'uid' => $uid, 'update' => $update, 'cid' => $contact_id]);
1275                 }
1276
1277                 if ($data['network'] == Protocol::DIASPORA) {
1278                         FContact::updateFromProbeArray($data);
1279                 }
1280
1281                 self::updateFromProbeArray($contact_id, $data);
1282
1283                 // Don't return a number for a deleted account
1284                 if (!empty($data['account-type']) && $data['account-type'] == User::ACCOUNT_TYPE_DELETED) {
1285                         Logger::info('Contact is a tombstone', ['url' => $url, 'uid' => $uid]);
1286                         return 0;
1287                 }
1288
1289                 return $contact_id;
1290         }
1291
1292         /**
1293          * Checks if the contact is archived
1294          *
1295          * @param int $cid contact id
1296          *
1297          * @return boolean Is the contact archived?
1298          * @throws HTTPException\InternalServerErrorException
1299          */
1300         public static function isArchived(int $cid)
1301         {
1302                 if ($cid == 0) {
1303                         return false;
1304                 }
1305
1306                 $contact = DBA::selectFirst('contact', ['archive', 'url', 'batch'], ['id' => $cid]);
1307                 if (!DBA::isResult($contact)) {
1308                         return false;
1309                 }
1310
1311                 if ($contact['archive']) {
1312                         return true;
1313                 }
1314
1315                 // Check status of ActivityPub endpoints
1316                 $apcontact = APContact::getByURL($contact['url'], false);
1317                 if (!empty($apcontact)) {
1318                         if (!empty($apcontact['inbox']) && DBA::exists('inbox-status', ['archive' => true, 'url' => $apcontact['inbox']])) {
1319                                 return true;
1320                         }
1321
1322                         if (!empty($apcontact['sharedinbox']) && DBA::exists('inbox-status', ['archive' => true, 'url' => $apcontact['sharedinbox']])) {
1323                                 return true;
1324                         }
1325                 }
1326
1327                 // Check status of Diaspora endpoints
1328                 if (!empty($contact['batch'])) {
1329                         $condition = ['archive' => true, 'uid' => 0, 'network' => Protocol::FEDERATED, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY];
1330                         return DBA::exists('contact', $condition);
1331                 }
1332
1333                 return false;
1334         }
1335
1336         /**
1337          * Checks if the contact is blocked
1338          *
1339          * @param int $cid contact id
1340          *
1341          * @return boolean Is the contact blocked?
1342          * @throws HTTPException\InternalServerErrorException
1343          */
1344         public static function isBlocked($cid)
1345         {
1346                 if ($cid == 0) {
1347                         return false;
1348                 }
1349
1350                 $blocked = DBA::selectFirst('contact', ['blocked', 'url'], ['id' => $cid]);
1351                 if (!DBA::isResult($blocked)) {
1352                         return false;
1353                 }
1354
1355                 if (Network::isUrlBlocked($blocked['url'])) {
1356                         return true;
1357                 }
1358
1359                 return (bool) $blocked['blocked'];
1360         }
1361
1362         /**
1363          * Checks if the contact is hidden
1364          *
1365          * @param int $cid contact id
1366          *
1367          * @return boolean Is the contact hidden?
1368          * @throws \Exception
1369          */
1370         public static function isHidden($cid)
1371         {
1372                 if ($cid == 0) {
1373                         return false;
1374                 }
1375
1376                 $hidden = DBA::selectFirst('contact', ['hidden'], ['id' => $cid]);
1377                 if (!DBA::isResult($hidden)) {
1378                         return false;
1379                 }
1380                 return (bool) $hidden['hidden'];
1381         }
1382
1383         /**
1384          * Returns posts from a given contact url
1385          *
1386          * @param string $contact_url Contact URL
1387          * @param bool   $thread_mode
1388          * @param int    $update      Update mode
1389          * @param int    $parent      Item parent ID for the update mode
1390          * @param bool   $only_media  Only display media content
1391          * @return string posts in HTML
1392          * @throws \Exception
1393          */
1394         public static function getPostsFromUrl($contact_url, $thread_mode = false, $update = 0, $parent = 0, bool $only_media = false)
1395         {
1396                 return self::getPostsFromId(self::getIdForURL($contact_url), $thread_mode, $update, $parent, $only_media);
1397         }
1398
1399         /**
1400          * Returns posts from a given contact id
1401          *
1402          * @param int  $cid         Contact ID
1403          * @param bool $thread_mode
1404          * @param int  $update      Update mode
1405          * @param int  $parent      Item parent ID for the update mode
1406          * @param bool $only_media  Only display media content
1407          * @return string posts in HTML
1408          * @throws \Exception
1409          */
1410         public static function getPostsFromId($cid, $thread_mode = false, $update = 0, $parent = 0, bool $only_media = false)
1411         {
1412                 $contact = DBA::selectFirst('contact', ['contact-type', 'network'], ['id' => $cid]);
1413                 if (!DBA::isResult($contact)) {
1414                         return '';
1415                 }
1416
1417                 if (empty($contact["network"]) || in_array($contact["network"], Protocol::FEDERATED)) {
1418                         $sql = "(`uid` = 0 OR (`uid` = ? AND NOT `global`))";
1419                 } else {
1420                         $sql = "`uid` = ?";
1421                 }
1422
1423                 $contact_field = ((($contact["contact-type"] == self::TYPE_COMMUNITY) || ($contact['network'] == Protocol::MAIL)) ? 'owner-id' : 'author-id');
1424
1425                 if ($thread_mode) {
1426                         $condition = ["((`$contact_field` = ? AND `gravity` = ?) OR (`author-id` = ? AND `gravity` = ? AND `vid` = ?)) AND " . $sql,
1427                                 $cid, GRAVITY_PARENT, $cid, GRAVITY_ACTIVITY, Verb::getID(Activity::ANNOUNCE), local_user()];
1428                 } else {
1429                         $condition = ["`$contact_field` = ? AND `gravity` IN (?, ?) AND " . $sql,
1430                                 $cid, GRAVITY_PARENT, GRAVITY_COMMENT, local_user()];
1431                 }
1432
1433                 if (!empty($parent)) {
1434                         $condition = DBA::mergeConditions($condition, ['parent' => $parent]);
1435                 } else {
1436                         $last_received = isset($_GET['last_received']) ? DateTimeFormat::utc($_GET['last_received']) : '';
1437                         if (!empty($last_received)) {
1438                                 $condition = DBA::mergeConditions($condition, ["`received` < ?", $last_received]);
1439                         }
1440                 }
1441
1442                 if ($only_media) {
1443                         $condition = DBA::mergeConditions($condition, ["`uri-id` IN (SELECT `uri-id` FROM `post-media` WHERE `type` IN (?, ?, ?))",
1444                                 Post\Media::AUDIO, Post\Media::IMAGE, Post\Media::VIDEO]);
1445                 }
1446
1447                 if (DI::mode()->isMobile()) {
1448                         $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
1449                                 DI::config()->get('system', 'itemspage_network_mobile'));
1450                 } else {
1451                         $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
1452                                 DI::config()->get('system', 'itemspage_network'));
1453                 }
1454
1455                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), $itemsPerPage);
1456
1457                 $params = ['order' => ['received' => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
1458
1459                 if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
1460                         $tpl = Renderer::getMarkupTemplate('infinite_scroll_head.tpl');
1461                         $o = Renderer::replaceMacros($tpl, ['$reload_uri' => DI::args()->getQueryString()]);
1462                 } else {
1463                         $o = '';
1464                 }
1465
1466                 if ($thread_mode) {
1467                         $fields = ['uri-id', 'thr-parent-id', 'gravity', 'author-id', 'commented'];
1468                         $items = Post::toArray(Post::selectForUser(local_user(), $fields, $condition, $params));
1469
1470                         if ($pager->getStart() == 0) {
1471                                 $cdata = self::getPublicAndUserContactID($cid, local_user());
1472                                 if (!empty($cdata['public'])) {
1473                                         $pinned = Post\Collection::selectToArrayForContact($cdata['public'], Post\Collection::FEATURED, $fields);
1474                                         $items = array_merge($items, $pinned);
1475                                 }
1476                         }
1477
1478                         $o .= DI::conversation()->create($items, 'contacts', $update, false, 'pinned_commented', local_user());
1479                 } else {
1480                         $fields = array_merge(Item::DISPLAY_FIELDLIST, ['featured']);
1481                         $items = Post::toArray(Post::selectForUser(local_user(), $fields, $condition, $params));
1482
1483                         if ($pager->getStart() == 0) {
1484                                 $cdata = self::getPublicAndUserContactID($cid, local_user());
1485                                 if (!empty($cdata['public'])) {
1486                                         $condition = ["`uri-id` IN (SELECT `uri-id` FROM `collection-view` WHERE `cid` = ? AND `type` = ?)",
1487                                                 $cdata['public'], Post\Collection::FEATURED];
1488                                         $pinned = Post::toArray(Post::selectForUser(local_user(), $fields, $condition, $params));
1489                                         $items = array_merge($pinned, $items);
1490                                 }
1491                         }
1492
1493                         $o .= DI::conversation()->create($items, 'contact-posts', $update);
1494                 }
1495
1496                 if (!$update) {
1497                         if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
1498                                 $o .= HTML::scrollLoader();
1499                         } else {
1500                                 $o .= $pager->renderMinimal(count($items));
1501                         }
1502                 }
1503
1504                 return $o;
1505         }
1506
1507         /**
1508          * Returns the account type name
1509          *
1510          * The function can be called with either the user or the contact array
1511          *
1512          * @param int $type type of contact or account
1513          * @return string
1514          */
1515         public static function getAccountType(int $type)
1516         {
1517                 switch ($type) {
1518                         case self::TYPE_ORGANISATION:
1519                                 $account_type = DI::l10n()->t("Organisation");
1520                                 break;
1521
1522                         case self::TYPE_NEWS:
1523                                 $account_type = DI::l10n()->t('News');
1524                                 break;
1525
1526                         case self::TYPE_COMMUNITY:
1527                                 $account_type = DI::l10n()->t("Forum");
1528                                 break;
1529
1530                         default:
1531                                 $account_type = "";
1532                                 break;
1533                 }
1534
1535                 return $account_type;
1536         }
1537
1538         /**
1539          * Blocks a contact
1540          *
1541          * @param int $cid
1542          * @return bool
1543          * @throws \Exception
1544          */
1545         public static function block($cid, $reason = null)
1546         {
1547                 $return = self::update(['blocked' => true, 'block_reason' => $reason], ['id' => $cid]);
1548
1549                 return $return;
1550         }
1551
1552         /**
1553          * Unblocks a contact
1554          *
1555          * @param int $cid
1556          * @return bool
1557          * @throws \Exception
1558          */
1559         public static function unblock($cid)
1560         {
1561                 $return = self::update(['blocked' => false, 'block_reason' => null], ['id' => $cid]);
1562
1563                 return $return;
1564         }
1565
1566         /**
1567          * Ensure that cached avatar exist
1568          *
1569          * @param integer $cid
1570          */
1571         public static function checkAvatarCache(int $cid)
1572         {
1573                 $contact = DBA::selectFirst('contact', ['url', 'network', 'avatar', 'photo', 'thumb', 'micro'], ['id' => $cid, 'uid' => 0, 'self' => false]);
1574                 if (!DBA::isResult($contact)) {
1575                         return;
1576                 }
1577
1578                 if (in_array($contact['network'], [Protocol::FEED, Protocol::MAIL]) || DI::config()->get('system', 'cache_contact_avatar')) {
1579                         if (!empty($contact['avatar']) && (empty($contact['photo']) || empty($contact['thumb']) || empty($contact['micro']))) {
1580                                 Logger::info('Adding avatar cache', ['id' => $cid, 'contact' => $contact]);
1581                                 self::updateAvatar($cid, $contact['avatar'], true);
1582                                 return;
1583                         }
1584                 } elseif (Photo::isPhotoURI($contact['photo']) || Photo::isPhotoURI($contact['thumb']) || Photo::isPhotoURI($contact['micro'])) {
1585                         Logger::info('Replacing legacy avatar cache', ['id' => $cid, 'contact' => $contact]);
1586                         self::updateAvatar($cid, $contact['avatar'], true);
1587                         return;
1588                 } elseif (DI::config()->get('system', 'avatar_cache') && (empty($contact['photo']) || empty($contact['thumb']) || empty($contact['micro']))) {
1589                         Logger::info('Adding avatar cache file', ['id' => $cid, 'contact' => $contact]);
1590                         self::updateAvatar($cid, $contact['avatar'], true);
1591                 return;
1592                 }
1593         }
1594
1595         /**
1596          * Return the photo path for a given contact array in the given size
1597          *
1598          * @param array $contact    contact array
1599          * @param string $field     Fieldname of the photo in the contact array
1600          * @param string $size      Size of the avatar picture
1601          * @param string $avatar    Avatar path that is displayed when no photo had been found
1602          * @param bool  $no_update Don't perfom an update if no cached avatar was found
1603          * @return string photo path
1604          */
1605         private static function getAvatarPath(array $contact, string $size, $no_update = false)
1606         {
1607                 $contact = self::checkAvatarCacheByArray($contact, $no_update);
1608
1609                 if (DI::config()->get('system', 'avatar_cache')) {
1610                         switch ($size) {
1611                                 case Proxy::SIZE_MICRO:
1612                                         if (!empty($contact['micro']) && !Photo::isPhotoURI($contact['micro'])) {
1613                                                 return $contact['micro'];
1614                                         }
1615                                         break;
1616                                 case Proxy::SIZE_THUMB:
1617                                         if (!empty($contact['thumb']) && !Photo::isPhotoURI($contact['thumb'])) {
1618                                                 return $contact['thumb'];
1619                                         }
1620                                         break;
1621                                 case Proxy::SIZE_SMALL:
1622                                         if (!empty($contact['photo']) && !Photo::isPhotoURI($contact['photo'])) {
1623                                                 return $contact['photo'];
1624                                         }
1625                                         break;
1626                         }
1627                 }
1628
1629                 return self::getAvatarUrlForId($contact['id'], $size, $contact['updated'] ?? '');
1630         }
1631
1632         /**
1633          * Return the photo path for a given contact array
1634          *
1635          * @param array  $contact   Contact array
1636          * @param bool   $no_update Don't perfom an update if no cached avatar was found
1637          * @return string photo path
1638          */
1639         public static function getPhoto(array $contact, bool $no_update = false)
1640         {
1641                 return self::getAvatarPath($contact, Proxy::SIZE_SMALL, $no_update);
1642         }
1643
1644         /**
1645          * Return the photo path (thumb size) for a given contact array
1646          *
1647          * @param array  $contact   Contact array
1648          * @param bool   $no_update Don't perfom an update if no cached avatar was found
1649          * @return string photo path
1650          */
1651         public static function getThumb(array $contact, bool $no_update = false)
1652         {
1653                 return self::getAvatarPath($contact, Proxy::SIZE_THUMB, $no_update);
1654         }
1655
1656         /**
1657          * Return the photo path (micro size) for a given contact array
1658          *
1659          * @param array  $contact   Contact array
1660          * @param bool   $no_update Don't perfom an update if no cached avatar was found
1661          * @return string photo path
1662          */
1663         public static function getMicro(array $contact, bool $no_update = false)
1664         {
1665                 return self::getAvatarPath($contact, Proxy::SIZE_MICRO, $no_update);
1666         }
1667
1668         /**
1669          * Check the given contact array for avatar cache fields
1670          *
1671          * @param array $contact
1672          * @param bool  $no_update Don't perfom an update if no cached avatar was found
1673          * @return array contact array with avatar cache fields
1674          */
1675         private static function checkAvatarCacheByArray(array $contact, bool $no_update = false)
1676         {
1677                 $update = false;
1678                 $contact_fields = [];
1679                 $fields = ['photo', 'thumb', 'micro'];
1680                 foreach ($fields as $field) {
1681                         if (isset($contact[$field])) {
1682                                 $contact_fields[] = $field;
1683                         }
1684                         if (isset($contact[$field]) && empty($contact[$field])) {
1685                                 $update = true;
1686                         }
1687                 }
1688
1689                 if (!$update || $no_update) {
1690                         return $contact;
1691                 }
1692
1693                 if (!empty($contact['id']) && !empty($contact['avatar'])) {
1694                         self::updateAvatar($contact['id'], $contact['avatar'], true);
1695
1696                         $new_contact = self::getById($contact['id'], $contact_fields);
1697                         if (DBA::isResult($new_contact)) {
1698                                 // We only update the cache fields
1699                                 $contact = array_merge($contact, $new_contact);
1700                         }
1701                 }
1702
1703                 /// add the default avatars if the fields aren't filled
1704                 if (isset($contact['photo']) && empty($contact['photo'])) {
1705                         $contact['photo'] = self::getDefaultAvatar($contact, Proxy::SIZE_SMALL);
1706                 }
1707                 if (isset($contact['thumb']) && empty($contact['thumb'])) {
1708                         $contact['thumb'] = self::getDefaultAvatar($contact, Proxy::SIZE_THUMB);
1709                 }
1710                 if (isset($contact['micro']) && empty($contact['micro'])) {
1711                         $contact['micro'] = self::getDefaultAvatar($contact, Proxy::SIZE_MICRO);
1712                 }
1713
1714                 return $contact;
1715         }
1716
1717         /**
1718          * Fetch the default header for the given contact
1719          *
1720          * @param array $contact  contact array
1721          * @return string avatar URL
1722          */
1723         public static function getDefaultHeader(array $contact): string
1724         {
1725                 if (!empty($contact['header'])) {
1726                         return $contact['header'];
1727                 }
1728
1729                 if (!empty($contact['gsid'])) {
1730                         // Use default banners for certain platforms
1731                         $gserver = DBA::selectFirst('gserver', ['platform'], ['id' => $contact['gsid']]);
1732                         $platform = strtolower($gserver['platform'] ?? '');
1733                 } else {
1734                         $platform = '';
1735                 }
1736
1737                 switch ($platform) {
1738                         case 'friendica':
1739                         case 'friendika':
1740                                 /**
1741                                  * Picture credits
1742                                  * @author  Lostinlight <https://mastodon.xyz/@lightone>
1743                                  * @license CC0 https://creativecommons.org/share-your-work/public-domain/cc0/
1744                                  * @link    https://gitlab.com/lostinlight/per_aspera_ad_astra/-/blob/master/friendica-404/friendica-promo-bubbles.jpg
1745                                  */
1746                                 $header = DI::baseUrl() . '/images/friendica-banner.jpg';
1747                                 break;
1748                         case 'diaspora':
1749                                 /**
1750                                  * Picture credits
1751                                  * @author  John Liu <https://www.flickr.com/photos/8047705@N02/>
1752                                  * @license CC BY 2.0 https://creativecommons.org/licenses/by/2.0/
1753                                  * @link    https://www.flickr.com/photos/8047705@N02/5572197407
1754                                  */
1755                                 $header = DI::baseUrl() . '/images/diaspora-banner.jpg';
1756                                 break;
1757                         default:
1758                                 /**
1759                                  * Use a random picture. 
1760                                  * The service provides random pictures from Unsplash.
1761                                  * @license https://unsplash.com/license
1762                                  */
1763                                 $header = 'https://picsum.photos/seed/' . hash('ripemd128', $contact['url']) . '/960/300';
1764                                 break;
1765                 }
1766
1767                 return $header;
1768         }
1769
1770         /**
1771          * Fetch the default avatar for the given contact and size
1772          *
1773          * @param array $contact  contact array
1774          * @param string $size    Size of the avatar picture
1775          * @return string avatar URL
1776          */
1777         public static function getDefaultAvatar(array $contact, string $size)
1778         {
1779                 switch ($size) {
1780                         case Proxy::SIZE_MICRO:
1781                                 $avatar['size'] = 48;
1782                                 $default = self::DEFAULT_AVATAR_MICRO;
1783                                 break;
1784
1785                         case Proxy::SIZE_THUMB:
1786                                 $avatar['size'] = 80;
1787                                 $default = self::DEFAULT_AVATAR_THUMB;
1788                                 break;
1789
1790                         case Proxy::SIZE_SMALL:
1791                         default:
1792                                 $avatar['size'] = 300;
1793                                 $default = self::DEFAULT_AVATAR_PHOTO;
1794                                 break;
1795                 }
1796
1797                 if (!DI::config()->get('system', 'remote_avatar_lookup')) {
1798                         return DI::baseUrl() . $default;
1799                 }
1800
1801                 if (!empty($contact['xmpp'])) {
1802                         $avatar['email'] = $contact['xmpp'];
1803                 } elseif (!empty($contact['addr'])) {
1804                         $avatar['email'] = $contact['addr'];
1805                 } elseif (!empty($contact['url'])) {
1806                         $avatar['email'] = $contact['url'];
1807                 } else {
1808                         return DI::baseUrl() . $default;
1809                 }
1810
1811                 $avatar['url'] = '';
1812                 $avatar['success'] = false;
1813
1814                 Hook::callAll('avatar_lookup', $avatar);
1815
1816                 if ($avatar['success'] && !empty($avatar['url'])) {
1817                         return $avatar['url'];
1818                 }
1819
1820                 return DI::baseUrl() . $default;
1821         }
1822
1823         /**
1824          * Get avatar link for given contact id
1825          *
1826          * @param integer $cid     contact id
1827          * @param string  $size    One of the Proxy::SIZE_* constants
1828          * @param string  $updated Contact update date
1829          * @return string avatar link
1830          */
1831         public static function getAvatarUrlForId(int $cid, string $size = '', string $updated = '', string $guid = ''):string
1832         {
1833                 // We have to fetch the "updated" variable when it wasn't provided
1834                 // The parameter can be provided to improve performance
1835                 if (empty($updated)) {
1836                         $account = DBA::selectFirst('account-user-view', ['updated', 'guid'], ['id' => $cid]);
1837                         $updated = $account['updated'] ?? '';
1838                         $guid = $account['guid'] ?? '';
1839                 }
1840
1841                 $guid = urlencode($guid);
1842
1843                 $url = DI::baseUrl() . '/photo/contact/';
1844                 switch ($size) {
1845                         case Proxy::SIZE_MICRO:
1846                                 $url .= Proxy::PIXEL_MICRO . '/';
1847                                 break;
1848                         case Proxy::SIZE_THUMB:
1849                                 $url .= Proxy::PIXEL_THUMB . '/';
1850                                 break;
1851                         case Proxy::SIZE_SMALL:
1852                                 $url .= Proxy::PIXEL_SMALL . '/';
1853                                 break;
1854                         case Proxy::SIZE_MEDIUM:
1855                                 $url .= Proxy::PIXEL_MEDIUM . '/';
1856                                 break;
1857                         case Proxy::SIZE_LARGE:
1858                                 $url .= Proxy::PIXEL_LARGE . '/';
1859                                 break;
1860                 }
1861                 return $url . ($guid ?: $cid) . ($updated ? '?ts=' . strtotime($updated) : '');
1862         }
1863
1864         /**
1865          * Get avatar link for given contact URL
1866          *
1867          * @param string  $url  contact url
1868          * @param integer $uid  user id
1869          * @param string  $size One of the Proxy::SIZE_* constants
1870          * @return string avatar link
1871          */
1872         public static function getAvatarUrlForUrl(string $url, int $uid, string $size = ''):string
1873         {
1874                 $condition = ["`nurl` = ? AND ((`uid` = ? AND `network` IN (?, ?)) OR `uid` = ?)",
1875                         Strings::normaliseLink($url), $uid, Protocol::FEED, Protocol::MAIL, 0];
1876                 $contact = self::selectFirst(['id', 'updated'], $condition, ['order' => ['uid' => true]]);
1877                 return self::getAvatarUrlForId($contact['id'] ?? 0, $size, $contact['updated'] ?? '');
1878         }
1879
1880         /**
1881          * Get header link for given contact id
1882          *
1883          * @param integer $cid     contact id
1884          * @param string  $size    One of the Proxy::SIZE_* constants
1885          * @param string  $updated Contact update date
1886          * @return string header link
1887          */
1888         public static function getHeaderUrlForId(int $cid, string $size = '', string $updated = '', string $guid = ''):string
1889         {
1890                 // We have to fetch the "updated" variable when it wasn't provided
1891                 // The parameter can be provided to improve performance
1892                 if (empty($updated) || empty($guid)) {
1893                         $account = DBA::selectFirst('account-user-view', ['updated', 'guid'], ['id' => $cid]);
1894                         $updated = $account['updated'] ?? '';
1895                         $guid = $account['guid'] ?? '';
1896                 }
1897
1898                 $guid = urlencode($guid);
1899
1900                 $url = DI::baseUrl() . '/photo/header/';
1901                 switch ($size) {
1902                         case Proxy::SIZE_MICRO:
1903                                 $url .= Proxy::PIXEL_MICRO . '/';
1904                                 break;
1905                         case Proxy::SIZE_THUMB:
1906                                 $url .= Proxy::PIXEL_THUMB . '/';
1907                                 break;
1908                         case Proxy::SIZE_SMALL:
1909                                 $url .= Proxy::PIXEL_SMALL . '/';
1910                                 break;
1911                         case Proxy::SIZE_MEDIUM:
1912                                 $url .= Proxy::PIXEL_MEDIUM . '/';
1913                                 break;
1914                         case Proxy::SIZE_LARGE:
1915                                 $url .= Proxy::PIXEL_LARGE . '/';
1916                                 break;
1917                 }
1918
1919                 return $url . ($guid ?: $cid) . ($updated ? '?ts=' . strtotime($updated) : '');
1920         }
1921
1922         /**
1923          * Updates the avatar links in a contact only if needed
1924          *
1925          * @param int    $cid          Contact id
1926          * @param string $avatar       Link to avatar picture
1927          * @param bool   $force        force picture update
1928          * @param bool   $create_cache Enforces the creation of cached avatar fields
1929          *
1930          * @return void
1931          * @throws HTTPException\InternalServerErrorException
1932          * @throws HTTPException\NotFoundException
1933          * @throws \ImagickException
1934          */
1935         public static function updateAvatar(int $cid, string $avatar, bool $force = false, bool $create_cache = false)
1936         {
1937                 $contact = DBA::selectFirst('contact', ['uid', 'avatar', 'photo', 'thumb', 'micro', 'xmpp', 'addr', 'nurl', 'url', 'network', 'uri-id'],
1938                         ['id' => $cid, 'self' => false]);
1939                 if (!DBA::isResult($contact)) {
1940                         return;
1941                 }
1942
1943                 $uid = $contact['uid'];
1944
1945                 // Only update the cached photo links of public contacts when they already are cached
1946                 if (($uid == 0) && !$force && empty($contact['thumb']) && empty($contact['micro']) && !$create_cache) {
1947                         if ($contact['avatar'] != $avatar) {
1948                                 self::update(['avatar' => $avatar], ['id' => $cid]);
1949                                 Logger::info('Only update the avatar', ['id' => $cid, 'avatar' => $avatar, 'contact' => $contact]);
1950                         }
1951                         return;
1952                 }
1953
1954                 // User contacts use are updated through the public contacts
1955                 if (($uid != 0) && !in_array($contact['network'], [Protocol::FEED, Protocol::MAIL])) {
1956                         $pcid = self::getIdForURL($contact['url'], 0, false);
1957                         if (!empty($pcid)) {
1958                                 Logger::debug('Update the private contact via the public contact', ['id' => $cid, 'uid' => $uid, 'public' => $pcid]);
1959                                 self::updateAvatar($pcid, $avatar, $force, true);
1960                                 return;
1961                         }
1962                 }
1963
1964                 $default_avatar = empty($avatar) || strpos($avatar, self::DEFAULT_AVATAR_PHOTO);
1965
1966                 if ($default_avatar) {
1967                         $avatar = self::getDefaultAvatar($contact, Proxy::SIZE_SMALL);
1968                 }
1969
1970                 $cache_avatar = DI::config()->get('system', 'cache_contact_avatar');
1971
1972                 // Local contact avatars don't need to be cached
1973                 if ($cache_avatar && Network::isLocalLink($contact['url'])) {
1974                         $cache_avatar = !DBA::exists('contact', ['nurl' => $contact['nurl'], 'self' => true]);
1975                 }
1976
1977                 if (in_array($contact['network'], [Protocol::FEED, Protocol::MAIL]) || $cache_avatar) {
1978                         Avatar::deleteCache($contact);
1979
1980                         if ($default_avatar && Proxy::isLocalImage($avatar)) {
1981                                 $fields = ['avatar' => $avatar, 'avatar-date' => DateTimeFormat::utcNow(),
1982                                         'photo' => $avatar,
1983                                         'thumb' => self::getDefaultAvatar($contact, Proxy::SIZE_THUMB),
1984                                         'micro' => self::getDefaultAvatar($contact, Proxy::SIZE_MICRO)];
1985                                 Logger::debug('Use default avatar', ['id' => $cid, 'uid' => $uid]);
1986                         }
1987
1988                         // Use the data from the self account
1989                         if (empty($fields)) {
1990                                 $local_uid = User::getIdForURL($contact['url']);
1991                                 if (!empty($local_uid)) {
1992                                         $fields = self::selectFirst(['avatar', 'avatar-date', 'photo', 'thumb', 'micro'], ['self' => true, 'uid' => $local_uid]);
1993                                         Logger::debug('Use owner data', ['id' => $cid, 'uid' => $uid, 'owner-uid' => $local_uid]);
1994                                 }
1995                         }
1996
1997                         if (empty($fields)) {
1998                                 $update = ($contact['avatar'] != $avatar) || $force;
1999
2000                                 if (!$update) {
2001                                         $data = [
2002                                                 $contact['photo'] ?? '',
2003                                                 $contact['thumb'] ?? '',
2004                                                 $contact['micro'] ?? '',
2005                                         ];
2006
2007                                         foreach ($data as $image_uri) {
2008                                                 $image_rid = Photo::ridFromURI($image_uri);
2009                                                 if ($image_rid && !Photo::exists(['resource-id' => $image_rid, 'uid' => $uid])) {
2010                                                         Logger::debug('Regenerating avatar', ['contact uid' => $uid, 'cid' => $cid, 'missing photo' => $image_rid, 'avatar' => $contact['avatar']]);
2011                                                         $update = true;
2012                                                 }
2013                                         }
2014                                 }
2015
2016                                 if ($update) {
2017                                         $photos = Photo::importProfilePhoto($avatar, $uid, $cid, true);
2018                                         if ($photos) {
2019                                                 $fields = ['avatar' => $avatar, 'photo' => $photos[0], 'thumb' => $photos[1], 'micro' => $photos[2], 'avatar-date' => DateTimeFormat::utcNow()];
2020                                                 $update = !empty($fields);
2021                                                 Logger::debug('Created new cached avatars', ['id' => $cid, 'uid' => $uid, 'owner-uid' => $local_uid]);
2022                                         } else {
2023                                                 $update = false;
2024                                         }
2025                                 }
2026                         } else {
2027                                 $update = ($fields['photo'] . $fields['thumb'] . $fields['micro'] != $contact['photo'] . $contact['thumb'] . $contact['micro']) || $force;
2028                         }
2029                 } else {
2030                         Photo::delete(['uid' => $uid, 'contact-id' => $cid, 'photo-type' => Photo::CONTACT_AVATAR]);
2031                         $fields = Avatar::fetchAvatarContact($contact, $avatar);
2032                         $update = ($avatar . $fields['photo'] . $fields['thumb'] . $fields['micro'] != $contact['avatar'] . $contact['photo'] . $contact['thumb'] . $contact['micro']) || $force;
2033                 }
2034
2035                 if (!$update) {
2036                         return;
2037                 }
2038
2039                 $cids = [];
2040                 $uids = [];
2041                 if (($uid == 0) && !in_array($contact['network'], [Protocol::FEED, Protocol::MAIL])) {
2042                         // Collect all user contacts of the given public contact
2043                         $personal_contacts = DBA::select('contact', ['id', 'uid'],
2044                                 ["`nurl` = ? AND `id` != ? AND NOT `self`", $contact['nurl'], $cid]);
2045                         while ($personal_contact = DBA::fetch($personal_contacts)) {
2046                                 $cids[] = $personal_contact['id'];
2047                                 $uids[] = $personal_contact['uid'];
2048                         }
2049                         DBA::close($personal_contacts);
2050
2051                         if (!empty($cids)) {
2052                                 // Delete possibly existing cached user contact avatars
2053                                 Photo::delete(['uid' => $uids, 'contact-id' => $cids, 'photo-type' => Photo::CONTACT_AVATAR]);
2054                         }
2055                 }
2056
2057                 $cids[] = $cid;
2058                 $uids[] = $uid;
2059                 Logger::info('Updating cached contact avatars', ['cid' => $cids, 'uid' => $uids, 'fields' => $fields]);
2060                 self::update($fields, ['id' => $cids]);
2061         }
2062
2063         public static function deleteContactByUrl(string $url)
2064         {
2065                 // Update contact data for all users
2066                 $condition = ['self' => false, 'nurl' => Strings::normaliseLink($url)];
2067                 $contacts = DBA::select('contact', ['id', 'uid'], $condition);
2068                 while ($contact = DBA::fetch($contacts)) {
2069                         Logger::info('Deleting contact', ['id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $url]);
2070                         self::remove($contact['id']);
2071                 }
2072         }
2073
2074         /**
2075          * Helper function for "updateFromProbe". Updates personal and public contact
2076          *
2077          * @param integer $id      contact id
2078          * @param integer $uid     user id
2079          * @param string  $old_url The previous profile URL of the contact
2080          * @param string  $new_url The profile URL of the contact
2081          * @param array   $fields  The fields that are updated
2082          *
2083          * @throws \Exception
2084          */
2085         private static function updateContact(int $id, int $uid, string $old_url, string $new_url, array $fields)
2086         {
2087                 if (!self::update($fields, ['id' => $id])) {
2088                         Logger::info('Couldn\'t update contact.', ['id' => $id, 'fields' => $fields]);
2089                         return;
2090                 }
2091
2092                 // Search for duplicated contacts and get rid of them
2093                 if (self::removeDuplicates(Strings::normaliseLink($new_url), $uid)) {
2094                         return;
2095                 }
2096
2097                 // Archive or unarchive the contact.
2098                 $contact = DBA::selectFirst('contact', [], ['id' => $id]);
2099                 if (!DBA::isResult($contact)) {
2100                         Logger::info('Couldn\'t select contact for archival.', ['id' => $id]);
2101                         return;
2102                 }
2103
2104                 if (isset($fields['failed'])) {
2105                         if ($fields['failed']) {
2106                                 self::markForArchival($contact);
2107                         } else {
2108                                 self::unmarkForArchival($contact);
2109                         }
2110                 }
2111
2112                 if ($contact['uid'] != 0) {
2113                         return;
2114                 }
2115
2116                 // Update contact data for all users
2117                 $condition = ['self' => false, 'nurl' => Strings::normaliseLink($old_url)];
2118
2119                 $condition['network'] = [Protocol::DFRN, Protocol::DIASPORA, Protocol::ACTIVITYPUB];
2120                 self::update($fields, $condition);
2121
2122                 // We mustn't set the update fields for OStatus contacts since they are updated in OnePoll
2123                 $condition['network'] = Protocol::OSTATUS;
2124
2125                 // If the contact failed, propagate the update fields to all contacts
2126                 if (empty($fields['failed'])) {
2127                         unset($fields['last-update']);
2128                         unset($fields['success_update']);
2129                         unset($fields['failure_update']);
2130                 }
2131
2132                 if (empty($fields)) {
2133                         return;
2134                 }
2135
2136                 self::update($fields, $condition);
2137         }
2138
2139         /**
2140          * Remove duplicated contacts
2141          *
2142          * @param string  $nurl  Normalised contact url
2143          * @param integer $uid   User id
2144          * @return boolean
2145          * @throws \Exception
2146          */
2147         public static function removeDuplicates(string $nurl, int $uid)
2148         {
2149                 $condition = ['nurl' => $nurl, 'uid' => $uid, 'self' => false, 'deleted' => false, 'network' => Protocol::FEDERATED];
2150                 $count = DBA::count('contact', $condition);
2151                 if ($count <= 1) {
2152                         return false;
2153                 }
2154
2155                 $first_contact = DBA::selectFirst('contact', ['id', 'network'], $condition, ['order' => ['id']]);
2156                 if (!DBA::isResult($first_contact)) {
2157                         // Shouldn't happen - so we handle it
2158                         return false;
2159                 }
2160
2161                 $first = $first_contact['id'];
2162                 Logger::info('Found duplicates', ['count' => $count, 'first' => $first, 'uid' => $uid, 'nurl' => $nurl]);
2163                 if (($uid != 0 && ($first_contact['network'] == Protocol::DFRN))) {
2164                         // Don't handle non public DFRN duplicates by now (legacy DFRN is very special because of the key handling)
2165                         Logger::info('Not handling non public DFRN duplicate', ['uid' => $uid, 'nurl' => $nurl]);
2166                         return false;
2167                 }
2168
2169                 // Find all duplicates
2170                 $condition = ["`nurl` = ? AND `uid` = ? AND `id` != ? AND NOT `self` AND NOT `deleted`", $nurl, $uid, $first];
2171                 $duplicates = DBA::select('contact', ['id', 'network'], $condition);
2172                 while ($duplicate = DBA::fetch($duplicates)) {
2173                         if (!in_array($duplicate['network'], Protocol::FEDERATED)) {
2174                                 continue;
2175                         }
2176
2177                         Worker::add(PRIORITY_HIGH, 'MergeContact', $first, $duplicate['id'], $uid);
2178                 }
2179                 DBA::close($duplicates);
2180                 Logger::info('Duplicates handled', ['uid' => $uid, 'nurl' => $nurl, 'callstack' => System::callstack(20)]);
2181                 return true;
2182         }
2183
2184         /**
2185          * @param integer $id      contact id
2186          * @param string  $network Optional network we are probing for
2187          * @return boolean
2188          * @throws HTTPException\InternalServerErrorException
2189          * @throws \ImagickException
2190          */
2191         public static function updateFromProbe(int $id, string $network = '')
2192         {
2193                 $contact = DBA::selectFirst('contact', ['uid', 'url'], ['id' => $id]);
2194                 if (!DBA::isResult($contact)) {
2195                         return false;
2196                 }
2197
2198                 $ret = Probe::uri($contact['url'], $network, $contact['uid']);
2199
2200                 if ($ret['network'] == Protocol::DIASPORA) {
2201                         FContact::updateFromProbeArray($ret);
2202                 }
2203
2204                 return self::updateFromProbeArray($id, $ret);
2205         }
2206
2207         /**
2208          * @param integer $id      contact id
2209          * @param array   $ret     Probed data
2210          * @return boolean
2211          * @throws HTTPException\InternalServerErrorException
2212          * @throws \ImagickException
2213          */
2214         private static function updateFromProbeArray(int $id, array $ret)
2215         {
2216                 /*
2217                   Warning: Never ever fetch the public key via Probe::uri and write it into the contacts.
2218                   This will reliably kill your communication with old Friendica contacts.
2219                  */
2220
2221                 // These fields aren't updated by this routine:
2222                 // 'sensitive'
2223
2224                 $fields = ['uid', 'uri-id', 'avatar', 'header', 'name', 'nick', 'location', 'keywords', 'about', 'subscribe',
2225                         'manually-approve', 'unsearchable', 'url', 'addr', 'batch', 'notify', 'poll', 'request', 'confirm', 'poco',
2226                         'network', 'alias', 'baseurl', 'gsid', 'forum', 'prv', 'contact-type', 'pubkey', 'last-item', 'xmpp', 'matrix'];
2227                 $contact = DBA::selectFirst('contact', $fields, ['id' => $id]);
2228                 if (!DBA::isResult($contact)) {
2229                         return false;
2230                 }
2231
2232                 if (self::isLocal($ret['url'])) {
2233                         if ($contact['uid'] == 0) {
2234                                 Logger::info('Local contacts are not updated here.');
2235                         } else {
2236                                 self::updateFromPublicContact($id, $contact);
2237                         }
2238                         return true;
2239                 }
2240
2241                 if (!empty($ret['account-type']) && $ret['account-type'] == User::ACCOUNT_TYPE_DELETED) {
2242                         Logger::info('Deleted account', ['id' => $id, 'url' => $ret['url'], 'ret' => $ret]);
2243                         self::remove($id);
2244
2245                         // Delete all contacts with the same URL
2246                         self::deleteContactByUrl($ret['url']);
2247                         return true;
2248                 }
2249
2250                 $uid = $contact['uid'];
2251                 unset($contact['uid']);
2252
2253                 $uriid = $contact['uri-id'];
2254                 unset($contact['uri-id']);
2255
2256                 $pubkey = $contact['pubkey'];
2257                 unset($contact['pubkey']);
2258
2259                 $contact['photo'] = $contact['avatar'];
2260                 unset($contact['avatar']);
2261
2262                 $updated = DateTimeFormat::utcNow();
2263
2264                 if (Strings::normaliseLink($contact['url']) != Strings::normaliseLink($ret['url'])) {
2265                         Logger::notice('New URL differs from old URL', ['id' => $id, 'uid' => $uid, 'old' => $contact['url'], 'new' => $ret['url']]);
2266                         self::updateContact($id, $uid, $contact['url'], $ret['url'], ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated]);
2267                         return false;
2268                 }
2269
2270                 // We must not try to update relay contacts via probe. They are no real contacts.
2271                 // We check after the probing to be able to correct falsely detected contact types.
2272                 if (($contact['contact-type'] == self::TYPE_RELAY) &&
2273                         (!Strings::compareLink($ret['url'], $contact['url']) || in_array($ret['network'], [Protocol::FEED, Protocol::PHANTOM]))) {
2274                         self::updateContact($id, $uid, $contact['url'], $contact['url'], ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]);
2275                         Logger::info('Not updating relais', ['id' => $id, 'url' => $contact['url']]);
2276                         return true;
2277                 }
2278
2279                 // If Probe::uri fails the network code will be different ("feed" or "unkn")
2280                 if (($ret['network'] == Protocol::PHANTOM) || (($ret['network'] == Protocol::FEED) && ($ret['network'] != $contact['network']))) {
2281                         self::updateContact($id, $uid, $contact['url'], $ret['url'], ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated]);
2282                         return false;
2283                 }
2284
2285                 if (Strings::normaliseLink($ret['url']) != Strings::normaliseLink($contact['url'])) {
2286                         $cid = self::getIdForURL($ret['url'], 0, false);
2287                         if (!empty($cid) && ($cid != $id)) {
2288                                 Logger::notice('URL of contact changed.', ['id' => $id, 'new_id' => $cid, 'old' => $contact['url'], 'new' => $ret['url']]);
2289                                 return self::updateFromProbeArray($cid, $ret);
2290                         }
2291                 }
2292
2293                 if (isset($ret['hide']) && is_bool($ret['hide'])) {
2294                         $ret['unsearchable'] = $ret['hide'];
2295                 }
2296
2297                 if (isset($ret['account-type']) && is_int($ret['account-type'])) {
2298                         $ret['forum'] = false;
2299                         $ret['prv'] = false;
2300                         $ret['contact-type'] = $ret['account-type'];
2301                         if (($ret['contact-type'] == User::ACCOUNT_TYPE_COMMUNITY) && isset($ret['manually-approve'])) {
2302                                 $ret['forum'] = (bool)!$ret['manually-approve'];
2303                                 $ret['prv'] = (bool)!$ret['forum'];
2304                         }
2305                 }
2306
2307                 $new_pubkey = $ret['pubkey'] ?? '';
2308
2309                 if ($uid == 0) {
2310                         if ($ret['network'] == Protocol::ACTIVITYPUB) {
2311                                 ActivityPub\Processor::fetchFeaturedPosts($ret['url']);
2312                         }
2313         
2314                         $ret['last-item'] = Probe::getLastUpdate($ret);
2315                         Logger::info('Fetched last item', ['id' => $id, 'probed_url' => $ret['url'], 'last-item' => $ret['last-item'], 'callstack' => System::callstack(20)]);
2316                 }
2317
2318                 $update = false;
2319                 $guid = ($ret['guid'] ?? '') ?: Item::guidFromUri($ret['url'], parse_url($ret['url'], PHP_URL_HOST));
2320
2321                 // make sure to not overwrite existing values with blank entries except some technical fields
2322                 $keep = ['batch', 'notify', 'poll', 'request', 'confirm', 'poco', 'baseurl'];
2323                 foreach ($ret as $key => $val) {
2324                         if (!array_key_exists($key, $contact)) {
2325                                 unset($ret[$key]);
2326                         } elseif (($contact[$key] != '') && ($val === '') && !is_bool($ret[$key]) && !in_array($key, $keep)) {
2327                                 $ret[$key] = $contact[$key];
2328                         } elseif ($ret[$key] != $contact[$key]) {
2329                                 $update = true;
2330                         }
2331                 }
2332
2333                 if (!empty($ret['last-item']) && ($contact['last-item'] < $ret['last-item'])) {
2334                         $update = true;
2335                 } else {
2336                         unset($ret['last-item']);
2337                 }
2338
2339                 if (empty($uriid)) {
2340                         $update = true;
2341                 }
2342
2343                 if (!empty($ret['photo']) && ($ret['network'] != Protocol::FEED)) {
2344                         self::updateAvatar($id, $ret['photo'], $update);
2345                 }
2346
2347                 $uriid = ItemURI::insert(['uri' => $ret['url'], 'guid' => $guid]);
2348
2349                 if (!$update) {
2350                         self::updateContact($id, $uid, $contact['url'], $ret['url'], ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]);
2351
2352                         if (Contact\Relation::isDiscoverable($ret['url'])) {
2353                                 Worker::add(PRIORITY_LOW, 'ContactDiscovery', $ret['url']);
2354                         }
2355
2356                         // Update the public contact
2357                         if ($uid != 0) {
2358                                 $contact = self::getByURL($ret['url'], false, ['id']);
2359                                 if (!empty($contact['id'])) {
2360                                         self::updateFromProbeArray($contact['id'], $ret);
2361                                 }
2362                         }
2363
2364                         return true;
2365                 }
2366
2367                 $ret['uri-id']  = $uriid;
2368                 $ret['nurl']    = Strings::normaliseLink($ret['url']);
2369                 $ret['updated'] = $updated;
2370                 $ret['failed']  = false;
2371
2372                 // Only fill the pubkey if it had been empty before. We have to prevent identity theft.
2373                 if (empty($pubkey) && !empty($new_pubkey)) {
2374                         $ret['pubkey'] = $new_pubkey;
2375                 }
2376
2377                 if ((!empty($ret['addr']) && ($ret['addr'] != $contact['addr'])) || (!empty($ret['alias']) && ($ret['alias'] != $contact['alias']))) {
2378                         $ret['uri-date'] = $updated;
2379                 }
2380
2381                 if ((!empty($ret['name']) && ($ret['name'] != $contact['name'])) || (!empty($ret['nick']) && ($ret['nick'] != $contact['nick']))) {
2382                         $ret['name-date'] = $updated;
2383                 }
2384
2385                 if (($uid == 0) || in_array($ret['network'], [Protocol::DFRN, Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
2386                         $ret['last-update'] = $updated;
2387                         $ret['success_update'] = $updated;
2388                 }
2389
2390                 unset($ret['photo']);
2391
2392                 self::updateContact($id, $uid, $contact['url'], $ret['url'], $ret);
2393
2394                 if (Contact\Relation::isDiscoverable($ret['url'])) {
2395                         Worker::add(PRIORITY_LOW, 'ContactDiscovery', $ret['url']);
2396                 }
2397
2398                 return true;
2399         }
2400
2401         private static function updateFromPublicContact(int $id, array $contact)
2402         {
2403                 $public = self::getByURL($contact['url'], false);
2404
2405                 $fields = [];
2406
2407                 foreach ($contact as $field => $value) {
2408                         if ($field == 'uid') {
2409                                 continue;
2410                         }
2411                         if ($public[$field] != $value) {
2412                                 $fields[$field] = $public[$field];
2413                         }
2414                 }
2415                 if (!empty($fields)) {
2416                         self::update($fields, ['id' => $id, 'self' => false]);
2417                         Logger::info('Updating local contact', ['id' => $id]);
2418                 }
2419         }
2420
2421         /**
2422          * @param integer $url contact url
2423          * @return integer Contact id
2424          * @throws HTTPException\InternalServerErrorException
2425          * @throws \ImagickException
2426          */
2427         public static function updateFromProbeByURL($url)
2428         {
2429                 $id = self::getIdForURL($url);
2430
2431                 if (empty($id)) {
2432                         return $id;
2433                 }
2434
2435                 self::updateFromProbe($id);
2436
2437                 return $id;
2438         }
2439
2440         /**
2441          * Detects the communication protocol for a given contact url.
2442          * This is used to detect Friendica contacts that we can communicate via AP.
2443          *
2444          * @param string $url contact url
2445          * @param string $network Network of that contact
2446          * @return string with protocol
2447          */
2448         public static function getProtocol($url, $network)
2449         {
2450                 if ($network != Protocol::DFRN) {
2451                         return $network;
2452                 }
2453
2454                 $apcontact = APContact::getByURL($url);
2455                 if (!empty($apcontact) && !empty($apcontact['generator'])) {
2456                         return Protocol::ACTIVITYPUB;
2457                 } else {
2458                         return $network;
2459                 }
2460         }
2461
2462         /**
2463          * Takes a $uid and a url/handle and adds a new contact
2464          *
2465          * Currently if the contact is DFRN, interactive needs to be true, to redirect to the
2466          * dfrn_request page.
2467          *
2468          * Otherwise this can be used to bulk add StatusNet contacts, Twitter contacts, etc.
2469          *
2470          * Returns an array
2471          * $return['success'] boolean true if successful
2472          * $return['message'] error text if success is false.
2473          *
2474          * Takes a $uid and a url/handle and adds a new contact
2475          *
2476          * @param int    $uid         The user id the contact should be created for
2477          * @param string $url         The profile URL of the contact
2478          * @param string $network
2479          * @return array
2480          * @throws HTTPException\InternalServerErrorException
2481          * @throws HTTPException\NotFoundException
2482          * @throws \ImagickException
2483          */
2484         public static function createFromProbeForUser(int $uid, $url, $network = '')
2485         {
2486                 $result = ['cid' => -1, 'success' => false, 'message' => ''];
2487
2488                 // remove ajax junk, e.g. Twitter
2489                 $url = str_replace('/#!/', '/', $url);
2490
2491                 if (!Network::isUrlAllowed($url)) {
2492                         $result['message'] = DI::l10n()->t('Disallowed profile URL.');
2493                         return $result;
2494                 }
2495
2496                 if (Network::isUrlBlocked($url)) {
2497                         $result['message'] = DI::l10n()->t('Blocked domain');
2498                         return $result;
2499                 }
2500
2501                 if (!$url) {
2502                         $result['message'] = DI::l10n()->t('Connect URL missing.');
2503                         return $result;
2504                 }
2505
2506                 $arr = ['url' => $url, 'contact' => []];
2507
2508                 Hook::callAll('follow', $arr);
2509
2510                 if (empty($arr)) {
2511                         $result['message'] = DI::l10n()->t('The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.');
2512                         return $result;
2513                 }
2514
2515                 if (!empty($arr['contact']['name'])) {
2516                         $probed = false;
2517                         $ret = $arr['contact'];
2518                 } else {
2519                         $probed = true;
2520                         $ret = Probe::uri($url, $network, $uid);
2521                 }
2522
2523                 if (($network != '') && ($ret['network'] != $network)) {
2524                         Logger::notice('Expected network ' . $network . ' does not match actual network ' . $ret['network']);
2525                         return $result;
2526                 }
2527
2528                 // check if we already have a contact
2529                 // the poll url is more reliable than the profile url, as we may have
2530                 // indirect links or webfinger links
2531
2532                 $condition = ['uid' => $uid, 'poll' => [$ret['poll'], Strings::normaliseLink($ret['poll'])], 'network' => $ret['network'], 'pending' => false];
2533                 $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
2534                 if (!DBA::isResult($contact)) {
2535                         $condition = ['uid' => $uid, 'nurl' => Strings::normaliseLink($ret['url']), 'network' => $ret['network'], 'pending' => false];
2536                         $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
2537                 }
2538
2539                 $protocol = self::getProtocol($ret['url'], $ret['network']);
2540
2541                 // This extra param just confuses things, remove it
2542                 if ($protocol === Protocol::DIASPORA) {
2543                         $ret['url'] = str_replace('?absolute=true', '', $ret['url']);
2544                 }
2545
2546                 // do we have enough information?
2547                 if (empty($protocol) || ($protocol == Protocol::PHANTOM) || (empty($ret['url']) && empty($ret['addr']))) {
2548                         $result['message'] .= DI::l10n()->t('The profile address specified does not provide adequate information.') . EOL;
2549                         if (empty($ret['poll'])) {
2550                                 $result['message'] .= DI::l10n()->t('No compatible communication protocols or feeds were discovered.') . EOL;
2551                         }
2552                         if (empty($ret['name'])) {
2553                                 $result['message'] .= DI::l10n()->t('An author or name was not found.') . EOL;
2554                         }
2555                         if (empty($ret['url'])) {
2556                                 $result['message'] .= DI::l10n()->t('No browser URL could be matched to this address.') . EOL;
2557                         }
2558                         if (strpos($ret['url'], '@') !== false) {
2559                                 $result['message'] .= DI::l10n()->t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
2560                                 $result['message'] .= DI::l10n()->t('Use mailto: in front of address to force email check.') . EOL;
2561                         }
2562                         return $result;
2563                 }
2564
2565                 if ($protocol === Protocol::OSTATUS && DI::config()->get('system', 'ostatus_disabled')) {
2566                         $result['message'] .= DI::l10n()->t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
2567                         $ret['notify'] = '';
2568                 }
2569
2570                 if (!$ret['notify']) {
2571                         $result['message'] .= DI::l10n()->t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
2572                 }
2573
2574                 $writeable = ((($protocol === Protocol::OSTATUS) && ($ret['notify'])) ? 1 : 0);
2575
2576                 $subhub = (($protocol === Protocol::OSTATUS) ? true : false);
2577
2578                 $hidden = (($protocol === Protocol::MAIL) ? 1 : 0);
2579
2580                 $pending = false;
2581                 if (($protocol == Protocol::ACTIVITYPUB) && isset($ret['manually-approve'])) {
2582                         $pending = (bool)$ret['manually-approve'];
2583                 }
2584
2585                 if (in_array($protocol, [Protocol::MAIL, Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
2586                         $writeable = 1;
2587                 }
2588
2589                 if (DBA::isResult($contact)) {
2590                         // update contact
2591                         $new_relation = (in_array($contact['rel'], [self::FOLLOWER, self::FRIEND]) ? self::FRIEND : self::SHARING);
2592
2593                         $fields = ['rel' => $new_relation, 'subhub' => $subhub, 'readonly' => false];
2594                         self::update($fields, ['id' => $contact['id']]);
2595                 } else {
2596                         $new_relation = (in_array($protocol, [Protocol::MAIL]) ? self::FRIEND : self::SHARING);
2597
2598                         // create contact record
2599                         self::insert([
2600                                 'uid'     => $uid,
2601                                 'created' => DateTimeFormat::utcNow(),
2602                                 'url'     => $ret['url'],
2603                                 'nurl'    => Strings::normaliseLink($ret['url']),
2604                                 'addr'    => $ret['addr'],
2605                                 'alias'   => $ret['alias'],
2606                                 'batch'   => $ret['batch'],
2607                                 'notify'  => $ret['notify'],
2608                                 'poll'    => $ret['poll'],
2609                                 'poco'    => $ret['poco'],
2610                                 'name'    => $ret['name'],
2611                                 'nick'    => $ret['nick'],
2612                                 'network' => $ret['network'],
2613                                 'baseurl' => $ret['baseurl'],
2614                                 'gsid'    => $ret['gsid'] ?? null,
2615                                 'protocol' => $protocol,
2616                                 'pubkey'  => $ret['pubkey'],
2617                                 'rel'     => $new_relation,
2618                                 'priority'=> $ret['priority'],
2619                                 'writable'=> $writeable,
2620                                 'hidden'  => $hidden,
2621                                 'blocked' => 0,
2622                                 'readonly'=> 0,
2623                                 'pending' => $pending,
2624                                 'subhub'  => $subhub
2625                         ]);
2626                 }
2627
2628                 $contact = DBA::selectFirst('contact', [], ['url' => $ret['url'], 'network' => $ret['network'], 'uid' => $uid]);
2629                 if (!DBA::isResult($contact)) {
2630                         $result['message'] .= DI::l10n()->t('Unable to retrieve contact information.') . EOL;
2631                         return $result;
2632                 }
2633
2634                 $contact_id = $contact['id'];
2635                 $result['cid'] = $contact_id;
2636
2637                 Group::addMember(User::getDefaultGroup($uid), $contact_id);
2638
2639                 // Update the avatar
2640                 self::updateAvatar($contact_id, $ret['photo']);
2641
2642                 // pull feed and consume it, which should subscribe to the hub.
2643                 if ($contact['network'] == Protocol::OSTATUS) {
2644                         Worker::add(PRIORITY_HIGH, 'OnePoll', $contact_id, 'force');
2645                 }
2646
2647                 if ($probed) {
2648                         self::updateFromProbeArray($contact_id, $ret);
2649                 } else {
2650                         Worker::add(PRIORITY_HIGH, 'UpdateContact', $contact_id);
2651                 }
2652
2653                 $result['success'] = Protocol::follow($uid, $contact, $protocol);
2654
2655                 return $result;
2656         }
2657
2658         /**
2659          * @param array  $importer Owner (local user) data
2660          * @param array  $contact  Existing owner-specific contact data we want to expand the relationship with. Optional.
2661          * @param array  $datarray An item-like array with at least the 'author-id' and 'author-url' keys for the contact. Mandatory.
2662          * @param bool   $sharing  True: Contact is now sharing with Owner; False: Contact is now following Owner (default)
2663          * @param string $note     Introduction additional message
2664          * @return bool|null True: follow request is accepted; False: relationship is rejected; Null: relationship is pending
2665          * @throws HTTPException\InternalServerErrorException
2666          * @throws \ImagickException
2667          */
2668         public static function addRelationship(array $importer, array $contact, array $datarray, $sharing = false, $note = '')
2669         {
2670                 // Should always be set
2671                 if (empty($datarray['author-id'])) {
2672                         return false;
2673                 }
2674
2675                 $fields = ['id', 'url', 'name', 'nick', 'avatar', 'photo', 'network', 'blocked'];
2676                 $pub_contact = DBA::selectFirst('contact', $fields, ['id' => $datarray['author-id']]);
2677                 if (!DBA::isResult($pub_contact)) {
2678                         // Should never happen
2679                         return false;
2680                 }
2681
2682                 // Contact is blocked at node-level
2683                 if (self::isBlocked($datarray['author-id'])) {
2684                         return false;
2685                 }
2686
2687                 $url = ($datarray['author-link'] ?? '') ?: $pub_contact['url'];
2688                 $name = $pub_contact['name'];
2689                 $photo = ($pub_contact['avatar'] ?? '') ?: $pub_contact["photo"];
2690                 $nick = $pub_contact['nick'];
2691                 $network = $pub_contact['network'];
2692
2693                 // Ensure that we don't create a new contact when there already is one
2694                 $cid = self::getIdForURL($url, $importer['uid']);
2695                 if (!empty($cid)) {
2696                         $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
2697                 }
2698
2699                 if (!empty($contact)) {
2700                         if (!empty($contact['pending'])) {
2701                                 Logger::info('Pending contact request already exists.', ['url' => $url, 'uid' => $importer['uid']]);
2702                                 return null;
2703                         }
2704
2705                         // Contact is blocked at user-level
2706                         if (!empty($contact['id']) && !empty($importer['id']) &&
2707                                 Contact\User::isBlocked($contact['id'], $importer['id'])) {
2708                                 return false;
2709                         }
2710
2711                         // Make sure that the existing contact isn't archived
2712                         self::unmarkForArchival($contact);
2713
2714                         if (($contact['rel'] == self::SHARING)
2715                                 || ($sharing && $contact['rel'] == self::FOLLOWER)) {
2716                                 self::update(['rel' => self::FRIEND, 'writable' => true, 'pending' => false],
2717                                                 ['id' => $contact['id'], 'uid' => $importer['uid']]);
2718                         }
2719
2720                         // Ensure to always have the correct network type, independent from the connection request method
2721                         self::updateFromProbe($contact['id']);
2722
2723                         Post\UserNotification::insertNotification($pub_contact['id'], Activity::FOLLOW, $importer['uid']);
2724
2725                         return true;
2726                 } else {
2727                         // send email notification to owner?
2728                         if (DBA::exists('contact', ['nurl' => Strings::normaliseLink($url), 'uid' => $importer['uid'], 'pending' => true])) {
2729                                 Logger::notice('ignoring duplicated connection request from pending contact ' . $url);
2730                                 return null;
2731                         }
2732
2733                         // create contact record
2734                         $contact_id = self::insert([
2735                                 'uid'      => $importer['uid'],
2736                                 'created'  => DateTimeFormat::utcNow(),
2737                                 'url'      => $url,
2738                                 'nurl'     => Strings::normaliseLink($url),
2739                                 'name'     => $name,
2740                                 'nick'     => $nick,
2741                                 'network'  => $network,
2742                                 'rel'      => self::FOLLOWER,
2743                                 'blocked'  => 0,
2744                                 'readonly' => 0,
2745                                 'pending'  => 1,
2746                                 'writable' => 1,
2747                         ]);
2748
2749                         // Ensure to always have the correct network type, independent from the connection request method
2750                         self::updateFromProbe($contact_id);
2751
2752                         self::updateAvatar($contact_id, $photo, true);
2753
2754                         Post\UserNotification::insertNotification($pub_contact['id'], Activity::FOLLOW, $importer['uid']);
2755
2756                         $contact_record = DBA::selectFirst('contact', ['id', 'network', 'name', 'url', 'photo'], ['id' => $contact_id]);
2757
2758                         /// @TODO Encapsulate this into a function/method
2759                         $fields = ['uid', 'username', 'email', 'page-flags', 'notify-flags', 'language'];
2760                         $user = DBA::selectFirst('user', $fields, ['uid' => $importer['uid']]);
2761                         if (DBA::isResult($user) && !in_array($user['page-flags'], [User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE, User::PAGE_FLAGS_COMMUNITY])) {
2762                                 // create notification
2763                                 if (is_array($contact_record)) {
2764                                         $intro = DI::introFactory()->createNew(
2765                                                 $importer['uid'],
2766                                                 $contact_record['id'],
2767                                                 $note
2768                                         );
2769                                         DI::intro()->save($intro);
2770                                 }
2771
2772                                 Group::addMember(User::getDefaultGroup($importer['uid']), $contact_record['id']);
2773
2774                                 if (($user['notify-flags'] & Notification\Type::INTRO) && $user['page-flags'] == User::PAGE_FLAGS_NORMAL) {
2775                                         DI::notify()->createFromArray([
2776                                                 'type'  => Notification\Type::INTRO,
2777                                                 'otype' => Notification\ObjectType::INTRO,
2778                                                 'verb'  => ($sharing ? Activity::FRIEND : Activity::FOLLOW),
2779                                                 'uid'   => $user['uid'],
2780                                                 'cid'   => $contact_record['id'],
2781                                                 'link'  => DI::baseUrl() . '/notifications/intros',
2782                                         ]);
2783                                 }
2784                         } elseif (DBA::isResult($user) && in_array($user['page-flags'], [User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE, User::PAGE_FLAGS_COMMUNITY])) {
2785                                 if (($user['page-flags'] == User::PAGE_FLAGS_FREELOVE) && ($network != Protocol::DIASPORA)) {
2786                                         self::createFromProbeForUser($importer['uid'], $url, $network);
2787                                 }
2788
2789                                 $condition = ['uid' => $importer['uid'], 'url' => $url, 'pending' => true];
2790                                 $fields = ['pending' => false];
2791                                 if ($user['page-flags'] == User::PAGE_FLAGS_FREELOVE) {
2792                                         $fields['rel'] = self::FRIEND;
2793                                 }
2794
2795                                 self::update($fields, $condition);
2796
2797                                 return true;
2798                         }
2799                 }
2800
2801                 return null;
2802         }
2803
2804         /**
2805          * Update the local relationship when a local user loses a follower
2806          *
2807          * @param array $contact User-specific contact (uid != 0) array
2808          * @throws HTTPException\InternalServerErrorException
2809          * @throws \ImagickException
2810          */
2811         public static function removeFollower(array $contact)
2812         {
2813                 if (in_array($contact['rel'] ?? [], [self::FRIEND, self::SHARING])) {
2814                         self::update(['rel' => self::SHARING], ['id' => $contact['id']]);
2815                 } elseif (!empty($contact['id'])) {
2816                         self::remove($contact['id']);
2817                 } else {
2818                         DI::logger()->info('Couldn\'t remove follower because of invalid contact array', ['contact' => $contact, 'callstack' => System::callstack()]);
2819                         return;
2820                 }
2821
2822                 $cdata = self::getPublicAndUserContactID($contact['id'], $contact['uid']);
2823
2824                 DI::notification()->deleteForUserByVerb($contact['uid'], Activity::FOLLOW, ['actor-id' => $cdata['public']]);
2825         }
2826
2827         /**
2828          * Update the local relationship when a local user unfollow a contact.
2829          * Removes the contact for sharing-only protocols (feed and mail).
2830          *
2831          * @param array $contact User-specific contact (uid != 0) array
2832          * @throws HTTPException\InternalServerErrorException
2833          */
2834         public static function removeSharer(array $contact)
2835         {
2836                 if ($contact['rel'] == self::SHARING || in_array($contact['network'], [Protocol::FEED, Protocol::MAIL])) {
2837                         self::remove($contact['id']);
2838                 } else {
2839                         self::update(['rel' => self::FOLLOWER], ['id' => $contact['id']]);
2840                 }
2841         }
2842
2843         /**
2844          * Create a birthday event.
2845          *
2846          * Update the year and the birthday.
2847          */
2848         public static function updateBirthdays()
2849         {
2850                 $condition = [
2851                         '`bd` > ?
2852                         AND (`contact`.`rel` = ? OR `contact`.`rel` = ?)
2853                         AND NOT `contact`.`pending`
2854                         AND NOT `contact`.`hidden`
2855                         AND NOT `contact`.`blocked`
2856                         AND NOT `contact`.`archive`
2857                         AND NOT `contact`.`deleted`',
2858                         DBA::NULL_DATE,
2859                         self::SHARING,
2860                         self::FRIEND
2861                 ];
2862
2863                 $contacts = DBA::select('contact', ['id', 'uid', 'name', 'url', 'bd'], $condition);
2864
2865                 while ($contact = DBA::fetch($contacts)) {
2866                         Logger::notice('update_contact_birthday: ' . $contact['bd']);
2867
2868                         $nextbd = DateTimeFormat::utcNow('Y') . substr($contact['bd'], 4);
2869
2870                         if (Event::createBirthday($contact, $nextbd)) {
2871                                 // update bdyear
2872                                 DBA::update(
2873                                         'contact',
2874                                         ['bdyear' => substr($nextbd, 0, 4), 'bd' => $nextbd],
2875                                         ['id' => $contact['id']]
2876                                 );
2877                         }
2878                 }
2879                 DBA::close($contacts);
2880         }
2881
2882         /**
2883          * Remove the unavailable contact ids from the provided list
2884          *
2885          * @param array $contact_ids Contact id list
2886          * @return array
2887          * @throws \Exception
2888          */
2889         public static function pruneUnavailable(array $contact_ids)
2890         {
2891                 if (empty($contact_ids)) {
2892                         return [];
2893                 }
2894
2895                 $contacts = self::selectToArray(['id'], [
2896                         'id'      => $contact_ids,
2897                         'blocked' => false,
2898                         'pending' => false,
2899                         'archive' => false,
2900                 ]);
2901
2902                 return array_column($contacts, 'id');
2903         }
2904
2905         /**
2906          * Returns a magic link to authenticate remote visitors
2907          *
2908          * @todo  check if the return is either a fully qualified URL or a relative path to Friendica basedir
2909          *
2910          * @param string $contact_url The address of the target contact profile
2911          * @param string $url         An url that we will be redirected to after the authentication
2912          *
2913          * @return string with "redir" link
2914          * @throws HTTPException\InternalServerErrorException
2915          * @throws \ImagickException
2916          */
2917         public static function magicLink($contact_url, $url = '')
2918         {
2919                 if (!Session::isAuthenticated()) {
2920                         return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2921                 }
2922
2923                 $contact = self::getByURL($contact_url, false);
2924                 if (empty($contact)) {
2925                         return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2926                 }
2927
2928                 // Prevents endless loop in case only a non-public contact exists for the contact URL
2929                 unset($contact['uid']);
2930
2931                 return self::magicLinkByContact($contact, $url ?: $contact_url);
2932         }
2933
2934         /**
2935          * Returns a magic link to authenticate remote visitors
2936          *
2937          * @param integer $cid The contact id of the target contact profile
2938          * @param string  $url An url that we will be redirected to after the authentication
2939          *
2940          * @return string with "redir" link
2941          * @throws HTTPException\InternalServerErrorException
2942          * @throws \ImagickException
2943          */
2944         public static function magicLinkById($cid, $url = '')
2945         {
2946                 $contact = DBA::selectFirst('contact', ['id', 'network', 'url', 'uid'], ['id' => $cid]);
2947
2948                 return self::magicLinkByContact($contact, $url);
2949         }
2950
2951         /**
2952          * Returns a magic link to authenticate remote visitors
2953          *
2954          * @param array  $contact The contact array with "uid", "network" and "url"
2955          * @param string $url     An url that we will be redirected to after the authentication
2956          *
2957          * @return string with "redir" link
2958          * @throws HTTPException\InternalServerErrorException
2959          * @throws \ImagickException
2960          */
2961         public static function magicLinkByContact($contact, $url = '')
2962         {
2963                 $destination = $url ?: $contact['url']; // Equivalent to ($url != '') ? $url : $contact['url'];
2964
2965                 if (!Session::isAuthenticated()) {
2966                         return $destination;
2967                 }
2968
2969                 // Only redirections to the same host do make sense
2970                 if (($url != '') && (parse_url($url, PHP_URL_HOST) != parse_url($contact['url'], PHP_URL_HOST))) {
2971                         return $url;
2972                 }
2973
2974                 if (DI::pConfig()->get(local_user(), 'system', 'stay_local') && ($url == '')) {
2975                         return 'contact/' . $contact['id'] . '/conversations';
2976                 }
2977
2978                 if (!empty($contact['network']) && $contact['network'] != Protocol::DFRN) {
2979                         return $destination;
2980                 }
2981
2982                 if (empty($contact['id'])) {
2983                         return $destination;
2984                 }
2985
2986                 $redirect = 'redir/' . $contact['id'];
2987
2988                 if (($url != '') && !Strings::compareLink($contact['url'], $url)) {
2989                         $redirect .= '?url=' . $url;
2990                 }
2991
2992                 return $redirect;
2993         }
2994
2995         /**
2996          * Is the contact a forum?
2997          *
2998          * @param integer $contactid ID of the contact
2999          *
3000          * @return boolean "true" if it is a forum
3001          */
3002         public static function isForum($contactid)
3003         {
3004                 $fields = ['contact-type'];
3005                 $condition = ['id' => $contactid];
3006                 $contact = DBA::selectFirst('contact', $fields, $condition);
3007                 if (!DBA::isResult($contact)) {
3008                         return false;
3009                 }
3010
3011                 // Is it a forum?
3012                 return ($contact['contact-type'] == self::TYPE_COMMUNITY);
3013         }
3014
3015         /**
3016          * Can the remote contact receive private messages?
3017          *
3018          * @param array $contact
3019          * @return bool
3020          */
3021         public static function canReceivePrivateMessages(array $contact)
3022         {
3023                 $protocol = $contact['network'] ?? $contact['protocol'] ?? Protocol::PHANTOM;
3024                 $self = $contact['self'] ?? false;
3025
3026                 return in_array($protocol, [Protocol::DFRN, Protocol::DIASPORA, Protocol::ACTIVITYPUB]) && !$self;
3027         }
3028
3029         /**
3030          * Search contact table by nick or name
3031          *
3032          * @param string $search Name or nick
3033          * @param string $mode   Search mode (e.g. "community")
3034          * @param int    $uid    User ID
3035          *
3036          * @return array with search results
3037          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3038          */
3039         public static function searchByName(string $search, string $mode = '', int $uid = 0)
3040         {
3041                 if (empty($search)) {
3042                         return [];
3043                 }
3044
3045                 // check supported networks
3046                 $networks = [Protocol::DFRN, Protocol::ACTIVITYPUB];
3047                 if (DI::config()->get('system', 'diaspora_enabled')) {
3048                         $networks[] = Protocol::DIASPORA;
3049                 }
3050
3051                 if (!DI::config()->get('system', 'ostatus_disabled')) {
3052                         $networks[] = Protocol::OSTATUS;
3053                 }
3054
3055                 $condition = ['network' => $networks, 'failed' => false, 'deleted' => false, 'uid' => $uid];
3056
3057                 if ($uid == 0) {
3058                         $condition['blocked'] = false;
3059                 }
3060
3061                 // check if we search only communities or every contact
3062                 if ($mode === 'community') {
3063                         $condition['contact-type'] = self::TYPE_COMMUNITY;
3064                 }
3065
3066                 $search .= '%';
3067
3068                 $condition = DBA::mergeConditions($condition,
3069                         ["(NOT `unsearchable` OR `nurl` IN (SELECT `nurl` FROM `owner-view` WHERE `publish` OR `net-publish`))
3070                         AND (`addr` LIKE ? OR `name` LIKE ? OR `nick` LIKE ?)", $search, $search, $search]);
3071
3072                 $contacts = self::selectToArray([], $condition);
3073                 return $contacts;
3074         }
3075
3076         /**
3077          * Add public contacts from an array
3078          *
3079          * @param array $urls
3080          * @return array result "count", "added" and "updated"
3081          */
3082         public static function addByUrls(array $urls)
3083         {
3084                 $added = 0;
3085                 $updated = 0;
3086                 $unchanged = 0;
3087                 $count = 0;
3088
3089                 foreach ($urls as $url) {
3090                         if (empty($url) || !is_string($url)) {
3091                                 continue;
3092                         }
3093                         $contact = self::getByURL($url, false, ['id', 'updated']);
3094                         if (empty($contact['id'])) {
3095                                 Worker::add(PRIORITY_LOW, 'AddContact', 0, $url);
3096                                 ++$added;
3097                         } elseif ($contact['updated'] < DateTimeFormat::utc('now -7 days')) {
3098                                 Worker::add(PRIORITY_LOW, 'UpdateContact', $contact['id']);
3099                                 ++$updated;
3100                         } else {
3101                                 ++$unchanged;
3102                         }
3103                         ++$count;
3104                 }
3105
3106                 return ['count' => $count, 'added' => $added, 'updated' => $updated, 'unchanged' => $unchanged];
3107         }
3108
3109         /**
3110          * Returns a random, global contact array of the current node
3111          *
3112          * @return array The profile array
3113          * @throws Exception
3114          */
3115         public static function getRandomContact()
3116         {
3117                 $contact = DBA::selectFirst('contact', ['id', 'network', 'url', 'uid'], [
3118                         "`uid` = ? AND `network` = ? AND NOT `failed` AND `last-item` > ?",
3119                         0, Protocol::DFRN, DateTimeFormat::utc('now - 1 month'),
3120                 ], ['order' => ['RAND()']]);
3121
3122                 if (DBA::isResult($contact)) {
3123                         return $contact;
3124                 }
3125
3126                 return [];
3127         }
3128 }