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