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