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