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