]> git.mxchange.org Git - friendica.git/blob - src/Model/Contact.php
f1260c7c44f090087b84d1080af7014f499d7f1b
[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\Core\Addon;
9 use Friendica\Core\Config;
10 use Friendica\Core\L10n;
11 use Friendica\Core\PConfig;
12 use Friendica\Core\Protocol;
13 use Friendica\Core\System;
14 use Friendica\Core\Worker;
15 use Friendica\Database\DBA;
16 use Friendica\Model\Profile;
17 use Friendica\Network\Probe;
18 use Friendica\Object\Image;
19 use Friendica\Protocol\ActivityPub;
20 use Friendica\Protocol\Diaspora;
21 use Friendica\Protocol\DFRN;
22 use Friendica\Protocol\OStatus;
23 use Friendica\Protocol\PortableContact;
24 use Friendica\Protocol\Salmon;
25 use Friendica\Util\DateTimeFormat;
26 use Friendica\Util\Network;
27
28 require_once 'boot.php';
29 require_once 'include/dba.php';
30 require_once 'include/text.php';
31
32 /**
33  * @brief functions for interacting with a contact
34  */
35 class Contact extends BaseObject
36 {
37         /**
38          * @name page/profile types
39          *
40          * PAGE_NORMAL is a typical personal profile account
41          * PAGE_SOAPBOX automatically approves all friend requests as Contact::SHARING, (readonly)
42          * PAGE_COMMUNITY automatically approves all friend requests as Contact::SHARING, but with
43          *      write access to wall and comments (no email and not included in page owner's ACL lists)
44          * PAGE_FREELOVE automatically approves all friend requests as full friends (Contact::FRIEND).
45          *
46          * @{
47          */
48         const PAGE_NORMAL    = 0;
49         const PAGE_SOAPBOX   = 1;
50         const PAGE_COMMUNITY = 2;
51         const PAGE_FREELOVE  = 3;
52         const PAGE_BLOG      = 4;
53         const PAGE_PRVGROUP  = 5;
54         /**
55          * @}
56          */
57
58         /**
59          * @name account types
60          *
61          * ACCOUNT_TYPE_PERSON - the account belongs to a person
62          *      Associated page types: PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE
63          *
64          * ACCOUNT_TYPE_ORGANISATION - the account belongs to an organisation
65          *      Associated page type: PAGE_SOAPBOX
66          *
67          * ACCOUNT_TYPE_NEWS - the account is a news reflector
68          *      Associated page type: PAGE_SOAPBOX
69          *
70          * ACCOUNT_TYPE_COMMUNITY - the account is community forum
71          *      Associated page types: PAGE_COMMUNITY, PAGE_PRVGROUP
72          *
73          * ACCOUNT_TYPE_RELAY - the account is a relay
74          *      This will only be assigned to contacts, not to user accounts
75          * @{
76          */
77         const ACCOUNT_TYPE_PERSON =       0;
78         const ACCOUNT_TYPE_ORGANISATION = 1;
79         const ACCOUNT_TYPE_NEWS =         2;
80         const ACCOUNT_TYPE_COMMUNITY =    3;
81         const ACCOUNT_TYPE_RELAY =        4;
82         /**
83          * @}
84          */
85
86         /**
87          * @name Contact_is
88          *
89          * Relationship types
90          * @{
91          */
92         const FOLLOWER = 1;
93         const SHARING  = 2;
94         const FRIEND   = 3;
95         /**
96          * @}
97          */
98
99         /**
100          * @brief Returns the contact id for the user and the public contact id for a given contact id
101          *
102          * @param int $cid Either public contact id or user's contact id
103          * @param int $uid User ID
104          *
105          * @return array with public and user's contact id
106          */
107         private static function getPublicAndUserContacID($cid, $uid)
108         {
109                 if (empty($uid) || empty($cid)) {
110                         return [];
111                 }
112
113                 $contact = DBA::selectFirst('contact', ['id', 'uid', 'url'], ['id' => $cid]);
114                 if (!DBA::isResult($contact)) {
115                         return [];
116                 }
117
118                 // We quit when the user id don't match the user id of the provided contact
119                 if (($contact['uid'] != $uid) && ($contact['uid'] != 0)) {
120                         return [];
121                 }
122
123                 if ($contact['uid'] != 0) {
124                         $pcid = Contact::getIdForURL($contact['url'], 0, true, ['url' => $contact['url']]);
125                         if (empty($pcid)) {
126                                 return [];
127                         }
128                         $ucid = $contact['id'];
129                 } else {
130                         $pcid = $contact['id'];
131                         $ucid = Contact::getIdForURL($contact['url'], $uid, true);
132                 }
133
134                 return ['public' => $pcid, 'user' => $ucid];
135         }
136
137         /**
138          * @brief Block contact id for user id
139          *
140          * @param int     $cid     Either public contact id or user's contact id
141          * @param int     $uid     User ID
142          * @param boolean $blocked Is the contact blocked or unblocked?
143          */
144         public static function setBlockedForUser($cid, $uid, $blocked)
145         {
146                 $cdata = self::getPublicAndUserContacID($cid, $uid);
147                 if (empty($cdata)) {
148                         return;
149                 }
150
151                 if ($cdata['user'] != 0) {
152                         DBA::update('contact', ['blocked' => $blocked], ['id' => $cdata['user'], 'pending' => false]);
153                 }
154
155                 DBA::update('user-contact', ['blocked' => $blocked], ['cid' => $cdata['public'], 'uid' => $uid], true);
156         }
157
158         /**
159          * @brief Returns "block" state for contact id and user id
160          *
161          * @param int $cid Either public contact id or user's contact id
162          * @param int $uid User ID
163          *
164          * @return boolean is the contact id blocked for the given user?
165          */
166         public static function isBlockedByUser($cid, $uid)
167         {
168                 $cdata = self::getPublicAndUserContacID($cid, $uid);
169                 if (empty($cdata)) {
170                         return;
171                 }
172
173                 $public_blocked = false;
174
175                 if (!empty($cdata['public'])) {
176                         $public_contact = DBA::selectFirst('user-contact', ['blocked'], ['cid' => $cdata['public'], 'uid' => $uid]);
177                         if (DBA::isResult($public_contact)) {
178                                 $public_blocked = $public_contact['blocked'];
179                         }
180                 }
181
182                 $user_blocked = $public_blocked;
183
184                 if (!empty($cdata['user'])) {
185                         $user_contact = DBA::selectFirst('contact', ['blocked'], ['id' => $cdata['user'], 'pending' => false]);
186                         if (DBA::isResult($user_contact)) {
187                                 $user_blocked = $user_contact['blocked'];
188                         }
189                 }
190
191                 if ($user_blocked != $public_blocked) {
192                         DBA::update('user-contact', ['blocked' => $user_blocked], ['cid' => $cdata['public'], 'uid' => $uid], true);
193                 }
194
195                 return $user_blocked;
196         }
197
198         /**
199          * @brief Ignore contact id for user id
200          *
201          * @param int     $cid     Either public contact id or user's contact id
202          * @param int     $uid     User ID
203          * @param boolean $ignored Is the contact ignored or unignored?
204          */
205         public static function setIgnoredForUser($cid, $uid, $ignored)
206         {
207                 $cdata = self::getPublicAndUserContacID($cid, $uid);
208                 if (empty($cdata)) {
209                         return;
210                 }
211
212                 if ($cdata['user'] != 0) {
213                         DBA::update('contact', ['readonly' => $ignored], ['id' => $cdata['user'], 'pending' => false]);
214                 }
215
216                 DBA::update('user-contact', ['ignored' => $ignored], ['cid' => $cdata['public'], 'uid' => $uid], true);
217         }
218
219         /**
220          * @brief Returns "ignore" state for contact id and user id
221          *
222          * @param int $cid Either public contact id or user's contact id
223          * @param int $uid User ID
224          *
225          * @return boolean is the contact id ignored for the given user?
226          */
227         public static function isIgnoredByUser($cid, $uid)
228         {
229                 $cdata = self::getPublicAndUserContacID($cid, $uid);
230                 if (empty($cdata)) {
231                         return;
232                 }
233
234                 $public_ignored = false;
235
236                 if (!empty($cdata['public'])) {
237                         $public_contact = DBA::selectFirst('user-contact', ['ignored'], ['cid' => $cdata['public'], 'uid' => $uid]);
238                         if (DBA::isResult($public_contact)) {
239                                 $public_ignored = $public_contact['ignored'];
240                         }
241                 }
242
243                 $user_ignored = $public_ignored;
244
245                 if (!empty($cdata['user'])) {
246                         $user_contact = DBA::selectFirst('contact', ['readonly'], ['id' => $cdata['user'], 'pending' => false]);
247                         if (DBA::isResult($user_contact)) {
248                                 $user_ignored = $user_contact['readonly'];
249                         }
250                 }
251
252                 if ($user_ignored != $public_ignored) {
253                         DBA::update('user-contact', ['ignored' => $user_ignored], ['cid' => $cdata['public'], 'uid' => $uid], true);
254                 }
255
256                 return $user_ignored;
257         }
258
259         /**
260          * @brief Set "collapsed" for contact id and user id
261          *
262          * @param int     $cid       Either public contact id or user's contact id
263          * @param int     $uid       User ID
264          * @param boolean $collapsed are the contact's posts collapsed or uncollapsed?
265          */
266         public static function setCollapsedForUser($cid, $uid, $collapsed)
267         {
268                 $cdata = self::getPublicAndUserContacID($cid, $uid);
269                 if (empty($cdata)) {
270                         return;
271                 }
272
273                 DBA::update('user-contact', ['collapsed' => $collapsed], ['cid' => $cdata['public'], 'uid' => $uid], true);
274         }
275
276         /**
277          * @brief Returns "collapsed" state for contact id and user id
278          *
279          * @param int $cid Either public contact id or user's contact id
280          * @param int $uid User ID
281          *
282          * @return boolean is the contact id blocked for the given user?
283          */
284         public static function isCollapsedByUser($cid, $uid)
285         {
286                 $cdata = self::getPublicAndUserContacID($cid, $uid);
287                 if (empty($cdata)) {
288                         return;
289                 }
290
291                 $collapsed = false;
292
293                 if (!empty($cdata['public'])) {
294                         $public_contact = DBA::selectFirst('user-contact', ['collapsed'], ['cid' => $cdata['public'], 'uid' => $uid]);
295                         if (DBA::isResult($public_contact)) {
296                                 $collapsed = $public_contact['collapsed'];
297                         }
298                 }
299
300                 return $collapsed;
301         }
302
303         /**
304          * @brief Returns a list of contacts belonging in a group
305          *
306          * @param int $gid
307          * @return array
308          */
309         public static function getByGroupId($gid)
310         {
311                 $return = [];
312
313                 if (intval($gid)) {
314                         $stmt = DBA::p('SELECT `group_member`.`contact-id`, `contact`.*
315                                 FROM `contact`
316                                 INNER JOIN `group_member`
317                                         ON `contact`.`id` = `group_member`.`contact-id`
318                                 WHERE `gid` = ?
319                                 AND `contact`.`uid` = ?
320                                 AND NOT `contact`.`self`
321                                 AND NOT `contact`.`blocked`
322                                 AND NOT `contact`.`pending`
323                                 ORDER BY `contact`.`name` ASC',
324                                 $gid,
325                                 local_user()
326                         );
327
328                         if (DBA::isResult($stmt)) {
329                                 $return = DBA::toArray($stmt);
330                         }
331                 }
332
333                 return $return;
334         }
335
336         /**
337          * @brief Returns the count of OStatus contacts in a group
338          *
339          * @param int $gid
340          * @return int
341          */
342         public static function getOStatusCountByGroupId($gid)
343         {
344                 $return = 0;
345                 if (intval($gid)) {
346                         $contacts = DBA::fetchFirst('SELECT COUNT(*) AS `count`
347                                 FROM `contact`
348                                 INNER JOIN `group_member`
349                                         ON `contact`.`id` = `group_member`.`contact-id`
350                                 WHERE `gid` = ?
351                                 AND `contact`.`uid` = ?
352                                 AND `contact`.`network` = ?
353                                 AND `contact`.`notify` != ""',
354                                 $gid,
355                                 local_user(),
356                                 Protocol::OSTATUS
357                         );
358                         $return = $contacts['count'];
359                 }
360
361                 return $return;
362         }
363
364         /**
365          * Creates the self-contact for the provided user id
366          *
367          * @param int $uid
368          * @return bool Operation success
369          */
370         public static function createSelfFromUserId($uid)
371         {
372                 // Only create the entry if it doesn't exist yet
373                 if (DBA::exists('contact', ['uid' => $uid, 'self' => true])) {
374                         return true;
375                 }
376
377                 $user = DBA::selectFirst('user', ['uid', 'username', 'nickname'], ['uid' => $uid]);
378                 if (!DBA::isResult($user)) {
379                         return false;
380                 }
381
382                 $return = DBA::insert('contact', [
383                         'uid'         => $user['uid'],
384                         'created'     => DateTimeFormat::utcNow(),
385                         'self'        => 1,
386                         'name'        => $user['username'],
387                         'nick'        => $user['nickname'],
388                         'photo'       => System::baseUrl() . '/photo/profile/' . $user['uid'] . '.jpg',
389                         'thumb'       => System::baseUrl() . '/photo/avatar/'  . $user['uid'] . '.jpg',
390                         'micro'       => System::baseUrl() . '/photo/micro/'   . $user['uid'] . '.jpg',
391                         'blocked'     => 0,
392                         'pending'     => 0,
393                         'url'         => System::baseUrl() . '/profile/' . $user['nickname'],
394                         'nurl'        => normalise_link(System::baseUrl() . '/profile/' . $user['nickname']),
395                         'addr'        => $user['nickname'] . '@' . substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3),
396                         'request'     => System::baseUrl() . '/dfrn_request/' . $user['nickname'],
397                         'notify'      => System::baseUrl() . '/dfrn_notify/'  . $user['nickname'],
398                         'poll'        => System::baseUrl() . '/dfrn_poll/'    . $user['nickname'],
399                         'confirm'     => System::baseUrl() . '/dfrn_confirm/' . $user['nickname'],
400                         'poco'        => System::baseUrl() . '/poco/'         . $user['nickname'],
401                         'name-date'   => DateTimeFormat::utcNow(),
402                         'uri-date'    => DateTimeFormat::utcNow(),
403                         'avatar-date' => DateTimeFormat::utcNow(),
404                         'closeness'   => 0
405                 ]);
406
407                 return $return;
408         }
409
410         /**
411          * Updates the self-contact for the provided user id
412          *
413          * @param int $uid
414          * @param boolean $update_avatar Force the avatar update
415          */
416         public static function updateSelfFromUserID($uid, $update_avatar = false)
417         {
418                 $fields = ['id', 'name', 'nick', 'location', 'about', 'keywords', 'gender', 'avatar',
419                         'xmpp', 'contact-type', 'forum', 'prv', 'avatar-date', 'nurl'];
420                 $self = DBA::selectFirst('contact', $fields, ['uid' => $uid, 'self' => true]);
421                 if (!DBA::isResult($self)) {
422                         return;
423                 }
424
425                 $fields = ['nickname', 'page-flags', 'account-type'];
426                 $user = DBA::selectFirst('user', $fields, ['uid' => $uid]);
427                 if (!DBA::isResult($user)) {
428                         return;
429                 }
430
431                 $fields = ['name', 'photo', 'thumb', 'about', 'address', 'locality', 'region',
432                         'country-name', 'gender', 'pub_keywords', 'xmpp'];
433                 $profile = DBA::selectFirst('profile', $fields, ['uid' => $uid, 'is-default' => true]);
434                 if (!DBA::isResult($profile)) {
435                         return;
436                 }
437
438                 $fields = ['name' => $profile['name'], 'nick' => $user['nickname'],
439                         'avatar-date' => $self['avatar-date'], 'location' => Profile::formatLocation($profile),
440                         'about' => $profile['about'], 'keywords' => $profile['pub_keywords'],
441                         'gender' => $profile['gender'], 'avatar' => $profile['photo'],
442                         'contact-type' => $user['account-type'], 'xmpp' => $profile['xmpp']];
443
444                 $avatar = DBA::selectFirst('photo', ['resource-id', 'type'], ['uid' => $uid, 'profile' => true]);
445                 if (DBA::isResult($avatar)) {
446                         if ($update_avatar) {
447                                 $fields['avatar-date'] = DateTimeFormat::utcNow();
448                         }
449
450                         // Creating the path to the avatar, beginning with the file suffix
451                         $types = Image::supportedTypes();
452                         if (isset($types[$avatar['type']])) {
453                                 $file_suffix = $types[$avatar['type']];
454                         } else {
455                                 $file_suffix = 'jpg';
456                         }
457
458                         // We are adding a timestamp value so that other systems won't use cached content
459                         $timestamp = strtotime($fields['avatar-date']);
460
461                         $prefix = System::baseUrl() . '/photo/' .$avatar['resource-id'] . '-';
462                         $suffix = '.' . $file_suffix . '?ts=' . $timestamp;
463
464                         $fields['photo'] = $prefix . '4' . $suffix;
465                         $fields['thumb'] = $prefix . '5' . $suffix;
466                         $fields['micro'] = $prefix . '6' . $suffix;
467                 } else {
468                         // We hadn't found a photo entry, so we use the default avatar
469                         $fields['photo'] = System::baseUrl() . '/images/person-175.jpg';
470                         $fields['thumb'] = System::baseUrl() . '/images/person-80.jpg';
471                         $fields['micro'] = System::baseUrl() . '/images/person-48.jpg';
472                 }
473
474                 $fields['forum'] = $user['page-flags'] == self::PAGE_COMMUNITY;
475                 $fields['prv'] = $user['page-flags'] == self::PAGE_PRVGROUP;
476
477                 // it seems as if ported accounts can have wrong values, so we make sure that now everything is fine.
478                 $fields['url'] = System::baseUrl() . '/profile/' . $user['nickname'];
479                 $fields['nurl'] = normalise_link($fields['url']);
480                 $fields['addr'] = $user['nickname'] . '@' . substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3);
481                 $fields['request'] = System::baseUrl() . '/dfrn_request/' . $user['nickname'];
482                 $fields['notify'] = System::baseUrl() . '/dfrn_notify/'  . $user['nickname'];
483                 $fields['poll'] = System::baseUrl() . '/dfrn_poll/'    . $user['nickname'];
484                 $fields['confirm'] = System::baseUrl() . '/dfrn_confirm/' . $user['nickname'];
485                 $fields['poco'] = System::baseUrl() . '/poco/'         . $user['nickname'];
486
487                 $update = false;
488
489                 foreach ($fields as $field => $content) {
490                         if (isset($self[$field]) && $self[$field] != $content) {
491                                 $update = true;
492                         }
493                 }
494
495                 if ($update) {
496                         $fields['name-date'] = DateTimeFormat::utcNow();
497                         DBA::update('contact', $fields, ['id' => $self['id']]);
498
499                         // Update the public contact as well
500                         DBA::update('contact', $fields, ['uid' => 0, 'nurl' => $self['nurl']]);
501
502                         // Update the profile
503                         $fields = ['photo' => System::baseUrl() . '/photo/profile/' .$uid . '.jpg',
504                                 'thumb' => System::baseUrl() . '/photo/avatar/' . $uid .'.jpg'];
505                         DBA::update('profile', $fields, ['uid' => $uid, 'is-default' => true]);
506                 }
507         }
508
509         /**
510          * @brief Marks a contact for removal
511          *
512          * @param int $id contact id
513          * @return null
514          */
515         public static function remove($id)
516         {
517                 // We want just to make sure that we don't delete our "self" contact
518                 $contact = DBA::selectFirst('contact', ['uid'], ['id' => $id, 'self' => false]);
519                 if (!DBA::isResult($contact) || !intval($contact['uid'])) {
520                         return;
521                 }
522
523                 // Archive the contact
524                 DBA::update('contact', ['archive' => true, 'network' => Protocol::PHANTOM, 'deleted' => true], ['id' => $id]);
525
526                 // Delete it in the background
527                 Worker::add(PRIORITY_LOW, 'RemoveContact', $id);
528         }
529
530         /**
531          * @brief Sends an unfriend message. Does not remove the contact
532          *
533          * @param array   $user     User unfriending
534          * @param array   $contact  Contact unfriended
535          * @param boolean $dissolve Remove the contact on the remote side
536          * @return void
537          */
538         public static function terminateFriendship(array $user, array $contact, $dissolve = false)
539         {
540                 if (($contact['network'] == Protocol::DFRN) && $dissolve) {
541                         DFRN::deliver($user, $contact, 'placeholder', true);
542                 } elseif (in_array($contact['network'], [Protocol::OSTATUS, Protocol::DFRN])) {
543                         // create an unfollow slap
544                         $item = [];
545                         $item['verb'] = NAMESPACE_OSTATUS . "/unfollow";
546                         $item['follow'] = $contact["url"];
547                         $item['body'] = '';
548                         $item['title'] = '';
549                         $item['guid'] = '';
550                         $item['tag'] = '';
551                         $item['attach'] = '';
552                         $slap = OStatus::salmon($item, $user);
553
554                         if (!empty($contact['notify'])) {
555                                 Salmon::slapper($user, $contact['notify'], $slap);
556                         }
557                 } elseif ($contact['network'] == Protocol::DIASPORA) {
558                         Diaspora::sendUnshare($user, $contact);
559                 } elseif ($contact['network'] == Protocol::ACTIVITYPUB) {
560                         ActivityPub\Transmitter::sendContactUndo($contact['url'], $user['uid']);
561
562                         if ($dissolve) {
563                                 ActivityPub\Transmitter::sendContactReject($contact['url'], $contact['hub-verify'], $user['uid']);
564                         }
565                 }
566         }
567
568         /**
569          * @brief Marks a contact for archival after a communication issue delay
570          *
571          * Contact has refused to recognise us as a friend. We will start a countdown.
572          * If they still don't recognise us in 32 days, the relationship is over,
573          * and we won't waste any more time trying to communicate with them.
574          * This provides for the possibility that their database is temporarily messed
575          * up or some other transient event and that there's a possibility we could recover from it.
576          *
577          * @param array $contact contact to mark for archival
578          * @return null
579          */
580         public static function markForArchival(array $contact)
581         {
582                 if (!isset($contact['url']) && !empty($contact['id'])) {
583                         $fields = ['id', 'url', 'archive', 'self', 'term-date'];
584                         $contact = DBA::selectFirst('contact', [], ['id' => $contact['id']]);
585                         if (!DBA::isResult($contact)) {
586                                 return;
587                         }
588                 } elseif (!isset($contact['url'])) {
589                         logger('Empty contact: ' . json_encode($contact) . ' - ' . System::callstack(20), LOGGER_DEBUG);
590                 }
591
592                 // Contact already archived or "self" contact? => nothing to do
593                 if ($contact['archive'] || $contact['self']) {
594                         return;
595                 }
596
597                 if ($contact['term-date'] <= NULL_DATE) {
598                         DBA::update('contact', ['term-date' => DateTimeFormat::utcNow()], ['id' => $contact['id']]);
599                         DBA::update('contact', ['term-date' => DateTimeFormat::utcNow()], ['`nurl` = ? AND `term-date` <= ? AND NOT `self`', normalise_link($contact['url']), NULL_DATE]);
600                 } else {
601                         /* @todo
602                          * We really should send a notification to the owner after 2-3 weeks
603                          * so they won't be surprised when the contact vanishes and can take
604                          * remedial action if this was a serious mistake or glitch
605                          */
606
607                         /// @todo Check for contact vitality via probing
608                         $archival_days = Config::get('system', 'archival_days', 32);
609
610                         $expiry = $contact['term-date'] . ' + ' . $archival_days . ' days ';
611                         if (DateTimeFormat::utcNow() > DateTimeFormat::utc($expiry)) {
612                                 /* Relationship is really truly dead. archive them rather than
613                                  * delete, though if the owner tries to unarchive them we'll start
614                                  * the whole process over again.
615                                  */
616                                 DBA::update('contact', ['archive' => 1], ['id' => $contact['id']]);
617                                 DBA::update('contact', ['archive' => 1], ['nurl' => normalise_link($contact['url']), 'self' => false]);
618                         }
619                 }
620         }
621
622         /**
623          * @brief Cancels the archival countdown
624          *
625          * @see Contact::markForArchival()
626          *
627          * @param array $contact contact to be unmarked for archival
628          * @return null
629          */
630         public static function unmarkForArchival(array $contact)
631         {
632                 $condition = ['`id` = ? AND (`term-date` > ? OR `archive`)', $contact['id'], NULL_DATE];
633                 $exists = DBA::exists('contact', $condition);
634
635                 // We don't need to update, we never marked this contact for archival
636                 if (!$exists) {
637                         return;
638                 }
639
640                 if (!isset($contact['url']) && !empty($contact['id'])) {
641                         $fields = ['id', 'url', 'batch'];
642                         $contact = DBA::selectFirst('contact', [], ['id' => $contact['id']]);
643                         if (!DBA::isResult($contact)) {
644                                 return;
645                         }
646                 }
647
648                 // It's a miracle. Our dead contact has inexplicably come back to life.
649                 $fields = ['term-date' => NULL_DATE, 'archive' => false];
650                 DBA::update('contact', $fields, ['id' => $contact['id']]);
651                 DBA::update('contact', $fields, ['nurl' => normalise_link($contact['url'])]);
652
653                 if (!empty($contact['batch'])) {
654                         $condition = ['batch' => $contact['batch'], 'contact-type' => self::ACCOUNT_TYPE_RELAY];
655                         DBA::update('contact', $fields, $condition);
656                 }
657         }
658
659         /**
660          * @brief Get contact data for a given profile link
661          *
662          * The function looks at several places (contact table and gcontact table) for the contact
663          * It caches its result for the same script execution to prevent duplicate calls
664          *
665          * @param string $url     The profile link
666          * @param int    $uid     User id
667          * @param array  $default If not data was found take this data as default value
668          *
669          * @return array Contact data
670          */
671         public static function getDetailsByURL($url, $uid = -1, array $default = [])
672         {
673                 static $cache = [];
674
675                 if ($url == '') {
676                         return $default;
677                 }
678
679                 if ($uid == -1) {
680                         $uid = local_user();
681                 }
682
683                 if (isset($cache[$url][$uid])) {
684                         return $cache[$url][$uid];
685                 }
686
687                 $ssl_url = str_replace('http://', 'https://', $url);
688
689                 // Fetch contact data from the contact table for the given user
690                 $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`,
691                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, `self`
692                 FROM `contact` WHERE `nurl` = ? AND `uid` = ?", normalise_link($url), $uid);
693                 $r = DBA::toArray($s);
694
695                 // Fetch contact data from the contact table for the given user, checking with the alias
696                 if (!DBA::isResult($r)) {
697                         $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`,
698                                 `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, `self`
699                         FROM `contact` WHERE `alias` IN (?, ?, ?) AND `uid` = ?", normalise_link($url), $url, $ssl_url, $uid);
700                         $r = DBA::toArray($s);
701                 }
702
703                 // Fetch the data from the contact table with "uid=0" (which is filled automatically)
704                 if (!DBA::isResult($r)) {
705                         $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`,
706                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, 0 AS `self`
707                         FROM `contact` WHERE `nurl` = ? AND `uid` = 0", normalise_link($url));
708                         $r = DBA::toArray($s);
709                 }
710
711                 // Fetch the data from the contact table with "uid=0" (which is filled automatically) - checked with the alias
712                 if (!DBA::isResult($r)) {
713                         $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`,
714                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, 0 AS `self`
715                         FROM `contact` WHERE `alias` IN (?, ?, ?) AND `uid` = 0", normalise_link($url), $url, $ssl_url);
716                         $r = DBA::toArray($s);
717                 }
718
719                 // Fetch the data from the gcontact table
720                 if (!DBA::isResult($r)) {
721                         $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`,
722                         `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, 0 AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
723                         FROM `gcontact` WHERE `nurl` = ?", normalise_link($url));
724                         $r = DBA::toArray($s);
725                 }
726
727                 if (DBA::isResult($r)) {
728                         // If there is more than one entry we filter out the connector networks
729                         if (count($r) > 1) {
730                                 foreach ($r as $id => $result) {
731                                         if ($result["network"] == Protocol::STATUSNET) {
732                                                 unset($r[$id]);
733                                         }
734                                 }
735                         }
736
737                         $profile = array_shift($r);
738
739                         // "bd" always contains the upcoming birthday of a contact.
740                         // "birthday" might contain the birthday including the year of birth.
741                         if ($profile["birthday"] > '0001-01-01') {
742                                 $bd_timestamp = strtotime($profile["birthday"]);
743                                 $month = date("m", $bd_timestamp);
744                                 $day = date("d", $bd_timestamp);
745
746                                 $current_timestamp = time();
747                                 $current_year = date("Y", $current_timestamp);
748                                 $current_month = date("m", $current_timestamp);
749                                 $current_day = date("d", $current_timestamp);
750
751                                 $profile["bd"] = $current_year . "-" . $month . "-" . $day;
752                                 $current = $current_year . "-" . $current_month . "-" . $current_day;
753
754                                 if ($profile["bd"] < $current) {
755                                         $profile["bd"] = ( ++$current_year) . "-" . $month . "-" . $day;
756                                 }
757                         } else {
758                                 $profile["bd"] = '0001-01-01';
759                         }
760                 } else {
761                         $profile = $default;
762                 }
763
764                 if (empty($profile["photo"]) && isset($default["photo"])) {
765                         $profile["photo"] = $default["photo"];
766                 }
767
768                 if (empty($profile["name"]) && isset($default["name"])) {
769                         $profile["name"] = $default["name"];
770                 }
771
772                 if (empty($profile["network"]) && isset($default["network"])) {
773                         $profile["network"] = $default["network"];
774                 }
775
776                 if (empty($profile["thumb"]) && isset($profile["photo"])) {
777                         $profile["thumb"] = $profile["photo"];
778                 }
779
780                 if (empty($profile["micro"]) && isset($profile["thumb"])) {
781                         $profile["micro"] = $profile["thumb"];
782                 }
783
784                 if ((empty($profile["addr"]) || empty($profile["name"])) && (defaults($profile, "gid", 0) != 0)
785                         && in_array($profile["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS])
786                 ) {
787                         Worker::add(PRIORITY_LOW, "UpdateGContact", $profile["gid"]);
788                 }
789
790                 // Show contact details of Diaspora contacts only if connected
791                 if ((defaults($profile, "cid", 0) == 0) && (defaults($profile, "network", "") == Protocol::DIASPORA)) {
792                         $profile["location"] = "";
793                         $profile["about"] = "";
794                         $profile["gender"] = "";
795                         $profile["birthday"] = '0001-01-01';
796                 }
797
798                 $cache[$url][$uid] = $profile;
799
800                 return $profile;
801         }
802
803         /**
804          * @brief Get contact data for a given address
805          *
806          * The function looks at several places (contact table and gcontact table) for the contact
807          *
808          * @param string $addr The profile link
809          * @param int    $uid  User id
810          *
811          * @return array Contact data
812          */
813         public static function getDetailsByAddr($addr, $uid = -1)
814         {
815                 static $cache = [];
816
817                 if ($addr == '') {
818                         return [];
819                 }
820
821                 if ($uid == -1) {
822                         $uid = local_user();
823                 }
824
825                 // Fetch contact data from the contact table for the given user
826                 $r = q("SELECT `id`, `id` AS `cid`, 0 AS `gid`, 0 AS `zid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
827                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, `self`
828                         FROM `contact` WHERE `addr` = '%s' AND `uid` = %d AND NOT `deleted`",
829                         DBA::escape($addr),
830                         intval($uid)
831                 );
832                 // Fetch the data from the contact table with "uid=0" (which is filled automatically)
833                 if (!DBA::isResult($r)) {
834                         $r = q("SELECT `id`, 0 AS `cid`, `id` AS `zid`, 0 AS `gid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
835                                 `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, 0 AS `self`
836                                 FROM `contact` WHERE `addr` = '%s' AND `uid` = 0 AND NOT `deleted`",
837                                 DBA::escape($addr)
838                         );
839                 }
840
841                 // Fetch the data from the gcontact table
842                 if (!DBA::isResult($r)) {
843                         $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`,
844                                 `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, `community` AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
845                                 FROM `gcontact` WHERE `addr` = '%s'",
846                                 DBA::escape($addr)
847                         );
848                 }
849
850                 if (!DBA::isResult($r)) {
851                         $data = Probe::uri($addr);
852
853                         $profile = self::getDetailsByURL($data['url'], $uid);
854                 } else {
855                         $profile = $r[0];
856                 }
857
858                 return $profile;
859         }
860
861         /**
862          * @brief Returns the data array for the photo menu of a given contact
863          *
864          * @param array $contact contact
865          * @param int   $uid     optional, default 0
866          * @return array
867          */
868         public static function photoMenu(array $contact, $uid = 0)
869         {
870                 // @todo Unused, to be removed
871                 $a = get_app();
872
873                 $contact_url = '';
874                 $pm_url = '';
875                 $status_link = '';
876                 $photos_link = '';
877                 $posts_link = '';
878                 $contact_drop_link = '';
879                 $poke_link = '';
880
881                 if ($uid == 0) {
882                         $uid = local_user();
883                 }
884
885                 if (empty($contact['uid']) || ($contact['uid'] != $uid)) {
886                         if ($uid == 0) {
887                                 $profile_link = self::magicLink($contact['url']);
888                                 $menu = ['profile' => [L10n::t('View Profile'), $profile_link, true]];
889
890                                 return $menu;
891                         }
892
893                         // Look for our own contact if the uid doesn't match and isn't public
894                         $contact_own = DBA::selectFirst('contact', [], ['nurl' => $contact['nurl'], 'network' => $contact['network'], 'uid' => $uid]);
895                         if (DBA::isResult($contact_own)) {
896                                 return self::photoMenu($contact_own, $uid);
897                         }
898                 }
899
900                 $sparkle = false;
901                 if (($contact['network'] === Protocol::DFRN) && !$contact['self']) {
902                         $sparkle = true;
903                         $profile_link = System::baseUrl() . '/redir/' . $contact['id'];
904                 } else {
905                         $profile_link = $contact['url'];
906                 }
907
908                 if ($profile_link === 'mailbox') {
909                         $profile_link = '';
910                 }
911
912                 if ($sparkle) {
913                         $status_link = $profile_link . '?url=status';
914                         $photos_link = $profile_link . '?url=photos';
915                         $profile_link = $profile_link . '?url=profile';
916                 }
917
918                 if (in_array($contact['network'], [Protocol::DFRN, Protocol::DIASPORA]) && !$contact['self']) {
919                         $pm_url = System::baseUrl() . '/message/new/' . $contact['id'];
920                 }
921
922                 if (($contact['network'] == Protocol::DFRN) && !$contact['self']) {
923                         $poke_link = System::baseUrl() . '/poke/?f=&c=' . $contact['id'];
924                 }
925
926                 $contact_url = System::baseUrl() . '/contacts/' . $contact['id'];
927
928                 $posts_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/conversations';
929
930                 if (!$contact['self']) {
931                         $contact_drop_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/drop?confirm=1';
932                 }
933
934                 /**
935                  * Menu array:
936                  * "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ]
937                  */
938                 if (empty($contact['uid'])) {
939                         $connlnk = 'follow/?url=' . $contact['url'];
940                         $menu = [
941                                 'profile' => [L10n::t('View Profile'),   $profile_link, true],
942                                 'network' => [L10n::t('Network Posts'),  $posts_link,   false],
943                                 'edit'    => [L10n::t('View Contact'),   $contact_url,  false],
944                                 'follow'  => [L10n::t('Connect/Follow'), $connlnk,      true],
945                         ];
946                 } else {
947                         $menu = [
948                                 'status'  => [L10n::t('View Status'),   $status_link,       true],
949                                 'profile' => [L10n::t('View Profile'),  $profile_link,      true],
950                                 'photos'  => [L10n::t('View Photos'),   $photos_link,       true],
951                                 'network' => [L10n::t('Network Posts'), $posts_link,        false],
952                                 'edit'    => [L10n::t('View Contact'),  $contact_url,       false],
953                                 'drop'    => [L10n::t('Drop Contact'),  $contact_drop_link, false],
954                                 'pm'      => [L10n::t('Send PM'),       $pm_url,            false],
955                                 'poke'    => [L10n::t('Poke'),          $poke_link,         false],
956                         ];
957                 }
958
959                 $args = ['contact' => $contact, 'menu' => &$menu];
960
961                 Addon::callHooks('contact_photo_menu', $args);
962
963                 $menucondensed = [];
964
965                 foreach ($menu as $menuname => $menuitem) {
966                         if ($menuitem[1] != '') {
967                                 $menucondensed[$menuname] = $menuitem;
968                         }
969                 }
970
971                 return $menucondensed;
972         }
973
974         /**
975          * @brief Returns ungrouped contact count or list for user
976          *
977          * Returns either the total number of ungrouped contacts for the given user
978          * id or a paginated list of ungrouped contacts.
979          *
980          * @param int $uid   uid
981          * @param int $start optional, default 0
982          * @param int $count optional, default 0
983          *
984          * @return array
985          */
986         public static function getUngroupedList($uid)
987         {
988                 return q("SELECT *
989                            FROM `contact`
990                            WHERE `uid` = %d
991                            AND NOT `self`
992                            AND NOT `blocked`
993                            AND NOT `pending`
994                            AND `id` NOT IN (
995                                 SELECT DISTINCT(`contact-id`)
996                                 FROM `group_member`
997                                 INNER JOIN `group` ON `group`.`id` = `group_member`.`gid`
998                                 WHERE `group`.`uid` = %d
999                            )", intval($uid), intval($uid));
1000         }
1001
1002         /**
1003          * @brief Fetch the contact id for a given URL and user
1004          *
1005          * First lookup in the contact table to find a record matching either `url`, `nurl`,
1006          * `addr` or `alias`.
1007          *
1008          * If there's no record and we aren't looking for a public contact, we quit.
1009          * If there's one, we check that it isn't time to update the picture else we
1010          * directly return the found contact id.
1011          *
1012          * Second, we probe the provided $url whether it's http://server.tld/profile or
1013          * nick@server.tld. We quit if we can't get any info back.
1014          *
1015          * Third, we create the contact record if it doesn't exist
1016          *
1017          * Fourth, we update the existing record with the new data (avatar, alias, nick)
1018          * if there's any updates
1019          *
1020          * @param string  $url       Contact URL
1021          * @param integer $uid       The user id for the contact (0 = public contact)
1022          * @param boolean $no_update Don't update the contact
1023          * @param array   $default   Default value for creating the contact when every else fails
1024          *
1025          * @return integer Contact ID
1026          */
1027         public static function getIdForURL($url, $uid = 0, $no_update = false, $default = [])
1028         {
1029                 logger("Get contact data for url " . $url . " and user " . $uid . " - " . System::callstack(), LOGGER_DEBUG);
1030
1031                 $contact_id = 0;
1032
1033                 if ($url == '') {
1034                         return 0;
1035                 }
1036
1037                 /// @todo Verify if we can't use Contact::getDetailsByUrl instead of the following
1038                 // We first try the nurl (http://server.tld/nick), most common case
1039                 $contact = DBA::selectFirst('contact', ['id', 'avatar', 'avatar-date'], ['nurl' => normalise_link($url), 'uid' => $uid, 'deleted' => false]);
1040
1041                 // Then the addr (nick@server.tld)
1042                 if (!DBA::isResult($contact)) {
1043                         $contact = DBA::selectFirst('contact', ['id', 'avatar', 'avatar-date'], ['addr' => $url, 'uid' => $uid, 'deleted' => false]);
1044                 }
1045
1046                 // Then the alias (which could be anything)
1047                 if (!DBA::isResult($contact)) {
1048                         // The link could be provided as http although we stored it as https
1049                         $ssl_url = str_replace('http://', 'https://', $url);
1050                         $condition = ['`alias` IN (?, ?, ?) AND `uid` = ? AND NOT `deleted`', $url, normalise_link($url), $ssl_url, $uid];
1051                         $contact = DBA::selectFirst('contact', ['id', 'avatar', 'avatar-date'], $condition);
1052                 }
1053
1054                 if (DBA::isResult($contact)) {
1055                         $contact_id = $contact["id"];
1056
1057                         // Update the contact every 7 days
1058                         $update_contact = ($contact['avatar-date'] < DateTimeFormat::utc('now -7 days'));
1059
1060                         // We force the update if the avatar is empty
1061                         if (!x($contact, 'avatar')) {
1062                                 $update_contact = true;
1063                         }
1064                         if (!$update_contact || $no_update) {
1065                                 return $contact_id;
1066                         }
1067                 } elseif ($uid != 0) {
1068                         // Non-existing user-specific contact, exiting
1069                         return 0;
1070                 }
1071
1072                 // When we don't want to update, we look if some of our users already know this contact
1073                 if ($no_update) {
1074                         $fields = ['url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1075                                 'photo', 'keywords', 'location', 'about', 'network',
1076                                 'priority', 'batch', 'request', 'confirm', 'poco'];
1077                         $data = DBA::selectFirst('contact', $fields, ['nurl' => normalise_link($url)]);
1078
1079                         if (DBA::isResult($data)) {
1080                                 // For security reasons we don't fetch key data from our users
1081                                 $data["pubkey"] = '';
1082                         }
1083                 } else {
1084                         $data = [];
1085                 }
1086
1087                 if (empty($data)) {
1088                         $data = Probe::uri($url, "", $uid);
1089
1090                         // Ensure that there is a gserver entry
1091                         if (!empty($data['baseurl']) && ($data['network'] != Protocol::PHANTOM)) {
1092                                 PortableContact::checkServer($data['baseurl']);
1093                         }
1094                 }
1095
1096                 // Last try in gcontact for unsupported networks
1097                 if (!in_array($data["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::OSTATUS, Protocol::DIASPORA, Protocol::PUMPIO, Protocol::MAIL, Protocol::FEED])) {
1098                         if ($uid != 0) {
1099                                 return 0;
1100                         }
1101
1102                         // Get data from the gcontact table
1103                         $fields = ['name', 'nick', 'url', 'photo', 'addr', 'alias', 'network'];
1104                         $contact = DBA::selectFirst('gcontact', $fields, ['nurl' => normalise_link($url)]);
1105                         if (!DBA::isResult($contact)) {
1106                                 $contact = DBA::selectFirst('contact', $fields, ['nurl' => normalise_link($url)]);
1107                         }
1108
1109                         if (!DBA::isResult($contact)) {
1110                                 $fields = ['url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1111                                         'photo', 'keywords', 'location', 'about', 'network',
1112                                         'priority', 'batch', 'request', 'confirm', 'poco'];
1113                                 $contact = DBA::selectFirst('contact', $fields, ['addr' => $url]);
1114                         }
1115
1116                         if (!DBA::isResult($contact)) {
1117                                 // The link could be provided as http although we stored it as https
1118                                 $ssl_url = str_replace('http://', 'https://', $url);
1119                                 $condition = ['alias' => [$url, normalise_link($url), $ssl_url]];
1120                                 $contact = DBA::selectFirst('contact', $fields, $condition);
1121                         }
1122
1123                         if (!DBA::isResult($contact)) {
1124                                 $fields = ['url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1125                                         'photo', 'network', 'priority', 'batch', 'request', 'confirm'];
1126                                 $condition = ['url' => [$url, normalise_link($url), $ssl_url]];
1127                                 $contact = DBA::selectFirst('fcontact', $fields, $condition);
1128                         }
1129
1130                         if (!empty($default)) {
1131                                 $contact = $default;
1132                         }
1133
1134                         if (!DBA::isResult($contact)) {
1135                                 return 0;
1136                         } else {
1137                                 $data = array_merge($data, $contact);
1138                         }
1139                 }
1140
1141                 if (!$contact_id && ($data["alias"] != '') && ($data["alias"] != $url)) {
1142                         $contact_id = self::getIdForURL($data["alias"], $uid, true);
1143                 }
1144
1145                 $url = $data["url"];
1146                 if (!$contact_id) {
1147                         DBA::insert('contact', [
1148                                 'uid'       => $uid,
1149                                 'created'   => DateTimeFormat::utcNow(),
1150                                 'url'       => $data["url"],
1151                                 'nurl'      => normalise_link($data["url"]),
1152                                 'addr'      => $data["addr"],
1153                                 'alias'     => $data["alias"],
1154                                 'notify'    => $data["notify"],
1155                                 'poll'      => $data["poll"],
1156                                 'name'      => $data["name"],
1157                                 'nick'      => $data["nick"],
1158                                 'photo'     => $data["photo"],
1159                                 'keywords'  => $data["keywords"],
1160                                 'location'  => $data["location"],
1161                                 'about'     => $data["about"],
1162                                 'network'   => $data["network"],
1163                                 'pubkey'    => $data["pubkey"],
1164                                 'rel'       => self::SHARING,
1165                                 'priority'  => $data["priority"],
1166                                 'batch'     => $data["batch"],
1167                                 'request'   => $data["request"],
1168                                 'confirm'   => $data["confirm"],
1169                                 'poco'      => $data["poco"],
1170                                 'name-date' => DateTimeFormat::utcNow(),
1171                                 'uri-date'  => DateTimeFormat::utcNow(),
1172                                 'avatar-date' => DateTimeFormat::utcNow(),
1173                                 'writable'  => 1,
1174                                 'blocked'   => 0,
1175                                 'readonly'  => 0,
1176                                 'pending'   => 0]
1177                         );
1178
1179                         $s = DBA::select('contact', ['id'], ['nurl' => normalise_link($data["url"]), 'uid' => $uid], ['order' => ['id'], 'limit' => 2]);
1180                         $contacts = DBA::toArray($s);
1181                         if (!DBA::isResult($contacts)) {
1182                                 return 0;
1183                         }
1184
1185                         $contact_id = $contacts[0]["id"];
1186
1187                         // Update the newly created contact from data in the gcontact table
1188                         $gcontact = DBA::selectFirst('gcontact', ['location', 'about', 'keywords', 'gender'], ['nurl' => normalise_link($data["url"])]);
1189                         if (DBA::isResult($gcontact)) {
1190                                 // Only use the information when the probing hadn't fetched these values
1191                                 if ($data['keywords'] != '') {
1192                                         unset($gcontact['keywords']);
1193                                 }
1194                                 if ($data['location'] != '') {
1195                                         unset($gcontact['location']);
1196                                 }
1197                                 if ($data['about'] != '') {
1198                                         unset($gcontact['about']);
1199                                 }
1200                                 DBA::update('contact', $gcontact, ['id' => $contact_id]);
1201                         }
1202
1203                         if (count($contacts) > 1 && $uid == 0 && $contact_id != 0 && $data["url"] != "") {
1204                                 DBA::delete('contact', ["`nurl` = ? AND `uid` = 0 AND `id` != ? AND NOT `self`",
1205                                         normalise_link($data["url"]), $contact_id]);
1206                         }
1207                 }
1208
1209                 self::updateAvatar($data["photo"], $uid, $contact_id);
1210
1211                 $fields = ['url', 'nurl', 'addr', 'alias', 'name', 'nick', 'keywords', 'location', 'about', 'avatar-date', 'pubkey'];
1212                 $contact = DBA::selectFirst('contact', $fields, ['id' => $contact_id]);
1213
1214                 // This condition should always be true
1215                 if (!DBA::isResult($contact)) {
1216                         return $contact_id;
1217                 }
1218
1219                 $updated = ['addr' => $data['addr'],
1220                         'alias' => $data['alias'],
1221                         'url' => $data['url'],
1222                         'nurl' => normalise_link($data['url']),
1223                         'name' => $data['name'],
1224                         'nick' => $data['nick']];
1225
1226                 if ($data['keywords'] != '') {
1227                         $updated['keywords'] = $data['keywords'];
1228                 }
1229                 if ($data['location'] != '') {
1230                         $updated['location'] = $data['location'];
1231                 }
1232
1233                 // Update the technical stuff as well - if filled
1234                 if ($data['notify'] != '') {
1235                         $updated['notify'] = $data['notify'];
1236                 }
1237                 if ($data['poll'] != '') {
1238                         $updated['poll'] = $data['poll'];
1239                 }
1240                 if ($data['batch'] != '') {
1241                         $updated['batch'] = $data['batch'];
1242                 }
1243                 if ($data['request'] != '') {
1244                         $updated['request'] = $data['request'];
1245                 }
1246                 if ($data['confirm'] != '') {
1247                         $updated['confirm'] = $data['confirm'];
1248                 }
1249                 if ($data['poco'] != '') {
1250                         $updated['poco'] = $data['poco'];
1251                 }
1252
1253                 // Only fill the pubkey if it had been empty before. We have to prevent identity theft.
1254                 if (empty($contact['pubkey'])) {
1255                         $updated['pubkey'] = $data['pubkey'];
1256                 }
1257
1258                 if (($data["addr"] != $contact["addr"]) || ($data["alias"] != $contact["alias"])) {
1259                         $updated['uri-date'] = DateTimeFormat::utcNow();
1260                 }
1261                 if (($data["name"] != $contact["name"]) || ($data["nick"] != $contact["nick"])) {
1262                         $updated['name-date'] = DateTimeFormat::utcNow();
1263                 }
1264
1265                 $updated['avatar-date'] = DateTimeFormat::utcNow();
1266
1267                 DBA::update('contact', $updated, ['id' => $contact_id], $contact);
1268
1269                 return $contact_id;
1270         }
1271
1272         /**
1273          * @brief Checks if the contact is blocked
1274          *
1275          * @param int $cid contact id
1276          *
1277          * @return boolean Is the contact blocked?
1278          */
1279         public static function isBlocked($cid)
1280         {
1281                 if ($cid == 0) {
1282                         return false;
1283                 }
1284
1285                 $blocked = DBA::selectFirst('contact', ['blocked'], ['id' => $cid]);
1286                 if (!DBA::isResult($blocked)) {
1287                         return false;
1288                 }
1289                 return (bool) $blocked['blocked'];
1290         }
1291
1292         /**
1293          * @brief Checks if the contact is hidden
1294          *
1295          * @param int $cid contact id
1296          *
1297          * @return boolean Is the contact hidden?
1298          */
1299         public static function isHidden($cid)
1300         {
1301                 if ($cid == 0) {
1302                         return false;
1303                 }
1304
1305                 $hidden = DBA::selectFirst('contact', ['hidden'], ['id' => $cid]);
1306                 if (!DBA::isResult($hidden)) {
1307                         return false;
1308                 }
1309                 return (bool) $hidden['hidden'];
1310         }
1311
1312         /**
1313          * @brief Returns posts from a given contact url
1314          *
1315          * @param string $contact_url Contact URL
1316          *
1317          * @return string posts in HTML
1318          */
1319         public static function getPostsFromUrl($contact_url, $thread_mode = false, $update = 0)
1320         {
1321                 $a = self::getApp();
1322
1323                 require_once 'include/conversation.php';
1324
1325                 $cid = Self::getIdForURL($contact_url);
1326
1327                 $contact = DBA::selectFirst('contact', ['contact-type', 'network'], ['id' => $cid]);
1328                 if (!DBA::isResult($contact)) {
1329                         return '';
1330                 }
1331
1332                 if (in_array($contact["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, ""])) {
1333                         $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = ? AND NOT `item`.`global`))";
1334                 } else {
1335                         $sql = "`item`.`uid` = ?";
1336                 }
1337
1338                 $contact_field = ($contact["contact-type"] == self::ACCOUNT_TYPE_COMMUNITY ? 'owner-id' : 'author-id');
1339
1340                 if ($thread_mode) {
1341                         $condition = ["`$contact_field` = ? AND `gravity` = ? AND " . $sql,
1342                                 $cid, GRAVITY_PARENT, local_user()];
1343                 } else {
1344                         $condition = ["`$contact_field` = ? AND `gravity` IN (?, ?) AND " . $sql,
1345                                 $cid, GRAVITY_PARENT, GRAVITY_COMMENT, local_user()];
1346                 }
1347
1348                 $params = ['order' => ['created' => true],
1349                         'limit' => [$a->pager['start'], $a->pager['itemspage']]];
1350
1351                 if ($thread_mode) {
1352                         $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params);
1353
1354                         $items = Item::inArray($r);
1355
1356                         $o = conversation($a, $items, 'contacts', $update);
1357                 } else {
1358                         $r = Item::selectForUser(local_user(), [], $condition, $params);
1359
1360                         $items = Item::inArray($r);
1361
1362                         $o = conversation($a, $items, 'contact-posts', false);
1363                 }
1364
1365                 if (!$update) {
1366                         $o .= alt_pager($a, count($items));
1367                 }
1368
1369                 return $o;
1370         }
1371
1372         /**
1373          * @brief Returns the account type name
1374          *
1375          * The function can be called with either the user or the contact array
1376          *
1377          * @param array $contact contact or user array
1378          * @return string
1379          */
1380         public static function getAccountType(array $contact)
1381         {
1382                 // There are several fields that indicate that the contact or user is a forum
1383                 // "page-flags" is a field in the user table,
1384                 // "forum" and "prv" are used in the contact table. They stand for self::PAGE_COMMUNITY and self::PAGE_PRVGROUP.
1385                 // "community" is used in the gcontact table and is true if the contact is self::PAGE_COMMUNITY or self::PAGE_PRVGROUP.
1386                 if ((isset($contact['page-flags']) && (intval($contact['page-flags']) == self::PAGE_COMMUNITY))
1387                         || (isset($contact['page-flags']) && (intval($contact['page-flags']) == self::PAGE_PRVGROUP))
1388                         || (isset($contact['forum']) && intval($contact['forum']))
1389                         || (isset($contact['prv']) && intval($contact['prv']))
1390                         || (isset($contact['community']) && intval($contact['community']))
1391                 ) {
1392                         $type = self::ACCOUNT_TYPE_COMMUNITY;
1393                 } else {
1394                         $type = self::ACCOUNT_TYPE_PERSON;
1395                 }
1396
1397                 // The "contact-type" (contact table) and "account-type" (user table) are more general then the chaos from above.
1398                 if (isset($contact["contact-type"])) {
1399                         $type = $contact["contact-type"];
1400                 }
1401
1402                 if (isset($contact["account-type"])) {
1403                         $type = $contact["account-type"];
1404                 }
1405
1406                 switch ($type) {
1407                         case self::ACCOUNT_TYPE_ORGANISATION:
1408                                 $account_type = L10n::t("Organisation");
1409                                 break;
1410
1411                         case self::ACCOUNT_TYPE_NEWS:
1412                                 $account_type = L10n::t('News');
1413                                 break;
1414
1415                         case self::ACCOUNT_TYPE_COMMUNITY:
1416                                 $account_type = L10n::t("Forum");
1417                                 break;
1418
1419                         default:
1420                                 $account_type = "";
1421                                 break;
1422                 }
1423
1424                 return $account_type;
1425         }
1426
1427         /**
1428          * @brief Blocks a contact
1429          *
1430          * @param int $uid
1431          * @return bool
1432          */
1433         public static function block($uid)
1434         {
1435                 $return = DBA::update('contact', ['blocked' => true], ['id' => $uid]);
1436
1437                 return $return;
1438         }
1439
1440         /**
1441          * @brief Unblocks a contact
1442          *
1443          * @param int $uid
1444          * @return bool
1445          */
1446         public static function unblock($uid)
1447         {
1448                 $return = DBA::update('contact', ['blocked' => false], ['id' => $uid]);
1449
1450                 return $return;
1451         }
1452
1453         /**
1454          * @brief Updates the avatar links in a contact only if needed
1455          *
1456          * @param string $avatar Link to avatar picture
1457          * @param int    $uid    User id of contact owner
1458          * @param int    $cid    Contact id
1459          * @param bool   $force  force picture update
1460          *
1461          * @return array Returns array of the different avatar sizes
1462          */
1463         public static function updateAvatar($avatar, $uid, $cid, $force = false)
1464         {
1465                 $contact = DBA::selectFirst('contact', ['avatar', 'photo', 'thumb', 'micro', 'nurl'], ['id' => $cid]);
1466                 if (!DBA::isResult($contact)) {
1467                         return false;
1468                 } else {
1469                         $data = [$contact["photo"], $contact["thumb"], $contact["micro"]];
1470                 }
1471
1472                 if (($contact["avatar"] != $avatar) || $force) {
1473                         $photos = Photo::importProfilePhoto($avatar, $uid, $cid, true);
1474
1475                         if ($photos) {
1476                                 DBA::update(
1477                                         'contact',
1478                                         ['avatar' => $avatar, 'photo' => $photos[0], 'thumb' => $photos[1], 'micro' => $photos[2], 'avatar-date' => DateTimeFormat::utcNow()],
1479                                         ['id' => $cid]
1480                                 );
1481
1482                                 // Update the public contact (contact id = 0)
1483                                 if ($uid != 0) {
1484                                         $pcontact = DBA::selectFirst('contact', ['id'], ['nurl' => $contact['nurl'], 'uid' => 0]);
1485                                         if (DBA::isResult($pcontact)) {
1486                                                 self::updateAvatar($avatar, 0, $pcontact['id'], $force);
1487                                         }
1488                                 }
1489
1490                                 return $photos;
1491                         }
1492                 }
1493
1494                 return $data;
1495         }
1496
1497         /**
1498          * @param integer $id      contact id
1499          * @param string  $network Optional network we are probing for
1500          * @return boolean
1501          */
1502         public static function updateFromProbe($id, $network = '')
1503         {
1504                 /*
1505                   Warning: Never ever fetch the public key via Probe::uri and write it into the contacts.
1506                   This will reliably kill your communication with Friendica contacts.
1507                  */
1508
1509                 $fields = ['url', 'nurl', 'addr', 'alias', 'batch', 'notify', 'poll', 'poco', 'network'];
1510                 $contact = DBA::selectFirst('contact', $fields, ['id' => $id]);
1511                 if (!DBA::isResult($contact)) {
1512                         return false;
1513                 }
1514
1515                 $ret = Probe::uri($contact["url"], $network);
1516
1517                 // If Probe::uri fails the network code will be different
1518                 if (($ret["network"] != $contact["network"]) && !in_array($ret["network"], [Protocol::ACTIVITYPUB, $network])) {
1519                         return false;
1520                 }
1521
1522                 $update = false;
1523
1524                 // make sure to not overwrite existing values with blank entries
1525                 foreach ($ret as $key => $val) {
1526                         if (isset($contact[$key]) && ($contact[$key] != "") && ($val == "")) {
1527                                 $ret[$key] = $contact[$key];
1528                         }
1529
1530                         if (isset($contact[$key]) && ($ret[$key] != $contact[$key])) {
1531                                 $update = true;
1532                         }
1533                 }
1534
1535                 if (!$update) {
1536                         return true;
1537                 }
1538
1539                 DBA::update(
1540                         'contact', [
1541                                 'url'     => $ret['url'],
1542                                 'nurl'    => normalise_link($ret['url']),
1543                                 'network' => $ret['network'],
1544                                 'addr'    => $ret['addr'],
1545                                 'alias'   => $ret['alias'],
1546                                 'batch'   => $ret['batch'],
1547                                 'notify'  => $ret['notify'],
1548                                 'poll'    => $ret['poll'],
1549                                 'poco'    => $ret['poco']
1550                         ],
1551                         ['id' => $id]
1552                 );
1553
1554                 // Update the corresponding gcontact entry
1555                 PortableContact::lastUpdated($ret["url"]);
1556
1557                 return true;
1558         }
1559
1560         /**
1561          * Takes a $uid and a url/handle and adds a new contact
1562          * Currently if the contact is DFRN, interactive needs to be true, to redirect to the
1563          * dfrn_request page.
1564          *
1565          * Otherwise this can be used to bulk add StatusNet contacts, Twitter contacts, etc.
1566          *
1567          * Returns an array
1568          * $return['success'] boolean true if successful
1569          * $return['message'] error text if success is false.
1570          *
1571          * @brief Takes a $uid and a url/handle and adds a new contact
1572          * @param int    $uid
1573          * @param string $url
1574          * @param bool   $interactive
1575          * @param string $network
1576          * @return boolean|string
1577          */
1578         public static function createFromProbe($uid, $url, $interactive = false, $network = '')
1579         {
1580                 $result = ['cid' => -1, 'success' => false, 'message' => ''];
1581
1582                 $a = get_app();
1583
1584                 // remove ajax junk, e.g. Twitter
1585                 $url = str_replace('/#!/', '/', $url);
1586
1587                 if (!Network::isUrlAllowed($url)) {
1588                         $result['message'] = L10n::t('Disallowed profile URL.');
1589                         return $result;
1590                 }
1591
1592                 if (Network::isUrlBlocked($url)) {
1593                         $result['message'] = L10n::t('Blocked domain');
1594                         return $result;
1595                 }
1596
1597                 if (!$url) {
1598                         $result['message'] = L10n::t('Connect URL missing.');
1599                         return $result;
1600                 }
1601
1602                 $arr = ['url' => $url, 'contact' => []];
1603
1604                 Addon::callHooks('follow', $arr);
1605
1606                 if (empty($arr)) {
1607                         $result['message'] = L10n::t('The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.');
1608                         return $result;
1609                 }
1610
1611                 if (x($arr['contact'], 'name')) {
1612                         $ret = $arr['contact'];
1613                 } else {
1614                         $ret = Probe::uri($url, $network, $uid, false);
1615                 }
1616
1617                 if (($network != '') && ($ret['network'] != $network)) {
1618                         logger('Expected network ' . $network . ' does not match actual network ' . $ret['network']);
1619                         return $result;
1620                 }
1621
1622                 // check if we already have a contact
1623                 // the poll url is more reliable than the profile url, as we may have
1624                 // indirect links or webfinger links
1625
1626                 $condition = ['uid' => $uid, 'poll' => [$ret['poll'], normalise_link($ret['poll'])], 'network' => $ret['network'], 'pending' => false];
1627                 $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
1628                 if (!DBA::isResult($contact)) {
1629                         $condition = ['uid' => $uid, 'nurl' => normalise_link($url), 'network' => $ret['network'], 'pending' => false];
1630                         $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
1631                 }
1632
1633                 if (($ret['network'] === Protocol::DFRN) && !DBA::isResult($contact)) {
1634                         if ($interactive) {
1635                                 if (strlen($a->getURLPath())) {
1636                                         $myaddr = bin2hex(System::baseUrl() . '/profile/' . $a->user['nickname']);
1637                                 } else {
1638                                         $myaddr = bin2hex($a->user['nickname'] . '@' . $a->getHostName());
1639                                 }
1640
1641                                 goaway($ret['request'] . "&addr=$myaddr");
1642
1643                                 // NOTREACHED
1644                         }
1645                 } elseif (Config::get('system', 'dfrn_only') && ($ret['network'] != Protocol::DFRN)) {
1646                         $result['message'] = L10n::t('This site is not configured to allow communications with other networks.') . EOL;
1647                         $result['message'] != L10n::t('No compatible communication protocols or feeds were discovered.') . EOL;
1648                         return $result;
1649                 }
1650
1651                 // This extra param just confuses things, remove it
1652                 if ($ret['network'] === Protocol::DIASPORA) {
1653                         $ret['url'] = str_replace('?absolute=true', '', $ret['url']);
1654                 }
1655
1656                 // do we have enough information?
1657
1658                 if (!((x($ret, 'name')) && (x($ret, 'poll')) && ((x($ret, 'url')) || (x($ret, 'addr'))))) {
1659                         $result['message'] .= L10n::t('The profile address specified does not provide adequate information.') . EOL;
1660                         if (!x($ret, 'poll')) {
1661                                 $result['message'] .= L10n::t('No compatible communication protocols or feeds were discovered.') . EOL;
1662                         }
1663                         if (!x($ret, 'name')) {
1664                                 $result['message'] .= L10n::t('An author or name was not found.') . EOL;
1665                         }
1666                         if (!x($ret, 'url')) {
1667                                 $result['message'] .= L10n::t('No browser URL could be matched to this address.') . EOL;
1668                         }
1669                         if (strpos($url, '@') !== false) {
1670                                 $result['message'] .= L10n::t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
1671                                 $result['message'] .= L10n::t('Use mailto: in front of address to force email check.') . EOL;
1672                         }
1673                         return $result;
1674                 }
1675
1676                 if ($ret['network'] === Protocol::OSTATUS && Config::get('system', 'ostatus_disabled')) {
1677                         $result['message'] .= L10n::t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
1678                         $ret['notify'] = '';
1679                 }
1680
1681                 if (!$ret['notify']) {
1682                         $result['message'] .= L10n::t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
1683                 }
1684
1685                 $writeable = ((($ret['network'] === Protocol::OSTATUS) && ($ret['notify'])) ? 1 : 0);
1686
1687                 $subhub = (($ret['network'] === Protocol::OSTATUS) ? true : false);
1688
1689                 $hidden = (($ret['network'] === Protocol::MAIL) ? 1 : 0);
1690
1691                 if (in_array($ret['network'], [Protocol::MAIL, Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
1692                         $writeable = 1;
1693                 }
1694
1695                 if (DBA::isResult($contact)) {
1696                         // update contact
1697                         $new_relation = (($contact['rel'] == self::FOLLOWER) ? self::FRIEND : self::SHARING);
1698
1699                         $fields = ['rel' => $new_relation, 'subhub' => $subhub, 'readonly' => false];
1700                         DBA::update('contact', $fields, ['id' => $contact['id']]);
1701                 } else {
1702                         $new_relation = (in_array($ret['network'], [Protocol::MAIL]) ? self::FRIEND : self::SHARING);
1703
1704                         // create contact record
1705                         DBA::insert('contact', [
1706                                 'uid'     => $uid,
1707                                 'created' => DateTimeFormat::utcNow(),
1708                                 'url'     => $ret['url'],
1709                                 'nurl'    => normalise_link($ret['url']),
1710                                 'addr'    => $ret['addr'],
1711                                 'alias'   => $ret['alias'],
1712                                 'batch'   => $ret['batch'],
1713                                 'notify'  => $ret['notify'],
1714                                 'poll'    => $ret['poll'],
1715                                 'poco'    => $ret['poco'],
1716                                 'name'    => $ret['name'],
1717                                 'nick'    => $ret['nick'],
1718                                 'network' => $ret['network'],
1719                                 'pubkey'  => $ret['pubkey'],
1720                                 'rel'     => $new_relation,
1721                                 'priority'=> $ret['priority'],
1722                                 'writable'=> $writeable,
1723                                 'hidden'  => $hidden,
1724                                 'blocked' => 0,
1725                                 'readonly'=> 0,
1726                                 'pending' => 0,
1727                                 'subhub'  => $subhub
1728                         ]);
1729                 }
1730
1731                 $contact = DBA::selectFirst('contact', [], ['url' => $ret['url'], 'network' => $ret['network'], 'uid' => $uid]);
1732                 if (!DBA::isResult($contact)) {
1733                         $result['message'] .= L10n::t('Unable to retrieve contact information.') . EOL;
1734                         return $result;
1735                 }
1736
1737                 $contact_id = $contact['id'];
1738                 $result['cid'] = $contact_id;
1739
1740                 Group::addMember(User::getDefaultGroup($uid, $contact["network"]), $contact_id);
1741
1742                 // Update the avatar
1743                 self::updateAvatar($ret['photo'], $uid, $contact_id);
1744
1745                 // pull feed and consume it, which should subscribe to the hub.
1746
1747                 Worker::add(PRIORITY_HIGH, "OnePoll", $contact_id, "force");
1748
1749                 $owner = User::getOwnerDataById($uid);
1750
1751                 if (DBA::isResult($owner)) {
1752                         if (in_array($contact['network'], [Protocol::OSTATUS, Protocol::DFRN])) {
1753                                 // create a follow slap
1754                                 $item = [];
1755                                 $item['verb'] = ACTIVITY_FOLLOW;
1756                                 $item['follow'] = $contact["url"];
1757                                 $item['body'] = '';
1758                                 $item['title'] = '';
1759                                 $item['guid'] = '';
1760                                 $item['tag'] = '';
1761                                 $item['attach'] = '';
1762
1763                                 $slap = OStatus::salmon($item, $owner);
1764
1765                                 if (!empty($contact['notify'])) {
1766                                         Salmon::slapper($owner, $contact['notify'], $slap);
1767                                 }
1768                         } elseif ($contact['network'] == Protocol::DIASPORA) {
1769                                 $ret = Diaspora::sendShare($a->user, $contact);
1770                                 logger('share returns: ' . $ret);
1771                         } elseif ($contact['network'] == Protocol::ACTIVITYPUB) {
1772                                 $ret = ActivityPub\Transmitter::sendActivity('Follow', $contact['url'], $uid);
1773                                 logger('Follow returns: ' . $ret);
1774                         }
1775                 }
1776
1777                 $result['success'] = true;
1778                 return $result;
1779         }
1780
1781         /**
1782          * @brief Updated contact's SSL policy
1783          *
1784          * @param array  $contact Contact array
1785          * @param string $new_policy New policy, valid: self,full
1786          *
1787          * @return array Contact array with updated values
1788          */
1789         public static function updateSslPolicy(array $contact, $new_policy)
1790         {
1791                 $ssl_changed = false;
1792                 if ((intval($new_policy) == SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'], 'https:')) {
1793                         $ssl_changed = true;
1794                         $contact['url']     =   str_replace('https:', 'http:', $contact['url']);
1795                         $contact['request'] =   str_replace('https:', 'http:', $contact['request']);
1796                         $contact['notify']  =   str_replace('https:', 'http:', $contact['notify']);
1797                         $contact['poll']    =   str_replace('https:', 'http:', $contact['poll']);
1798                         $contact['confirm'] =   str_replace('https:', 'http:', $contact['confirm']);
1799                         $contact['poco']    =   str_replace('https:', 'http:', $contact['poco']);
1800                 }
1801
1802                 if ((intval($new_policy) == SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'], 'http:')) {
1803                         $ssl_changed = true;
1804                         $contact['url']     =   str_replace('http:', 'https:', $contact['url']);
1805                         $contact['request'] =   str_replace('http:', 'https:', $contact['request']);
1806                         $contact['notify']  =   str_replace('http:', 'https:', $contact['notify']);
1807                         $contact['poll']    =   str_replace('http:', 'https:', $contact['poll']);
1808                         $contact['confirm'] =   str_replace('http:', 'https:', $contact['confirm']);
1809                         $contact['poco']    =   str_replace('http:', 'https:', $contact['poco']);
1810                 }
1811
1812                 if ($ssl_changed) {
1813                         $fields = ['url' => $contact['url'], 'request' => $contact['request'],
1814                                         'notify' => $contact['notify'], 'poll' => $contact['poll'],
1815                                         'confirm' => $contact['confirm'], 'poco' => $contact['poco']];
1816                         DBA::update('contact', $fields, ['id' => $contact['id']]);
1817                 }
1818
1819                 return $contact;
1820         }
1821
1822         public static function addRelationship($importer, $contact, $datarray, $item = '', $sharing = false) {
1823                 // Should always be set
1824                 if (empty($datarray['author-id'])) {
1825                         return;
1826                 }
1827
1828                 $fields = ['url', 'name', 'nick', 'photo', 'network'];
1829                 $pub_contact = DBA::selectFirst('contact', $fields, ['id' => $datarray['author-id']]);
1830                 if (!DBA::isResult($pub_contact)) {
1831                         // Should never happen
1832                         return;
1833                 }
1834
1835                 $url = defaults($datarray, 'author-link', $pub_contact['url']);
1836                 $name = $pub_contact['name'];
1837                 $photo = $pub_contact['photo'];
1838                 $nick = $pub_contact['nick'];
1839                 $network = $pub_contact['network'];
1840
1841                 if (is_array($contact)) {
1842                         if (($contact['rel'] == self::SHARING)
1843                                 || ($sharing && $contact['rel'] == self::FOLLOWER)) {
1844                                 DBA::update('contact', ['rel' => self::FRIEND, 'writable' => true],
1845                                                 ['id' => $contact['id'], 'uid' => $importer['uid']]);
1846                         }
1847
1848                         if ($contact['network'] == Protocol::ACTIVITYPUB) {
1849                                 ActivityPub\Transmitter::sendContactAccept($contact['url'], $contact['hub-verify'], $importer['uid']);
1850                         }
1851
1852                         // send email notification to owner?
1853                 } else {
1854                         if (DBA::exists('contact', ['nurl' => normalise_link($url), 'uid' => $importer['uid'], 'pending' => true])) {
1855                                 logger('ignoring duplicated connection request from pending contact ' . $url);
1856                                 return;
1857                         }
1858                         // create contact record
1859                         q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`,
1860                                 `blocked`, `readonly`, `pending`, `writable`)
1861                                 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1)",
1862                                 intval($importer['uid']),
1863                                 DBA::escape(DateTimeFormat::utcNow()),
1864                                 DBA::escape($url),
1865                                 DBA::escape(normalise_link($url)),
1866                                 DBA::escape($name),
1867                                 DBA::escape($nick),
1868                                 DBA::escape($photo),
1869                                 DBA::escape($network),
1870                                 intval(self::FOLLOWER)
1871                         );
1872
1873                         $contact_record = [
1874                                 'id' => DBA::lastInsertId(),
1875                                 'network' => $network,
1876                                 'name' => $name,
1877                                 'url' => $url,
1878                                 'photo' => $photo
1879                         ];
1880
1881                         Contact::updateAvatar($photo, $importer["uid"], $contact_record["id"], true);
1882
1883                         /// @TODO Encapsulate this into a function/method
1884                         $fields = ['uid', 'username', 'email', 'page-flags', 'notify-flags', 'language'];
1885                         $user = DBA::selectFirst('user', $fields, ['uid' => $importer['uid']]);
1886                         if (DBA::isResult($user) && !in_array($user['page-flags'], [self::PAGE_SOAPBOX, self::PAGE_FREELOVE, self::PAGE_COMMUNITY])) {
1887                                 // create notification
1888                                 $hash = random_string();
1889
1890                                 if (is_array($contact_record)) {
1891                                         DBA::insert('intro', ['uid' => $importer['uid'], 'contact-id' => $contact_record['id'],
1892                                                                 'blocked' => false, 'knowyou' => false,
1893                                                                 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow()]);
1894                                 }
1895
1896                                 Group::addMember(User::getDefaultGroup($importer['uid'], $contact_record["network"]), $contact_record['id']);
1897
1898                                 if (($user['notify-flags'] & NOTIFY_INTRO) &&
1899                                         in_array($user['page-flags'], [self::PAGE_NORMAL])) {
1900
1901                                         notification([
1902                                                 'type'         => NOTIFY_INTRO,
1903                                                 'notify_flags' => $user['notify-flags'],
1904                                                 'language'     => $user['language'],
1905                                                 'to_name'      => $user['username'],
1906                                                 'to_email'     => $user['email'],
1907                                                 'uid'          => $user['uid'],
1908                                                 'link'         => System::baseUrl() . '/notifications/intro',
1909                                                 'source_name'  => ((strlen(stripslashes($contact_record['name']))) ? stripslashes($contact_record['name']) : L10n::t('[Name Withheld]')),
1910                                                 'source_link'  => $contact_record['url'],
1911                                                 'source_photo' => $contact_record['photo'],
1912                                                 'verb'         => ($sharing ? ACTIVITY_FRIEND : ACTIVITY_FOLLOW),
1913                                                 'otype'        => 'intro'
1914                                         ]);
1915
1916                                 }
1917                         } elseif (DBA::isResult($user) && in_array($user['page-flags'], [self::PAGE_SOAPBOX, self::PAGE_FREELOVE, self::PAGE_COMMUNITY])) {
1918                                 $condition = ['uid' => $importer['uid'], 'url' => $url, 'pending' => true];
1919                                 DBA::update('contact', ['pending' => false], $condition);
1920
1921                                 $contact = DBA::selectFirst('contact', ['url', 'network', 'hub-verify'], ['id' => $contact_record['id']]);
1922
1923                                 if ($contact['network'] == Protocol::ACTIVITYPUB) {
1924                                         ActivityPub\Transmitter::sendContactAccept($contact['url'], $contact['hub-verify'], $importer['uid']);
1925                                 }
1926                         }
1927                 }
1928         }
1929
1930         public static function removeFollower($importer, $contact, array $datarray = [], $item = "")
1931         {
1932                 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::SHARING)) {
1933                         DBA::update('contact', ['rel' => self::SHARING], ['id' => $contact['id']]);
1934                 } else {
1935                         Contact::remove($contact['id']);
1936                 }
1937         }
1938
1939         public static function removeSharer($importer, $contact, array $datarray = [], $item = "")
1940         {
1941                 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::FOLLOWER)) {
1942                         DBA::update('contact', ['rel' => self::FOLLOWER], ['id' => $contact['id']]);
1943                 } else {
1944                         Contact::remove($contact['id']);
1945                 }
1946         }
1947
1948         /**
1949          * @brief Create a birthday event.
1950          *
1951          * Update the year and the birthday.
1952          */
1953         public static function updateBirthdays()
1954         {
1955                 // This only handles foreign or alien networks where a birthday has been provided.
1956                 // In-network birthdays are handled within local_delivery
1957
1958                 $r = q("SELECT * FROM `contact` WHERE `bd` != '' AND `bd` > '0001-01-01' AND SUBSTRING(`bd`, 1, 4) != `bdyear` ");
1959                 if (DBA::isResult($r)) {
1960                         foreach ($r as $rr) {
1961                                 logger('update_contact_birthday: ' . $rr['bd']);
1962
1963                                 $nextbd = DateTimeFormat::utcNow('Y') . substr($rr['bd'], 4);
1964
1965                                 /*
1966                                  * Add new birthday event for this person
1967                                  *
1968                                  * $bdtext is just a readable placeholder in case the event is shared
1969                                  * with others. We will replace it during presentation to our $importer
1970                                  * to contain a sparkle link and perhaps a photo.
1971                                  */
1972
1973                                 // Check for duplicates
1974                                 $condition = ['uid' => $rr['uid'], 'cid' => $rr['id'],
1975                                         'start' => DateTimeFormat::utc($nextbd), 'type' => 'birthday'];
1976                                 if (DBA::exists('event', $condition)) {
1977                                         continue;
1978                                 }
1979
1980                                 $bdtext = L10n::t('%s\'s birthday', $rr['name']);
1981                                 $bdtext2 = L10n::t('Happy Birthday %s', ' [url=' . $rr['url'] . ']' . $rr['name'] . '[/url]');
1982
1983                                 q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`summary`,`desc`,`type`,`adjust`)
1984                                 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%d' ) ", intval($rr['uid']), intval($rr['id']),
1985                                         DBA::escape(DateTimeFormat::utcNow()), DBA::escape(DateTimeFormat::utcNow()), DBA::escape(DateTimeFormat::utc($nextbd)),
1986                                         DBA::escape(DateTimeFormat::utc($nextbd . ' + 1 day ')), DBA::escape($bdtext), DBA::escape($bdtext2), DBA::escape('birthday'),
1987                                         intval(0)
1988                                 );
1989
1990                                 // update bdyear
1991                                 q("UPDATE `contact` SET `bdyear` = '%s', `bd` = '%s' WHERE `uid` = %d AND `id` = %d", DBA::escape(substr($nextbd, 0, 4)),
1992                                         DBA::escape($nextbd), intval($rr['uid']), intval($rr['id'])
1993                                 );
1994                         }
1995                 }
1996         }
1997
1998         /**
1999          * Remove the unavailable contact ids from the provided list
2000          *
2001          * @param array $contact_ids Contact id list
2002          */
2003         public static function pruneUnavailable(array &$contact_ids)
2004         {
2005                 if (empty($contact_ids)) {
2006                         return;
2007                 }
2008
2009                 $str = DBA::escape(implode(',', $contact_ids));
2010
2011                 $stmt = DBA::p("SELECT `id` FROM `contact` WHERE `id` IN ( " . $str . ") AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0");
2012
2013                 $return = [];
2014                 while($contact = DBA::fetch($stmt)) {
2015                         $return[] = $contact['id'];
2016                 }
2017
2018                 DBA::close($stmt);
2019
2020                 $contact_ids = $return;
2021         }
2022
2023         /**
2024          * @brief Returns a magic link to authenticate remote visitors
2025          *
2026          * @param string $contact_url The address of the target contact profile
2027          * @param integer $url An url that we will be redirected to after the authentication
2028          *
2029          * @return string with "redir" link
2030          */
2031         public static function magicLink($contact_url, $url = '')
2032         {
2033                 $cid = self::getIdForURL($contact_url, 0, true);
2034                 if (empty($cid)) {
2035                         return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2036                 }
2037
2038                 return self::magicLinkbyId($cid, $url);
2039         }
2040
2041         /**
2042          * @brief Returns a magic link to authenticate remote visitors
2043          *
2044          * @param integer $cid The contact id of the target contact profile
2045          * @param integer $url An url that we will be redirected to after the authentication
2046          *
2047          * @return string with "redir" link
2048          */
2049         public static function magicLinkbyId($cid, $url = '')
2050         {
2051                 $contact = DBA::selectFirst('contact', ['id', 'network', 'url', 'uid'], ['id' => $cid]);
2052
2053                 return self::magicLinkbyContact($contact, $url);
2054         }
2055
2056         /**
2057          * @brief Returns a magic link to authenticate remote visitors
2058          *
2059          * @param array $contact The contact array with "uid", "network" and "url"
2060          * @param integer $url An url that we will be redirected to after the authentication
2061          *
2062          * @return string with "redir" link
2063          */
2064         public static function magicLinkbyContact($contact, $url = '')
2065         {
2066                 if ($contact['network'] != Protocol::DFRN) {
2067                         return $url ?: $contact['url']; // Equivalent to ($url != '') ? $url : $contact['url'];
2068                 }
2069
2070                 // Only redirections to the same host do make sense
2071                 if (($url != '') && (parse_url($url, PHP_URL_HOST) != parse_url($contact['url'], PHP_URL_HOST))) {
2072                         return $url;
2073                 }
2074
2075                 if ($contact['uid'] != 0) {
2076                         return self::magicLink($contact['url'], $url);
2077                 }
2078
2079                 $redirect = 'redir/' . $contact['id'];
2080
2081                 if ($url != '') {
2082                         $redirect .= '?url=' . $url;
2083                 }
2084
2085                 return $redirect;
2086         }
2087 }