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