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