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