3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Model;
24 use Friendica\App\BaseURL;
25 use Friendica\Content\Pager;
26 use Friendica\Core\Hook;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\Session;
30 use Friendica\Core\System;
31 use Friendica\Core\Worker;
32 use Friendica\Database\DBA;
34 use Friendica\Model\Notify\Type;
35 use Friendica\Network\HTTPException;
36 use Friendica\Network\Probe;
37 use Friendica\Protocol\Activity;
38 use Friendica\Protocol\ActivityPub;
39 use Friendica\Protocol\DFRN;
40 use Friendica\Protocol\Diaspora;
41 use Friendica\Protocol\OStatus;
42 use Friendica\Protocol\Salmon;
43 use Friendica\Util\DateTimeFormat;
44 use Friendica\Util\Images;
45 use Friendica\Util\Network;
46 use Friendica\Util\Proxy;
47 use Friendica\Util\Strings;
50 * functions for interacting with a contact
55 * @deprecated since version 2019.03
56 * @see User::PAGE_FLAGS_NORMAL
58 const PAGE_NORMAL = User::PAGE_FLAGS_NORMAL;
60 * @deprecated since version 2019.03
61 * @see User::PAGE_FLAGS_SOAPBOX
63 const PAGE_SOAPBOX = User::PAGE_FLAGS_SOAPBOX;
65 * @deprecated since version 2019.03
66 * @see User::PAGE_FLAGS_COMMUNITY
68 const PAGE_COMMUNITY = User::PAGE_FLAGS_COMMUNITY;
70 * @deprecated since version 2019.03
71 * @see User::PAGE_FLAGS_FREELOVE
73 const PAGE_FREELOVE = User::PAGE_FLAGS_FREELOVE;
75 * @deprecated since version 2019.03
76 * @see User::PAGE_FLAGS_BLOG
78 const PAGE_BLOG = User::PAGE_FLAGS_BLOG;
80 * @deprecated since version 2019.03
81 * @see User::PAGE_FLAGS_PRVGROUP
83 const PAGE_PRVGROUP = User::PAGE_FLAGS_PRVGROUP;
91 * TYPE_UNKNOWN - the account has been imported from gcontact where this is the default type value
93 * TYPE_PERSON - the account belongs to a person
94 * Associated page types: PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE
96 * TYPE_ORGANISATION - the account belongs to an organisation
97 * Associated page type: PAGE_SOAPBOX
99 * TYPE_NEWS - the account is a news reflector
100 * Associated page type: PAGE_SOAPBOX
102 * TYPE_COMMUNITY - the account is community forum
103 * Associated page types: PAGE_COMMUNITY, PAGE_PRVGROUP
105 * TYPE_RELAY - the account is a relay
106 * This will only be assigned to contacts, not to user accounts
109 const TYPE_UNKNOWN = -1;
110 const TYPE_PERSON = User::ACCOUNT_TYPE_PERSON;
111 const TYPE_ORGANISATION = User::ACCOUNT_TYPE_ORGANISATION;
112 const TYPE_NEWS = User::ACCOUNT_TYPE_NEWS;
113 const TYPE_COMMUNITY = User::ACCOUNT_TYPE_COMMUNITY;
114 const TYPE_RELAY = User::ACCOUNT_TYPE_RELAY;
133 * @param array $fields Array of selected fields, empty for all
134 * @param array $condition Array of fields for condition
135 * @param array $params Array of several parameters
139 public static function selectToArray(array $fields = [], array $condition = [], array $params = [])
141 return DBA::selectToArray('contact', $fields, $condition, $params);
145 * @param array $fields Array of selected fields, empty for all
146 * @param array $condition Array of fields for condition
147 * @param array $params Array of several parameters
151 public static function selectFirst(array $fields = [], array $condition = [], array $params = [])
153 $contact = DBA::selectFirst('contact', $fields, $condition, $params);
159 * Insert a row into the contact table
160 * Important: You can't use DBA::lastInsertId() after this call since it will be set to 0.
162 * @param array $fields field array
163 * @param bool $on_duplicate_update Do an update on a duplicate entry
165 * @return boolean was the insert successful?
168 public static function insert(array $fields, bool $on_duplicate_update = false)
170 $ret = DBA::insert('contact', $fields, $on_duplicate_update);
171 $contact = DBA::selectFirst('contact', ['nurl', 'uid'], ['id' => DBA::lastInsertId()]);
172 if (!DBA::isResult($contact)) {
177 // Search for duplicated contacts and get rid of them
178 self::removeDuplicates($contact['nurl'], $contact['uid']);
184 * @param integer $id Contact ID
185 * @param array $fields Array of selected fields, empty for all
186 * @return array|boolean Contact record if it exists, false otherwise
189 public static function getById($id, $fields = [])
191 return DBA::selectFirst('contact', $fields, ['id' => $id]);
195 * Fetches a contact by a given url
197 * @param string $url profile url
198 * @param boolean $update true = always update, false = never update, null = update when not found or outdated
199 * @param array $fields Field list
200 * @param integer $uid User ID of the contact
201 * @return array contact array
203 public static function getByURL(string $url, $update = null, array $fields = [], int $uid = 0)
205 if ($update || is_null($update)) {
206 $cid = self::getIdForURL($url, $uid, $update);
210 return self::getById($cid, $fields);
213 // Add internal fields
215 if (!empty($fields)) {
216 foreach (['id', 'updated', 'network'] as $internal) {
217 if (!in_array($internal, $fields)) {
218 $fields[] = $internal;
219 $removal[] = $internal;
224 // We first try the nurl (http://server.tld/nick), most common case
225 $options = ['order' => ['id']];
226 $contact = DBA::selectFirst('contact', $fields, ['nurl' => Strings::normaliseLink($url), 'uid' => $uid, 'deleted' => false], $options);
228 // Then the addr (nick@server.tld)
229 if (!DBA::isResult($contact)) {
230 $contact = DBA::selectFirst('contact', $fields, ['addr' => str_replace('acct:', '', $url), 'uid' => $uid, 'deleted' => false], $options);
233 // Then the alias (which could be anything)
234 if (!DBA::isResult($contact)) {
235 // The link could be provided as http although we stored it as https
236 $ssl_url = str_replace('http://', 'https://', $url);
237 $condition = ['`alias` IN (?, ?, ?) AND `uid` = ? AND NOT `deleted`', $url, Strings::normaliseLink($url), $ssl_url, $uid];
238 $contact = DBA::selectFirst('contact', $fields, $condition, $options);
241 // Update the contact in the background if needed
242 if ((($contact['updated'] < DateTimeFormat::utc('now -7 days')) || empty($contact['avatar'])) &&
243 in_array($contact['network'], Protocol::FEDERATED)) {
244 Worker::add(PRIORITY_LOW, "UpdateContact", $contact['id'], ($uid == 0 ? 'force' : ''));
247 // Remove the internal fields
248 foreach ($removal as $internal) {
249 unset($contact[$internal]);
256 * Fetches a contact for a given user by a given url.
257 * In difference to "getByURL" the function will fetch a public contact when no user contact had been found.
259 * @param string $url profile url
260 * @param integer $uid User ID of the contact
261 * @param boolean $update true = always update, false = never update, null = update when not found or outdated
262 * @param array $fields Field list
263 * @return array contact array
265 public static function getByURLForUser(string $url, int $uid = 0, $update = false, array $fields = [])
268 $contact = self::getByURL($url, $update, $fields, $uid);
269 if (!empty($contact)) {
270 if (!empty($contact['id'])) {
271 $contact['cid'] = $contact['id'];
278 $contact = self::getByURL($url, $update, $fields);
279 if (!empty($contact['id'])) {
281 $contact['zid'] = $contact['id'];
287 * Tests if the given contact is a follower
289 * @param int $cid Either public contact id or user's contact id
290 * @param int $uid User ID
292 * @return boolean is the contact id a follower?
293 * @throws HTTPException\InternalServerErrorException
294 * @throws \ImagickException
296 public static function isFollower($cid, $uid)
298 if (self::isBlockedByUser($cid, $uid)) {
302 $cdata = self::getPublicAndUserContacID($cid, $uid);
303 if (empty($cdata['user'])) {
307 $condition = ['id' => $cdata['user'], 'rel' => [self::FOLLOWER, self::FRIEND]];
308 return DBA::exists('contact', $condition);
312 * Tests if the given contact url is a follower
314 * @param string $url Contact URL
315 * @param int $uid User ID
317 * @return boolean is the contact id a follower?
318 * @throws HTTPException\InternalServerErrorException
319 * @throws \ImagickException
321 public static function isFollowerByURL($url, $uid)
323 $cid = self::getIdForURL($url, $uid, false);
329 return self::isFollower($cid, $uid);
333 * Tests if the given user follow the given contact
335 * @param int $cid Either public contact id or user's contact id
336 * @param int $uid User ID
338 * @return boolean is the contact url being followed?
339 * @throws HTTPException\InternalServerErrorException
340 * @throws \ImagickException
342 public static function isSharing($cid, $uid)
344 if (self::isBlockedByUser($cid, $uid)) {
348 $cdata = self::getPublicAndUserContacID($cid, $uid);
349 if (empty($cdata['user'])) {
353 $condition = ['id' => $cdata['user'], 'rel' => [self::SHARING, self::FRIEND]];
354 return DBA::exists('contact', $condition);
358 * Tests if the given user follow the given contact url
360 * @param string $url Contact URL
361 * @param int $uid User ID
363 * @return boolean is the contact url being followed?
364 * @throws HTTPException\InternalServerErrorException
365 * @throws \ImagickException
367 public static function isSharingByURL($url, $uid)
369 $cid = self::getIdForURL($url, $uid, false);
375 return self::isSharing($cid, $uid);
379 * Get the basepath for a given contact link
381 * @param string $url The contact link
382 * @param boolean $dont_update Don't update the contact
384 * @return string basepath
385 * @throws HTTPException\InternalServerErrorException
386 * @throws \ImagickException
388 public static function getBasepath($url, $dont_update = false)
390 $contact = DBA::selectFirst('contact', ['id', 'baseurl'], ['uid' => 0, 'nurl' => Strings::normaliseLink($url)]);
391 if (!DBA::isResult($contact)) {
395 if (!empty($contact['baseurl'])) {
396 return $contact['baseurl'];
397 } elseif ($dont_update) {
401 // Update the existing contact
402 self::updateFromProbe($contact['id'], '', true);
404 // And fetch the result
405 $contact = DBA::selectFirst('contact', ['baseurl'], ['id' => $contact['id']]);
406 if (empty($contact['baseurl'])) {
407 Logger::info('No baseurl for contact', ['url' => $url]);
411 Logger::info('Found baseurl for contact', ['url' => $url, 'baseurl' => $contact['baseurl']]);
412 return $contact['baseurl'];
416 * Check if the given contact url is on the same server
418 * @param string $url The contact link
420 * @return boolean Is it the same server?
422 public static function isLocal($url)
424 return Strings::compareLink(self::getBasepath($url, true), DI::baseUrl());
428 * Check if the given contact ID is on the same server
430 * @param string $url The contact link
432 * @return boolean Is it the same server?
434 public static function isLocalById(int $cid)
436 $contact = DBA::selectFirst('contact', ['url', 'baseurl'], ['id' => $cid]);
437 if (!DBA::isResult($contact)) {
441 if (empty($contact['baseurl'])) {
442 $baseurl = self::getBasepath($contact['url'], true);
444 $baseurl = $contact['baseurl'];
447 return Strings::compareLink($baseurl, DI::baseUrl());
451 * Returns the public contact id of the given user id
453 * @param integer $uid User ID
455 * @return integer|boolean Public contact id for given user id
458 public static function getPublicIdByUserId($uid)
460 $self = DBA::selectFirst('contact', ['url'], ['self' => true, 'uid' => $uid]);
461 if (!DBA::isResult($self)) {
464 return self::getIdForURL($self['url'], 0, false);
468 * Returns the contact id for the user and the public contact id for a given contact id
470 * @param int $cid Either public contact id or user's contact id
471 * @param int $uid User ID
473 * @return array with public and user's contact id
474 * @throws HTTPException\InternalServerErrorException
475 * @throws \ImagickException
477 public static function getPublicAndUserContacID($cid, $uid)
479 if (empty($uid) || empty($cid)) {
483 $contact = DBA::selectFirst('contact', ['id', 'uid', 'url'], ['id' => $cid]);
484 if (!DBA::isResult($contact)) {
488 // We quit when the user id don't match the user id of the provided contact
489 if (($contact['uid'] != $uid) && ($contact['uid'] != 0)) {
493 if ($contact['uid'] != 0) {
494 $pcid = Contact::getIdForURL($contact['url'], 0, false, ['url' => $contact['url']]);
498 $ucid = $contact['id'];
500 $pcid = $contact['id'];
501 $ucid = Contact::getIdForURL($contact['url'], $uid, false);
504 return ['public' => $pcid, 'user' => $ucid];
508 * Returns contact details for a given contact id in combination with a user id
510 * @param int $cid A contact ID
511 * @param int $uid The User ID
512 * @param array $fields The selected fields for the contact
514 * @return array The contact details
518 public static function getContactForUser($cid, $uid, array $fields = [])
520 $contact = DBA::selectFirst('contact', $fields, ['id' => $cid, 'uid' => $uid]);
522 if (!DBA::isResult($contact)) {
530 * Block contact id for user id
532 * @param int $cid Either public contact id or user's contact id
533 * @param int $uid User ID
534 * @param boolean $blocked Is the contact blocked or unblocked?
537 public static function setBlockedForUser($cid, $uid, $blocked)
539 $cdata = self::getPublicAndUserContacID($cid, $uid);
544 if ($cdata['user'] != 0) {
545 DBA::update('contact', ['blocked' => $blocked], ['id' => $cdata['user'], 'pending' => false]);
548 DBA::update('user-contact', ['blocked' => $blocked], ['cid' => $cdata['public'], 'uid' => $uid], true);
552 * Returns "block" state for contact id and user id
554 * @param int $cid Either public contact id or user's contact id
555 * @param int $uid User ID
557 * @return boolean is the contact id blocked for the given user?
560 public static function isBlockedByUser($cid, $uid)
562 $cdata = self::getPublicAndUserContacID($cid, $uid);
567 $public_blocked = false;
569 if (!empty($cdata['public'])) {
570 $public_contact = DBA::selectFirst('user-contact', ['blocked'], ['cid' => $cdata['public'], 'uid' => $uid]);
571 if (DBA::isResult($public_contact)) {
572 $public_blocked = $public_contact['blocked'];
576 $user_blocked = $public_blocked;
578 if (!empty($cdata['user'])) {
579 $user_contact = DBA::selectFirst('contact', ['blocked'], ['id' => $cdata['user'], 'pending' => false]);
580 if (DBA::isResult($user_contact)) {
581 $user_blocked = $user_contact['blocked'];
585 if ($user_blocked != $public_blocked) {
586 DBA::update('user-contact', ['blocked' => $user_blocked], ['cid' => $cdata['public'], 'uid' => $uid], true);
589 return $user_blocked;
593 * Ignore contact id for user id
595 * @param int $cid Either public contact id or user's contact id
596 * @param int $uid User ID
597 * @param boolean $ignored Is the contact ignored or unignored?
600 public static function setIgnoredForUser($cid, $uid, $ignored)
602 $cdata = self::getPublicAndUserContacID($cid, $uid);
607 if ($cdata['user'] != 0) {
608 DBA::update('contact', ['readonly' => $ignored], ['id' => $cdata['user'], 'pending' => false]);
611 DBA::update('user-contact', ['ignored' => $ignored], ['cid' => $cdata['public'], 'uid' => $uid], true);
615 * Returns "ignore" state for contact id and user id
617 * @param int $cid Either public contact id or user's contact id
618 * @param int $uid User ID
620 * @return boolean is the contact id ignored for the given user?
623 public static function isIgnoredByUser($cid, $uid)
625 $cdata = self::getPublicAndUserContacID($cid, $uid);
630 $public_ignored = false;
632 if (!empty($cdata['public'])) {
633 $public_contact = DBA::selectFirst('user-contact', ['ignored'], ['cid' => $cdata['public'], 'uid' => $uid]);
634 if (DBA::isResult($public_contact)) {
635 $public_ignored = $public_contact['ignored'];
639 $user_ignored = $public_ignored;
641 if (!empty($cdata['user'])) {
642 $user_contact = DBA::selectFirst('contact', ['readonly'], ['id' => $cdata['user'], 'pending' => false]);
643 if (DBA::isResult($user_contact)) {
644 $user_ignored = $user_contact['readonly'];
648 if ($user_ignored != $public_ignored) {
649 DBA::update('user-contact', ['ignored' => $user_ignored], ['cid' => $cdata['public'], 'uid' => $uid], true);
652 return $user_ignored;
656 * Set "collapsed" for contact id and user id
658 * @param int $cid Either public contact id or user's contact id
659 * @param int $uid User ID
660 * @param boolean $collapsed are the contact's posts collapsed or uncollapsed?
663 public static function setCollapsedForUser($cid, $uid, $collapsed)
665 $cdata = self::getPublicAndUserContacID($cid, $uid);
670 DBA::update('user-contact', ['collapsed' => $collapsed], ['cid' => $cdata['public'], 'uid' => $uid], true);
674 * Returns "collapsed" state for contact id and user id
676 * @param int $cid Either public contact id or user's contact id
677 * @param int $uid User ID
679 * @return boolean is the contact id blocked for the given user?
680 * @throws HTTPException\InternalServerErrorException
681 * @throws \ImagickException
683 public static function isCollapsedByUser($cid, $uid)
685 $cdata = self::getPublicAndUserContacID($cid, $uid);
692 if (!empty($cdata['public'])) {
693 $public_contact = DBA::selectFirst('user-contact', ['collapsed'], ['cid' => $cdata['public'], 'uid' => $uid]);
694 if (DBA::isResult($public_contact)) {
695 $collapsed = $public_contact['collapsed'];
703 * Returns a list of contacts belonging in a group
709 public static function getByGroupId($gid)
714 $stmt = DBA::p('SELECT `group_member`.`contact-id`, `contact`.*
716 INNER JOIN `group_member`
717 ON `contact`.`id` = `group_member`.`contact-id`
719 AND `contact`.`uid` = ?
720 AND NOT `contact`.`self`
721 AND NOT `contact`.`deleted`
722 AND NOT `contact`.`blocked`
723 AND NOT `contact`.`pending`
724 ORDER BY `contact`.`name` ASC',
729 if (DBA::isResult($stmt)) {
730 $return = DBA::toArray($stmt);
738 * Creates the self-contact for the provided user id
741 * @return bool Operation success
742 * @throws HTTPException\InternalServerErrorException
744 public static function createSelfFromUserId($uid)
746 // Only create the entry if it doesn't exist yet
747 if (DBA::exists('contact', ['uid' => $uid, 'self' => true])) {
751 $user = DBA::selectFirst('user', ['uid', 'username', 'nickname'], ['uid' => $uid]);
752 if (!DBA::isResult($user)) {
756 $return = DBA::insert('contact', [
757 'uid' => $user['uid'],
758 'created' => DateTimeFormat::utcNow(),
760 'name' => $user['username'],
761 'nick' => $user['nickname'],
762 'photo' => DI::baseUrl() . '/photo/profile/' . $user['uid'] . '.jpg',
763 'thumb' => DI::baseUrl() . '/photo/avatar/' . $user['uid'] . '.jpg',
764 'micro' => DI::baseUrl() . '/photo/micro/' . $user['uid'] . '.jpg',
767 'url' => DI::baseUrl() . '/profile/' . $user['nickname'],
768 'nurl' => Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']),
769 'addr' => $user['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3),
770 'request' => DI::baseUrl() . '/dfrn_request/' . $user['nickname'],
771 'notify' => DI::baseUrl() . '/dfrn_notify/' . $user['nickname'],
772 'poll' => DI::baseUrl() . '/dfrn_poll/' . $user['nickname'],
773 'confirm' => DI::baseUrl() . '/dfrn_confirm/' . $user['nickname'],
774 'poco' => DI::baseUrl() . '/poco/' . $user['nickname'],
775 'name-date' => DateTimeFormat::utcNow(),
776 'uri-date' => DateTimeFormat::utcNow(),
777 'avatar-date' => DateTimeFormat::utcNow(),
785 * Updates the self-contact for the provided user id
788 * @param boolean $update_avatar Force the avatar update
789 * @throws HTTPException\InternalServerErrorException
791 public static function updateSelfFromUserID($uid, $update_avatar = false)
793 $fields = ['id', 'name', 'nick', 'location', 'about', 'keywords', 'avatar',
794 'xmpp', 'contact-type', 'forum', 'prv', 'avatar-date', 'url', 'nurl', 'unsearchable',
795 'photo', 'thumb', 'micro', 'addr', 'request', 'notify', 'poll', 'confirm', 'poco'];
796 $self = DBA::selectFirst('contact', $fields, ['uid' => $uid, 'self' => true]);
797 if (!DBA::isResult($self)) {
801 $fields = ['nickname', 'page-flags', 'account-type'];
802 $user = DBA::selectFirst('user', $fields, ['uid' => $uid]);
803 if (!DBA::isResult($user)) {
807 $fields = ['name', 'photo', 'thumb', 'about', 'address', 'locality', 'region',
808 'country-name', 'pub_keywords', 'xmpp', 'net-publish'];
809 $profile = DBA::selectFirst('profile', $fields, ['uid' => $uid]);
810 if (!DBA::isResult($profile)) {
814 $file_suffix = 'jpg';
816 $fields = ['name' => $profile['name'], 'nick' => $user['nickname'],
817 'avatar-date' => $self['avatar-date'], 'location' => Profile::formatLocation($profile),
818 'about' => $profile['about'], 'keywords' => $profile['pub_keywords'],
819 'contact-type' => $user['account-type'],
820 'xmpp' => $profile['xmpp']];
822 $avatar = Photo::selectFirst(['resource-id', 'type'], ['uid' => $uid, 'profile' => true]);
823 if (DBA::isResult($avatar)) {
824 if ($update_avatar) {
825 $fields['avatar-date'] = DateTimeFormat::utcNow();
828 // Creating the path to the avatar, beginning with the file suffix
829 $types = Images::supportedTypes();
830 if (isset($types[$avatar['type']])) {
831 $file_suffix = $types[$avatar['type']];
834 // We are adding a timestamp value so that other systems won't use cached content
835 $timestamp = strtotime($fields['avatar-date']);
837 $prefix = DI::baseUrl() . '/photo/' .$avatar['resource-id'] . '-';
838 $suffix = '.' . $file_suffix . '?ts=' . $timestamp;
840 $fields['photo'] = $prefix . '4' . $suffix;
841 $fields['thumb'] = $prefix . '5' . $suffix;
842 $fields['micro'] = $prefix . '6' . $suffix;
844 // We hadn't found a photo entry, so we use the default avatar
845 $fields['photo'] = DI::baseUrl() . '/images/person-300.jpg';
846 $fields['thumb'] = DI::baseUrl() . '/images/person-80.jpg';
847 $fields['micro'] = DI::baseUrl() . '/images/person-48.jpg';
850 $fields['avatar'] = DI::baseUrl() . '/photo/profile/' .$uid . '.' . $file_suffix;
851 $fields['forum'] = $user['page-flags'] == User::PAGE_FLAGS_COMMUNITY;
852 $fields['prv'] = $user['page-flags'] == User::PAGE_FLAGS_PRVGROUP;
853 $fields['unsearchable'] = !$profile['net-publish'];
855 // it seems as if ported accounts can have wrong values, so we make sure that now everything is fine.
856 $fields['url'] = DI::baseUrl() . '/profile/' . $user['nickname'];
857 $fields['nurl'] = Strings::normaliseLink($fields['url']);
858 $fields['addr'] = $user['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
859 $fields['request'] = DI::baseUrl() . '/dfrn_request/' . $user['nickname'];
860 $fields['notify'] = DI::baseUrl() . '/dfrn_notify/' . $user['nickname'];
861 $fields['poll'] = DI::baseUrl() . '/dfrn_poll/'. $user['nickname'];
862 $fields['confirm'] = DI::baseUrl() . '/dfrn_confirm/' . $user['nickname'];
863 $fields['poco'] = DI::baseUrl() . '/poco/' . $user['nickname'];
867 foreach ($fields as $field => $content) {
868 if ($self[$field] != $content) {
874 if ($fields['name'] != $self['name']) {
875 $fields['name-date'] = DateTimeFormat::utcNow();
877 $fields['updated'] = DateTimeFormat::utcNow();
878 DBA::update('contact', $fields, ['id' => $self['id']]);
880 // Update the public contact as well
881 DBA::update('contact', $fields, ['uid' => 0, 'nurl' => $self['nurl']]);
883 // Update the profile
884 $fields = ['photo' => DI::baseUrl() . '/photo/profile/' .$uid . '.' . $file_suffix,
885 'thumb' => DI::baseUrl() . '/photo/avatar/' . $uid .'.' . $file_suffix];
886 DBA::update('profile', $fields, ['uid' => $uid]);
891 * Marks a contact for removal
893 * @param int $id contact id
895 * @throws HTTPException\InternalServerErrorException
897 public static function remove($id)
899 // We want just to make sure that we don't delete our "self" contact
900 $contact = DBA::selectFirst('contact', ['uid'], ['id' => $id, 'self' => false]);
901 if (!DBA::isResult($contact) || !intval($contact['uid'])) {
905 // Archive the contact
906 DBA::update('contact', ['archive' => true, 'network' => Protocol::PHANTOM, 'deleted' => true], ['id' => $id]);
908 // Delete it in the background
909 Worker::add(PRIORITY_MEDIUM, 'RemoveContact', $id);
913 * Sends an unfriend message. Does not remove the contact
915 * @param array $user User unfriending
916 * @param array $contact Contact unfriended
917 * @param boolean $dissolve Remove the contact on the remote side
919 * @throws HTTPException\InternalServerErrorException
920 * @throws \ImagickException
922 public static function terminateFriendship(array $user, array $contact, $dissolve = false)
924 if (empty($contact['network'])) {
928 $protocol = $contact['network'];
929 if (($protocol == Protocol::DFRN) && !self::isLegacyDFRNContact($contact)) {
930 $protocol = Protocol::ACTIVITYPUB;
933 if (($protocol == Protocol::DFRN) && $dissolve) {
934 DFRN::deliver($user, $contact, 'placeholder', true);
935 } elseif (in_array($protocol, [Protocol::OSTATUS, Protocol::DFRN])) {
936 // create an unfollow slap
938 $item['verb'] = Activity::O_UNFOLLOW;
939 $item['gravity'] = GRAVITY_ACTIVITY;
940 $item['follow'] = $contact["url"];
945 $item['attach'] = '';
946 $slap = OStatus::salmon($item, $user);
948 if (!empty($contact['notify'])) {
949 Salmon::slapper($user, $contact['notify'], $slap);
951 } elseif ($protocol == Protocol::DIASPORA) {
952 Diaspora::sendUnshare($user, $contact);
953 } elseif ($protocol == Protocol::ACTIVITYPUB) {
954 ActivityPub\Transmitter::sendContactUndo($contact['url'], $contact['id'], $user['uid']);
957 ActivityPub\Transmitter::sendContactReject($contact['url'], $contact['hub-verify'], $user['uid']);
963 * Marks a contact for archival after a communication issue delay
965 * Contact has refused to recognise us as a friend. We will start a countdown.
966 * If they still don't recognise us in 32 days, the relationship is over,
967 * and we won't waste any more time trying to communicate with them.
968 * This provides for the possibility that their database is temporarily messed
969 * up or some other transient event and that there's a possibility we could recover from it.
971 * @param array $contact contact to mark for archival
973 * @throws HTTPException\InternalServerErrorException
975 public static function markForArchival(array $contact)
977 if (!isset($contact['url']) && !empty($contact['id'])) {
978 $fields = ['id', 'url', 'archive', 'self', 'term-date'];
979 $contact = DBA::selectFirst('contact', $fields, ['id' => $contact['id']]);
980 if (!DBA::isResult($contact)) {
983 } elseif (!isset($contact['url'])) {
984 Logger::info('Empty contact', ['contact' => $contact, 'callstack' => System::callstack(20)]);
987 Logger::info('Contact is marked for archival', ['id' => $contact['id']]);
989 // Contact already archived or "self" contact? => nothing to do
990 if ($contact['archive'] || $contact['self']) {
994 if ($contact['term-date'] <= DBA::NULL_DATETIME) {
995 DBA::update('contact', ['term-date' => DateTimeFormat::utcNow()], ['id' => $contact['id']]);
996 DBA::update('contact', ['term-date' => DateTimeFormat::utcNow()], ['`nurl` = ? AND `term-date` <= ? AND NOT `self`', Strings::normaliseLink($contact['url']), DBA::NULL_DATETIME]);
999 * We really should send a notification to the owner after 2-3 weeks
1000 * so they won't be surprised when the contact vanishes and can take
1001 * remedial action if this was a serious mistake or glitch
1004 /// @todo Check for contact vitality via probing
1005 $archival_days = DI::config()->get('system', 'archival_days', 32);
1007 $expiry = $contact['term-date'] . ' + ' . $archival_days . ' days ';
1008 if (DateTimeFormat::utcNow() > DateTimeFormat::utc($expiry)) {
1009 /* Relationship is really truly dead. archive them rather than
1010 * delete, though if the owner tries to unarchive them we'll start
1011 * the whole process over again.
1013 DBA::update('contact', ['archive' => true], ['id' => $contact['id']]);
1014 DBA::update('contact', ['archive' => true], ['nurl' => Strings::normaliseLink($contact['url']), 'self' => false]);
1015 GContact::updateFromPublicContactURL($contact['url']);
1021 * Cancels the archival countdown
1023 * @see Contact::markForArchival()
1025 * @param array $contact contact to be unmarked for archival
1027 * @throws \Exception
1029 public static function unmarkForArchival(array $contact)
1031 // Always unarchive the relay contact entry
1032 if (!empty($contact['batch']) && !empty($contact['term-date']) && ($contact['term-date'] > DBA::NULL_DATETIME)) {
1033 $fields = ['failed' => false, 'term-date' => DBA::NULL_DATETIME, 'archive' => false];
1034 $condition = ['uid' => 0, 'network' => Protocol::FEDERATED, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY];
1035 DBA::update('contact', $fields, $condition);
1038 $condition = ['`id` = ? AND (`term-date` > ? OR `archive`)', $contact['id'], DBA::NULL_DATETIME];
1039 $exists = DBA::exists('contact', $condition);
1041 // We don't need to update, we never marked this contact for archival
1046 Logger::info('Contact is marked as vital again', ['id' => $contact['id']]);
1048 if (!isset($contact['url']) && !empty($contact['id'])) {
1049 $fields = ['id', 'url', 'batch'];
1050 $contact = DBA::selectFirst('contact', $fields, ['id' => $contact['id']]);
1051 if (!DBA::isResult($contact)) {
1056 // It's a miracle. Our dead contact has inexplicably come back to life.
1057 $fields = ['failed' => false, 'term-date' => DBA::NULL_DATETIME, 'archive' => false];
1058 DBA::update('contact', $fields, ['id' => $contact['id']]);
1059 DBA::update('contact', $fields, ['nurl' => Strings::normaliseLink($contact['url']), 'self' => false]);
1060 GContact::updateFromPublicContactURL($contact['url']);
1064 * Returns the data array for the photo menu of a given contact
1066 * @param array $contact contact
1067 * @param int $uid optional, default 0
1069 * @throws HTTPException\InternalServerErrorException
1070 * @throws \ImagickException
1072 public static function photoMenu(array $contact, $uid = 0)
1077 $contact_drop_link = '';
1081 $uid = local_user();
1084 if (empty($contact['uid']) || ($contact['uid'] != $uid)) {
1086 $profile_link = self::magicLink($contact['url']);
1087 $menu = ['profile' => [DI::l10n()->t('View Profile'), $profile_link, true]];
1092 // Look for our own contact if the uid doesn't match and isn't public
1093 $contact_own = DBA::selectFirst('contact', [], ['nurl' => $contact['nurl'], 'network' => $contact['network'], 'uid' => $uid]);
1094 if (DBA::isResult($contact_own)) {
1095 return self::photoMenu($contact_own, $uid);
1100 if (($contact['network'] === Protocol::DFRN) && !$contact['self'] && empty($contact['pending'])) {
1102 $profile_link = DI::baseUrl() . '/redir/' . $contact['id'];
1104 $profile_link = $contact['url'];
1107 if ($profile_link === 'mailbox') {
1112 $status_link = $profile_link . '/status';
1113 $photos_link = str_replace('/profile/', '/photos/', $profile_link);
1114 $profile_link = $profile_link . '/profile';
1117 if (self::canReceivePrivateMessages($contact) && empty($contact['pending'])) {
1118 $pm_url = DI::baseUrl() . '/message/new/' . $contact['id'];
1121 if (($contact['network'] == Protocol::DFRN) && !$contact['self'] && empty($contact['pending'])) {
1122 $poke_link = 'contact/' . $contact['id'] . '/poke';
1125 $contact_url = DI::baseUrl() . '/contact/' . $contact['id'];
1127 $posts_link = DI::baseUrl() . '/contact/' . $contact['id'] . '/conversations';
1129 if (!$contact['self']) {
1130 $contact_drop_link = DI::baseUrl() . '/contact/' . $contact['id'] . '/drop?confirm=1';
1134 $unfollow_link = '';
1135 if (!$contact['self'] && in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
1136 if ($contact['uid'] && in_array($contact['rel'], [self::SHARING, self::FRIEND])) {
1137 $unfollow_link = 'unfollow?url=' . urlencode($contact['url']);
1138 } elseif(!$contact['pending']) {
1139 $follow_link = 'follow?url=' . urlencode($contact['url']);
1143 if (!empty($follow_link) || !empty($unfollow_link)) {
1144 $contact_drop_link = '';
1149 * "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ]
1151 if (empty($contact['uid'])) {
1153 'profile' => [DI::l10n()->t('View Profile') , $profile_link , true],
1154 'network' => [DI::l10n()->t('Network Posts') , $posts_link , false],
1155 'edit' => [DI::l10n()->t('View Contact') , $contact_url , false],
1156 'follow' => [DI::l10n()->t('Connect/Follow'), $follow_link , true],
1157 'unfollow'=> [DI::l10n()->t('UnFollow') , $unfollow_link, true],
1161 'status' => [DI::l10n()->t('View Status') , $status_link , true],
1162 'profile' => [DI::l10n()->t('View Profile') , $profile_link , true],
1163 'photos' => [DI::l10n()->t('View Photos') , $photos_link , true],
1164 'network' => [DI::l10n()->t('Network Posts') , $posts_link , false],
1165 'edit' => [DI::l10n()->t('View Contact') , $contact_url , false],
1166 'drop' => [DI::l10n()->t('Drop Contact') , $contact_drop_link, false],
1167 'pm' => [DI::l10n()->t('Send PM') , $pm_url , false],
1168 'poke' => [DI::l10n()->t('Poke') , $poke_link , false],
1169 'follow' => [DI::l10n()->t('Connect/Follow'), $follow_link , true],
1170 'unfollow'=> [DI::l10n()->t('UnFollow') , $unfollow_link , true],
1173 if (!empty($contact['pending'])) {
1174 $intro = DBA::selectFirst('intro', ['id'], ['contact-id' => $contact['id']]);
1175 if (DBA::isResult($intro)) {
1176 $menu['follow'] = [DI::l10n()->t('Approve'), 'notifications/intros/' . $intro['id'], true];
1181 $args = ['contact' => $contact, 'menu' => &$menu];
1183 Hook::callAll('contact_photo_menu', $args);
1185 $menucondensed = [];
1187 foreach ($menu as $menuname => $menuitem) {
1188 if ($menuitem[1] != '') {
1189 $menucondensed[$menuname] = $menuitem;
1193 return $menucondensed;
1197 * Returns ungrouped contact count or list for user
1199 * Returns either the total number of ungrouped contacts for the given user
1200 * id or a paginated list of ungrouped contacts.
1202 * @param int $uid uid
1204 * @throws \Exception
1206 public static function getUngroupedList($uid)
1216 SELECT DISTINCT(`contact-id`)
1218 INNER JOIN `group` ON `group`.`id` = `group_member`.`gid`
1219 WHERE `group`.`uid` = %d
1220 )", intval($uid), intval($uid));
1224 * Have a look at all contact tables for a given profile url.
1225 * This function works as a replacement for probing the contact.
1227 * @param string $url Contact URL
1228 * @param integer $cid Contact ID
1230 * @return array Contact array in the "probe" structure
1232 private static function getProbeDataFromDatabase($url, $cid = null)
1234 // The link could be provided as http although we stored it as https
1235 $ssl_url = str_replace('http://', 'https://', $url);
1237 $fields = ['id', 'uid', 'url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1238 'photo', 'keywords', 'location', 'about', 'network',
1239 'priority', 'batch', 'request', 'confirm', 'poco'];
1242 $data = DBA::selectFirst('contact', $fields, ['id' => $cid]);
1243 if (DBA::isResult($data)) {
1248 $data = DBA::selectFirst('contact', $fields, ['nurl' => Strings::normaliseLink($url)]);
1250 if (!DBA::isResult($data)) {
1251 $condition = ['alias' => [$url, Strings::normaliseLink($url), $ssl_url]];
1252 $data = DBA::selectFirst('contact', $fields, $condition);
1255 if (DBA::isResult($data)) {
1256 // For security reasons we don't fetch key data from our users
1257 $data["pubkey"] = '';
1261 $fields = ['url', 'addr', 'alias', 'notify', 'name', 'nick',
1262 'photo', 'keywords', 'location', 'about', 'network'];
1263 $data = DBA::selectFirst('gcontact', $fields, ['nurl' => Strings::normaliseLink($url)]);
1265 if (!DBA::isResult($data)) {
1266 $condition = ['alias' => [$url, Strings::normaliseLink($url), $ssl_url]];
1267 $data = DBA::selectFirst('contact', $fields, $condition);
1270 if (DBA::isResult($data)) {
1271 $data["pubkey"] = '';
1273 $data["priority"] = 0;
1274 $data["batch"] = '';
1275 $data["request"] = '';
1276 $data["confirm"] = '';
1281 $data = ActivityPub::probeProfile($url, false);
1282 if (!empty($data)) {
1286 $fields = ['url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1287 'photo', 'network', 'priority', 'batch', 'request', 'confirm'];
1288 $data = DBA::selectFirst('fcontact', $fields, ['url' => $url]);
1290 if (!DBA::isResult($data)) {
1291 $condition = ['alias' => [$url, Strings::normaliseLink($url), $ssl_url]];
1292 $data = DBA::selectFirst('contact', $fields, $condition);
1295 if (DBA::isResult($data)) {
1296 $data["pubkey"] = '';
1297 $data["keywords"] = '';
1298 $data["location"] = '';
1299 $data["about"] = '';
1308 * Fetch the contact id for a given URL and user
1310 * First lookup in the contact table to find a record matching either `url`, `nurl`,
1311 * `addr` or `alias`.
1313 * If there's no record and we aren't looking for a public contact, we quit.
1314 * If there's one, we check that it isn't time to update the picture else we
1315 * directly return the found contact id.
1317 * Second, we probe the provided $url whether it's http://server.tld/profile or
1318 * nick@server.tld. We quit if we can't get any info back.
1320 * Third, we create the contact record if it doesn't exist
1322 * Fourth, we update the existing record with the new data (avatar, alias, nick)
1323 * if there's any updates
1325 * @param string $url Contact URL
1326 * @param integer $uid The user id for the contact (0 = public contact)
1327 * @param boolean $update true = always update, false = never update, null = update when not found or outdated
1328 * @param array $default Default value for creating the contact when every else fails
1329 * @param boolean $in_loop Internally used variable to prevent an endless loop
1331 * @return integer Contact ID
1332 * @throws HTTPException\InternalServerErrorException
1333 * @throws \ImagickException
1335 public static function getIdForURL($url, $uid = 0, $update = null, $default = [], $in_loop = false)
1337 Logger::info('Get contact data', ['url' => $url, 'user' => $uid]);
1345 $contact = self::getByURL($url, false, ['id', 'avatar', 'updated', 'network'], $uid);
1347 if (!empty($contact)) {
1348 $contact_id = $contact["id"];
1350 if (empty($default) && in_array($contact['network'], [Protocol::MAIL, Protocol::PHANTOM]) && ($uid == 0)) {
1351 // Update public mail accounts via their user's accounts
1352 $fields = ['network', 'addr', 'name', 'nick', 'avatar', 'photo', 'thumb', 'micro'];
1353 $mailcontact = DBA::selectFirst('contact', $fields, ["`addr` = ? AND `network` = ? AND `uid` != 0", $url, Protocol::MAIL]);
1354 if (!DBA::isResult($mailcontact)) {
1355 $mailcontact = DBA::selectFirst('contact', $fields, ["`nurl` = ? AND `network` = ? AND `uid` != 0", $url, Protocol::MAIL]);
1358 if (DBA::isResult($mailcontact)) {
1359 DBA::update('contact', $mailcontact, ['id' => $contact_id]);
1363 if (empty($update)) {
1366 } elseif ($uid != 0) {
1367 // Non-existing user-specific contact, exiting
1371 if (!$update && empty($default)) {
1372 // When we don't want to update, we look if we know this contact in any way
1373 $data = self::getProbeDataFromDatabase($url, $contact_id);
1374 $background_update = true;
1375 } elseif (!$update && !empty($default['network'])) {
1376 // If there are default values, take these
1378 $background_update = false;
1381 $background_update = false;
1384 if ((empty($data) && is_null($update)) || $update) {
1385 $data = Probe::uri($url, "", $uid);
1388 // Take the default values when probing failed
1389 if (!empty($default) && !in_array($data["network"], array_merge(Protocol::NATIVE_SUPPORT, [Protocol::PUMPIO]))) {
1390 $data = array_merge($data, $default);
1393 if (empty($data) || ($data['network'] == Protocol::PHANTOM)) {
1394 Logger::info('No valid network found', ['url' => $url, 'data' => $data, 'callstack' => System::callstack(20)]);
1398 if (!empty($data['baseurl'])) {
1399 $data['baseurl'] = GServer::cleanURL($data['baseurl']);
1402 if (!empty($data['baseurl']) && empty($data['gsid'])) {
1403 $data['gsid'] = GServer::getID($data['baseurl']);
1406 if (!$contact_id && !empty($data['alias']) && ($data['alias'] != $data['url']) && !$in_loop) {
1407 $contact_id = self::getIdForURL($data["alias"], $uid, false, $default, true);
1413 'created' => DateTimeFormat::utcNow(),
1414 'url' => $data['url'],
1415 'nurl' => Strings::normaliseLink($data['url']),
1416 'addr' => $data['addr'] ?? '',
1417 'alias' => $data['alias'] ?? '',
1418 'notify' => $data['notify'] ?? '',
1419 'poll' => $data['poll'] ?? '',
1420 'name' => $data['name'] ?? '',
1421 'nick' => $data['nick'] ?? '',
1422 'keywords' => $data['keywords'] ?? '',
1423 'location' => $data['location'] ?? '',
1424 'about' => $data['about'] ?? '',
1425 'network' => $data['network'],
1426 'pubkey' => $data['pubkey'] ?? '',
1427 'rel' => self::SHARING,
1428 'priority' => $data['priority'] ?? 0,
1429 'batch' => $data['batch'] ?? '',
1430 'request' => $data['request'] ?? '',
1431 'confirm' => $data['confirm'] ?? '',
1432 'poco' => $data['poco'] ?? '',
1433 'baseurl' => $data['baseurl'] ?? '',
1434 'gsid' => $data['gsid'] ?? null,
1435 'name-date' => DateTimeFormat::utcNow(),
1436 'uri-date' => DateTimeFormat::utcNow(),
1437 'avatar-date' => DateTimeFormat::utcNow(),
1443 $condition = ['nurl' => Strings::normaliseLink($data["url"]), 'uid' => $uid, 'deleted' => false];
1445 // Before inserting we do check if the entry does exist now.
1446 $contact = DBA::selectFirst('contact', ['id'], $condition, ['order' => ['id']]);
1447 if (!DBA::isResult($contact)) {
1448 Logger::info('Create new contact', $fields);
1450 self::insert($fields);
1452 // We intentionally aren't using lastInsertId here. There is a chance for duplicates.
1453 $contact = DBA::selectFirst('contact', ['id'], $condition, ['order' => ['id']]);
1454 if (!DBA::isResult($contact)) {
1455 Logger::info('Contact creation failed', $fields);
1460 Logger::info('Contact had been created before', ['id' => $contact["id"], 'url' => $url, 'contact' => $fields]);
1463 $contact_id = $contact["id"];
1466 if (!empty($data['photo']) && ($data['network'] != Protocol::FEED)) {
1467 self::updateAvatar($contact_id, $data['photo']);
1470 if (in_array($data["network"], array_merge(Protocol::NATIVE_SUPPORT, [Protocol::PUMPIO]))) {
1471 if ($background_update) {
1472 // Update in the background when we fetched the data solely from the database
1473 Worker::add(PRIORITY_MEDIUM, "UpdateContact", $contact_id, ($uid == 0 ? 'force' : ''));
1475 // Else do a direct update
1476 self::updateFromProbe($contact_id, '', false);
1479 $fields = ['url', 'nurl', 'addr', 'alias', 'name', 'nick', 'keywords', 'location', 'about', 'avatar-date', 'baseurl', 'gsid'];
1480 $contact = DBA::selectFirst('contact', $fields, ['id' => $contact_id]);
1482 // This condition should always be true
1483 if (!DBA::isResult($contact)) {
1488 'url' => $data['url'],
1489 'nurl' => Strings::normaliseLink($data['url']),
1490 'updated' => DateTimeFormat::utcNow(),
1494 $fields = ['addr', 'alias', 'name', 'nick', 'keywords', 'location', 'about', 'baseurl', 'gsid'];
1496 foreach ($fields as $field) {
1497 $updated[$field] = ($data[$field] ?? '') ?: $contact[$field];
1500 if (($updated['addr'] != $contact['addr']) || (!empty($data['alias']) && ($data['alias'] != $contact['alias']))) {
1501 $updated['uri-date'] = DateTimeFormat::utcNow();
1504 if (($data['name'] != $contact['name']) || ($data['nick'] != $contact['nick'])) {
1505 $updated['name-date'] = DateTimeFormat::utcNow();
1508 DBA::update('contact', $updated, ['id' => $contact_id], $contact);
1515 * Checks if the contact is archived
1517 * @param int $cid contact id
1519 * @return boolean Is the contact archived?
1520 * @throws HTTPException\InternalServerErrorException
1522 public static function isArchived(int $cid)
1528 $contact = DBA::selectFirst('contact', ['archive', 'url', 'batch'], ['id' => $cid]);
1529 if (!DBA::isResult($contact)) {
1533 if ($contact['archive']) {
1537 // Check status of ActivityPub endpoints
1538 $apcontact = APContact::getByURL($contact['url'], false);
1539 if (!empty($apcontact)) {
1540 if (!empty($apcontact['inbox']) && DBA::exists('inbox-status', ['archive' => true, 'url' => $apcontact['inbox']])) {
1544 if (!empty($apcontact['sharedinbox']) && DBA::exists('inbox-status', ['archive' => true, 'url' => $apcontact['sharedinbox']])) {
1549 // Check status of Diaspora endpoints
1550 if (!empty($contact['batch'])) {
1551 $condition = ['archive' => true, 'uid' => 0, 'network' => Protocol::FEDERATED, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY];
1552 return DBA::exists('contact', $condition);
1559 * Checks if the contact is blocked
1561 * @param int $cid contact id
1563 * @return boolean Is the contact blocked?
1564 * @throws HTTPException\InternalServerErrorException
1566 public static function isBlocked($cid)
1572 $blocked = DBA::selectFirst('contact', ['blocked', 'url'], ['id' => $cid]);
1573 if (!DBA::isResult($blocked)) {
1577 if (Network::isUrlBlocked($blocked['url'])) {
1581 return (bool) $blocked['blocked'];
1585 * Checks if the contact is hidden
1587 * @param int $cid contact id
1589 * @return boolean Is the contact hidden?
1590 * @throws \Exception
1592 public static function isHidden($cid)
1598 $hidden = DBA::selectFirst('contact', ['hidden'], ['id' => $cid]);
1599 if (!DBA::isResult($hidden)) {
1602 return (bool) $hidden['hidden'];
1606 * Returns posts from a given contact url
1608 * @param string $contact_url Contact URL
1609 * @param bool $thread_mode
1610 * @param int $update
1611 * @return string posts in HTML
1612 * @throws \Exception
1614 public static function getPostsFromUrl($contact_url, $thread_mode = false, $update = 0)
1616 return self::getPostsFromId(self::getIdForURL($contact_url), $thread_mode, $update);
1620 * Returns posts from a given contact id
1622 * @param integer $cid
1623 * @param bool $thread_mode
1624 * @param integer $update
1625 * @return string posts in HTML
1626 * @throws \Exception
1628 public static function getPostsFromId($cid, $thread_mode = false, $update = 0)
1632 $contact = DBA::selectFirst('contact', ['contact-type', 'network'], ['id' => $cid]);
1633 if (!DBA::isResult($contact)) {
1637 if (empty($contact["network"]) || in_array($contact["network"], Protocol::FEDERATED)) {
1638 $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = ? AND NOT `item`.`global`))";
1640 $sql = "`item`.`uid` = ?";
1643 $contact_field = ((($contact["contact-type"] == self::TYPE_COMMUNITY) || ($contact['network'] == Protocol::MAIL)) ? 'owner-id' : 'author-id');
1646 $condition = ["`$contact_field` = ? AND `gravity` = ? AND " . $sql,
1647 $cid, GRAVITY_PARENT, local_user()];
1649 $condition = ["`$contact_field` = ? AND `gravity` IN (?, ?) AND " . $sql,
1650 $cid, GRAVITY_PARENT, GRAVITY_COMMENT, local_user()];
1653 if (DI::mode()->isMobile()) {
1654 $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
1655 DI::config()->get('system', 'itemspage_network_mobile'));
1657 $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
1658 DI::config()->get('system', 'itemspage_network'));
1661 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), $itemsPerPage);
1663 $params = ['order' => ['received' => true],
1664 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
1667 $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params);
1669 $items = Item::inArray($r);
1671 $o = conversation($a, $items, 'contacts', $update, false, 'commented', local_user());
1673 $r = Item::selectForUser(local_user(), [], $condition, $params);
1675 $items = Item::inArray($r);
1677 $o = conversation($a, $items, 'contact-posts', false);
1681 $o .= $pager->renderMinimal(count($items));
1688 * Returns the account type name
1690 * The function can be called with either the user or the contact array
1692 * @param array $contact contact or user array
1695 public static function getAccountType(array $contact)
1697 // There are several fields that indicate that the contact or user is a forum
1698 // "page-flags" is a field in the user table,
1699 // "forum" and "prv" are used in the contact table. They stand for User::PAGE_FLAGS_COMMUNITY and User::PAGE_FLAGS_PRVGROUP.
1700 // "community" is used in the gcontact table and is true if the contact is User::PAGE_FLAGS_COMMUNITY or User::PAGE_FLAGS_PRVGROUP.
1701 if ((isset($contact['page-flags']) && (intval($contact['page-flags']) == User::PAGE_FLAGS_COMMUNITY))
1702 || (isset($contact['page-flags']) && (intval($contact['page-flags']) == User::PAGE_FLAGS_PRVGROUP))
1703 || (isset($contact['forum']) && intval($contact['forum']))
1704 || (isset($contact['prv']) && intval($contact['prv']))
1705 || (isset($contact['community']) && intval($contact['community']))
1707 $type = self::TYPE_COMMUNITY;
1709 $type = self::TYPE_PERSON;
1712 // The "contact-type" (contact table) and "account-type" (user table) are more general then the chaos from above.
1713 if (isset($contact["contact-type"])) {
1714 $type = $contact["contact-type"];
1717 if (isset($contact["account-type"])) {
1718 $type = $contact["account-type"];
1722 case self::TYPE_ORGANISATION:
1723 $account_type = DI::l10n()->t("Organisation");
1726 case self::TYPE_NEWS:
1727 $account_type = DI::l10n()->t('News');
1730 case self::TYPE_COMMUNITY:
1731 $account_type = DI::l10n()->t("Forum");
1739 return $account_type;
1747 * @throws \Exception
1749 public static function block($cid, $reason = null)
1751 $return = DBA::update('contact', ['blocked' => true, 'block_reason' => $reason], ['id' => $cid]);
1757 * Unblocks a contact
1761 * @throws \Exception
1763 public static function unblock($cid)
1765 $return = DBA::update('contact', ['blocked' => false, 'block_reason' => null], ['id' => $cid]);
1771 * Ensure that cached avatar exist
1773 * @param integer $cid
1775 public static function checkAvatarCache(int $cid)
1777 $contact = DBA::selectFirst('contact', ['url', 'avatar', 'photo', 'thumb', 'micro'], ['id' => $cid, 'uid' => 0, 'self' => false]);
1778 if (!DBA::isResult($contact)) {
1782 if (empty($contact['avatar']) || (!empty($contact['photo']) && !empty($contact['thumb']) && !empty($contact['micro']))) {
1786 Logger::info('Adding avatar cache', ['id' => $cid, 'contact' => $contact]);
1788 self::updateAvatar($cid, $contact['avatar'], true);
1792 * Return the photo path for a given contact array in the given size
1794 * @param array $contact contact array
1795 * @param string $field Fieldname of the photo in the contact array
1796 * @param string $default Default path when no picture had been found
1797 * @param string $size Size of the avatar picture
1798 * @param string $avatar Avatar path that is displayed when no photo had been found
1799 * @return string photo path
1801 private static function getAvatarPath(array $contact, string $field, string $default, string $size, string $avatar)
1803 if (!empty($contact)) {
1804 $contact = self::checkAvatarCacheByArray($contact);
1805 if (!empty($contact[$field])) {
1806 $avatar = $contact[$field];
1810 if (empty($avatar)) {
1814 if (Proxy::isLocalImage($avatar)) {
1817 return Proxy::proxifyUrl($avatar, false, $size);
1822 * Return the photo path for a given contact array
1824 * @param array $contact Contact array
1825 * @param string $avatar Avatar path that is displayed when no photo had been found
1826 * @return string photo path
1828 public static function getPhoto(array $contact, string $avatar = '')
1830 return self::getAvatarPath($contact, 'photo', DI::baseUrl() . '/images/person-300.jpg', Proxy::SIZE_SMALL, $avatar);
1834 * Return the photo path (thumb size) for a given contact array
1836 * @param array $contact Contact array
1837 * @param string $avatar Avatar path that is displayed when no photo had been found
1838 * @return string photo path
1840 public static function getThumb(array $contact, string $avatar = '')
1842 return self::getAvatarPath($contact, 'thumb', DI::baseUrl() . '/images/person-80.jpg', Proxy::SIZE_THUMB, $avatar);
1846 * Return the photo path (micro size) for a given contact array
1848 * @param array $contact Contact array
1849 * @param string $avatar Avatar path that is displayed when no photo had been found
1850 * @return string photo path
1852 public static function getMicro(array $contact, string $avatar = '')
1854 return self::getAvatarPath($contact, 'micro', DI::baseUrl() . '/images/person-48.jpg', Proxy::SIZE_MICRO, $avatar);
1858 * Check the given contact array for avatar cache fields
1860 * @param array $contact
1861 * @return array contact array with avatar cache fields
1863 private static function checkAvatarCacheByArray(array $contact)
1866 $contact_fields = [];
1867 $fields = ['photo', 'thumb', 'micro'];
1868 foreach ($fields as $field) {
1869 if (isset($contact[$field])) {
1870 $contact_fields[] = $field;
1872 if (isset($contact[$field]) && empty($contact[$field])) {
1881 if (!empty($contact['id']) && !empty($contact['avatar'])) {
1882 self::updateAvatar($contact['id'], $contact['avatar'], true);
1884 $new_contact = self::getById($contact['id'], $contact_fields);
1885 if (DBA::isResult($new_contact)) {
1886 // We only update the cache fields
1887 $contact = array_merge($contact, $new_contact);
1891 /// add the default avatars if the fields aren't filled
1892 if (isset($contact['photo']) && empty($contact['photo'])) {
1893 $contact['photo'] = DI::baseUrl() . '/images/person-300.jpg';
1895 if (isset($contact['thumb']) && empty($contact['thumb'])) {
1896 $contact['thumb'] = DI::baseUrl() . '/images/person-80.jpg';
1898 if (isset($contact['micro']) && empty($contact['micro'])) {
1899 $contact['micro'] = DI::baseUrl() . '/images/person-48.jpg';
1906 * Updates the avatar links in a contact only if needed
1908 * @param int $cid Contact id
1909 * @param string $avatar Link to avatar picture
1910 * @param bool $force force picture update
1913 * @throws HTTPException\InternalServerErrorException
1914 * @throws HTTPException\NotFoundException
1915 * @throws \ImagickException
1917 public static function updateAvatar(int $cid, string $avatar, bool $force = false)
1919 $contact = DBA::selectFirst('contact', ['uid', 'avatar', 'photo', 'thumb', 'micro', 'nurl'], ['id' => $cid, 'self' => false]);
1920 if (!DBA::isResult($contact)) {
1924 $uid = $contact['uid'];
1926 // Only update the cached photo links of public contacts when they already are cached
1927 if (($uid == 0) && !$force && empty($contact['thumb']) && empty($contact['micro'])) {
1928 if ($contact['avatar'] != $avatar) {
1929 DBA::update('contact', ['avatar' => $avatar], ['id' => $cid]);
1930 Logger::info('Only update the avatar', ['id' => $cid, 'avatar' => $avatar, 'contact' => $contact]);
1936 $contact['photo'] ?? '',
1937 $contact['thumb'] ?? '',
1938 $contact['micro'] ?? '',
1941 $update = ($contact['avatar'] != $avatar) || $force;
1944 foreach ($data as $image_uri) {
1945 $image_rid = Photo::ridFromURI($image_uri);
1946 if ($image_rid && !Photo::exists(['resource-id' => $image_rid, 'uid' => $uid])) {
1947 Logger::info('Regenerating avatar', ['contact uid' => $uid, 'cid' => $cid, 'missing photo' => $image_rid, 'avatar' => $contact['avatar']]);
1954 $photos = Photo::importProfilePhoto($avatar, $uid, $cid, true);
1956 $fields = ['avatar' => $avatar, 'photo' => $photos[0], 'thumb' => $photos[1], 'micro' => $photos[2], 'avatar-date' => DateTimeFormat::utcNow()];
1957 DBA::update('contact', $fields, ['id' => $cid]);
1958 } elseif (empty($contact['avatar'])) {
1959 // Ensure that the avatar field is set
1960 DBA::update('contact', ['avatar' => $avatar], ['id' => $cid]);
1961 Logger::info('Failed profile import', ['id' => $cid, 'force' => $force, 'avatar' => $avatar, 'contact' => $contact]);
1967 * Helper function for "updateFromProbe". Updates personal and public contact
1969 * @param integer $id contact id
1970 * @param integer $uid user id
1971 * @param string $url The profile URL of the contact
1972 * @param array $fields The fields that are updated
1974 * @throws \Exception
1976 private static function updateContact($id, $uid, $url, array $fields)
1978 if (!DBA::update('contact', $fields, ['id' => $id])) {
1979 Logger::info('Couldn\'t update contact.', ['id' => $id, 'fields' => $fields]);
1983 // Search for duplicated contacts and get rid of them
1984 if (self::removeDuplicates(Strings::normaliseLink($url), $uid) || ($uid != 0)) {
1988 // Update the corresponding gcontact entry
1989 GContact::updateFromPublicContactID($id);
1991 // Archive or unarchive the contact. We only need to do this for the public contact.
1992 // The archive/unarchive function will update the personal contacts by themselves.
1993 $contact = DBA::selectFirst('contact', [], ['id' => $id]);
1994 if (!DBA::isResult($contact)) {
1995 Logger::info('Couldn\'t select contact for archival.', ['id' => $id]);
1999 if (!empty($fields['success_update'])) {
2000 self::unmarkForArchival($contact);
2001 } elseif (!empty($fields['failure_update'])) {
2002 self::markForArchival($contact);
2005 $condition = ['self' => false, 'nurl' => Strings::normaliseLink($url), 'network' => Protocol::FEDERATED];
2007 // These contacts are sharing with us, we don't poll them.
2008 // This means that we don't set the update fields in "OnePoll.php".
2009 $condition['rel'] = self::SHARING;
2010 DBA::update('contact', $fields, $condition);
2012 unset($fields['last-update']);
2013 unset($fields['success_update']);
2014 unset($fields['failure_update']);
2016 if (empty($fields)) {
2020 // We are polling these contacts, so we mustn't set the update fields here.
2021 $condition['rel'] = [self::FOLLOWER, self::FRIEND];
2022 DBA::update('contact', $fields, $condition);
2026 * Remove duplicated contacts
2028 * @param string $nurl Normalised contact url
2029 * @param integer $uid User id
2031 * @throws \Exception
2033 public static function removeDuplicates(string $nurl, int $uid)
2035 $condition = ['nurl' => $nurl, 'uid' => $uid, 'deleted' => false, 'network' => Protocol::FEDERATED];
2036 $count = DBA::count('contact', $condition);
2041 $first_contact = DBA::selectFirst('contact', ['id', 'network'], $condition, ['order' => ['id']]);
2042 if (!DBA::isResult($first_contact)) {
2043 // Shouldn't happen - so we handle it
2047 $first = $first_contact['id'];
2048 Logger::info('Found duplicates', ['count' => $count, 'first' => $first, 'uid' => $uid, 'nurl' => $nurl]);
2049 if (($uid != 0 && ($first_contact['network'] == Protocol::DFRN))) {
2050 // Don't handle non public DFRN duplicates by now (legacy DFRN is very special because of the key handling)
2051 Logger::info('Not handling non public DFRN duplicate', ['uid' => $uid, 'nurl' => $nurl]);
2055 // Find all duplicates
2056 $condition = ["`nurl` = ? AND `uid` = ? AND `id` != ? AND NOT `self` AND NOT `deleted`", $nurl, $uid, $first];
2057 $duplicates = DBA::select('contact', ['id', 'network'], $condition);
2058 while ($duplicate = DBA::fetch($duplicates)) {
2059 if (!in_array($duplicate['network'], Protocol::FEDERATED)) {
2063 Worker::add(PRIORITY_HIGH, 'MergeContact', $first, $duplicate['id'], $uid);
2065 DBA::close($duplicates);
2066 Logger::info('Duplicates handled', ['uid' => $uid, 'nurl' => $nurl]);
2071 * @param integer $id contact id
2072 * @param string $network Optional network we are probing for
2073 * @param boolean $force Optional forcing of network probing (otherwise we use the cached data)
2075 * @throws HTTPException\InternalServerErrorException
2076 * @throws \ImagickException
2078 public static function updateFromProbe($id, $network = '', $force = false)
2081 Warning: Never ever fetch the public key via Probe::uri and write it into the contacts.
2082 This will reliably kill your communication with old Friendica contacts.
2085 // These fields aren't updated by this routine:
2086 // 'xmpp', 'sensitive'
2088 $fields = ['uid', 'avatar', 'name', 'nick', 'location', 'keywords', 'about', 'subscribe',
2089 'unsearchable', 'url', 'addr', 'batch', 'notify', 'poll', 'request', 'confirm', 'poco',
2090 'network', 'alias', 'baseurl', 'gsid', 'forum', 'prv', 'contact-type', 'pubkey'];
2091 $contact = DBA::selectFirst('contact', $fields, ['id' => $id]);
2092 if (!DBA::isResult($contact)) {
2096 $uid = $contact['uid'];
2097 unset($contact['uid']);
2099 $pubkey = $contact['pubkey'];
2100 unset($contact['pubkey']);
2102 $contact['photo'] = $contact['avatar'];
2103 unset($contact['avatar']);
2105 $ret = Probe::uri($contact['url'], $network, $uid, !$force);
2107 $updated = DateTimeFormat::utcNow();
2109 // We must not try to update relay contacts via probe. They are no real contacts.
2110 // We check after the probing to be able to correct falsely detected contact types.
2111 if (($contact['contact-type'] == self::TYPE_RELAY) &&
2112 (!Strings::compareLink($ret['url'], $contact['url']) || in_array($ret['network'], [Protocol::FEED, Protocol::PHANTOM]))) {
2113 self::updateContact($id, $uid, $contact['url'], ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]);
2114 Logger::info('Not updating relais', ['id' => $id, 'url' => $contact['url']]);
2118 // If Probe::uri fails the network code will be different ("feed" or "unkn")
2119 if (in_array($ret['network'], [Protocol::FEED, Protocol::PHANTOM]) && ($ret['network'] != $contact['network'])) {
2120 if ($force && ($uid == 0)) {
2121 self::updateContact($id, $uid, $ret['url'], ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated]);
2126 if (isset($ret['hide']) && is_bool($ret['hide'])) {
2127 $ret['unsearchable'] = $ret['hide'];
2130 if (isset($ret['account-type']) && is_int($ret['account-type'])) {
2131 $ret['forum'] = false;
2132 $ret['prv'] = false;
2133 $ret['contact-type'] = $ret['account-type'];
2134 if ($ret['contact-type'] == User::ACCOUNT_TYPE_COMMUNITY) {
2135 $apcontact = APContact::getByURL($ret['url'], false);
2136 if (isset($apcontact['manually-approve'])) {
2137 $ret['forum'] = (bool)!$apcontact['manually-approve'];
2138 $ret['prv'] = (bool)!$ret['forum'];
2143 $new_pubkey = $ret['pubkey'];
2145 // Update the gcontact entry
2147 GContact::updateFromPublicContactID($id);
2150 ContactRelation::discoverByUrl($ret['url']);
2154 // make sure to not overwrite existing values with blank entries except some technical fields
2155 $keep = ['batch', 'notify', 'poll', 'request', 'confirm', 'poco', 'baseurl'];
2156 foreach ($ret as $key => $val) {
2157 if (!array_key_exists($key, $contact)) {
2159 } elseif (($contact[$key] != '') && ($val === '') && !is_bool($ret[$key]) && !in_array($key, $keep)) {
2160 $ret[$key] = $contact[$key];
2161 } elseif ($ret[$key] != $contact[$key]) {
2166 if (!empty($ret['photo']) && ($ret['network'] != Protocol::FEED)) {
2167 self::updateAvatar($id, $ret['photo'], $update || $force);
2172 self::updateContact($id, $uid, $ret['url'], ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]);
2175 // Update the public contact
2177 self::updateFromProbeByURL($ret['url']);
2183 $ret['nurl'] = Strings::normaliseLink($ret['url']);
2184 $ret['updated'] = $updated;
2186 // Only fill the pubkey if it had been empty before. We have to prevent identity theft.
2187 if (empty($pubkey) && !empty($new_pubkey)) {
2188 $ret['pubkey'] = $new_pubkey;
2191 if (($ret['addr'] != $contact['addr']) || (!empty($ret['alias']) && ($ret['alias'] != $contact['alias']))) {
2192 $ret['uri-date'] = DateTimeFormat::utcNow();
2195 if (($ret['name'] != $contact['name']) || ($ret['nick'] != $contact['nick'])) {
2196 $ret['name-date'] = $updated;
2199 if ($force && ($uid == 0)) {
2200 $ret['last-update'] = $updated;
2201 $ret['success_update'] = $updated;
2202 $ret['failed'] = false;
2205 unset($ret['photo']);
2207 self::updateContact($id, $uid, $ret['url'], $ret);
2212 public static function updateFromProbeByURL($url, $force = false)
2214 $id = self::getIdForURL($url);
2220 self::updateFromProbe($id, '', $force);
2226 * Detects if a given contact array belongs to a legacy DFRN connection
2228 * @param array $contact
2231 public static function isLegacyDFRNContact($contact)
2233 // Newer Friendica contacts are connected via AP, then these fields aren't set
2234 return !empty($contact['dfrn-id']) || !empty($contact['issued-id']);
2238 * Detects the communication protocol for a given contact url.
2239 * This is used to detect Friendica contacts that we can communicate via AP.
2241 * @param string $url contact url
2242 * @param string $network Network of that contact
2243 * @return string with protocol
2245 public static function getProtocol($url, $network)
2247 if ($network != Protocol::DFRN) {
2251 $apcontact = APContact::getByURL($url);
2252 if (!empty($apcontact) && !empty($apcontact['generator'])) {
2253 return Protocol::ACTIVITYPUB;
2260 * Takes a $uid and a url/handle and adds a new contact
2262 * Currently if the contact is DFRN, interactive needs to be true, to redirect to the
2263 * dfrn_request page.
2265 * Otherwise this can be used to bulk add StatusNet contacts, Twitter contacts, etc.
2268 * $return['success'] boolean true if successful
2269 * $return['message'] error text if success is false.
2271 * Takes a $uid and a url/handle and adds a new contact
2273 * @param array $user The user the contact should be created for
2274 * @param string $url The profile URL of the contact
2275 * @param bool $interactive
2276 * @param string $network
2278 * @throws HTTPException\InternalServerErrorException
2279 * @throws HTTPException\NotFoundException
2280 * @throws \ImagickException
2282 public static function createFromProbe(array $user, $url, $interactive = false, $network = '')
2284 $result = ['cid' => -1, 'success' => false, 'message' => ''];
2286 // remove ajax junk, e.g. Twitter
2287 $url = str_replace('/#!/', '/', $url);
2289 if (!Network::isUrlAllowed($url)) {
2290 $result['message'] = DI::l10n()->t('Disallowed profile URL.');
2294 if (Network::isUrlBlocked($url)) {
2295 $result['message'] = DI::l10n()->t('Blocked domain');
2300 $result['message'] = DI::l10n()->t('Connect URL missing.');
2304 $arr = ['url' => $url, 'contact' => []];
2306 Hook::callAll('follow', $arr);
2309 $result['message'] = DI::l10n()->t('The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.');
2313 if (!empty($arr['contact']['name'])) {
2314 $ret = $arr['contact'];
2316 $ret = Probe::uri($url, $network, $user['uid'], false);
2319 if (($network != '') && ($ret['network'] != $network)) {
2320 Logger::log('Expected network ' . $network . ' does not match actual network ' . $ret['network']);
2324 // check if we already have a contact
2325 // the poll url is more reliable than the profile url, as we may have
2326 // indirect links or webfinger links
2328 $condition = ['uid' => $user['uid'], 'poll' => [$ret['poll'], Strings::normaliseLink($ret['poll'])], 'network' => $ret['network'], 'pending' => false];
2329 $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
2330 if (!DBA::isResult($contact)) {
2331 $condition = ['uid' => $user['uid'], 'nurl' => Strings::normaliseLink($ret['url']), 'network' => $ret['network'], 'pending' => false];
2332 $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
2335 $protocol = self::getProtocol($ret['url'], $ret['network']);
2337 if (($protocol === Protocol::DFRN) && !DBA::isResult($contact)) {
2339 if (strlen(DI::baseUrl()->getUrlPath())) {
2340 $myaddr = bin2hex(DI::baseUrl() . '/profile/' . $user['nickname']);
2342 $myaddr = bin2hex($user['nickname'] . '@' . DI::baseUrl()->getHostname());
2345 DI::baseUrl()->redirect($ret['request'] . "&addr=$myaddr");
2349 } elseif (DI::config()->get('system', 'dfrn_only') && ($ret['network'] != Protocol::DFRN)) {
2350 $result['message'] = DI::l10n()->t('This site is not configured to allow communications with other networks.') . EOL;
2351 $result['message'] .= DI::l10n()->t('No compatible communication protocols or feeds were discovered.') . EOL;
2355 // This extra param just confuses things, remove it
2356 if ($protocol === Protocol::DIASPORA) {
2357 $ret['url'] = str_replace('?absolute=true', '', $ret['url']);
2360 // do we have enough information?
2361 if (empty($ret['name']) || empty($ret['poll']) || (empty($ret['url']) && empty($ret['addr']))) {
2362 $result['message'] .= DI::l10n()->t('The profile address specified does not provide adequate information.') . EOL;
2363 if (empty($ret['poll'])) {
2364 $result['message'] .= DI::l10n()->t('No compatible communication protocols or feeds were discovered.') . EOL;
2366 if (empty($ret['name'])) {
2367 $result['message'] .= DI::l10n()->t('An author or name was not found.') . EOL;
2369 if (empty($ret['url'])) {
2370 $result['message'] .= DI::l10n()->t('No browser URL could be matched to this address.') . EOL;
2372 if (strpos($ret['url'], '@') !== false) {
2373 $result['message'] .= DI::l10n()->t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
2374 $result['message'] .= DI::l10n()->t('Use mailto: in front of address to force email check.') . EOL;
2379 if ($protocol === Protocol::OSTATUS && DI::config()->get('system', 'ostatus_disabled')) {
2380 $result['message'] .= DI::l10n()->t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
2381 $ret['notify'] = '';
2384 if (!$ret['notify']) {
2385 $result['message'] .= DI::l10n()->t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
2388 $writeable = ((($protocol === Protocol::OSTATUS) && ($ret['notify'])) ? 1 : 0);
2390 $subhub = (($protocol === Protocol::OSTATUS) ? true : false);
2392 $hidden = (($protocol === Protocol::MAIL) ? 1 : 0);
2395 if ($protocol == Protocol::ACTIVITYPUB) {
2396 $apcontact = APContact::getByURL($ret['url'], false);
2397 if (isset($apcontact['manually-approve'])) {
2398 $pending = (bool)$apcontact['manually-approve'];
2402 if (in_array($protocol, [Protocol::MAIL, Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
2406 if (DBA::isResult($contact)) {
2408 $new_relation = (($contact['rel'] == self::FOLLOWER) ? self::FRIEND : self::SHARING);
2410 $fields = ['rel' => $new_relation, 'subhub' => $subhub, 'readonly' => false];
2411 DBA::update('contact', $fields, ['id' => $contact['id']]);
2413 $new_relation = (in_array($protocol, [Protocol::MAIL]) ? self::FRIEND : self::SHARING);
2415 // create contact record
2417 'uid' => $user['uid'],
2418 'created' => DateTimeFormat::utcNow(),
2419 'url' => $ret['url'],
2420 'nurl' => Strings::normaliseLink($ret['url']),
2421 'addr' => $ret['addr'],
2422 'alias' => $ret['alias'],
2423 'batch' => $ret['batch'],
2424 'notify' => $ret['notify'],
2425 'poll' => $ret['poll'],
2426 'poco' => $ret['poco'],
2427 'name' => $ret['name'],
2428 'nick' => $ret['nick'],
2429 'network' => $ret['network'],
2430 'baseurl' => $ret['baseurl'],
2431 'gsid' => $ret['gsid'] ?? null,
2432 'protocol' => $protocol,
2433 'pubkey' => $ret['pubkey'],
2434 'rel' => $new_relation,
2435 'priority'=> $ret['priority'],
2436 'writable'=> $writeable,
2437 'hidden' => $hidden,
2440 'pending' => $pending,
2445 $contact = DBA::selectFirst('contact', [], ['url' => $ret['url'], 'network' => $ret['network'], 'uid' => $user['uid']]);
2446 if (!DBA::isResult($contact)) {
2447 $result['message'] .= DI::l10n()->t('Unable to retrieve contact information.') . EOL;
2451 $contact_id = $contact['id'];
2452 $result['cid'] = $contact_id;
2454 Group::addMember(User::getDefaultGroup($user['uid'], $contact["network"]), $contact_id);
2456 // Update the avatar
2457 self::updateAvatar($contact_id, $ret['photo']);
2459 // pull feed and consume it, which should subscribe to the hub.
2461 Worker::add(PRIORITY_HIGH, "OnePoll", $contact_id, "force");
2463 $owner = User::getOwnerDataById($user['uid']);
2465 if (DBA::isResult($owner)) {
2466 if (in_array($protocol, [Protocol::OSTATUS, Protocol::DFRN])) {
2467 // create a follow slap
2469 $item['verb'] = Activity::FOLLOW;
2470 $item['gravity'] = GRAVITY_ACTIVITY;
2471 $item['follow'] = $contact["url"];
2473 $item['title'] = '';
2475 $item['uri-id'] = 0;
2476 $item['attach'] = '';
2478 $slap = OStatus::salmon($item, $owner);
2480 if (!empty($contact['notify'])) {
2481 Salmon::slapper($owner, $contact['notify'], $slap);
2483 } elseif ($protocol == Protocol::DIASPORA) {
2484 $ret = Diaspora::sendShare($owner, $contact);
2485 Logger::log('share returns: ' . $ret);
2486 } elseif ($protocol == Protocol::ACTIVITYPUB) {
2487 $activity_id = ActivityPub\Transmitter::activityIDFromContact($contact_id);
2488 if (empty($activity_id)) {
2489 // This really should never happen
2493 $ret = ActivityPub\Transmitter::sendActivity('Follow', $contact['url'], $user['uid'], $activity_id);
2494 Logger::log('Follow returns: ' . $ret);
2498 $result['success'] = true;
2503 * Updated contact's SSL policy
2505 * @param array $contact Contact array
2506 * @param string $new_policy New policy, valid: self,full
2508 * @return array Contact array with updated values
2509 * @throws \Exception
2511 public static function updateSslPolicy(array $contact, $new_policy)
2513 $ssl_changed = false;
2514 if ((intval($new_policy) == BaseURL::SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'], 'https:')) {
2515 $ssl_changed = true;
2516 $contact['url'] = str_replace('https:', 'http:', $contact['url']);
2517 $contact['request'] = str_replace('https:', 'http:', $contact['request']);
2518 $contact['notify'] = str_replace('https:', 'http:', $contact['notify']);
2519 $contact['poll'] = str_replace('https:', 'http:', $contact['poll']);
2520 $contact['confirm'] = str_replace('https:', 'http:', $contact['confirm']);
2521 $contact['poco'] = str_replace('https:', 'http:', $contact['poco']);
2524 if ((intval($new_policy) == BaseURL::SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'], 'http:')) {
2525 $ssl_changed = true;
2526 $contact['url'] = str_replace('http:', 'https:', $contact['url']);
2527 $contact['request'] = str_replace('http:', 'https:', $contact['request']);
2528 $contact['notify'] = str_replace('http:', 'https:', $contact['notify']);
2529 $contact['poll'] = str_replace('http:', 'https:', $contact['poll']);
2530 $contact['confirm'] = str_replace('http:', 'https:', $contact['confirm']);
2531 $contact['poco'] = str_replace('http:', 'https:', $contact['poco']);
2535 $fields = ['url' => $contact['url'], 'request' => $contact['request'],
2536 'notify' => $contact['notify'], 'poll' => $contact['poll'],
2537 'confirm' => $contact['confirm'], 'poco' => $contact['poco']];
2538 DBA::update('contact', $fields, ['id' => $contact['id']]);
2545 * @param array $importer Owner (local user) data
2546 * @param array $contact Existing owner-specific contact data we want to expand the relationship with. Optional.
2547 * @param array $datarray An item-like array with at least the 'author-id' and 'author-url' keys for the contact. Mandatory.
2548 * @param bool $sharing True: Contact is now sharing with Owner; False: Contact is now following Owner (default)
2549 * @param string $note Introduction additional message
2550 * @return bool|null True: follow request is accepted; False: relationship is rejected; Null: relationship is pending
2551 * @throws HTTPException\InternalServerErrorException
2552 * @throws \ImagickException
2554 public static function addRelationship(array $importer, array $contact, array $datarray, $sharing = false, $note = '')
2556 // Should always be set
2557 if (empty($datarray['author-id'])) {
2561 $fields = ['url', 'name', 'nick', 'avatar', 'photo', 'network', 'blocked'];
2562 $pub_contact = DBA::selectFirst('contact', $fields, ['id' => $datarray['author-id']]);
2563 if (!DBA::isResult($pub_contact)) {
2564 // Should never happen
2568 // Contact is blocked at node-level
2569 if (self::isBlocked($datarray['author-id'])) {
2573 $url = ($datarray['author-link'] ?? '') ?: $pub_contact['url'];
2574 $name = $pub_contact['name'];
2575 $photo = ($pub_contact['avatar'] ?? '') ?: $pub_contact["photo"];
2576 $nick = $pub_contact['nick'];
2577 $network = $pub_contact['network'];
2579 // Ensure that we don't create a new contact when there already is one
2580 $cid = self::getIdForURL($url, $importer['uid']);
2582 $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
2585 if (!empty($contact)) {
2586 if (!empty($contact['pending'])) {
2587 Logger::info('Pending contact request already exists.', ['url' => $url, 'uid' => $importer['uid']]);
2591 // Contact is blocked at user-level
2592 if (!empty($contact['id']) && !empty($importer['id']) &&
2593 self::isBlockedByUser($contact['id'], $importer['id'])) {
2597 // Make sure that the existing contact isn't archived
2598 self::unmarkForArchival($contact);
2600 if (($contact['rel'] == self::SHARING)
2601 || ($sharing && $contact['rel'] == self::FOLLOWER)) {
2602 DBA::update('contact', ['rel' => self::FRIEND, 'writable' => true, 'pending' => false],
2603 ['id' => $contact['id'], 'uid' => $importer['uid']]);
2606 // Ensure to always have the correct network type, independent from the connection request method
2607 self::updateFromProbe($contact['id'], '', true);
2611 // send email notification to owner?
2612 if (DBA::exists('contact', ['nurl' => Strings::normaliseLink($url), 'uid' => $importer['uid'], 'pending' => true])) {
2613 Logger::log('ignoring duplicated connection request from pending contact ' . $url);
2617 // create contact record
2618 DBA::insert('contact', [
2619 'uid' => $importer['uid'],
2620 'created' => DateTimeFormat::utcNow(),
2622 'nurl' => Strings::normaliseLink($url),
2625 'network' => $network,
2626 'rel' => self::FOLLOWER,
2633 $contact_id = DBA::lastInsertId();
2635 // Ensure to always have the correct network type, independent from the connection request method
2636 self::updateFromProbe($contact_id, '', true);
2638 self::updateAvatar($contact_id, $photo, true);
2640 $contact_record = DBA::selectFirst('contact', ['id', 'network', 'name', 'url', 'photo'], ['id' => $contact_id]);
2642 /// @TODO Encapsulate this into a function/method
2643 $fields = ['uid', 'username', 'email', 'page-flags', 'notify-flags', 'language'];
2644 $user = DBA::selectFirst('user', $fields, ['uid' => $importer['uid']]);
2645 if (DBA::isResult($user) && !in_array($user['page-flags'], [User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE, User::PAGE_FLAGS_COMMUNITY])) {
2646 // create notification
2647 $hash = Strings::getRandomHex();
2649 if (is_array($contact_record)) {
2650 DBA::insert('intro', ['uid' => $importer['uid'], 'contact-id' => $contact_record['id'],
2651 'blocked' => false, 'knowyou' => false, 'note' => $note,
2652 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow()]);
2655 Group::addMember(User::getDefaultGroup($importer['uid'], $contact_record["network"]), $contact_record['id']);
2657 if (($user['notify-flags'] & Type::INTRO) &&
2658 in_array($user['page-flags'], [User::PAGE_FLAGS_NORMAL])) {
2661 'type' => Type::INTRO,
2662 'notify_flags' => $user['notify-flags'],
2663 'language' => $user['language'],
2664 'to_name' => $user['username'],
2665 'to_email' => $user['email'],
2666 'uid' => $user['uid'],
2667 'link' => DI::baseUrl() . '/notifications/intros',
2668 'source_name' => ((strlen(stripslashes($contact_record['name']))) ? stripslashes($contact_record['name']) : DI::l10n()->t('[Name Withheld]')),
2669 'source_link' => $contact_record['url'],
2670 'source_photo' => $contact_record['photo'],
2671 'verb' => ($sharing ? Activity::FRIEND : Activity::FOLLOW),
2675 } elseif (DBA::isResult($user) && in_array($user['page-flags'], [User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE, User::PAGE_FLAGS_COMMUNITY])) {
2676 if (($user['page-flags'] == User::PAGE_FLAGS_FREELOVE) && ($network != Protocol::DIASPORA)) {
2677 self::createFromProbe($importer, $url, false, $network);
2680 $condition = ['uid' => $importer['uid'], 'url' => $url, 'pending' => true];
2681 $fields = ['pending' => false];
2682 if ($user['page-flags'] == User::PAGE_FLAGS_FREELOVE) {
2683 $fields['rel'] = Contact::FRIEND;
2686 DBA::update('contact', $fields, $condition);
2695 public static function removeFollower($importer, $contact, array $datarray = [], $item = "")
2697 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::SHARING)) {
2698 DBA::update('contact', ['rel' => self::SHARING], ['id' => $contact['id']]);
2700 Contact::remove($contact['id']);
2704 public static function removeSharer($importer, $contact, array $datarray = [], $item = "")
2706 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::FOLLOWER)) {
2707 DBA::update('contact', ['rel' => self::FOLLOWER], ['id' => $contact['id']]);
2709 Contact::remove($contact['id']);
2714 * Create a birthday event.
2716 * Update the year and the birthday.
2718 public static function updateBirthdays()
2722 AND `bd` > "0001-01-01"
2723 AND SUBSTRING(`bd`, 1, 4) != `bdyear`
2724 AND (`contact`.`rel` = ? OR `contact`.`rel` = ?)
2725 AND NOT `contact`.`pending`
2726 AND NOT `contact`.`hidden`
2727 AND NOT `contact`.`blocked`
2728 AND NOT `contact`.`archive`
2729 AND NOT `contact`.`deleted`',
2734 $contacts = DBA::select('contact', ['id', 'uid', 'name', 'url', 'bd'], $condition);
2736 while ($contact = DBA::fetch($contacts)) {
2737 Logger::log('update_contact_birthday: ' . $contact['bd']);
2739 $nextbd = DateTimeFormat::utcNow('Y') . substr($contact['bd'], 4);
2741 if (Event::createBirthday($contact, $nextbd)) {
2745 ['bdyear' => substr($nextbd, 0, 4), 'bd' => $nextbd],
2746 ['id' => $contact['id']]
2750 DBA::close($contacts);
2754 * Remove the unavailable contact ids from the provided list
2756 * @param array $contact_ids Contact id list
2758 * @throws \Exception
2760 public static function pruneUnavailable(array $contact_ids)
2762 if (empty($contact_ids)) {
2766 $contacts = Contact::selectToArray(['id'], [
2767 'id' => $contact_ids,
2773 return array_column($contacts, 'id');
2777 * Returns a magic link to authenticate remote visitors
2779 * @todo check if the return is either a fully qualified URL or a relative path to Friendica basedir
2781 * @param string $contact_url The address of the target contact profile
2782 * @param string $url An url that we will be redirected to after the authentication
2784 * @return string with "redir" link
2785 * @throws HTTPException\InternalServerErrorException
2786 * @throws \ImagickException
2788 public static function magicLink($contact_url, $url = '')
2790 if (!Session::isAuthenticated()) {
2791 return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2794 $data = self::getProbeDataFromDatabase($contact_url);
2796 return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2799 // Prevents endless loop in case only a non-public contact exists for the contact URL
2800 unset($data['uid']);
2802 return self::magicLinkByContact($data, $url ?: $contact_url);
2806 * Returns a magic link to authenticate remote visitors
2808 * @param integer $cid The contact id of the target contact profile
2809 * @param string $url An url that we will be redirected to after the authentication
2811 * @return string with "redir" link
2812 * @throws HTTPException\InternalServerErrorException
2813 * @throws \ImagickException
2815 public static function magicLinkbyId($cid, $url = '')
2817 $contact = DBA::selectFirst('contact', ['id', 'network', 'url', 'uid'], ['id' => $cid]);
2819 return self::magicLinkByContact($contact, $url);
2823 * Returns a magic link to authenticate remote visitors
2825 * @param array $contact The contact array with "uid", "network" and "url"
2826 * @param string $url An url that we will be redirected to after the authentication
2828 * @return string with "redir" link
2829 * @throws HTTPException\InternalServerErrorException
2830 * @throws \ImagickException
2832 public static function magicLinkByContact($contact, $url = '')
2834 $destination = $url ?: $contact['url']; // Equivalent to ($url != '') ? $url : $contact['url'];
2836 if (!Session::isAuthenticated() || ($contact['network'] != Protocol::DFRN)) {
2837 return $destination;
2840 // Only redirections to the same host do make sense
2841 if (($url != '') && (parse_url($url, PHP_URL_HOST) != parse_url($contact['url'], PHP_URL_HOST))) {
2845 if (!empty($contact['uid'])) {
2846 return self::magicLink($contact['url'], $url);
2849 if (empty($contact['id'])) {
2850 return $destination;
2853 $redirect = 'redir/' . $contact['id'];
2855 if (($url != '') && !Strings::compareLink($contact['url'], $url)) {
2856 $redirect .= '?url=' . $url;
2863 * Remove a contact from all groups
2865 * @param integer $contact_id
2867 * @return boolean Success
2869 public static function removeFromGroups($contact_id)
2871 return DBA::delete('group_member', ['contact-id' => $contact_id]);
2875 * Is the contact a forum?
2877 * @param integer $contactid ID of the contact
2879 * @return boolean "true" if it is a forum
2881 public static function isForum($contactid)
2883 $fields = ['forum', 'prv'];
2884 $condition = ['id' => $contactid];
2885 $contact = DBA::selectFirst('contact', $fields, $condition);
2886 if (!DBA::isResult($contact)) {
2891 return ($contact['forum'] || $contact['prv']);
2895 * Can the remote contact receive private messages?
2897 * @param array $contact
2900 public static function canReceivePrivateMessages(array $contact)
2902 $protocol = $contact['network'] ?? $contact['protocol'] ?? Protocol::PHANTOM;
2903 $self = $contact['self'] ?? false;
2905 return in_array($protocol, [Protocol::DFRN, Protocol::DIASPORA, Protocol::ACTIVITYPUB]) && !$self;