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