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