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