]> git.mxchange.org Git - friendica.git/blob - src/Model/Contact.php
Move $pager and $page_offset out of App
[friendica.git] / src / Model / Contact.php
1 <?php
2 /**
3  * @file src/Model/Contact.php
4  */
5 namespace Friendica\Model;
6
7 use Friendica\BaseObject;
8 use Friendica\Content\Pager;
9 use Friendica\Core\Addon;
10 use Friendica\Core\Config;
11 use Friendica\Core\L10n;
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\DFRN;
21 use Friendica\Protocol\Diaspora;
22 use Friendica\Protocol\OStatus;
23 use Friendica\Protocol\PortableContact;
24 use Friendica\Protocol\Salmon;
25 use Friendica\Util\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-300.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'] <= DBA::NULL_DATETIME) {
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']), DBA::NULL_DATETIME]);
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'], DBA::NULL_DATETIME];
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' => DBA::NULL_DATETIME, '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() . '/contact/' . $contact['id'];
927
928                 $posts_link = System::baseUrl() . '/contact/' . $contact['id'] . '/conversations';
929
930                 if (!$contact['self']) {
931                         $contact_drop_link = System::baseUrl() . '/contact/' . $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          * @param boolean $in_loop   Internally used variable to prevent an endless loop
1025          *
1026          * @return integer Contact ID
1027          */
1028         public static function getIdForURL($url, $uid = 0, $no_update = false, $default = [], $in_loop = false)
1029         {
1030                 logger("Get contact data for url " . $url . " and user " . $uid . " - " . System::callstack(), LOGGER_DEBUG);
1031
1032                 $contact_id = 0;
1033
1034                 if ($url == '') {
1035                         return 0;
1036                 }
1037
1038                 /// @todo Verify if we can't use Contact::getDetailsByUrl instead of the following
1039                 // We first try the nurl (http://server.tld/nick), most common case
1040                 $contact = DBA::selectFirst('contact', ['id', 'avatar', 'avatar-date'], ['nurl' => normalise_link($url), 'uid' => $uid, 'deleted' => false]);
1041
1042                 // Then the addr (nick@server.tld)
1043                 if (!DBA::isResult($contact)) {
1044                         $contact = DBA::selectFirst('contact', ['id', 'avatar', 'avatar-date'], ['addr' => $url, 'uid' => $uid, 'deleted' => false]);
1045                 }
1046
1047                 // Then the alias (which could be anything)
1048                 if (!DBA::isResult($contact)) {
1049                         // The link could be provided as http although we stored it as https
1050                         $ssl_url = str_replace('http://', 'https://', $url);
1051                         $condition = ['`alias` IN (?, ?, ?) AND `uid` = ? AND NOT `deleted`', $url, normalise_link($url), $ssl_url, $uid];
1052                         $contact = DBA::selectFirst('contact', ['id', 'avatar', 'avatar-date'], $condition);
1053                 }
1054
1055                 if (DBA::isResult($contact)) {
1056                         $contact_id = $contact["id"];
1057
1058                         // Update the contact every 7 days
1059                         $update_contact = ($contact['avatar-date'] < DateTimeFormat::utc('now -7 days'));
1060
1061                         // We force the update if the avatar is empty
1062                         if (!x($contact, 'avatar')) {
1063                                 $update_contact = true;
1064                         }
1065                         if (!$update_contact || $no_update) {
1066                                 return $contact_id;
1067                         }
1068                 } elseif ($uid != 0) {
1069                         // Non-existing user-specific contact, exiting
1070                         return 0;
1071                 }
1072
1073                 // When we don't want to update, we look if some of our users already know this contact
1074                 if ($no_update) {
1075                         $fields = ['url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1076                                 'photo', 'keywords', 'location', 'about', 'network',
1077                                 'priority', 'batch', 'request', 'confirm', 'poco'];
1078                         $data = DBA::selectFirst('contact', $fields, ['nurl' => normalise_link($url)]);
1079
1080                         if (DBA::isResult($data)) {
1081                                 // For security reasons we don't fetch key data from our users
1082                                 $data["pubkey"] = '';
1083                         }
1084                 } else {
1085                         $data = [];
1086                 }
1087
1088                 if (empty($data)) {
1089                         $data = Probe::uri($url, "", $uid);
1090
1091                         // Ensure that there is a gserver entry
1092                         if (!empty($data['baseurl']) && ($data['network'] != Protocol::PHANTOM)) {
1093                                 PortableContact::checkServer($data['baseurl']);
1094                         }
1095                 }
1096
1097                 // Last try in gcontact for unsupported networks
1098                 if (!in_array($data["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::OSTATUS, Protocol::DIASPORA, Protocol::PUMPIO, Protocol::MAIL, Protocol::FEED])) {
1099                         if ($uid != 0) {
1100                                 return 0;
1101                         }
1102
1103                         // Get data from the gcontact table
1104                         $fields = ['name', 'nick', 'url', 'photo', 'addr', 'alias', 'network'];
1105                         $contact = DBA::selectFirst('gcontact', $fields, ['nurl' => normalise_link($url)]);
1106                         if (!DBA::isResult($contact)) {
1107                                 $contact = DBA::selectFirst('contact', $fields, ['nurl' => normalise_link($url)]);
1108                         }
1109
1110                         if (!DBA::isResult($contact)) {
1111                                 $fields = ['url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1112                                         'photo', 'keywords', 'location', 'about', 'network',
1113                                         'priority', 'batch', 'request', 'confirm', 'poco'];
1114                                 $contact = DBA::selectFirst('contact', $fields, ['addr' => $url]);
1115                         }
1116
1117                         if (!DBA::isResult($contact)) {
1118                                 // The link could be provided as http although we stored it as https
1119                                 $ssl_url = str_replace('http://', 'https://', $url);
1120                                 $condition = ['alias' => [$url, normalise_link($url), $ssl_url]];
1121                                 $contact = DBA::selectFirst('contact', $fields, $condition);
1122                         }
1123
1124                         if (!DBA::isResult($contact)) {
1125                                 $fields = ['url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1126                                         'photo', 'network', 'priority', 'batch', 'request', 'confirm'];
1127                                 $condition = ['url' => [$url, normalise_link($url), $ssl_url]];
1128                                 $contact = DBA::selectFirst('fcontact', $fields, $condition);
1129                         }
1130
1131                         if (!empty($default)) {
1132                                 $contact = $default;
1133                         }
1134
1135                         if (!DBA::isResult($contact)) {
1136                                 return 0;
1137                         } else {
1138                                 $data = array_merge($data, $contact);
1139                         }
1140                 }
1141
1142                 if (!$contact_id && ($data["alias"] != '') && ($data["alias"] != $url) && !$in_loop) {
1143                         $contact_id = self::getIdForURL($data["alias"], $uid, true, $default, true);
1144                 }
1145
1146                 $url = $data["url"];
1147                 if (!$contact_id) {
1148                         DBA::insert('contact', [
1149                                 'uid'       => $uid,
1150                                 'created'   => DateTimeFormat::utcNow(),
1151                                 'url'       => $data["url"],
1152                                 'nurl'      => normalise_link($data["url"]),
1153                                 'addr'      => $data["addr"],
1154                                 'alias'     => $data["alias"],
1155                                 'notify'    => $data["notify"],
1156                                 'poll'      => $data["poll"],
1157                                 'name'      => $data["name"],
1158                                 'nick'      => $data["nick"],
1159                                 'photo'     => $data["photo"],
1160                                 'keywords'  => $data["keywords"],
1161                                 'location'  => $data["location"],
1162                                 'about'     => $data["about"],
1163                                 'network'   => $data["network"],
1164                                 'pubkey'    => $data["pubkey"],
1165                                 'rel'       => self::SHARING,
1166                                 'priority'  => $data["priority"],
1167                                 'batch'     => $data["batch"],
1168                                 'request'   => $data["request"],
1169                                 'confirm'   => $data["confirm"],
1170                                 'poco'      => $data["poco"],
1171                                 'name-date' => DateTimeFormat::utcNow(),
1172                                 'uri-date'  => DateTimeFormat::utcNow(),
1173                                 'avatar-date' => DateTimeFormat::utcNow(),
1174                                 'writable'  => 1,
1175                                 'blocked'   => 0,
1176                                 'readonly'  => 0,
1177                                 'pending'   => 0]
1178                         );
1179
1180                         $s = DBA::select('contact', ['id'], ['nurl' => normalise_link($data["url"]), 'uid' => $uid], ['order' => ['id'], 'limit' => 2]);
1181                         $contacts = DBA::toArray($s);
1182                         if (!DBA::isResult($contacts)) {
1183                                 return 0;
1184                         }
1185
1186                         $contact_id = $contacts[0]["id"];
1187
1188                         // Update the newly created contact from data in the gcontact table
1189                         $gcontact = DBA::selectFirst('gcontact', ['location', 'about', 'keywords', 'gender'], ['nurl' => normalise_link($data["url"])]);
1190                         if (DBA::isResult($gcontact)) {
1191                                 // Only use the information when the probing hadn't fetched these values
1192                                 if ($data['keywords'] != '') {
1193                                         unset($gcontact['keywords']);
1194                                 }
1195                                 if ($data['location'] != '') {
1196                                         unset($gcontact['location']);
1197                                 }
1198                                 if ($data['about'] != '') {
1199                                         unset($gcontact['about']);
1200                                 }
1201                                 DBA::update('contact', $gcontact, ['id' => $contact_id]);
1202                         }
1203
1204                         if (count($contacts) > 1 && $uid == 0 && $contact_id != 0 && $data["url"] != "") {
1205                                 DBA::delete('contact', ["`nurl` = ? AND `uid` = 0 AND `id` != ? AND NOT `self`",
1206                                         normalise_link($data["url"]), $contact_id]);
1207                         }
1208                 }
1209
1210                 self::updateAvatar($data["photo"], $uid, $contact_id);
1211
1212                 $fields = ['url', 'nurl', 'addr', 'alias', 'name', 'nick', 'keywords', 'location', 'about', 'avatar-date', 'pubkey'];
1213                 $contact = DBA::selectFirst('contact', $fields, ['id' => $contact_id]);
1214
1215                 // This condition should always be true
1216                 if (!DBA::isResult($contact)) {
1217                         return $contact_id;
1218                 }
1219
1220                 $updated = ['addr' => $data['addr'],
1221                         'alias' => $data['alias'],
1222                         'url' => $data['url'],
1223                         'nurl' => normalise_link($data['url']),
1224                         'name' => $data['name'],
1225                         'nick' => $data['nick']];
1226
1227                 if ($data['keywords'] != '') {
1228                         $updated['keywords'] = $data['keywords'];
1229                 }
1230                 if ($data['location'] != '') {
1231                         $updated['location'] = $data['location'];
1232                 }
1233
1234                 // Update the technical stuff as well - if filled
1235                 if ($data['notify'] != '') {
1236                         $updated['notify'] = $data['notify'];
1237                 }
1238                 if ($data['poll'] != '') {
1239                         $updated['poll'] = $data['poll'];
1240                 }
1241                 if ($data['batch'] != '') {
1242                         $updated['batch'] = $data['batch'];
1243                 }
1244                 if ($data['request'] != '') {
1245                         $updated['request'] = $data['request'];
1246                 }
1247                 if ($data['confirm'] != '') {
1248                         $updated['confirm'] = $data['confirm'];
1249                 }
1250                 if ($data['poco'] != '') {
1251                         $updated['poco'] = $data['poco'];
1252                 }
1253
1254                 // Only fill the pubkey if it had been empty before. We have to prevent identity theft.
1255                 if (empty($contact['pubkey'])) {
1256                         $updated['pubkey'] = $data['pubkey'];
1257                 }
1258
1259                 if (($data["addr"] != $contact["addr"]) || ($data["alias"] != $contact["alias"])) {
1260                         $updated['uri-date'] = DateTimeFormat::utcNow();
1261                 }
1262                 if (($data["name"] != $contact["name"]) || ($data["nick"] != $contact["nick"])) {
1263                         $updated['name-date'] = DateTimeFormat::utcNow();
1264                 }
1265
1266                 $updated['avatar-date'] = DateTimeFormat::utcNow();
1267
1268                 DBA::update('contact', $updated, ['id' => $contact_id], $contact);
1269
1270                 return $contact_id;
1271         }
1272
1273         /**
1274          * @brief Checks if the contact is blocked
1275          *
1276          * @param int $cid contact id
1277          *
1278          * @return boolean Is the contact blocked?
1279          */
1280         public static function isBlocked($cid)
1281         {
1282                 if ($cid == 0) {
1283                         return false;
1284                 }
1285
1286                 $blocked = DBA::selectFirst('contact', ['blocked'], ['id' => $cid]);
1287                 if (!DBA::isResult($blocked)) {
1288                         return false;
1289                 }
1290                 return (bool) $blocked['blocked'];
1291         }
1292
1293         /**
1294          * @brief Checks if the contact is hidden
1295          *
1296          * @param int $cid contact id
1297          *
1298          * @return boolean Is the contact hidden?
1299          */
1300         public static function isHidden($cid)
1301         {
1302                 if ($cid == 0) {
1303                         return false;
1304                 }
1305
1306                 $hidden = DBA::selectFirst('contact', ['hidden'], ['id' => $cid]);
1307                 if (!DBA::isResult($hidden)) {
1308                         return false;
1309                 }
1310                 return (bool) $hidden['hidden'];
1311         }
1312
1313         /**
1314          * @brief Returns posts from a given contact url
1315          *
1316          * @param string $contact_url Contact URL
1317          *
1318          * @return string posts in HTML
1319          */
1320         public static function getPostsFromUrl($contact_url, $thread_mode = false, $update = 0)
1321         {
1322                 $a = self::getApp();
1323
1324                 require_once 'include/conversation.php';
1325
1326                 $cid = Self::getIdForURL($contact_url);
1327
1328                 $contact = DBA::selectFirst('contact', ['contact-type', 'network'], ['id' => $cid]);
1329                 if (!DBA::isResult($contact)) {
1330                         return '';
1331                 }
1332
1333                 if (in_array($contact["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, ""])) {
1334                         $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = ? AND NOT `item`.`global`))";
1335                 } else {
1336                         $sql = "`item`.`uid` = ?";
1337                 }
1338
1339                 $contact_field = ($contact["contact-type"] == self::ACCOUNT_TYPE_COMMUNITY ? 'owner-id' : 'author-id');
1340
1341                 if ($thread_mode) {
1342                         $condition = ["`$contact_field` = ? AND `gravity` = ? AND " . $sql,
1343                                 $cid, GRAVITY_PARENT, local_user()];
1344                 } else {
1345                         $condition = ["`$contact_field` = ? AND `gravity` IN (?, ?) AND " . $sql,
1346                                 $cid, GRAVITY_PARENT, GRAVITY_COMMENT, local_user()];
1347                 }
1348
1349                 $pager = new Pager($a->query_string);
1350
1351                 $params = ['order' => ['created' => true],
1352                         'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
1353
1354                 if ($thread_mode) {
1355                         $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params);
1356
1357                         $items = Item::inArray($r);
1358
1359                         $o = conversation($a, $items, $pager, 'contacts', $update);
1360                 } else {
1361                         $r = Item::selectForUser(local_user(), [], $condition, $params);
1362
1363                         $items = Item::inArray($r);
1364
1365                         $o = conversation($a, $items, $pager, 'contact-posts', false);
1366                 }
1367
1368                 if (!$update) {
1369                         $o .= $pager->renderMinimal(count($items));
1370                 }
1371
1372                 return $o;
1373         }
1374
1375         /**
1376          * @brief Returns the account type name
1377          *
1378          * The function can be called with either the user or the contact array
1379          *
1380          * @param array $contact contact or user array
1381          * @return string
1382          */
1383         public static function getAccountType(array $contact)
1384         {
1385                 // There are several fields that indicate that the contact or user is a forum
1386                 // "page-flags" is a field in the user table,
1387                 // "forum" and "prv" are used in the contact table. They stand for self::PAGE_COMMUNITY and self::PAGE_PRVGROUP.
1388                 // "community" is used in the gcontact table and is true if the contact is self::PAGE_COMMUNITY or self::PAGE_PRVGROUP.
1389                 if ((isset($contact['page-flags']) && (intval($contact['page-flags']) == self::PAGE_COMMUNITY))
1390                         || (isset($contact['page-flags']) && (intval($contact['page-flags']) == self::PAGE_PRVGROUP))
1391                         || (isset($contact['forum']) && intval($contact['forum']))
1392                         || (isset($contact['prv']) && intval($contact['prv']))
1393                         || (isset($contact['community']) && intval($contact['community']))
1394                 ) {
1395                         $type = self::ACCOUNT_TYPE_COMMUNITY;
1396                 } else {
1397                         $type = self::ACCOUNT_TYPE_PERSON;
1398                 }
1399
1400                 // The "contact-type" (contact table) and "account-type" (user table) are more general then the chaos from above.
1401                 if (isset($contact["contact-type"])) {
1402                         $type = $contact["contact-type"];
1403                 }
1404
1405                 if (isset($contact["account-type"])) {
1406                         $type = $contact["account-type"];
1407                 }
1408
1409                 switch ($type) {
1410                         case self::ACCOUNT_TYPE_ORGANISATION:
1411                                 $account_type = L10n::t("Organisation");
1412                                 break;
1413
1414                         case self::ACCOUNT_TYPE_NEWS:
1415                                 $account_type = L10n::t('News');
1416                                 break;
1417
1418                         case self::ACCOUNT_TYPE_COMMUNITY:
1419                                 $account_type = L10n::t("Forum");
1420                                 break;
1421
1422                         default:
1423                                 $account_type = "";
1424                                 break;
1425                 }
1426
1427                 return $account_type;
1428         }
1429
1430         /**
1431          * @brief Blocks a contact
1432          *
1433          * @param int $uid
1434          * @return bool
1435          */
1436         public static function block($uid)
1437         {
1438                 $return = DBA::update('contact', ['blocked' => true], ['id' => $uid]);
1439
1440                 return $return;
1441         }
1442
1443         /**
1444          * @brief Unblocks a contact
1445          *
1446          * @param int $uid
1447          * @return bool
1448          */
1449         public static function unblock($uid)
1450         {
1451                 $return = DBA::update('contact', ['blocked' => false], ['id' => $uid]);
1452
1453                 return $return;
1454         }
1455
1456         /**
1457          * @brief Updates the avatar links in a contact only if needed
1458          *
1459          * @param string $avatar Link to avatar picture
1460          * @param int    $uid    User id of contact owner
1461          * @param int    $cid    Contact id
1462          * @param bool   $force  force picture update
1463          *
1464          * @return array Returns array of the different avatar sizes
1465          */
1466         public static function updateAvatar($avatar, $uid, $cid, $force = false)
1467         {
1468                 $contact = DBA::selectFirst('contact', ['avatar', 'photo', 'thumb', 'micro', 'nurl'], ['id' => $cid]);
1469                 if (!DBA::isResult($contact)) {
1470                         return false;
1471                 } else {
1472                         $data = [$contact["photo"], $contact["thumb"], $contact["micro"]];
1473                 }
1474
1475                 if (($contact["avatar"] != $avatar) || $force) {
1476                         $photos = Photo::importProfilePhoto($avatar, $uid, $cid, true);
1477
1478                         if ($photos) {
1479                                 DBA::update(
1480                                         'contact',
1481                                         ['avatar' => $avatar, 'photo' => $photos[0], 'thumb' => $photos[1], 'micro' => $photos[2], 'avatar-date' => DateTimeFormat::utcNow()],
1482                                         ['id' => $cid]
1483                                 );
1484
1485                                 // Update the public contact (contact id = 0)
1486                                 if ($uid != 0) {
1487                                         $pcontact = DBA::selectFirst('contact', ['id'], ['nurl' => $contact['nurl'], 'uid' => 0]);
1488                                         if (DBA::isResult($pcontact)) {
1489                                                 self::updateAvatar($avatar, 0, $pcontact['id'], $force);
1490                                         }
1491                                 }
1492
1493                                 return $photos;
1494                         }
1495                 }
1496
1497                 return $data;
1498         }
1499
1500         /**
1501          * @param integer $id      contact id
1502          * @param string  $network Optional network we are probing for
1503          * @return boolean
1504          */
1505         public static function updateFromProbe($id, $network = '')
1506         {
1507                 /*
1508                   Warning: Never ever fetch the public key via Probe::uri and write it into the contacts.
1509                   This will reliably kill your communication with Friendica contacts.
1510                  */
1511
1512                 $fields = ['url', 'nurl', 'addr', 'alias', 'batch', 'notify', 'poll', 'poco', 'network'];
1513                 $contact = DBA::selectFirst('contact', $fields, ['id' => $id]);
1514                 if (!DBA::isResult($contact)) {
1515                         return false;
1516                 }
1517
1518                 $ret = Probe::uri($contact["url"], $network);
1519
1520                 // If Probe::uri fails the network code will be different
1521                 if (($ret["network"] != $contact["network"]) && !in_array($ret["network"], [Protocol::ACTIVITYPUB, $network])) {
1522                         return false;
1523                 }
1524
1525                 $update = false;
1526
1527                 // make sure to not overwrite existing values with blank entries
1528                 foreach ($ret as $key => $val) {
1529                         if (isset($contact[$key]) && ($contact[$key] != "") && ($val == "")) {
1530                                 $ret[$key] = $contact[$key];
1531                         }
1532
1533                         if (isset($contact[$key]) && ($ret[$key] != $contact[$key])) {
1534                                 $update = true;
1535                         }
1536                 }
1537
1538                 if (!$update) {
1539                         return true;
1540                 }
1541
1542                 DBA::update(
1543                         'contact', [
1544                                 'url'     => $ret['url'],
1545                                 'nurl'    => normalise_link($ret['url']),
1546                                 'network' => $ret['network'],
1547                                 'addr'    => $ret['addr'],
1548                                 'alias'   => $ret['alias'],
1549                                 'batch'   => $ret['batch'],
1550                                 'notify'  => $ret['notify'],
1551                                 'poll'    => $ret['poll'],
1552                                 'poco'    => $ret['poco']
1553                         ],
1554                         ['id' => $id]
1555                 );
1556
1557                 // Update the corresponding gcontact entry
1558                 PortableContact::lastUpdated($ret["url"]);
1559
1560                 return true;
1561         }
1562
1563         /**
1564          * Takes a $uid and a url/handle and adds a new contact
1565          * Currently if the contact is DFRN, interactive needs to be true, to redirect to the
1566          * dfrn_request page.
1567          *
1568          * Otherwise this can be used to bulk add StatusNet contacts, Twitter contacts, etc.
1569          *
1570          * Returns an array
1571          * $return['success'] boolean true if successful
1572          * $return['message'] error text if success is false.
1573          *
1574          * @brief Takes a $uid and a url/handle and adds a new contact
1575          * @param int    $uid
1576          * @param string $url
1577          * @param bool   $interactive
1578          * @param string $network
1579          * @return boolean|string
1580          */
1581         public static function createFromProbe($uid, $url, $interactive = false, $network = '')
1582         {
1583                 $result = ['cid' => -1, 'success' => false, 'message' => ''];
1584
1585                 $a = get_app();
1586
1587                 // remove ajax junk, e.g. Twitter
1588                 $url = str_replace('/#!/', '/', $url);
1589
1590                 if (!Network::isUrlAllowed($url)) {
1591                         $result['message'] = L10n::t('Disallowed profile URL.');
1592                         return $result;
1593                 }
1594
1595                 if (Network::isUrlBlocked($url)) {
1596                         $result['message'] = L10n::t('Blocked domain');
1597                         return $result;
1598                 }
1599
1600                 if (!$url) {
1601                         $result['message'] = L10n::t('Connect URL missing.');
1602                         return $result;
1603                 }
1604
1605                 $arr = ['url' => $url, 'contact' => []];
1606
1607                 Addon::callHooks('follow', $arr);
1608
1609                 if (empty($arr)) {
1610                         $result['message'] = L10n::t('The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.');
1611                         return $result;
1612                 }
1613
1614                 if (x($arr['contact'], 'name')) {
1615                         $ret = $arr['contact'];
1616                 } else {
1617                         $ret = Probe::uri($url, $network, $uid, false);
1618                 }
1619
1620                 if (($network != '') && ($ret['network'] != $network)) {
1621                         logger('Expected network ' . $network . ' does not match actual network ' . $ret['network']);
1622                         return $result;
1623                 }
1624
1625                 // check if we already have a contact
1626                 // the poll url is more reliable than the profile url, as we may have
1627                 // indirect links or webfinger links
1628
1629                 $condition = ['uid' => $uid, 'poll' => [$ret['poll'], normalise_link($ret['poll'])], 'network' => $ret['network'], 'pending' => false];
1630                 $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
1631                 if (!DBA::isResult($contact)) {
1632                         $condition = ['uid' => $uid, 'nurl' => normalise_link($url), 'network' => $ret['network'], 'pending' => false];
1633                         $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
1634                 }
1635
1636                 if (($ret['network'] === Protocol::DFRN) && !DBA::isResult($contact)) {
1637                         if ($interactive) {
1638                                 if (strlen($a->getURLPath())) {
1639                                         $myaddr = bin2hex(System::baseUrl() . '/profile/' . $a->user['nickname']);
1640                                 } else {
1641                                         $myaddr = bin2hex($a->user['nickname'] . '@' . $a->getHostName());
1642                                 }
1643
1644                                 $a->internalRedirect($ret['request'] . "&addr=$myaddr");
1645
1646                                 // NOTREACHED
1647                         }
1648                 } elseif (Config::get('system', 'dfrn_only') && ($ret['network'] != Protocol::DFRN)) {
1649                         $result['message'] = L10n::t('This site is not configured to allow communications with other networks.') . EOL;
1650                         $result['message'] != L10n::t('No compatible communication protocols or feeds were discovered.') . EOL;
1651                         return $result;
1652                 }
1653
1654                 // This extra param just confuses things, remove it
1655                 if ($ret['network'] === Protocol::DIASPORA) {
1656                         $ret['url'] = str_replace('?absolute=true', '', $ret['url']);
1657                 }
1658
1659                 // do we have enough information?
1660
1661                 if (!((x($ret, 'name')) && (x($ret, 'poll')) && ((x($ret, 'url')) || (x($ret, 'addr'))))) {
1662                         $result['message'] .= L10n::t('The profile address specified does not provide adequate information.') . EOL;
1663                         if (!x($ret, 'poll')) {
1664                                 $result['message'] .= L10n::t('No compatible communication protocols or feeds were discovered.') . EOL;
1665                         }
1666                         if (!x($ret, 'name')) {
1667                                 $result['message'] .= L10n::t('An author or name was not found.') . EOL;
1668                         }
1669                         if (!x($ret, 'url')) {
1670                                 $result['message'] .= L10n::t('No browser URL could be matched to this address.') . EOL;
1671                         }
1672                         if (strpos($url, '@') !== false) {
1673                                 $result['message'] .= L10n::t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
1674                                 $result['message'] .= L10n::t('Use mailto: in front of address to force email check.') . EOL;
1675                         }
1676                         return $result;
1677                 }
1678
1679                 if ($ret['network'] === Protocol::OSTATUS && Config::get('system', 'ostatus_disabled')) {
1680                         $result['message'] .= L10n::t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
1681                         $ret['notify'] = '';
1682                 }
1683
1684                 if (!$ret['notify']) {
1685                         $result['message'] .= L10n::t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
1686                 }
1687
1688                 $writeable = ((($ret['network'] === Protocol::OSTATUS) && ($ret['notify'])) ? 1 : 0);
1689
1690                 $subhub = (($ret['network'] === Protocol::OSTATUS) ? true : false);
1691
1692                 $hidden = (($ret['network'] === Protocol::MAIL) ? 1 : 0);
1693
1694                 if (in_array($ret['network'], [Protocol::MAIL, Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
1695                         $writeable = 1;
1696                 }
1697
1698                 if (DBA::isResult($contact)) {
1699                         // update contact
1700                         $new_relation = (($contact['rel'] == self::FOLLOWER) ? self::FRIEND : self::SHARING);
1701
1702                         $fields = ['rel' => $new_relation, 'subhub' => $subhub, 'readonly' => false];
1703                         DBA::update('contact', $fields, ['id' => $contact['id']]);
1704                 } else {
1705                         $new_relation = (in_array($ret['network'], [Protocol::MAIL]) ? self::FRIEND : self::SHARING);
1706
1707                         // create contact record
1708                         DBA::insert('contact', [
1709                                 'uid'     => $uid,
1710                                 'created' => DateTimeFormat::utcNow(),
1711                                 'url'     => $ret['url'],
1712                                 'nurl'    => normalise_link($ret['url']),
1713                                 'addr'    => $ret['addr'],
1714                                 'alias'   => $ret['alias'],
1715                                 'batch'   => $ret['batch'],
1716                                 'notify'  => $ret['notify'],
1717                                 'poll'    => $ret['poll'],
1718                                 'poco'    => $ret['poco'],
1719                                 'name'    => $ret['name'],
1720                                 'nick'    => $ret['nick'],
1721                                 'network' => $ret['network'],
1722                                 'pubkey'  => $ret['pubkey'],
1723                                 'rel'     => $new_relation,
1724                                 'priority'=> $ret['priority'],
1725                                 'writable'=> $writeable,
1726                                 'hidden'  => $hidden,
1727                                 'blocked' => 0,
1728                                 'readonly'=> 0,
1729                                 'pending' => 0,
1730                                 'subhub'  => $subhub
1731                         ]);
1732                 }
1733
1734                 $contact = DBA::selectFirst('contact', [], ['url' => $ret['url'], 'network' => $ret['network'], 'uid' => $uid]);
1735                 if (!DBA::isResult($contact)) {
1736                         $result['message'] .= L10n::t('Unable to retrieve contact information.') . EOL;
1737                         return $result;
1738                 }
1739
1740                 $contact_id = $contact['id'];
1741                 $result['cid'] = $contact_id;
1742
1743                 Group::addMember(User::getDefaultGroup($uid, $contact["network"]), $contact_id);
1744
1745                 // Update the avatar
1746                 self::updateAvatar($ret['photo'], $uid, $contact_id);
1747
1748                 // pull feed and consume it, which should subscribe to the hub.
1749
1750                 Worker::add(PRIORITY_HIGH, "OnePoll", $contact_id, "force");
1751
1752                 $owner = User::getOwnerDataById($uid);
1753
1754                 if (DBA::isResult($owner)) {
1755                         if (in_array($contact['network'], [Protocol::OSTATUS, Protocol::DFRN])) {
1756                                 // create a follow slap
1757                                 $item = [];
1758                                 $item['verb'] = ACTIVITY_FOLLOW;
1759                                 $item['follow'] = $contact["url"];
1760                                 $item['body'] = '';
1761                                 $item['title'] = '';
1762                                 $item['guid'] = '';
1763                                 $item['tag'] = '';
1764                                 $item['attach'] = '';
1765
1766                                 $slap = OStatus::salmon($item, $owner);
1767
1768                                 if (!empty($contact['notify'])) {
1769                                         Salmon::slapper($owner, $contact['notify'], $slap);
1770                                 }
1771                         } elseif ($contact['network'] == Protocol::DIASPORA) {
1772                                 $ret = Diaspora::sendShare($a->user, $contact);
1773                                 logger('share returns: ' . $ret);
1774                         } elseif ($contact['network'] == Protocol::ACTIVITYPUB) {
1775                                 $ret = ActivityPub\Transmitter::sendActivity('Follow', $contact['url'], $uid);
1776                                 logger('Follow returns: ' . $ret);
1777                         }
1778                 }
1779
1780                 $result['success'] = true;
1781                 return $result;
1782         }
1783
1784         /**
1785          * @brief Updated contact's SSL policy
1786          *
1787          * @param array  $contact Contact array
1788          * @param string $new_policy New policy, valid: self,full
1789          *
1790          * @return array Contact array with updated values
1791          */
1792         public static function updateSslPolicy(array $contact, $new_policy)
1793         {
1794                 $ssl_changed = false;
1795                 if ((intval($new_policy) == SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'], 'https:')) {
1796                         $ssl_changed = true;
1797                         $contact['url']     =   str_replace('https:', 'http:', $contact['url']);
1798                         $contact['request'] =   str_replace('https:', 'http:', $contact['request']);
1799                         $contact['notify']  =   str_replace('https:', 'http:', $contact['notify']);
1800                         $contact['poll']    =   str_replace('https:', 'http:', $contact['poll']);
1801                         $contact['confirm'] =   str_replace('https:', 'http:', $contact['confirm']);
1802                         $contact['poco']    =   str_replace('https:', 'http:', $contact['poco']);
1803                 }
1804
1805                 if ((intval($new_policy) == SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'], 'http:')) {
1806                         $ssl_changed = true;
1807                         $contact['url']     =   str_replace('http:', 'https:', $contact['url']);
1808                         $contact['request'] =   str_replace('http:', 'https:', $contact['request']);
1809                         $contact['notify']  =   str_replace('http:', 'https:', $contact['notify']);
1810                         $contact['poll']    =   str_replace('http:', 'https:', $contact['poll']);
1811                         $contact['confirm'] =   str_replace('http:', 'https:', $contact['confirm']);
1812                         $contact['poco']    =   str_replace('http:', 'https:', $contact['poco']);
1813                 }
1814
1815                 if ($ssl_changed) {
1816                         $fields = ['url' => $contact['url'], 'request' => $contact['request'],
1817                                         'notify' => $contact['notify'], 'poll' => $contact['poll'],
1818                                         'confirm' => $contact['confirm'], 'poco' => $contact['poco']];
1819                         DBA::update('contact', $fields, ['id' => $contact['id']]);
1820                 }
1821
1822                 return $contact;
1823         }
1824
1825         public static function addRelationship($importer, $contact, $datarray, $item = '', $sharing = false) {
1826                 // Should always be set
1827                 if (empty($datarray['author-id'])) {
1828                         return;
1829                 }
1830
1831                 $fields = ['url', 'name', 'nick', 'photo', 'network'];
1832                 $pub_contact = DBA::selectFirst('contact', $fields, ['id' => $datarray['author-id']]);
1833                 if (!DBA::isResult($pub_contact)) {
1834                         // Should never happen
1835                         return;
1836                 }
1837
1838                 $url = defaults($datarray, 'author-link', $pub_contact['url']);
1839                 $name = $pub_contact['name'];
1840                 $photo = $pub_contact['photo'];
1841                 $nick = $pub_contact['nick'];
1842                 $network = $pub_contact['network'];
1843
1844                 if (is_array($contact)) {
1845                         if (($contact['rel'] == self::SHARING)
1846                                 || ($sharing && $contact['rel'] == self::FOLLOWER)) {
1847                                 DBA::update('contact', ['rel' => self::FRIEND, 'writable' => true],
1848                                                 ['id' => $contact['id'], 'uid' => $importer['uid']]);
1849                         }
1850
1851                         if ($contact['network'] == Protocol::ACTIVITYPUB) {
1852                                 ActivityPub\Transmitter::sendContactAccept($contact['url'], $contact['hub-verify'], $importer['uid']);
1853                         }
1854
1855                         // send email notification to owner?
1856                 } else {
1857                         if (DBA::exists('contact', ['nurl' => normalise_link($url), 'uid' => $importer['uid'], 'pending' => true])) {
1858                                 logger('ignoring duplicated connection request from pending contact ' . $url);
1859                                 return;
1860                         }
1861                         // create contact record
1862                         q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`,
1863                                 `blocked`, `readonly`, `pending`, `writable`)
1864                                 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1)",
1865                                 intval($importer['uid']),
1866                                 DBA::escape(DateTimeFormat::utcNow()),
1867                                 DBA::escape($url),
1868                                 DBA::escape(normalise_link($url)),
1869                                 DBA::escape($name),
1870                                 DBA::escape($nick),
1871                                 DBA::escape($photo),
1872                                 DBA::escape($network),
1873                                 intval(self::FOLLOWER)
1874                         );
1875
1876                         $contact_record = [
1877                                 'id' => DBA::lastInsertId(),
1878                                 'network' => $network,
1879                                 'name' => $name,
1880                                 'url' => $url,
1881                                 'photo' => $photo
1882                         ];
1883
1884                         Contact::updateAvatar($photo, $importer["uid"], $contact_record["id"], true);
1885
1886                         /// @TODO Encapsulate this into a function/method
1887                         $fields = ['uid', 'username', 'email', 'page-flags', 'notify-flags', 'language'];
1888                         $user = DBA::selectFirst('user', $fields, ['uid' => $importer['uid']]);
1889                         if (DBA::isResult($user) && !in_array($user['page-flags'], [self::PAGE_SOAPBOX, self::PAGE_FREELOVE, self::PAGE_COMMUNITY])) {
1890                                 // create notification
1891                                 $hash = random_string();
1892
1893                                 if (is_array($contact_record)) {
1894                                         DBA::insert('intro', ['uid' => $importer['uid'], 'contact-id' => $contact_record['id'],
1895                                                                 'blocked' => false, 'knowyou' => false,
1896                                                                 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow()]);
1897                                 }
1898
1899                                 Group::addMember(User::getDefaultGroup($importer['uid'], $contact_record["network"]), $contact_record['id']);
1900
1901                                 if (($user['notify-flags'] & NOTIFY_INTRO) &&
1902                                         in_array($user['page-flags'], [self::PAGE_NORMAL])) {
1903
1904                                         notification([
1905                                                 'type'         => NOTIFY_INTRO,
1906                                                 'notify_flags' => $user['notify-flags'],
1907                                                 'language'     => $user['language'],
1908                                                 'to_name'      => $user['username'],
1909                                                 'to_email'     => $user['email'],
1910                                                 'uid'          => $user['uid'],
1911                                                 'link'         => System::baseUrl() . '/notifications/intro',
1912                                                 'source_name'  => ((strlen(stripslashes($contact_record['name']))) ? stripslashes($contact_record['name']) : L10n::t('[Name Withheld]')),
1913                                                 'source_link'  => $contact_record['url'],
1914                                                 'source_photo' => $contact_record['photo'],
1915                                                 'verb'         => ($sharing ? ACTIVITY_FRIEND : ACTIVITY_FOLLOW),
1916                                                 'otype'        => 'intro'
1917                                         ]);
1918
1919                                 }
1920                         } elseif (DBA::isResult($user) && in_array($user['page-flags'], [self::PAGE_SOAPBOX, self::PAGE_FREELOVE, self::PAGE_COMMUNITY])) {
1921                                 $condition = ['uid' => $importer['uid'], 'url' => $url, 'pending' => true];
1922                                 DBA::update('contact', ['pending' => false], $condition);
1923
1924                                 $contact = DBA::selectFirst('contact', ['url', 'network', 'hub-verify'], ['id' => $contact_record['id']]);
1925
1926                                 if ($contact['network'] == Protocol::ACTIVITYPUB) {
1927                                         ActivityPub\Transmitter::sendContactAccept($contact['url'], $contact['hub-verify'], $importer['uid']);
1928                                 }
1929                         }
1930                 }
1931         }
1932
1933         public static function removeFollower($importer, $contact, array $datarray = [], $item = "")
1934         {
1935                 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::SHARING)) {
1936                         DBA::update('contact', ['rel' => self::SHARING], ['id' => $contact['id']]);
1937                 } else {
1938                         Contact::remove($contact['id']);
1939                 }
1940         }
1941
1942         public static function removeSharer($importer, $contact, array $datarray = [], $item = "")
1943         {
1944                 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::FOLLOWER)) {
1945                         DBA::update('contact', ['rel' => self::FOLLOWER], ['id' => $contact['id']]);
1946                 } else {
1947                         Contact::remove($contact['id']);
1948                 }
1949         }
1950
1951         /**
1952          * @brief Create a birthday event.
1953          *
1954          * Update the year and the birthday.
1955          */
1956         public static function updateBirthdays()
1957         {
1958                 // This only handles foreign or alien networks where a birthday has been provided.
1959                 // In-network birthdays are handled within local_delivery
1960
1961                 $r = q("SELECT * FROM `contact` WHERE `bd` != '' AND `bd` > '0001-01-01' AND SUBSTRING(`bd`, 1, 4) != `bdyear` ");
1962                 if (DBA::isResult($r)) {
1963                         foreach ($r as $rr) {
1964                                 logger('update_contact_birthday: ' . $rr['bd']);
1965
1966                                 $nextbd = DateTimeFormat::utcNow('Y') . substr($rr['bd'], 4);
1967
1968                                 /*
1969                                  * Add new birthday event for this person
1970                                  *
1971                                  * $bdtext is just a readable placeholder in case the event is shared
1972                                  * with others. We will replace it during presentation to our $importer
1973                                  * to contain a sparkle link and perhaps a photo.
1974                                  */
1975
1976                                 // Check for duplicates
1977                                 $condition = ['uid' => $rr['uid'], 'cid' => $rr['id'],
1978                                         'start' => DateTimeFormat::utc($nextbd), 'type' => 'birthday'];
1979                                 if (DBA::exists('event', $condition)) {
1980                                         continue;
1981                                 }
1982
1983                                 $bdtext = L10n::t('%s\'s birthday', $rr['name']);
1984                                 $bdtext2 = L10n::t('Happy Birthday %s', ' [url=' . $rr['url'] . ']' . $rr['name'] . '[/url]');
1985
1986                                 q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`summary`,`desc`,`type`,`adjust`)
1987                                 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%d' ) ", intval($rr['uid']), intval($rr['id']),
1988                                         DBA::escape(DateTimeFormat::utcNow()), DBA::escape(DateTimeFormat::utcNow()), DBA::escape(DateTimeFormat::utc($nextbd)),
1989                                         DBA::escape(DateTimeFormat::utc($nextbd . ' + 1 day ')), DBA::escape($bdtext), DBA::escape($bdtext2), DBA::escape('birthday'),
1990                                         intval(0)
1991                                 );
1992
1993                                 // update bdyear
1994                                 q("UPDATE `contact` SET `bdyear` = '%s', `bd` = '%s' WHERE `uid` = %d AND `id` = %d", DBA::escape(substr($nextbd, 0, 4)),
1995                                         DBA::escape($nextbd), intval($rr['uid']), intval($rr['id'])
1996                                 );
1997                         }
1998                 }
1999         }
2000
2001         /**
2002          * Remove the unavailable contact ids from the provided list
2003          *
2004          * @param array $contact_ids Contact id list
2005          */
2006         public static function pruneUnavailable(array &$contact_ids)
2007         {
2008                 if (empty($contact_ids)) {
2009                         return;
2010                 }
2011
2012                 $str = DBA::escape(implode(',', $contact_ids));
2013
2014                 $stmt = DBA::p("SELECT `id` FROM `contact` WHERE `id` IN ( " . $str . ") AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0");
2015
2016                 $return = [];
2017                 while($contact = DBA::fetch($stmt)) {
2018                         $return[] = $contact['id'];
2019                 }
2020
2021                 DBA::close($stmt);
2022
2023                 $contact_ids = $return;
2024         }
2025
2026         /**
2027          * @brief Returns a magic link to authenticate remote visitors
2028          *
2029          * @todo check if the return is either a fully qualified URL or a relative path to Friendica basedir
2030          *
2031          * @param string $contact_url The address of the target contact profile
2032          * @param string $url An url that we will be redirected to after the authentication
2033          *
2034          * @return string with "redir" link
2035          */
2036         public static function magicLink($contact_url, $url = '')
2037         {
2038                 $cid = self::getIdForURL($contact_url, 0, true);
2039                 if (empty($cid)) {
2040                         return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2041                 }
2042
2043                 return self::magicLinkbyId($cid, $url);
2044         }
2045
2046         /**
2047          * @brief Returns a magic link to authenticate remote visitors
2048          *
2049          * @param integer $cid The contact id of the target contact profile
2050          * @param integer $url An url that we will be redirected to after the authentication
2051          *
2052          * @return string with "redir" link
2053          */
2054         public static function magicLinkbyId($cid, $url = '')
2055         {
2056                 $contact = DBA::selectFirst('contact', ['id', 'network', 'url', 'uid'], ['id' => $cid]);
2057
2058                 return self::magicLinkbyContact($contact, $url);
2059         }
2060
2061         /**
2062          * @brief Returns a magic link to authenticate remote visitors
2063          *
2064          * @param array $contact The contact array with "uid", "network" and "url"
2065          * @param string $url An url that we will be redirected to after the authentication
2066          *
2067          * @return string with "redir" link
2068          */
2069         public static function magicLinkbyContact($contact, $url = '')
2070         {
2071                 if ($contact['network'] != Protocol::DFRN) {
2072                         return $url ?: $contact['url']; // Equivalent to ($url != '') ? $url : $contact['url'];
2073                 }
2074
2075                 // Only redirections to the same host do make sense
2076                 if (($url != '') && (parse_url($url, PHP_URL_HOST) != parse_url($contact['url'], PHP_URL_HOST))) {
2077                         return $url;
2078                 }
2079
2080                 if ($contact['uid'] != 0) {
2081                         return self::magicLink($contact['url'], $url);
2082                 }
2083
2084                 $redirect = 'redir/' . $contact['id'];
2085
2086                 if ($url != '') {
2087                         $redirect .= '?url=' . $url;
2088                 }
2089
2090                 return $redirect;
2091         }
2092 }