]> git.mxchange.org Git - friendica.git/blob - src/Model/Contact.php
Renamed function
[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        $param               parameter 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 $param, bool $on_duplicate_update = false)
150         {
151                 $ret = DBA::insert('contact', $param, $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'])) {
908                         $fields = ['term-date' => DBA::NULL_DATETIME, 'archive' => false];
909                         $condition = ['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                         return DBA::exists('contact', ['archive' => true, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY]);
1624                 }
1625
1626                 return false;
1627         }
1628
1629         /**
1630          * @brief Checks if the contact is blocked
1631          *
1632          * @param int $cid contact id
1633          *
1634          * @return boolean Is the contact blocked?
1635          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1636          */
1637         public static function isBlocked($cid)
1638         {
1639                 if ($cid == 0) {
1640                         return false;
1641                 }
1642
1643                 $blocked = DBA::selectFirst('contact', ['blocked', 'url'], ['id' => $cid]);
1644                 if (!DBA::isResult($blocked)) {
1645                         return false;
1646                 }
1647
1648                 if (Network::isUrlBlocked($blocked['url'])) {
1649                         return true;
1650                 }
1651
1652                 return (bool) $blocked['blocked'];
1653         }
1654
1655         /**
1656          * @brief Checks if the contact is hidden
1657          *
1658          * @param int $cid contact id
1659          *
1660          * @return boolean Is the contact hidden?
1661          * @throws \Exception
1662          */
1663         public static function isHidden($cid)
1664         {
1665                 if ($cid == 0) {
1666                         return false;
1667                 }
1668
1669                 $hidden = DBA::selectFirst('contact', ['hidden'], ['id' => $cid]);
1670                 if (!DBA::isResult($hidden)) {
1671                         return false;
1672                 }
1673                 return (bool) $hidden['hidden'];
1674         }
1675
1676         /**
1677          * @brief Returns posts from a given contact url
1678          *
1679          * @param string $contact_url Contact URL
1680          *
1681          * @param bool   $thread_mode
1682          * @param int    $update
1683          * @return string posts in HTML
1684          * @throws \Exception
1685          */
1686         public static function getPostsFromUrl($contact_url, $thread_mode = false, $update = 0)
1687         {
1688                 $a = self::getApp();
1689
1690                 $cid = self::getIdForURL($contact_url);
1691
1692                 $contact = DBA::selectFirst('contact', ['contact-type', 'network'], ['id' => $cid]);
1693                 if (!DBA::isResult($contact)) {
1694                         return '';
1695                 }
1696
1697                 if (empty($contact["network"]) || in_array($contact["network"], Protocol::FEDERATED)) {
1698                         $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = ? AND NOT `item`.`global`))";
1699                 } else {
1700                         $sql = "`item`.`uid` = ?";
1701                 }
1702
1703                 $contact_field = ($contact["contact-type"] == self::TYPE_COMMUNITY ? 'owner-id' : 'author-id');
1704
1705                 if ($thread_mode) {
1706                         $condition = ["`$contact_field` = ? AND `gravity` = ? AND " . $sql,
1707                                 $cid, GRAVITY_PARENT, local_user()];
1708                 } else {
1709                         $condition = ["`$contact_field` = ? AND `gravity` IN (?, ?) AND " . $sql,
1710                                 $cid, GRAVITY_PARENT, GRAVITY_COMMENT, local_user()];
1711                 }
1712
1713                 $pager = new Pager($a->query_string);
1714
1715                 $params = ['order' => ['received' => true],
1716                         'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
1717
1718                 if ($thread_mode) {
1719                         $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params);
1720
1721                         $items = Item::inArray($r);
1722
1723                         $o = conversation($a, $items, $pager, 'contacts', $update, false, 'commented', local_user());
1724                 } else {
1725                         $r = Item::selectForUser(local_user(), [], $condition, $params);
1726
1727                         $items = Item::inArray($r);
1728
1729                         $o = conversation($a, $items, $pager, 'contact-posts', false);
1730                 }
1731
1732                 if (!$update) {
1733                         $o .= $pager->renderMinimal(count($items));
1734                 }
1735
1736                 return $o;
1737         }
1738
1739         /**
1740          * @brief Returns the account type name
1741          *
1742          * The function can be called with either the user or the contact array
1743          *
1744          * @param array $contact contact or user array
1745          * @return string
1746          */
1747         public static function getAccountType(array $contact)
1748         {
1749                 // There are several fields that indicate that the contact or user is a forum
1750                 // "page-flags" is a field in the user table,
1751                 // "forum" and "prv" are used in the contact table. They stand for User::PAGE_FLAGS_COMMUNITY and User::PAGE_FLAGS_PRVGROUP.
1752                 // "community" is used in the gcontact table and is true if the contact is User::PAGE_FLAGS_COMMUNITY or User::PAGE_FLAGS_PRVGROUP.
1753                 if ((isset($contact['page-flags']) && (intval($contact['page-flags']) == User::PAGE_FLAGS_COMMUNITY))
1754                         || (isset($contact['page-flags']) && (intval($contact['page-flags']) == User::PAGE_FLAGS_PRVGROUP))
1755                         || (isset($contact['forum']) && intval($contact['forum']))
1756                         || (isset($contact['prv']) && intval($contact['prv']))
1757                         || (isset($contact['community']) && intval($contact['community']))
1758                 ) {
1759                         $type = self::TYPE_COMMUNITY;
1760                 } else {
1761                         $type = self::TYPE_PERSON;
1762                 }
1763
1764                 // The "contact-type" (contact table) and "account-type" (user table) are more general then the chaos from above.
1765                 if (isset($contact["contact-type"])) {
1766                         $type = $contact["contact-type"];
1767                 }
1768
1769                 if (isset($contact["account-type"])) {
1770                         $type = $contact["account-type"];
1771                 }
1772
1773                 switch ($type) {
1774                         case self::TYPE_ORGANISATION:
1775                                 $account_type = L10n::t("Organisation");
1776                                 break;
1777
1778                         case self::TYPE_NEWS:
1779                                 $account_type = L10n::t('News');
1780                                 break;
1781
1782                         case self::TYPE_COMMUNITY:
1783                                 $account_type = L10n::t("Forum");
1784                                 break;
1785
1786                         default:
1787                                 $account_type = "";
1788                                 break;
1789                 }
1790
1791                 return $account_type;
1792         }
1793
1794         /**
1795          * @brief Blocks a contact
1796          *
1797          * @param int $cid
1798          * @return bool
1799          * @throws \Exception
1800          */
1801         public static function block($cid, $reason = null)
1802         {
1803                 $return = DBA::update('contact', ['blocked' => true, 'block_reason' => $reason], ['id' => $cid]);
1804
1805                 return $return;
1806         }
1807
1808         /**
1809          * @brief Unblocks a contact
1810          *
1811          * @param int $cid
1812          * @return bool
1813          * @throws \Exception
1814          */
1815         public static function unblock($cid)
1816         {
1817                 $return = DBA::update('contact', ['blocked' => false, 'block_reason' => null], ['id' => $cid]);
1818
1819                 return $return;
1820         }
1821
1822         /**
1823          * @brief Updates the avatar links in a contact only if needed
1824          *
1825          * @param string $avatar Link to avatar picture
1826          * @param int    $uid    User id of contact owner
1827          * @param int    $cid    Contact id
1828          * @param bool   $force  force picture update
1829          *
1830          * @return array Returns array of the different avatar sizes
1831          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1832          * @throws \ImagickException
1833          */
1834         public static function updateAvatar($avatar, $uid, $cid, $force = false)
1835         {
1836                 $contact = DBA::selectFirst('contact', ['avatar', 'photo', 'thumb', 'micro', 'nurl'], ['id' => $cid, 'self' => false]);
1837                 if (!DBA::isResult($contact)) {
1838                         return false;
1839                 } else {
1840                         $data = [$contact["photo"], $contact["thumb"], $contact["micro"]];
1841                 }
1842
1843                 if (($contact["avatar"] != $avatar) || $force) {
1844                         $photos = Photo::importProfilePhoto($avatar, $uid, $cid, true);
1845
1846                         if ($photos) {
1847                                 $fields = ['avatar' => $avatar, 'photo' => $photos[0], 'thumb' => $photos[1], 'micro' => $photos[2], 'avatar-date' => DateTimeFormat::utcNow()];
1848                                 DBA::update('contact', $fields, ['id' => $cid]);
1849
1850                                 // Update the public contact (contact id = 0)
1851                                 if ($uid != 0) {
1852                                         $pcontact = DBA::selectFirst('contact', ['id'], ['nurl' => $contact['nurl'], 'uid' => 0]);
1853                                         if (DBA::isResult($pcontact)) {
1854                                                 DBA::update('contact', $fields, ['id' => $pcontact['id']]);
1855                                         }
1856                                 }
1857
1858                                 return $photos;
1859                         }
1860                 }
1861
1862                 return $data;
1863         }
1864
1865         /**
1866          * @brief Helper function for "updateFromProbe". Updates personal and public contact
1867          *
1868          * @param integer $id      contact id
1869          * @param integer $uid     user id
1870          * @param string  $url     The profile URL of the contact
1871          * @param array   $fields  The fields that are updated
1872          *
1873          * @throws \Exception
1874          */
1875         private static function updateContact($id, $uid, $url, array $fields)
1876         {
1877                 if (!DBA::update('contact', $fields, ['id' => $id])) {
1878                         Logger::info('Couldn\'t update contact.', ['id' => $id, 'fields' => $fields]);
1879                         return;
1880                 }
1881
1882                 // Search for duplicated contacts and get rid of them
1883                 if (self::removeDuplicates(Strings::normaliseLink($url), $uid) || ($uid != 0)) {
1884                         return;
1885                 }
1886
1887                 // Update the corresponding gcontact entry
1888                 GContact::updateFromPublicContactID($id);
1889
1890                 // Archive or unarchive the contact. We only need to do this for the public contact.
1891                 // The archive/unarchive function will update the personal contacts by themselves.
1892                 $contact = DBA::selectFirst('contact', [], ['id' => $id]);
1893                 if (!DBA::isResult($contact)) {
1894                         Logger::info('Couldn\'t select contact for archival.', ['id' => $id]);
1895                         return;
1896                 }
1897
1898                 if (!empty($fields['success_update'])) {
1899                         self::unmarkForArchival($contact);
1900                 } elseif (!empty($fields['failure_update'])) {
1901                         self::markForArchival($contact);
1902                 }
1903
1904                 $condition = ['self' => false, 'nurl' => Strings::normaliseLink($url), 'network' => Protocol::FEDERATED];
1905
1906                 // These contacts are sharing with us, we don't poll them.
1907                 // This means that we don't set the update fields in "OnePoll.php".
1908                 $condition['rel'] = self::SHARING;
1909                 DBA::update('contact', $fields, $condition);
1910
1911                 unset($fields['last-update']);
1912                 unset($fields['success_update']);
1913                 unset($fields['failure_update']);
1914
1915                 if (empty($fields)) {
1916                         return;
1917                 }
1918
1919                 // We are polling these contacts, so we mustn't set the update fields here.
1920                 $condition['rel'] = [self::FOLLOWER, self::FRIEND];
1921                 DBA::update('contact', $fields, $condition);
1922         }
1923
1924         /**
1925          * @brief Remove duplicated contacts
1926          *
1927          * @param string  $nurl  Normalised contact url
1928          * @param integer $uid   User id
1929          * @return boolean
1930          * @throws \Exception
1931          */
1932         public static function removeDuplicates(string $nurl, int $uid)
1933         {
1934                 $condition = ['nurl' => $nurl, 'uid' => $uid, 'deleted' => false, 'network' => Protocol::FEDERATED];
1935                 $count = DBA::count('contact', $condition);
1936                 if ($count <= 1) {
1937                         return false;
1938                 }
1939
1940                 $first_contact = DBA::selectFirst('contact', ['id', 'network'], $condition, ['order' => ['id']]);
1941                 if (!DBA::isResult($first_contact)) {
1942                         // Shouldn't happen - so we handle it
1943                         return false;
1944                 }
1945
1946                 $first = $first_contact['id'];
1947                 Logger::info('Found duplicates', ['count' => $count, 'first' => $first, 'uid' => $uid, 'nurl' => $nurl]);
1948                 if (($uid != 0 && ($first_contact['network'] == Protocol::DFRN))) {
1949                         // Don't handle non public DFRN duplicates by now (legacy DFRN is very special because of the key handling)
1950                         Logger::info('Not handling non public DFRN duplicate', ['uid' => $uid, 'nurl' => $nurl]);
1951                         return false;
1952                 }
1953
1954                 // Find all duplicates
1955                 $condition = ["`nurl` = ? AND `uid` = ? AND `id` != ? AND NOT `self` AND NOT `deleted`", $nurl, $uid, $first];
1956                 $duplicates = DBA::select('contact', ['id', 'network'], $condition);
1957                 while ($duplicate = DBA::fetch($duplicates)) {
1958                         if (!in_array($duplicate['network'], Protocol::FEDERATED)) {
1959                                 continue;
1960                         }
1961
1962                         Worker::add(PRIORITY_HIGH, 'MergeContact', $first, $duplicate['id'], $uid);
1963                 }
1964                 Logger::info('Duplicates handled', ['uid' => $uid, 'nurl' => $nurl]);
1965                 return true;
1966         }
1967
1968         /**
1969          * @param integer $id      contact id
1970          * @param string  $network Optional network we are probing for
1971          * @param boolean $force   Optional forcing of network probing (otherwise we use the cached data)
1972          * @return boolean
1973          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1974          * @throws \ImagickException
1975          */
1976         public static function updateFromProbe($id, $network = '', $force = false)
1977         {
1978                 /*
1979                   Warning: Never ever fetch the public key via Probe::uri and write it into the contacts.
1980                   This will reliably kill your communication with old Friendica contacts.
1981                  */
1982
1983                 // These fields aren't updated by this routine:
1984                 // 'xmpp', 'sensitive'
1985
1986                 $fields = ['uid', 'avatar', 'name', 'nick', 'location', 'keywords', 'about', 'gender',
1987                         'unsearchable', 'url', 'addr', 'batch', 'notify', 'poll', 'request', 'confirm', 'poco',
1988                         'network', 'alias', 'baseurl', 'forum', 'prv', 'contact-type', 'pubkey'];
1989                 $contact = DBA::selectFirst('contact', $fields, ['id' => $id]);
1990                 if (!DBA::isResult($contact)) {
1991                         return false;
1992                 }
1993
1994                 $uid = $contact['uid'];
1995                 unset($contact['uid']);
1996
1997                 $pubkey = $contact['pubkey'];
1998                 unset($contact['pubkey']);
1999
2000                 $contact['photo'] = $contact['avatar'];
2001                 unset($contact['avatar']);
2002
2003                 $ret = Probe::uri($contact['url'], $network, $uid, !$force);
2004
2005                 $updated = DateTimeFormat::utcNow();
2006
2007                 // We must not try to update relay contacts via probe. They are no real contacts.
2008                 // We check after the probing to be able to correct falsely detected contact types.
2009                 if (($contact['contact-type'] == self::TYPE_RELAY) &&
2010                         (!Strings::compareLink($ret['url'], $contact['url']) || in_array($ret['network'], [Protocol::FEED, Protocol::PHANTOM]))) {
2011                         self::updateContact($id, $uid, $contact['url'], ['last-update' => $updated, 'success_update' => $updated]);
2012                         Logger::info('Not updating relais', ['id' => $id, 'url' => $contact['url']]);
2013                         return true;
2014                 }
2015
2016                 // If Probe::uri fails the network code will be different (mostly "feed" or "unkn")
2017                 if (!in_array($ret['network'], Protocol::NATIVE_SUPPORT) ||
2018                         (in_array($ret['network'], [Protocol::FEED, Protocol::PHANTOM]) && ($ret['network'] != $contact['network']))) {
2019                         if ($force && ($uid == 0)) {
2020                                 self::updateContact($id, $uid, $ret['url'], ['last-update' => $updated, 'failure_update' => $updated]);
2021                         }
2022                         return false;
2023                 }
2024
2025                 if (isset($ret['hide']) && is_bool($ret['hide'])) {
2026                         $ret['unsearchable'] = $ret['hide'];
2027                 }
2028
2029                 if (isset($ret['account-type']) && is_int($ret['account-type'])) {
2030                         $ret['forum'] = false;
2031                         $ret['prv'] = false;
2032                         $ret['contact-type'] = $ret['account-type'];
2033                         if ($ret['contact-type'] == User::ACCOUNT_TYPE_COMMUNITY) {
2034                                 $apcontact = APContact::getByURL($ret['url'], false);
2035                                 if (isset($apcontact['manually-approve'])) {
2036                                         $ret['forum'] = (bool)!$apcontact['manually-approve'];
2037                                         $ret['prv'] = (bool)!$ret['forum'];
2038                                 }
2039                         }
2040                 }
2041
2042                 $new_pubkey = $ret['pubkey'];
2043
2044                 $update = false;
2045
2046                 // make sure to not overwrite existing values with blank entries except some technical fields
2047                 $keep = ['batch', 'notify', 'poll', 'request', 'confirm', 'poco', 'baseurl'];
2048                 foreach ($ret as $key => $val) {
2049                         if (!array_key_exists($key, $contact)) {
2050                                 unset($ret[$key]);
2051                         } elseif (($contact[$key] != '') && ($val === '') && !is_bool($ret[$key]) && !in_array($key, $keep)) {
2052                                 $ret[$key] = $contact[$key];
2053                         } elseif ($ret[$key] != $contact[$key]) {
2054                                 $update = true;
2055                         }
2056                 }
2057
2058                 if ($ret['network'] != Protocol::FEED) {
2059                         self::updateAvatar($ret['photo'], $uid, $id, $update || $force);
2060                 }
2061
2062                 if (!$update) {
2063                         if ($force) {
2064                                 self::updateContact($id, $uid, $ret['url'], ['last-update' => $updated, 'success_update' => $updated]);
2065                         }
2066                         return true;
2067                 }
2068
2069                 $ret['nurl'] = Strings::normaliseLink($ret['url']);
2070                 $ret['updated'] = $updated;
2071
2072                 // Only fill the pubkey if it had been empty before. We have to prevent identity theft.
2073                 if (empty($pubkey) && !empty($new_pubkey)) {
2074                         $ret['pubkey'] = $new_pubkey;
2075                 }
2076
2077                 if (($ret['addr'] != $contact['addr']) || (!empty($ret['alias']) && ($ret['alias'] != $contact['alias']))) {
2078                         $ret['uri-date'] = DateTimeFormat::utcNow();
2079                 }
2080
2081                 if (($ret['name'] != $contact['name']) || ($ret['nick'] != $contact['nick'])) {
2082                         $ret['name-date'] = $updated;
2083                 }
2084
2085                 if ($force && ($uid == 0)) {
2086                         $ret['last-update'] = $updated;
2087                         $ret['success_update'] = $updated;
2088                 }
2089
2090                 unset($ret['photo']);
2091
2092                 self::updateContact($id, $uid, $ret['url'], $ret);
2093
2094                 return true;
2095         }
2096
2097         public static function updateFromProbeByURL($url, $force = false)
2098         {
2099                 $id = self::getIdForURL($url);
2100
2101                 if (empty($id)) {
2102                         return $id;
2103                 }
2104
2105                 self::updateFromProbe($id, '', $force);
2106
2107                 return $id;
2108         }
2109
2110         /**
2111          * Detects if a given contact array belongs to a legacy DFRN connection
2112          *
2113          * @param array $contact
2114          * @return boolean
2115          */
2116         public static function isLegacyDFRNContact($contact)
2117         {
2118                 // Newer Friendica contacts are connected via AP, then these fields aren't set
2119                 return !empty($contact['dfrn-id']) || !empty($contact['issued-id']);
2120         }
2121
2122         /**
2123          * Detects the communication protocol for a given contact url.
2124          * This is used to detect Friendica contacts that we can communicate via AP.
2125          *
2126          * @param string $url contact url
2127          * @param string $network Network of that contact
2128          * @return string with protocol
2129          */
2130         public static function getProtocol($url, $network)
2131         {
2132                 if ($network != Protocol::DFRN) {
2133                         return $network;
2134                 }
2135
2136                 $apcontact = APContact::getByURL($url);
2137                 if (!empty($apcontact) && !empty($apcontact['generator'])) {
2138                         return Protocol::ACTIVITYPUB;
2139                 } else {
2140                         return $network;
2141                 }
2142         }
2143
2144         /**
2145          * Takes a $uid and a url/handle and adds a new contact
2146          * Currently if the contact is DFRN, interactive needs to be true, to redirect to the
2147          * dfrn_request page.
2148          *
2149          * Otherwise this can be used to bulk add StatusNet contacts, Twitter contacts, etc.
2150          *
2151          * Returns an array
2152          * $return['success'] boolean true if successful
2153          * $return['message'] error text if success is false.
2154          *
2155          * @brief Takes a $uid and a url/handle and adds a new contact
2156          * @param int    $uid
2157          * @param string $url
2158          * @param bool   $interactive
2159          * @param string $network
2160          * @return array
2161          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2162          * @throws \ImagickException
2163          */
2164         public static function createFromProbe($uid, $url, $interactive = false, $network = '')
2165         {
2166                 $result = ['cid' => -1, 'success' => false, 'message' => ''];
2167
2168                 $a = \get_app();
2169
2170                 // remove ajax junk, e.g. Twitter
2171                 $url = str_replace('/#!/', '/', $url);
2172
2173                 if (!Network::isUrlAllowed($url)) {
2174                         $result['message'] = L10n::t('Disallowed profile URL.');
2175                         return $result;
2176                 }
2177
2178                 if (Network::isUrlBlocked($url)) {
2179                         $result['message'] = L10n::t('Blocked domain');
2180                         return $result;
2181                 }
2182
2183                 if (!$url) {
2184                         $result['message'] = L10n::t('Connect URL missing.');
2185                         return $result;
2186                 }
2187
2188                 $arr = ['url' => $url, 'contact' => []];
2189
2190                 Hook::callAll('follow', $arr);
2191
2192                 if (empty($arr)) {
2193                         $result['message'] = L10n::t('The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.');
2194                         return $result;
2195                 }
2196
2197                 if (!empty($arr['contact']['name'])) {
2198                         $ret = $arr['contact'];
2199                 } else {
2200                         $ret = Probe::uri($url, $network, $uid, false);
2201                 }
2202
2203                 if (($network != '') && ($ret['network'] != $network)) {
2204                         Logger::log('Expected network ' . $network . ' does not match actual network ' . $ret['network']);
2205                         return $result;
2206                 }
2207
2208                 // check if we already have a contact
2209                 // the poll url is more reliable than the profile url, as we may have
2210                 // indirect links or webfinger links
2211
2212                 $condition = ['uid' => $uid, 'poll' => [$ret['poll'], Strings::normaliseLink($ret['poll'])], 'network' => $ret['network'], 'pending' => false];
2213                 $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
2214                 if (!DBA::isResult($contact)) {
2215                         $condition = ['uid' => $uid, 'nurl' => Strings::normaliseLink($url), 'network' => $ret['network'], 'pending' => false];
2216                         $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
2217                 }
2218
2219                 $protocol = self::getProtocol($url, $ret['network']);
2220
2221                 if (($protocol === Protocol::DFRN) && !DBA::isResult($contact)) {
2222                         if ($interactive) {
2223                                 if (strlen($a->getURLPath())) {
2224                                         $myaddr = bin2hex(System::baseUrl() . '/profile/' . $a->user['nickname']);
2225                                 } else {
2226                                         $myaddr = bin2hex($a->user['nickname'] . '@' . $a->getHostName());
2227                                 }
2228
2229                                 $a->internalRedirect($ret['request'] . "&addr=$myaddr");
2230
2231                                 // NOTREACHED
2232                         }
2233                 } elseif (Config::get('system', 'dfrn_only') && ($ret['network'] != Protocol::DFRN)) {
2234                         $result['message'] = L10n::t('This site is not configured to allow communications with other networks.') . EOL;
2235                         $result['message'] .= L10n::t('No compatible communication protocols or feeds were discovered.') . EOL;
2236                         return $result;
2237                 }
2238
2239                 // This extra param just confuses things, remove it
2240                 if ($protocol === Protocol::DIASPORA) {
2241                         $ret['url'] = str_replace('?absolute=true', '', $ret['url']);
2242                 }
2243
2244                 // do we have enough information?
2245                 if (empty($ret['name']) || empty($ret['poll']) || (empty($ret['url']) && empty($ret['addr']))) {
2246                         $result['message'] .= L10n::t('The profile address specified does not provide adequate information.') . EOL;
2247                         if (empty($ret['poll'])) {
2248                                 $result['message'] .= L10n::t('No compatible communication protocols or feeds were discovered.') . EOL;
2249                         }
2250                         if (empty($ret['name'])) {
2251                                 $result['message'] .= L10n::t('An author or name was not found.') . EOL;
2252                         }
2253                         if (empty($ret['url'])) {
2254                                 $result['message'] .= L10n::t('No browser URL could be matched to this address.') . EOL;
2255                         }
2256                         if (strpos($url, '@') !== false) {
2257                                 $result['message'] .= L10n::t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
2258                                 $result['message'] .= L10n::t('Use mailto: in front of address to force email check.') . EOL;
2259                         }
2260                         return $result;
2261                 }
2262
2263                 if ($protocol === Protocol::OSTATUS && Config::get('system', 'ostatus_disabled')) {
2264                         $result['message'] .= L10n::t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
2265                         $ret['notify'] = '';
2266                 }
2267
2268                 if (!$ret['notify']) {
2269                         $result['message'] .= L10n::t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
2270                 }
2271
2272                 $writeable = ((($protocol === Protocol::OSTATUS) && ($ret['notify'])) ? 1 : 0);
2273
2274                 $subhub = (($protocol === Protocol::OSTATUS) ? true : false);
2275
2276                 $hidden = (($protocol === Protocol::MAIL) ? 1 : 0);
2277
2278                 $pending = in_array($protocol, [Protocol::ACTIVITYPUB]);
2279
2280                 if (in_array($protocol, [Protocol::MAIL, Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
2281                         $writeable = 1;
2282                 }
2283
2284                 if (DBA::isResult($contact)) {
2285                         // update contact
2286                         $new_relation = (($contact['rel'] == self::FOLLOWER) ? self::FRIEND : self::SHARING);
2287
2288                         $fields = ['rel' => $new_relation, 'subhub' => $subhub, 'readonly' => false];
2289                         DBA::update('contact', $fields, ['id' => $contact['id']]);
2290                 } else {
2291                         $new_relation = (in_array($protocol, [Protocol::MAIL]) ? self::FRIEND : self::SHARING);
2292
2293                         // create contact record
2294                         self::insert([
2295                                 'uid'     => $uid,
2296                                 'created' => DateTimeFormat::utcNow(),
2297                                 'url'     => $ret['url'],
2298                                 'nurl'    => Strings::normaliseLink($ret['url']),
2299                                 'addr'    => $ret['addr'],
2300                                 'alias'   => $ret['alias'],
2301                                 'batch'   => $ret['batch'],
2302                                 'notify'  => $ret['notify'],
2303                                 'poll'    => $ret['poll'],
2304                                 'poco'    => $ret['poco'],
2305                                 'name'    => $ret['name'],
2306                                 'nick'    => $ret['nick'],
2307                                 'network' => $ret['network'],
2308                                 'baseurl' => $ret['baseurl'],
2309                                 'protocol' => $protocol,
2310                                 'pubkey'  => $ret['pubkey'],
2311                                 'rel'     => $new_relation,
2312                                 'priority'=> $ret['priority'],
2313                                 'writable'=> $writeable,
2314                                 'hidden'  => $hidden,
2315                                 'blocked' => 0,
2316                                 'readonly'=> 0,
2317                                 'pending' => $pending,
2318                                 'subhub'  => $subhub
2319                         ]);
2320                 }
2321
2322                 $contact = DBA::selectFirst('contact', [], ['url' => $ret['url'], 'network' => $ret['network'], 'uid' => $uid]);
2323                 if (!DBA::isResult($contact)) {
2324                         $result['message'] .= L10n::t('Unable to retrieve contact information.') . EOL;
2325                         return $result;
2326                 }
2327
2328                 $contact_id = $contact['id'];
2329                 $result['cid'] = $contact_id;
2330
2331                 Group::addMember(User::getDefaultGroup($uid, $contact["network"]), $contact_id);
2332
2333                 // Update the avatar
2334                 self::updateAvatar($ret['photo'], $uid, $contact_id);
2335
2336                 // pull feed and consume it, which should subscribe to the hub.
2337
2338                 Worker::add(PRIORITY_HIGH, "OnePoll", $contact_id, "force");
2339
2340                 $owner = User::getOwnerDataById($uid);
2341
2342                 if (DBA::isResult($owner)) {
2343                         if (in_array($protocol, [Protocol::OSTATUS, Protocol::DFRN])) {
2344                                 // create a follow slap
2345                                 $item = [];
2346                                 $item['verb'] = ACTIVITY_FOLLOW;
2347                                 $item['follow'] = $contact["url"];
2348                                 $item['body'] = '';
2349                                 $item['title'] = '';
2350                                 $item['guid'] = '';
2351                                 $item['tag'] = '';
2352                                 $item['attach'] = '';
2353
2354                                 $slap = OStatus::salmon($item, $owner);
2355
2356                                 if (!empty($contact['notify'])) {
2357                                         Salmon::slapper($owner, $contact['notify'], $slap);
2358                                 }
2359                         } elseif ($protocol == Protocol::DIASPORA) {
2360                                 $ret = Diaspora::sendShare($a->user, $contact);
2361                                 Logger::log('share returns: ' . $ret);
2362                         } elseif ($protocol == Protocol::ACTIVITYPUB) {
2363                                 $activity_id = ActivityPub\Transmitter::activityIDFromContact($contact_id);
2364                                 if (empty($activity_id)) {
2365                                         // This really should never happen
2366                                         return false;
2367                                 }
2368
2369                                 $ret = ActivityPub\Transmitter::sendActivity('Follow', $contact['url'], $uid, $activity_id);
2370                                 Logger::log('Follow returns: ' . $ret);
2371                         }
2372                 }
2373
2374                 $result['success'] = true;
2375                 return $result;
2376         }
2377
2378         /**
2379          * @brief Updated contact's SSL policy
2380          *
2381          * @param array  $contact    Contact array
2382          * @param string $new_policy New policy, valid: self,full
2383          *
2384          * @return array Contact array with updated values
2385          * @throws \Exception
2386          */
2387         public static function updateSslPolicy(array $contact, $new_policy)
2388         {
2389                 $ssl_changed = false;
2390                 if ((intval($new_policy) == BaseURL::SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'], 'https:')) {
2391                         $ssl_changed = true;
2392                         $contact['url']     =   str_replace('https:', 'http:', $contact['url']);
2393                         $contact['request'] =   str_replace('https:', 'http:', $contact['request']);
2394                         $contact['notify']  =   str_replace('https:', 'http:', $contact['notify']);
2395                         $contact['poll']    =   str_replace('https:', 'http:', $contact['poll']);
2396                         $contact['confirm'] =   str_replace('https:', 'http:', $contact['confirm']);
2397                         $contact['poco']    =   str_replace('https:', 'http:', $contact['poco']);
2398                 }
2399
2400                 if ((intval($new_policy) == BaseURL::SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'], 'http:')) {
2401                         $ssl_changed = true;
2402                         $contact['url']     =   str_replace('http:', 'https:', $contact['url']);
2403                         $contact['request'] =   str_replace('http:', 'https:', $contact['request']);
2404                         $contact['notify']  =   str_replace('http:', 'https:', $contact['notify']);
2405                         $contact['poll']    =   str_replace('http:', 'https:', $contact['poll']);
2406                         $contact['confirm'] =   str_replace('http:', 'https:', $contact['confirm']);
2407                         $contact['poco']    =   str_replace('http:', 'https:', $contact['poco']);
2408                 }
2409
2410                 if ($ssl_changed) {
2411                         $fields = ['url' => $contact['url'], 'request' => $contact['request'],
2412                                         'notify' => $contact['notify'], 'poll' => $contact['poll'],
2413                                         'confirm' => $contact['confirm'], 'poco' => $contact['poco']];
2414                         DBA::update('contact', $fields, ['id' => $contact['id']]);
2415                 }
2416
2417                 return $contact;
2418         }
2419
2420         /**
2421          * @param array  $importer Owner (local user) data
2422          * @param array  $contact  Existing owner-specific contact data we want to expand the relationship with. Optional.
2423          * @param array  $datarray An item-like array with at least the 'author-id' and 'author-url' keys for the contact. Mandatory.
2424          * @param bool   $sharing  True: Contact is now sharing with Owner; False: Contact is now following Owner (default)
2425          * @param string $note     Introduction additional message
2426          * @return bool|null True: follow request is accepted; False: relationship is rejected; Null: relationship is pending
2427          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2428          * @throws \ImagickException
2429          */
2430         public static function addRelationship(array $importer, array $contact, array $datarray, $sharing = false, $note = '')
2431         {
2432                 // Should always be set
2433                 if (empty($datarray['author-id'])) {
2434                         return false;
2435                 }
2436
2437                 $fields = ['url', 'name', 'nick', 'avatar', 'photo', 'network', 'blocked'];
2438                 $pub_contact = DBA::selectFirst('contact', $fields, ['id' => $datarray['author-id']]);
2439                 if (!DBA::isResult($pub_contact)) {
2440                         // Should never happen
2441                         return false;
2442                 }
2443
2444                 // Contact is blocked at node-level
2445                 if (self::isBlocked($datarray['author-id'])) {
2446                         return false;
2447                 }
2448
2449                 $url = defaults($datarray, 'author-link', $pub_contact['url']);
2450                 $name = $pub_contact['name'];
2451                 $photo = defaults($pub_contact, 'avatar', $pub_contact["photo"]);
2452                 $nick = $pub_contact['nick'];
2453                 $network = $pub_contact['network'];
2454
2455                 // Ensure that we don't create a new contact when there already is one
2456                 $cid = self::getIdForURL($url, $importer['uid']);
2457                 if (!empty($cid)) {
2458                         $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
2459                 }
2460
2461                 if (!empty($contact)) {
2462                         if (!empty($contact['pending'])) {
2463                                 Logger::info('Pending contact request already exists.', ['url' => $url, 'uid' => $importer['uid']]);
2464                                 return null;
2465                         }
2466
2467                         // Contact is blocked at user-level
2468                         if (!empty($contact['id']) && !empty($importer['id']) &&
2469                                 self::isBlockedByUser($contact['id'], $importer['id'])) {
2470                                 return false;
2471                         }
2472
2473                         // Make sure that the existing contact isn't archived
2474                         self::unmarkForArchival($contact);
2475
2476                         if (($contact['rel'] == self::SHARING)
2477                                 || ($sharing && $contact['rel'] == self::FOLLOWER)) {
2478                                 DBA::update('contact', ['rel' => self::FRIEND, 'writable' => true, 'pending' => false],
2479                                                 ['id' => $contact['id'], 'uid' => $importer['uid']]);
2480                         }
2481
2482                         return true;
2483                 } else {
2484                         // send email notification to owner?
2485                         if (DBA::exists('contact', ['nurl' => Strings::normaliseLink($url), 'uid' => $importer['uid'], 'pending' => true])) {
2486                                 Logger::log('ignoring duplicated connection request from pending contact ' . $url);
2487                                 return null;
2488                         }
2489
2490                         // create contact record
2491                         DBA::insert('contact', [
2492                                 'uid'      => $importer['uid'],
2493                                 'created'  => DateTimeFormat::utcNow(),
2494                                 'url'      => $url,
2495                                 'nurl'     => Strings::normaliseLink($url),
2496                                 'name'     => $name,
2497                                 'nick'     => $nick,
2498                                 'photo'    => $photo,
2499                                 'network'  => $network,
2500                                 'rel'      => self::FOLLOWER,
2501                                 'blocked'  => 0,
2502                                 'readonly' => 0,
2503                                 'pending'  => 1,
2504                                 'writable' => 1,
2505                         ]);
2506
2507                         $contact_record = [
2508                                 'id' => DBA::lastInsertId(),
2509                                 'network' => $network,
2510                                 'name' => $name,
2511                                 'url' => $url,
2512                                 'photo' => $photo
2513                         ];
2514
2515                         Contact::updateAvatar($photo, $importer["uid"], $contact_record["id"], true);
2516
2517                         /// @TODO Encapsulate this into a function/method
2518                         $fields = ['uid', 'username', 'email', 'page-flags', 'notify-flags', 'language'];
2519                         $user = DBA::selectFirst('user', $fields, ['uid' => $importer['uid']]);
2520                         if (DBA::isResult($user) && !in_array($user['page-flags'], [User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE, User::PAGE_FLAGS_COMMUNITY])) {
2521                                 // create notification
2522                                 $hash = Strings::getRandomHex();
2523
2524                                 if (is_array($contact_record)) {
2525                                         DBA::insert('intro', ['uid' => $importer['uid'], 'contact-id' => $contact_record['id'],
2526                                                                 'blocked' => false, 'knowyou' => false, 'note' => $note,
2527                                                                 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow()]);
2528                                 }
2529
2530                                 Group::addMember(User::getDefaultGroup($importer['uid'], $contact_record["network"]), $contact_record['id']);
2531
2532                                 if (($user['notify-flags'] & NOTIFY_INTRO) &&
2533                                         in_array($user['page-flags'], [User::PAGE_FLAGS_NORMAL])) {
2534
2535                                         notification([
2536                                                 'type'         => NOTIFY_INTRO,
2537                                                 'notify_flags' => $user['notify-flags'],
2538                                                 'language'     => $user['language'],
2539                                                 'to_name'      => $user['username'],
2540                                                 'to_email'     => $user['email'],
2541                                                 'uid'          => $user['uid'],
2542                                                 'link'         => System::baseUrl() . '/notifications/intro',
2543                                                 'source_name'  => ((strlen(stripslashes($contact_record['name']))) ? stripslashes($contact_record['name']) : L10n::t('[Name Withheld]')),
2544                                                 'source_link'  => $contact_record['url'],
2545                                                 'source_photo' => $contact_record['photo'],
2546                                                 'verb'         => ($sharing ? ACTIVITY_FRIEND : ACTIVITY_FOLLOW),
2547                                                 'otype'        => 'intro'
2548                                         ]);
2549                                 }
2550                         } elseif (DBA::isResult($user) && in_array($user['page-flags'], [User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE, User::PAGE_FLAGS_COMMUNITY])) {
2551                                 $condition = ['uid' => $importer['uid'], 'url' => $url, 'pending' => true];
2552                                 DBA::update('contact', ['pending' => false], $condition);
2553
2554                                 return true;
2555                         }
2556                 }
2557
2558                 return null;
2559         }
2560
2561         public static function removeFollower($importer, $contact, array $datarray = [], $item = "")
2562         {
2563                 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::SHARING)) {
2564                         DBA::update('contact', ['rel' => self::SHARING], ['id' => $contact['id']]);
2565                 } else {
2566                         Contact::remove($contact['id']);
2567                 }
2568         }
2569
2570         public static function removeSharer($importer, $contact, array $datarray = [], $item = "")
2571         {
2572                 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::FOLLOWER)) {
2573                         DBA::update('contact', ['rel' => self::FOLLOWER], ['id' => $contact['id']]);
2574                 } else {
2575                         Contact::remove($contact['id']);
2576                 }
2577         }
2578
2579         /**
2580          * @brief Create a birthday event.
2581          *
2582          * Update the year and the birthday.
2583          */
2584         public static function updateBirthdays()
2585         {
2586                 $condition = [
2587                         '`bd` != ""
2588                         AND `bd` > "0001-01-01"
2589                         AND SUBSTRING(`bd`, 1, 4) != `bdyear`
2590                         AND (`contact`.`rel` = ? OR `contact`.`rel` = ?)
2591                         AND NOT `contact`.`pending`
2592                         AND NOT `contact`.`hidden`
2593                         AND NOT `contact`.`blocked`
2594                         AND NOT `contact`.`archive`
2595                         AND NOT `contact`.`deleted`',
2596                         Contact::SHARING,
2597                         Contact::FRIEND
2598                 ];
2599
2600                 $contacts = DBA::select('contact', ['id', 'uid', 'name', 'url', 'bd'], $condition);
2601
2602                 while ($contact = DBA::fetch($contacts)) {
2603                         Logger::log('update_contact_birthday: ' . $contact['bd']);
2604
2605                         $nextbd = DateTimeFormat::utcNow('Y') . substr($contact['bd'], 4);
2606
2607                         if (Event::createBirthday($contact, $nextbd)) {
2608                                 // update bdyear
2609                                 DBA::update(
2610                                         'contact',
2611                                         ['bdyear' => substr($nextbd, 0, 4), 'bd' => $nextbd],
2612                                         ['id' => $contact['id']]
2613                                 );
2614                         }
2615                 }
2616         }
2617
2618         /**
2619          * Remove the unavailable contact ids from the provided list
2620          *
2621          * @param array $contact_ids Contact id list
2622          * @throws \Exception
2623          */
2624         public static function pruneUnavailable(array &$contact_ids)
2625         {
2626                 if (empty($contact_ids)) {
2627                         return;
2628                 }
2629
2630                 $str = DBA::escape(implode(',', $contact_ids));
2631
2632                 $stmt = DBA::p("SELECT `id` FROM `contact` WHERE `id` IN ( " . $str . ") AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0");
2633
2634                 $return = [];
2635                 while($contact = DBA::fetch($stmt)) {
2636                         $return[] = $contact['id'];
2637                 }
2638
2639                 DBA::close($stmt);
2640
2641                 $contact_ids = $return;
2642         }
2643
2644         /**
2645          * @brief Returns a magic link to authenticate remote visitors
2646          *
2647          * @todo  check if the return is either a fully qualified URL or a relative path to Friendica basedir
2648          *
2649          * @param string $contact_url The address of the target contact profile
2650          * @param string $url         An url that we will be redirected to after the authentication
2651          *
2652          * @return string with "redir" link
2653          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2654          * @throws \ImagickException
2655          */
2656         public static function magicLink($contact_url, $url = '')
2657         {
2658                 if (!local_user() && !remote_user()) {
2659                         return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2660                 }
2661
2662                 $data = self::getProbeDataFromDatabase($contact_url);
2663                 if (empty($data)) {
2664                         return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2665                 }
2666
2667                 // Prevents endless loop in case only a non-public contact exists for the contact URL
2668                 unset($data['uid']);
2669
2670                 return self::magicLinkByContact($data, $contact_url);
2671         }
2672
2673         /**
2674          * @brief Returns a magic link to authenticate remote visitors
2675          *
2676          * @param integer $cid The contact id of the target contact profile
2677          * @param string  $url An url that we will be redirected to after the authentication
2678          *
2679          * @return string with "redir" link
2680          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2681          * @throws \ImagickException
2682          */
2683         public static function magicLinkbyId($cid, $url = '')
2684         {
2685                 $contact = DBA::selectFirst('contact', ['id', 'network', 'url', 'uid'], ['id' => $cid]);
2686
2687                 return self::magicLinkByContact($contact, $url);
2688         }
2689
2690         /**
2691          * @brief Returns a magic link to authenticate remote visitors
2692          *
2693          * @param array  $contact The contact array with "uid", "network" and "url"
2694          * @param string $url     An url that we will be redirected to after the authentication
2695          *
2696          * @return string with "redir" link
2697          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2698          * @throws \ImagickException
2699          */
2700         public static function magicLinkByContact($contact, $url = '')
2701         {
2702                 if ((!local_user() && !remote_user()) || ($contact['network'] != Protocol::DFRN)) {
2703                         return $url ?: $contact['url']; // Equivalent to ($url != '') ? $url : $contact['url'];
2704                 }
2705
2706                 // Only redirections to the same host do make sense
2707                 if (($url != '') && (parse_url($url, PHP_URL_HOST) != parse_url($contact['url'], PHP_URL_HOST))) {
2708                         return $url;
2709                 }
2710
2711                 if (!empty($contact['uid'])) {
2712                         return self::magicLink($contact['url'], $url);
2713                 }
2714
2715                 if (empty($contact['id'])) {
2716                         return $url ?: $contact['url'];
2717                 }
2718
2719                 $redirect = 'redir/' . $contact['id'];
2720
2721                 if ($url != '') {
2722                         $redirect .= '?url=' . $url;
2723                 }
2724
2725                 return $redirect;
2726         }
2727
2728         /**
2729          * Remove a contact from all groups
2730          *
2731          * @param integer $contact_id
2732          *
2733          * @return boolean Success
2734          */
2735         public static function removeFromGroups($contact_id)
2736         {
2737                 return DBA::delete('group_member', ['contact-id' => $contact_id]);
2738         }
2739
2740         /**
2741          * Is the contact a forum?
2742          *
2743          * @param integer $contactid ID of the contact
2744          *
2745          * @return boolean "true" if it is a forum
2746          */
2747         public static function isForum($contactid)
2748         {
2749                 $fields = ['forum', 'prv'];
2750                 $condition = ['id' => $contactid];
2751                 $contact = DBA::selectFirst('contact', $fields, $condition);
2752                 if (!DBA::isResult($contact)) {
2753                         return false;
2754                 }
2755
2756                 // Is it a forum?
2757                 return ($contact['forum'] || $contact['prv']);
2758         }
2759
2760         /**
2761          * Can the remote contact receive private messages?
2762          *
2763          * @param array $contact
2764          * @return bool
2765          */
2766         public static function canReceivePrivateMessages(array $contact)
2767         {
2768                 $protocol = $contact['network'] ?? $contact['protocol'] ?? Protocol::PHANTOM;
2769                 $self = $contact['self'] ?? false;
2770
2771                 return in_array($protocol, [Protocol::DFRN, Protocol::DIASPORA, Protocol::ACTIVITYPUB]) && !$self;
2772         }
2773 }