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