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\Strings;
49 * functions for interacting with a contact
54 * @deprecated since version 2019.03
55 * @see User::PAGE_FLAGS_NORMAL
57 const PAGE_NORMAL = User::PAGE_FLAGS_NORMAL;
59 * @deprecated since version 2019.03
60 * @see User::PAGE_FLAGS_SOAPBOX
62 const PAGE_SOAPBOX = User::PAGE_FLAGS_SOAPBOX;
64 * @deprecated since version 2019.03
65 * @see User::PAGE_FLAGS_COMMUNITY
67 const PAGE_COMMUNITY = User::PAGE_FLAGS_COMMUNITY;
69 * @deprecated since version 2019.03
70 * @see User::PAGE_FLAGS_FREELOVE
72 const PAGE_FREELOVE = User::PAGE_FLAGS_FREELOVE;
74 * @deprecated since version 2019.03
75 * @see User::PAGE_FLAGS_BLOG
77 const PAGE_BLOG = User::PAGE_FLAGS_BLOG;
79 * @deprecated since version 2019.03
80 * @see User::PAGE_FLAGS_PRVGROUP
82 const PAGE_PRVGROUP = User::PAGE_FLAGS_PRVGROUP;
90 * TYPE_UNKNOWN - the account has been imported from gcontact where this is the default type value
92 * TYPE_PERSON - the account belongs to a person
93 * Associated page types: PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE
95 * TYPE_ORGANISATION - the account belongs to an organisation
96 * Associated page type: PAGE_SOAPBOX
98 * TYPE_NEWS - the account is a news reflector
99 * Associated page type: PAGE_SOAPBOX
101 * TYPE_COMMUNITY - the account is community forum
102 * Associated page types: PAGE_COMMUNITY, PAGE_PRVGROUP
104 * TYPE_RELAY - the account is a relay
105 * This will only be assigned to contacts, not to user accounts
108 const TYPE_UNKNOWN = -1;
109 const TYPE_PERSON = User::ACCOUNT_TYPE_PERSON;
110 const TYPE_ORGANISATION = User::ACCOUNT_TYPE_ORGANISATION;
111 const TYPE_NEWS = User::ACCOUNT_TYPE_NEWS;
112 const TYPE_COMMUNITY = User::ACCOUNT_TYPE_COMMUNITY;
113 const TYPE_RELAY = User::ACCOUNT_TYPE_RELAY;
132 * @param array $fields Array of selected fields, empty for all
133 * @param array $condition Array of fields for condition
134 * @param array $params Array of several parameters
138 public static function selectToArray(array $fields = [], array $condition = [], array $params = [])
140 return DBA::selectToArray('contact', $fields, $condition, $params);
144 * @param array $fields Array of selected fields, empty for all
145 * @param array $condition Array of fields for condition
146 * @param array $params Array of several parameters
150 public static function selectFirst(array $fields = [], array $condition = [], array $params = [])
152 $contact = DBA::selectFirst('contact', $fields, $condition, $params);
158 * Insert a row into the contact table
159 * Important: You can't use DBA::lastInsertId() after this call since it will be set to 0.
161 * @param array $fields field array
162 * @param bool $on_duplicate_update Do an update on a duplicate entry
164 * @return boolean was the insert successful?
167 public static function insert(array $fields, bool $on_duplicate_update = false)
169 $ret = DBA::insert('contact', $fields, $on_duplicate_update);
170 $contact = DBA::selectFirst('contact', ['nurl', 'uid'], ['id' => DBA::lastInsertId()]);
171 if (!DBA::isResult($contact)) {
176 // Search for duplicated contacts and get rid of them
177 self::removeDuplicates($contact['nurl'], $contact['uid']);
183 * @param integer $id Contact ID
184 * @param array $fields Array of selected fields, empty for all
185 * @return array|boolean Contact record if it exists, false otherwise
188 public static function getById($id, $fields = [])
190 return DBA::selectFirst('contact', $fields, ['id' => $id]);
194 * Fetches a contact by a given url
196 * @param string $url profile url
197 * @param boolean $update true = always update, false = never update, null = update when not found or outdated
198 * @param array $fields Field list
199 * @param integer $uid User ID of the contact
200 * @return array contact array
202 public static function getByURL(string $url, $update = null, array $fields = [], int $uid = 0)
204 if ($update || is_null($update)) {
205 $cid = self::getIdForURL($url, $uid, $update);
209 return self::getById($cid, $fields);
212 // Add internal fields
214 if (!empty($fields)) {
215 foreach (['id', 'updated', 'network'] as $internal) {
216 if (!in_array($internal, $fields)) {
217 $fields[] = $internal;
218 $removal[] = $internal;
223 // We first try the nurl (http://server.tld/nick), most common case
224 $options = ['order' => ['id']];
225 $contact = DBA::selectFirst('contact', $fields, ['nurl' => Strings::normaliseLink($url), 'uid' => $uid, 'deleted' => false], $options);
227 // Then the addr (nick@server.tld)
228 if (!DBA::isResult($contact)) {
229 $contact = DBA::selectFirst('contact', $fields, ['addr' => str_replace('acct:', '', $url), 'uid' => $uid, 'deleted' => false], $options);
232 // Then the alias (which could be anything)
233 if (!DBA::isResult($contact)) {
234 // The link could be provided as http although we stored it as https
235 $ssl_url = str_replace('http://', 'https://', $url);
236 $condition = ['`alias` IN (?, ?, ?) AND `uid` = ? AND NOT `deleted`', $url, Strings::normaliseLink($url), $ssl_url, $uid];
237 $contact = DBA::selectFirst('contact', $fields, $condition, $options);
240 // Update the contact in the background if needed
241 if ((($contact['updated'] < DateTimeFormat::utc('now -7 days')) || empty($contact['avatar'])) &&
242 in_array($contact['network'], Protocol::FEDERATED)) {
243 Worker::add(PRIORITY_LOW, "UpdateContact", $contact['id'], ($uid == 0 ? 'force' : ''));
246 // Remove the internal fields
247 foreach ($removal as $internal) {
248 unset($contact[$internal]);
255 * Fetches a contact for a given user by a given url.
256 * In difference to "getByURL" the function will fetch a public contact when no user contact had been found.
258 * @param string $url profile url
259 * @param integer $uid User ID of the contact
260 * @param boolean $update true = always update, false = never update, null = update when not found or outdated
261 * @param array $fields Field list
262 * @return array contact array
264 public static function getByURLForUser(string $url, int $uid = 0, $update = false, array $fields = [])
267 $contact = self::getByURL($url, $update, $fields, $uid);
268 if (!empty($contact)) {
269 if (!empty($contact['id'])) {
270 $contact['cid'] = $contact['id'];
277 $contact = self::getByURL($url, $update, $fields);
278 if (!empty($contact['id'])) {
280 $contact['zid'] = $contact['id'];
286 * Tests if the given contact is a follower
288 * @param int $cid Either public contact id or user's contact id
289 * @param int $uid User ID
291 * @return boolean is the contact id a follower?
292 * @throws HTTPException\InternalServerErrorException
293 * @throws \ImagickException
295 public static function isFollower($cid, $uid)
297 if (self::isBlockedByUser($cid, $uid)) {
301 $cdata = self::getPublicAndUserContacID($cid, $uid);
302 if (empty($cdata['user'])) {
306 $condition = ['id' => $cdata['user'], 'rel' => [self::FOLLOWER, self::FRIEND]];
307 return DBA::exists('contact', $condition);
311 * Tests if the given contact url is a follower
313 * @param string $url Contact URL
314 * @param int $uid User ID
316 * @return boolean is the contact id a follower?
317 * @throws HTTPException\InternalServerErrorException
318 * @throws \ImagickException
320 public static function isFollowerByURL($url, $uid)
322 $cid = self::getIdForURL($url, $uid, false);
328 return self::isFollower($cid, $uid);
332 * Tests if the given user follow the given contact
334 * @param int $cid Either public contact id or user's contact id
335 * @param int $uid User ID
337 * @return boolean is the contact url being followed?
338 * @throws HTTPException\InternalServerErrorException
339 * @throws \ImagickException
341 public static function isSharing($cid, $uid)
343 if (self::isBlockedByUser($cid, $uid)) {
347 $cdata = self::getPublicAndUserContacID($cid, $uid);
348 if (empty($cdata['user'])) {
352 $condition = ['id' => $cdata['user'], 'rel' => [self::SHARING, self::FRIEND]];
353 return DBA::exists('contact', $condition);
357 * Tests if the given user follow the given contact url
359 * @param string $url Contact URL
360 * @param int $uid User ID
362 * @return boolean is the contact url being followed?
363 * @throws HTTPException\InternalServerErrorException
364 * @throws \ImagickException
366 public static function isSharingByURL($url, $uid)
368 $cid = self::getIdForURL($url, $uid, false);
374 return self::isSharing($cid, $uid);
378 * Get the basepath for a given contact link
380 * @param string $url The contact link
381 * @param boolean $dont_update Don't update the contact
383 * @return string basepath
384 * @throws HTTPException\InternalServerErrorException
385 * @throws \ImagickException
387 public static function getBasepath($url, $dont_update = false)
389 $contact = DBA::selectFirst('contact', ['id', 'baseurl'], ['uid' => 0, 'nurl' => Strings::normaliseLink($url)]);
390 if (!DBA::isResult($contact)) {
394 if (!empty($contact['baseurl'])) {
395 return $contact['baseurl'];
396 } elseif ($dont_update) {
400 // Update the existing contact
401 self::updateFromProbe($contact['id'], '', true);
403 // And fetch the result
404 $contact = DBA::selectFirst('contact', ['baseurl'], ['id' => $contact['id']]);
405 if (empty($contact['baseurl'])) {
406 Logger::info('No baseurl for contact', ['url' => $url]);
410 Logger::info('Found baseurl for contact', ['url' => $url, 'baseurl' => $contact['baseurl']]);
411 return $contact['baseurl'];
415 * Check if the given contact url is on the same server
417 * @param string $url The contact link
419 * @return boolean Is it the same server?
421 public static function isLocal($url)
423 return Strings::compareLink(self::getBasepath($url, true), DI::baseUrl());
427 * Check if the given contact ID is on the same server
429 * @param string $url The contact link
431 * @return boolean Is it the same server?
433 public static function isLocalById(int $cid)
435 $contact = DBA::selectFirst('contact', ['url', 'baseurl'], ['id' => $cid]);
436 if (!DBA::isResult($contact)) {
440 if (empty($contact['baseurl'])) {
441 $baseurl = self::getBasepath($contact['url'], true);
443 $baseurl = $contact['baseurl'];
446 return Strings::compareLink($baseurl, DI::baseUrl());
450 * Returns the public contact id of the given user id
452 * @param integer $uid User ID
454 * @return integer|boolean Public contact id for given user id
457 public static function getPublicIdByUserId($uid)
459 $self = DBA::selectFirst('contact', ['url'], ['self' => true, 'uid' => $uid]);
460 if (!DBA::isResult($self)) {
463 return self::getIdForURL($self['url'], 0, false);
467 * Returns the contact id for the user and the public contact id for a given contact id
469 * @param int $cid Either public contact id or user's contact id
470 * @param int $uid User ID
472 * @return array with public and user's contact id
473 * @throws HTTPException\InternalServerErrorException
474 * @throws \ImagickException
476 public static function getPublicAndUserContacID($cid, $uid)
478 if (empty($uid) || empty($cid)) {
482 $contact = DBA::selectFirst('contact', ['id', 'uid', 'url'], ['id' => $cid]);
483 if (!DBA::isResult($contact)) {
487 // We quit when the user id don't match the user id of the provided contact
488 if (($contact['uid'] != $uid) && ($contact['uid'] != 0)) {
492 if ($contact['uid'] != 0) {
493 $pcid = Contact::getIdForURL($contact['url'], 0, false, ['url' => $contact['url']]);
497 $ucid = $contact['id'];
499 $pcid = $contact['id'];
500 $ucid = Contact::getIdForURL($contact['url'], $uid, false);
503 return ['public' => $pcid, 'user' => $ucid];
507 * Returns contact details for a given contact id in combination with a user id
509 * @param int $cid A contact ID
510 * @param int $uid The User ID
511 * @param array $fields The selected fields for the contact
513 * @return array The contact details
517 public static function getContactForUser($cid, $uid, array $fields = [])
519 $contact = DBA::selectFirst('contact', $fields, ['id' => $cid, 'uid' => $uid]);
521 if (!DBA::isResult($contact)) {
529 * Block contact id for user id
531 * @param int $cid Either public contact id or user's contact id
532 * @param int $uid User ID
533 * @param boolean $blocked Is the contact blocked or unblocked?
536 public static function setBlockedForUser($cid, $uid, $blocked)
538 $cdata = self::getPublicAndUserContacID($cid, $uid);
543 if ($cdata['user'] != 0) {
544 DBA::update('contact', ['blocked' => $blocked], ['id' => $cdata['user'], 'pending' => false]);
547 DBA::update('user-contact', ['blocked' => $blocked], ['cid' => $cdata['public'], 'uid' => $uid], true);
551 * Returns "block" state for contact id and user id
553 * @param int $cid Either public contact id or user's contact id
554 * @param int $uid User ID
556 * @return boolean is the contact id blocked for the given user?
559 public static function isBlockedByUser($cid, $uid)
561 $cdata = self::getPublicAndUserContacID($cid, $uid);
566 $public_blocked = false;
568 if (!empty($cdata['public'])) {
569 $public_contact = DBA::selectFirst('user-contact', ['blocked'], ['cid' => $cdata['public'], 'uid' => $uid]);
570 if (DBA::isResult($public_contact)) {
571 $public_blocked = $public_contact['blocked'];
575 $user_blocked = $public_blocked;
577 if (!empty($cdata['user'])) {
578 $user_contact = DBA::selectFirst('contact', ['blocked'], ['id' => $cdata['user'], 'pending' => false]);
579 if (DBA::isResult($user_contact)) {
580 $user_blocked = $user_contact['blocked'];
584 if ($user_blocked != $public_blocked) {
585 DBA::update('user-contact', ['blocked' => $user_blocked], ['cid' => $cdata['public'], 'uid' => $uid], true);
588 return $user_blocked;
592 * Ignore contact id for user id
594 * @param int $cid Either public contact id or user's contact id
595 * @param int $uid User ID
596 * @param boolean $ignored Is the contact ignored or unignored?
599 public static function setIgnoredForUser($cid, $uid, $ignored)
601 $cdata = self::getPublicAndUserContacID($cid, $uid);
606 if ($cdata['user'] != 0) {
607 DBA::update('contact', ['readonly' => $ignored], ['id' => $cdata['user'], 'pending' => false]);
610 DBA::update('user-contact', ['ignored' => $ignored], ['cid' => $cdata['public'], 'uid' => $uid], true);
614 * Returns "ignore" state for contact id and user id
616 * @param int $cid Either public contact id or user's contact id
617 * @param int $uid User ID
619 * @return boolean is the contact id ignored for the given user?
622 public static function isIgnoredByUser($cid, $uid)
624 $cdata = self::getPublicAndUserContacID($cid, $uid);
629 $public_ignored = false;
631 if (!empty($cdata['public'])) {
632 $public_contact = DBA::selectFirst('user-contact', ['ignored'], ['cid' => $cdata['public'], 'uid' => $uid]);
633 if (DBA::isResult($public_contact)) {
634 $public_ignored = $public_contact['ignored'];
638 $user_ignored = $public_ignored;
640 if (!empty($cdata['user'])) {
641 $user_contact = DBA::selectFirst('contact', ['readonly'], ['id' => $cdata['user'], 'pending' => false]);
642 if (DBA::isResult($user_contact)) {
643 $user_ignored = $user_contact['readonly'];
647 if ($user_ignored != $public_ignored) {
648 DBA::update('user-contact', ['ignored' => $user_ignored], ['cid' => $cdata['public'], 'uid' => $uid], true);
651 return $user_ignored;
655 * Set "collapsed" for contact id and user id
657 * @param int $cid Either public contact id or user's contact id
658 * @param int $uid User ID
659 * @param boolean $collapsed are the contact's posts collapsed or uncollapsed?
662 public static function setCollapsedForUser($cid, $uid, $collapsed)
664 $cdata = self::getPublicAndUserContacID($cid, $uid);
669 DBA::update('user-contact', ['collapsed' => $collapsed], ['cid' => $cdata['public'], 'uid' => $uid], true);
673 * Returns "collapsed" state for contact id and user id
675 * @param int $cid Either public contact id or user's contact id
676 * @param int $uid User ID
678 * @return boolean is the contact id blocked for the given user?
679 * @throws HTTPException\InternalServerErrorException
680 * @throws \ImagickException
682 public static function isCollapsedByUser($cid, $uid)
684 $cdata = self::getPublicAndUserContacID($cid, $uid);
691 if (!empty($cdata['public'])) {
692 $public_contact = DBA::selectFirst('user-contact', ['collapsed'], ['cid' => $cdata['public'], 'uid' => $uid]);
693 if (DBA::isResult($public_contact)) {
694 $collapsed = $public_contact['collapsed'];
702 * Returns a list of contacts belonging in a group
708 public static function getByGroupId($gid)
713 $stmt = DBA::p('SELECT `group_member`.`contact-id`, `contact`.*
715 INNER JOIN `group_member`
716 ON `contact`.`id` = `group_member`.`contact-id`
718 AND `contact`.`uid` = ?
719 AND NOT `contact`.`self`
720 AND NOT `contact`.`deleted`
721 AND NOT `contact`.`blocked`
722 AND NOT `contact`.`pending`
723 ORDER BY `contact`.`name` ASC',
728 if (DBA::isResult($stmt)) {
729 $return = DBA::toArray($stmt);
737 * Creates the self-contact for the provided user id
740 * @return bool Operation success
741 * @throws HTTPException\InternalServerErrorException
743 public static function createSelfFromUserId($uid)
745 // Only create the entry if it doesn't exist yet
746 if (DBA::exists('contact', ['uid' => $uid, 'self' => true])) {
750 $user = DBA::selectFirst('user', ['uid', 'username', 'nickname'], ['uid' => $uid]);
751 if (!DBA::isResult($user)) {
755 $return = DBA::insert('contact', [
756 'uid' => $user['uid'],
757 'created' => DateTimeFormat::utcNow(),
759 'name' => $user['username'],
760 'nick' => $user['nickname'],
761 'photo' => DI::baseUrl() . '/photo/profile/' . $user['uid'] . '.jpg',
762 'thumb' => DI::baseUrl() . '/photo/avatar/' . $user['uid'] . '.jpg',
763 'micro' => DI::baseUrl() . '/photo/micro/' . $user['uid'] . '.jpg',
766 'url' => DI::baseUrl() . '/profile/' . $user['nickname'],
767 'nurl' => Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']),
768 'addr' => $user['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3),
769 'request' => DI::baseUrl() . '/dfrn_request/' . $user['nickname'],
770 'notify' => DI::baseUrl() . '/dfrn_notify/' . $user['nickname'],
771 'poll' => DI::baseUrl() . '/dfrn_poll/' . $user['nickname'],
772 'confirm' => DI::baseUrl() . '/dfrn_confirm/' . $user['nickname'],
773 'poco' => DI::baseUrl() . '/poco/' . $user['nickname'],
774 'name-date' => DateTimeFormat::utcNow(),
775 'uri-date' => DateTimeFormat::utcNow(),
776 'avatar-date' => DateTimeFormat::utcNow(),
784 * Updates the self-contact for the provided user id
787 * @param boolean $update_avatar Force the avatar update
788 * @throws HTTPException\InternalServerErrorException
790 public static function updateSelfFromUserID($uid, $update_avatar = false)
792 $fields = ['id', 'name', 'nick', 'location', 'about', 'keywords', 'avatar',
793 'xmpp', 'contact-type', 'forum', 'prv', 'avatar-date', 'url', 'nurl', 'unsearchable',
794 'photo', 'thumb', 'micro', 'addr', 'request', 'notify', 'poll', 'confirm', 'poco'];
795 $self = DBA::selectFirst('contact', $fields, ['uid' => $uid, 'self' => true]);
796 if (!DBA::isResult($self)) {
800 $fields = ['nickname', 'page-flags', 'account-type'];
801 $user = DBA::selectFirst('user', $fields, ['uid' => $uid]);
802 if (!DBA::isResult($user)) {
806 $fields = ['name', 'photo', 'thumb', 'about', 'address', 'locality', 'region',
807 'country-name', 'pub_keywords', 'xmpp', 'net-publish'];
808 $profile = DBA::selectFirst('profile', $fields, ['uid' => $uid]);
809 if (!DBA::isResult($profile)) {
813 $file_suffix = 'jpg';
815 $fields = ['name' => $profile['name'], 'nick' => $user['nickname'],
816 'avatar-date' => $self['avatar-date'], 'location' => Profile::formatLocation($profile),
817 'about' => $profile['about'], 'keywords' => $profile['pub_keywords'],
818 'contact-type' => $user['account-type'],
819 'xmpp' => $profile['xmpp']];
821 $avatar = Photo::selectFirst(['resource-id', 'type'], ['uid' => $uid, 'profile' => true]);
822 if (DBA::isResult($avatar)) {
823 if ($update_avatar) {
824 $fields['avatar-date'] = DateTimeFormat::utcNow();
827 // Creating the path to the avatar, beginning with the file suffix
828 $types = Images::supportedTypes();
829 if (isset($types[$avatar['type']])) {
830 $file_suffix = $types[$avatar['type']];
833 // We are adding a timestamp value so that other systems won't use cached content
834 $timestamp = strtotime($fields['avatar-date']);
836 $prefix = DI::baseUrl() . '/photo/' .$avatar['resource-id'] . '-';
837 $suffix = '.' . $file_suffix . '?ts=' . $timestamp;
839 $fields['photo'] = $prefix . '4' . $suffix;
840 $fields['thumb'] = $prefix . '5' . $suffix;
841 $fields['micro'] = $prefix . '6' . $suffix;
843 // We hadn't found a photo entry, so we use the default avatar
844 $fields['photo'] = DI::baseUrl() . '/images/person-300.jpg';
845 $fields['thumb'] = DI::baseUrl() . '/images/person-80.jpg';
846 $fields['micro'] = DI::baseUrl() . '/images/person-48.jpg';
849 $fields['avatar'] = DI::baseUrl() . '/photo/profile/' .$uid . '.' . $file_suffix;
850 $fields['forum'] = $user['page-flags'] == User::PAGE_FLAGS_COMMUNITY;
851 $fields['prv'] = $user['page-flags'] == User::PAGE_FLAGS_PRVGROUP;
852 $fields['unsearchable'] = !$profile['net-publish'];
854 // it seems as if ported accounts can have wrong values, so we make sure that now everything is fine.
855 $fields['url'] = DI::baseUrl() . '/profile/' . $user['nickname'];
856 $fields['nurl'] = Strings::normaliseLink($fields['url']);
857 $fields['addr'] = $user['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
858 $fields['request'] = DI::baseUrl() . '/dfrn_request/' . $user['nickname'];
859 $fields['notify'] = DI::baseUrl() . '/dfrn_notify/' . $user['nickname'];
860 $fields['poll'] = DI::baseUrl() . '/dfrn_poll/'. $user['nickname'];
861 $fields['confirm'] = DI::baseUrl() . '/dfrn_confirm/' . $user['nickname'];
862 $fields['poco'] = DI::baseUrl() . '/poco/' . $user['nickname'];
866 foreach ($fields as $field => $content) {
867 if ($self[$field] != $content) {
873 if ($fields['name'] != $self['name']) {
874 $fields['name-date'] = DateTimeFormat::utcNow();
876 $fields['updated'] = DateTimeFormat::utcNow();
877 DBA::update('contact', $fields, ['id' => $self['id']]);
879 // Update the public contact as well
880 DBA::update('contact', $fields, ['uid' => 0, 'nurl' => $self['nurl']]);
882 // Update the profile
883 $fields = ['photo' => DI::baseUrl() . '/photo/profile/' .$uid . '.' . $file_suffix,
884 'thumb' => DI::baseUrl() . '/photo/avatar/' . $uid .'.' . $file_suffix];
885 DBA::update('profile', $fields, ['uid' => $uid]);
890 * Marks a contact for removal
892 * @param int $id contact id
894 * @throws HTTPException\InternalServerErrorException
896 public static function remove($id)
898 // We want just to make sure that we don't delete our "self" contact
899 $contact = DBA::selectFirst('contact', ['uid'], ['id' => $id, 'self' => false]);
900 if (!DBA::isResult($contact) || !intval($contact['uid'])) {
904 // Archive the contact
905 DBA::update('contact', ['archive' => true, 'network' => Protocol::PHANTOM, 'deleted' => true], ['id' => $id]);
907 // Delete it in the background
908 Worker::add(PRIORITY_MEDIUM, 'RemoveContact', $id);
912 * Sends an unfriend message. Does not remove the contact
914 * @param array $user User unfriending
915 * @param array $contact Contact unfriended
916 * @param boolean $dissolve Remove the contact on the remote side
918 * @throws HTTPException\InternalServerErrorException
919 * @throws \ImagickException
921 public static function terminateFriendship(array $user, array $contact, $dissolve = false)
923 if (empty($contact['network'])) {
927 $protocol = $contact['network'];
928 if (($protocol == Protocol::DFRN) && !self::isLegacyDFRNContact($contact)) {
929 $protocol = Protocol::ACTIVITYPUB;
932 if (($protocol == Protocol::DFRN) && $dissolve) {
933 DFRN::deliver($user, $contact, 'placeholder', true);
934 } elseif (in_array($protocol, [Protocol::OSTATUS, Protocol::DFRN])) {
935 // create an unfollow slap
937 $item['verb'] = Activity::O_UNFOLLOW;
938 $item['gravity'] = GRAVITY_ACTIVITY;
939 $item['follow'] = $contact["url"];
944 $item['attach'] = '';
945 $slap = OStatus::salmon($item, $user);
947 if (!empty($contact['notify'])) {
948 Salmon::slapper($user, $contact['notify'], $slap);
950 } elseif ($protocol == Protocol::DIASPORA) {
951 Diaspora::sendUnshare($user, $contact);
952 } elseif ($protocol == Protocol::ACTIVITYPUB) {
953 ActivityPub\Transmitter::sendContactUndo($contact['url'], $contact['id'], $user['uid']);
956 ActivityPub\Transmitter::sendContactReject($contact['url'], $contact['hub-verify'], $user['uid']);
962 * Marks a contact for archival after a communication issue delay
964 * Contact has refused to recognise us as a friend. We will start a countdown.
965 * If they still don't recognise us in 32 days, the relationship is over,
966 * and we won't waste any more time trying to communicate with them.
967 * This provides for the possibility that their database is temporarily messed
968 * up or some other transient event and that there's a possibility we could recover from it.
970 * @param array $contact contact to mark for archival
972 * @throws HTTPException\InternalServerErrorException
974 public static function markForArchival(array $contact)
976 if (!isset($contact['url']) && !empty($contact['id'])) {
977 $fields = ['id', 'url', 'archive', 'self', 'term-date'];
978 $contact = DBA::selectFirst('contact', $fields, ['id' => $contact['id']]);
979 if (!DBA::isResult($contact)) {
982 } elseif (!isset($contact['url'])) {
983 Logger::info('Empty contact', ['contact' => $contact, 'callstack' => System::callstack(20)]);
986 Logger::info('Contact is marked for archival', ['id' => $contact['id']]);
988 // Contact already archived or "self" contact? => nothing to do
989 if ($contact['archive'] || $contact['self']) {
993 if ($contact['term-date'] <= DBA::NULL_DATETIME) {
994 DBA::update('contact', ['term-date' => DateTimeFormat::utcNow()], ['id' => $contact['id']]);
995 DBA::update('contact', ['term-date' => DateTimeFormat::utcNow()], ['`nurl` = ? AND `term-date` <= ? AND NOT `self`', Strings::normaliseLink($contact['url']), DBA::NULL_DATETIME]);
998 * We really should send a notification to the owner after 2-3 weeks
999 * so they won't be surprised when the contact vanishes and can take
1000 * remedial action if this was a serious mistake or glitch
1003 /// @todo Check for contact vitality via probing
1004 $archival_days = DI::config()->get('system', 'archival_days', 32);
1006 $expiry = $contact['term-date'] . ' + ' . $archival_days . ' days ';
1007 if (DateTimeFormat::utcNow() > DateTimeFormat::utc($expiry)) {
1008 /* Relationship is really truly dead. archive them rather than
1009 * delete, though if the owner tries to unarchive them we'll start
1010 * the whole process over again.
1012 DBA::update('contact', ['archive' => true], ['id' => $contact['id']]);
1013 DBA::update('contact', ['archive' => true], ['nurl' => Strings::normaliseLink($contact['url']), 'self' => false]);
1014 GContact::updateFromPublicContactURL($contact['url']);
1020 * Cancels the archival countdown
1022 * @see Contact::markForArchival()
1024 * @param array $contact contact to be unmarked for archival
1026 * @throws \Exception
1028 public static function unmarkForArchival(array $contact)
1030 // Always unarchive the relay contact entry
1031 if (!empty($contact['batch']) && !empty($contact['term-date']) && ($contact['term-date'] > DBA::NULL_DATETIME)) {
1032 $fields = ['failed' => false, 'term-date' => DBA::NULL_DATETIME, 'archive' => false];
1033 $condition = ['uid' => 0, 'network' => Protocol::FEDERATED, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY];
1034 DBA::update('contact', $fields, $condition);
1037 $condition = ['`id` = ? AND (`term-date` > ? OR `archive`)', $contact['id'], DBA::NULL_DATETIME];
1038 $exists = DBA::exists('contact', $condition);
1040 // We don't need to update, we never marked this contact for archival
1045 Logger::info('Contact is marked as vital again', ['id' => $contact['id']]);
1047 if (!isset($contact['url']) && !empty($contact['id'])) {
1048 $fields = ['id', 'url', 'batch'];
1049 $contact = DBA::selectFirst('contact', $fields, ['id' => $contact['id']]);
1050 if (!DBA::isResult($contact)) {
1055 // It's a miracle. Our dead contact has inexplicably come back to life.
1056 $fields = ['failed' => false, 'term-date' => DBA::NULL_DATETIME, 'archive' => false];
1057 DBA::update('contact', $fields, ['id' => $contact['id']]);
1058 DBA::update('contact', $fields, ['nurl' => Strings::normaliseLink($contact['url']), 'self' => false]);
1059 GContact::updateFromPublicContactURL($contact['url']);
1063 * Returns the data array for the photo menu of a given contact
1065 * @param array $contact contact
1066 * @param int $uid optional, default 0
1068 * @throws HTTPException\InternalServerErrorException
1069 * @throws \ImagickException
1071 public static function photoMenu(array $contact, $uid = 0)
1076 $contact_drop_link = '';
1080 $uid = local_user();
1083 if (empty($contact['uid']) || ($contact['uid'] != $uid)) {
1085 $profile_link = self::magicLink($contact['url']);
1086 $menu = ['profile' => [DI::l10n()->t('View Profile'), $profile_link, true]];
1091 // Look for our own contact if the uid doesn't match and isn't public
1092 $contact_own = DBA::selectFirst('contact', [], ['nurl' => $contact['nurl'], 'network' => $contact['network'], 'uid' => $uid]);
1093 if (DBA::isResult($contact_own)) {
1094 return self::photoMenu($contact_own, $uid);
1099 if (($contact['network'] === Protocol::DFRN) && !$contact['self'] && empty($contact['pending'])) {
1101 $profile_link = DI::baseUrl() . '/redir/' . $contact['id'];
1103 $profile_link = $contact['url'];
1106 if ($profile_link === 'mailbox') {
1111 $status_link = $profile_link . '/status';
1112 $photos_link = str_replace('/profile/', '/photos/', $profile_link);
1113 $profile_link = $profile_link . '/profile';
1116 if (self::canReceivePrivateMessages($contact) && empty($contact['pending'])) {
1117 $pm_url = DI::baseUrl() . '/message/new/' . $contact['id'];
1120 if (($contact['network'] == Protocol::DFRN) && !$contact['self'] && empty($contact['pending'])) {
1121 $poke_link = 'contact/' . $contact['id'] . '/poke';
1124 $contact_url = DI::baseUrl() . '/contact/' . $contact['id'];
1126 $posts_link = DI::baseUrl() . '/contact/' . $contact['id'] . '/conversations';
1128 if (!$contact['self']) {
1129 $contact_drop_link = DI::baseUrl() . '/contact/' . $contact['id'] . '/drop?confirm=1';
1133 $unfollow_link = '';
1134 if (!$contact['self'] && in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
1135 if ($contact['uid'] && in_array($contact['rel'], [self::SHARING, self::FRIEND])) {
1136 $unfollow_link = 'unfollow?url=' . urlencode($contact['url']);
1137 } elseif(!$contact['pending']) {
1138 $follow_link = 'follow?url=' . urlencode($contact['url']);
1142 if (!empty($follow_link) || !empty($unfollow_link)) {
1143 $contact_drop_link = '';
1148 * "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ]
1150 if (empty($contact['uid'])) {
1152 'profile' => [DI::l10n()->t('View Profile') , $profile_link , true],
1153 'network' => [DI::l10n()->t('Network Posts') , $posts_link , false],
1154 'edit' => [DI::l10n()->t('View Contact') , $contact_url , false],
1155 'follow' => [DI::l10n()->t('Connect/Follow'), $follow_link , true],
1156 'unfollow'=> [DI::l10n()->t('UnFollow') , $unfollow_link, true],
1160 'status' => [DI::l10n()->t('View Status') , $status_link , true],
1161 'profile' => [DI::l10n()->t('View Profile') , $profile_link , true],
1162 'photos' => [DI::l10n()->t('View Photos') , $photos_link , true],
1163 'network' => [DI::l10n()->t('Network Posts') , $posts_link , false],
1164 'edit' => [DI::l10n()->t('View Contact') , $contact_url , false],
1165 'drop' => [DI::l10n()->t('Drop Contact') , $contact_drop_link, false],
1166 'pm' => [DI::l10n()->t('Send PM') , $pm_url , false],
1167 'poke' => [DI::l10n()->t('Poke') , $poke_link , false],
1168 'follow' => [DI::l10n()->t('Connect/Follow'), $follow_link , true],
1169 'unfollow'=> [DI::l10n()->t('UnFollow') , $unfollow_link , true],
1172 if (!empty($contact['pending'])) {
1173 $intro = DBA::selectFirst('intro', ['id'], ['contact-id' => $contact['id']]);
1174 if (DBA::isResult($intro)) {
1175 $menu['follow'] = [DI::l10n()->t('Approve'), 'notifications/intros/' . $intro['id'], true];
1180 $args = ['contact' => $contact, 'menu' => &$menu];
1182 Hook::callAll('contact_photo_menu', $args);
1184 $menucondensed = [];
1186 foreach ($menu as $menuname => $menuitem) {
1187 if ($menuitem[1] != '') {
1188 $menucondensed[$menuname] = $menuitem;
1192 return $menucondensed;
1196 * Returns ungrouped contact count or list for user
1198 * Returns either the total number of ungrouped contacts for the given user
1199 * id or a paginated list of ungrouped contacts.
1201 * @param int $uid uid
1203 * @throws \Exception
1205 public static function getUngroupedList($uid)
1215 SELECT DISTINCT(`contact-id`)
1217 INNER JOIN `group` ON `group`.`id` = `group_member`.`gid`
1218 WHERE `group`.`uid` = %d
1219 )", intval($uid), intval($uid));
1223 * Have a look at all contact tables for a given profile url.
1224 * This function works as a replacement for probing the contact.
1226 * @param string $url Contact URL
1227 * @param integer $cid Contact ID
1229 * @return array Contact array in the "probe" structure
1231 private static function getProbeDataFromDatabase($url, $cid = null)
1233 // The link could be provided as http although we stored it as https
1234 $ssl_url = str_replace('http://', 'https://', $url);
1236 $fields = ['id', 'uid', 'url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1237 'photo', 'keywords', 'location', 'about', 'network',
1238 'priority', 'batch', 'request', 'confirm', 'poco'];
1241 $data = DBA::selectFirst('contact', $fields, ['id' => $cid]);
1242 if (DBA::isResult($data)) {
1247 $data = DBA::selectFirst('contact', $fields, ['nurl' => Strings::normaliseLink($url)]);
1249 if (!DBA::isResult($data)) {
1250 $condition = ['alias' => [$url, Strings::normaliseLink($url), $ssl_url]];
1251 $data = DBA::selectFirst('contact', $fields, $condition);
1254 if (DBA::isResult($data)) {
1255 // For security reasons we don't fetch key data from our users
1256 $data["pubkey"] = '';
1260 $fields = ['url', 'addr', 'alias', 'notify', 'name', 'nick',
1261 'photo', 'keywords', 'location', 'about', 'network'];
1262 $data = DBA::selectFirst('gcontact', $fields, ['nurl' => Strings::normaliseLink($url)]);
1264 if (!DBA::isResult($data)) {
1265 $condition = ['alias' => [$url, Strings::normaliseLink($url), $ssl_url]];
1266 $data = DBA::selectFirst('contact', $fields, $condition);
1269 if (DBA::isResult($data)) {
1270 $data["pubkey"] = '';
1272 $data["priority"] = 0;
1273 $data["batch"] = '';
1274 $data["request"] = '';
1275 $data["confirm"] = '';
1280 $data = ActivityPub::probeProfile($url, false);
1281 if (!empty($data)) {
1285 $fields = ['url', 'addr', 'alias', 'notify', 'poll', 'name', 'nick',
1286 'photo', 'network', 'priority', 'batch', 'request', 'confirm'];
1287 $data = DBA::selectFirst('fcontact', $fields, ['url' => $url]);
1289 if (!DBA::isResult($data)) {
1290 $condition = ['alias' => [$url, Strings::normaliseLink($url), $ssl_url]];
1291 $data = DBA::selectFirst('contact', $fields, $condition);
1294 if (DBA::isResult($data)) {
1295 $data["pubkey"] = '';
1296 $data["keywords"] = '';
1297 $data["location"] = '';
1298 $data["about"] = '';
1307 * Fetch the contact id for a given URL and user
1309 * First lookup in the contact table to find a record matching either `url`, `nurl`,
1310 * `addr` or `alias`.
1312 * If there's no record and we aren't looking for a public contact, we quit.
1313 * If there's one, we check that it isn't time to update the picture else we
1314 * directly return the found contact id.
1316 * Second, we probe the provided $url whether it's http://server.tld/profile or
1317 * nick@server.tld. We quit if we can't get any info back.
1319 * Third, we create the contact record if it doesn't exist
1321 * Fourth, we update the existing record with the new data (avatar, alias, nick)
1322 * if there's any updates
1324 * @param string $url Contact URL
1325 * @param integer $uid The user id for the contact (0 = public contact)
1326 * @param boolean $update true = always update, false = never update, null = update when not found or outdated
1327 * @param array $default Default value for creating the contact when every else fails
1328 * @param boolean $in_loop Internally used variable to prevent an endless loop
1330 * @return integer Contact ID
1331 * @throws HTTPException\InternalServerErrorException
1332 * @throws \ImagickException
1334 public static function getIdForURL($url, $uid = 0, $update = null, $default = [], $in_loop = false)
1336 Logger::info('Get contact data', ['url' => $url, 'user' => $uid]);
1344 $contact = self::getByURL($url, false, ['id', 'avatar', 'updated', 'network'], $uid);
1346 if (!empty($contact)) {
1347 $contact_id = $contact["id"];
1349 if (empty($default) && in_array($contact['network'], [Protocol::MAIL, Protocol::PHANTOM]) && ($uid == 0)) {
1350 // Update public mail accounts via their user's accounts
1351 $fields = ['network', 'addr', 'name', 'nick', 'avatar', 'photo', 'thumb', 'micro'];
1352 $mailcontact = DBA::selectFirst('contact', $fields, ["`addr` = ? AND `network` = ? AND `uid` != 0", $url, Protocol::MAIL]);
1353 if (!DBA::isResult($mailcontact)) {
1354 $mailcontact = DBA::selectFirst('contact', $fields, ["`nurl` = ? AND `network` = ? AND `uid` != 0", $url, Protocol::MAIL]);
1357 if (DBA::isResult($mailcontact)) {
1358 DBA::update('contact', $mailcontact, ['id' => $contact_id]);
1362 if (empty($update)) {
1365 } elseif ($uid != 0) {
1366 // Non-existing user-specific contact, exiting
1370 if (!$update && empty($default)) {
1371 // When we don't want to update, we look if we know this contact in any way
1372 $data = self::getProbeDataFromDatabase($url, $contact_id);
1373 $background_update = true;
1374 } elseif (!$update && !empty($default['network'])) {
1375 // If there are default values, take these
1377 $background_update = false;
1380 $background_update = false;
1383 if ((empty($data) && is_null($update)) || $update) {
1384 $data = Probe::uri($url, "", $uid);
1387 // Take the default values when probing failed
1388 if (!empty($default) && !in_array($data["network"], array_merge(Protocol::NATIVE_SUPPORT, [Protocol::PUMPIO]))) {
1389 $data = array_merge($data, $default);
1392 if (empty($data) || ($data['network'] == Protocol::PHANTOM)) {
1393 Logger::info('No valid network found', ['url' => $url, 'data' => $data, 'callstack' => System::callstack(20)]);
1397 if (!empty($data['baseurl'])) {
1398 $data['baseurl'] = GServer::cleanURL($data['baseurl']);
1401 if (!empty($data['baseurl']) && empty($data['gsid'])) {
1402 $data['gsid'] = GServer::getID($data['baseurl']);
1405 if (!$contact_id && !empty($data['alias']) && ($data['alias'] != $data['url']) && !$in_loop) {
1406 $contact_id = self::getIdForURL($data["alias"], $uid, false, $default, true);
1412 'created' => DateTimeFormat::utcNow(),
1413 'url' => $data['url'],
1414 'nurl' => Strings::normaliseLink($data['url']),
1415 'addr' => $data['addr'] ?? '',
1416 'alias' => $data['alias'] ?? '',
1417 'notify' => $data['notify'] ?? '',
1418 'poll' => $data['poll'] ?? '',
1419 'name' => $data['name'] ?? '',
1420 'nick' => $data['nick'] ?? '',
1421 'keywords' => $data['keywords'] ?? '',
1422 'location' => $data['location'] ?? '',
1423 'about' => $data['about'] ?? '',
1424 'network' => $data['network'],
1425 'pubkey' => $data['pubkey'] ?? '',
1426 'rel' => self::SHARING,
1427 'priority' => $data['priority'] ?? 0,
1428 'batch' => $data['batch'] ?? '',
1429 'request' => $data['request'] ?? '',
1430 'confirm' => $data['confirm'] ?? '',
1431 'poco' => $data['poco'] ?? '',
1432 'baseurl' => $data['baseurl'] ?? '',
1433 'gsid' => $data['gsid'] ?? null,
1434 'name-date' => DateTimeFormat::utcNow(),
1435 'uri-date' => DateTimeFormat::utcNow(),
1436 'avatar-date' => DateTimeFormat::utcNow(),
1442 $condition = ['nurl' => Strings::normaliseLink($data["url"]), 'uid' => $uid, 'deleted' => false];
1444 // Before inserting we do check if the entry does exist now.
1445 $contact = DBA::selectFirst('contact', ['id'], $condition, ['order' => ['id']]);
1446 if (!DBA::isResult($contact)) {
1447 Logger::info('Create new contact', $fields);
1449 self::insert($fields);
1451 // We intentionally aren't using lastInsertId here. There is a chance for duplicates.
1452 $contact = DBA::selectFirst('contact', ['id'], $condition, ['order' => ['id']]);
1453 if (!DBA::isResult($contact)) {
1454 Logger::info('Contact creation failed', $fields);
1459 Logger::info('Contact had been created before', ['id' => $contact["id"], 'url' => $url, 'contact' => $fields]);
1462 $contact_id = $contact["id"];
1465 if (!empty($data['photo']) && ($data['network'] != Protocol::FEED)) {
1466 self::updateAvatar($contact_id, $data['photo']);
1469 if (in_array($data["network"], array_merge(Protocol::NATIVE_SUPPORT, [Protocol::PUMPIO]))) {
1470 if ($background_update) {
1471 // Update in the background when we fetched the data solely from the database
1472 Worker::add(PRIORITY_MEDIUM, "UpdateContact", $contact_id, ($uid == 0 ? 'force' : ''));
1474 // Else do a direct update
1475 self::updateFromProbe($contact_id, '', false);
1478 $fields = ['url', 'nurl', 'addr', 'alias', 'name', 'nick', 'keywords', 'location', 'about', 'avatar-date', 'baseurl', 'gsid'];
1479 $contact = DBA::selectFirst('contact', $fields, ['id' => $contact_id]);
1481 // This condition should always be true
1482 if (!DBA::isResult($contact)) {
1487 'url' => $data['url'],
1488 'nurl' => Strings::normaliseLink($data['url']),
1489 'updated' => DateTimeFormat::utcNow(),
1493 $fields = ['addr', 'alias', 'name', 'nick', 'keywords', 'location', 'about', 'baseurl', 'gsid'];
1495 foreach ($fields as $field) {
1496 $updated[$field] = ($data[$field] ?? '') ?: $contact[$field];
1499 if (($updated['addr'] != $contact['addr']) || (!empty($data['alias']) && ($data['alias'] != $contact['alias']))) {
1500 $updated['uri-date'] = DateTimeFormat::utcNow();
1503 if (($data['name'] != $contact['name']) || ($data['nick'] != $contact['nick'])) {
1504 $updated['name-date'] = DateTimeFormat::utcNow();
1507 DBA::update('contact', $updated, ['id' => $contact_id], $contact);
1514 * Checks if the contact is archived
1516 * @param int $cid contact id
1518 * @return boolean Is the contact archived?
1519 * @throws HTTPException\InternalServerErrorException
1521 public static function isArchived(int $cid)
1527 $contact = DBA::selectFirst('contact', ['archive', 'url', 'batch'], ['id' => $cid]);
1528 if (!DBA::isResult($contact)) {
1532 if ($contact['archive']) {
1536 // Check status of ActivityPub endpoints
1537 $apcontact = APContact::getByURL($contact['url'], false);
1538 if (!empty($apcontact)) {
1539 if (!empty($apcontact['inbox']) && DBA::exists('inbox-status', ['archive' => true, 'url' => $apcontact['inbox']])) {
1543 if (!empty($apcontact['sharedinbox']) && DBA::exists('inbox-status', ['archive' => true, 'url' => $apcontact['sharedinbox']])) {
1548 // Check status of Diaspora endpoints
1549 if (!empty($contact['batch'])) {
1550 $condition = ['archive' => true, 'uid' => 0, 'network' => Protocol::FEDERATED, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY];
1551 return DBA::exists('contact', $condition);
1558 * Checks if the contact is blocked
1560 * @param int $cid contact id
1562 * @return boolean Is the contact blocked?
1563 * @throws HTTPException\InternalServerErrorException
1565 public static function isBlocked($cid)
1571 $blocked = DBA::selectFirst('contact', ['blocked', 'url'], ['id' => $cid]);
1572 if (!DBA::isResult($blocked)) {
1576 if (Network::isUrlBlocked($blocked['url'])) {
1580 return (bool) $blocked['blocked'];
1584 * Checks if the contact is hidden
1586 * @param int $cid contact id
1588 * @return boolean Is the contact hidden?
1589 * @throws \Exception
1591 public static function isHidden($cid)
1597 $hidden = DBA::selectFirst('contact', ['hidden'], ['id' => $cid]);
1598 if (!DBA::isResult($hidden)) {
1601 return (bool) $hidden['hidden'];
1605 * Returns posts from a given contact url
1607 * @param string $contact_url Contact URL
1608 * @param bool $thread_mode
1609 * @param int $update
1610 * @return string posts in HTML
1611 * @throws \Exception
1613 public static function getPostsFromUrl($contact_url, $thread_mode = false, $update = 0)
1615 return self::getPostsFromId(self::getIdForURL($contact_url), $thread_mode, $update);
1619 * Returns posts from a given contact id
1621 * @param integer $cid
1622 * @param bool $thread_mode
1623 * @param integer $update
1624 * @return string posts in HTML
1625 * @throws \Exception
1627 public static function getPostsFromId($cid, $thread_mode = false, $update = 0)
1631 $contact = DBA::selectFirst('contact', ['contact-type', 'network'], ['id' => $cid]);
1632 if (!DBA::isResult($contact)) {
1636 if (empty($contact["network"]) || in_array($contact["network"], Protocol::FEDERATED)) {
1637 $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = ? AND NOT `item`.`global`))";
1639 $sql = "`item`.`uid` = ?";
1642 $contact_field = ((($contact["contact-type"] == self::TYPE_COMMUNITY) || ($contact['network'] == Protocol::MAIL)) ? 'owner-id' : 'author-id');
1645 $condition = ["`$contact_field` = ? AND `gravity` = ? AND " . $sql,
1646 $cid, GRAVITY_PARENT, local_user()];
1648 $condition = ["`$contact_field` = ? AND `gravity` IN (?, ?) AND " . $sql,
1649 $cid, GRAVITY_PARENT, GRAVITY_COMMENT, local_user()];
1652 if (DI::mode()->isMobile()) {
1653 $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
1654 DI::config()->get('system', 'itemspage_network_mobile'));
1656 $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
1657 DI::config()->get('system', 'itemspage_network'));
1660 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), $itemsPerPage);
1662 $params = ['order' => ['received' => true],
1663 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
1666 $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params);
1668 $items = Item::inArray($r);
1670 $o = conversation($a, $items, 'contacts', $update, false, 'commented', local_user());
1672 $r = Item::selectForUser(local_user(), [], $condition, $params);
1674 $items = Item::inArray($r);
1676 $o = conversation($a, $items, 'contact-posts', false);
1680 $o .= $pager->renderMinimal(count($items));
1687 * Returns the account type name
1689 * The function can be called with either the user or the contact array
1691 * @param array $contact contact or user array
1694 public static function getAccountType(array $contact)
1696 // There are several fields that indicate that the contact or user is a forum
1697 // "page-flags" is a field in the user table,
1698 // "forum" and "prv" are used in the contact table. They stand for User::PAGE_FLAGS_COMMUNITY and User::PAGE_FLAGS_PRVGROUP.
1699 // "community" is used in the gcontact table and is true if the contact is User::PAGE_FLAGS_COMMUNITY or User::PAGE_FLAGS_PRVGROUP.
1700 if ((isset($contact['page-flags']) && (intval($contact['page-flags']) == User::PAGE_FLAGS_COMMUNITY))
1701 || (isset($contact['page-flags']) && (intval($contact['page-flags']) == User::PAGE_FLAGS_PRVGROUP))
1702 || (isset($contact['forum']) && intval($contact['forum']))
1703 || (isset($contact['prv']) && intval($contact['prv']))
1704 || (isset($contact['community']) && intval($contact['community']))
1706 $type = self::TYPE_COMMUNITY;
1708 $type = self::TYPE_PERSON;
1711 // The "contact-type" (contact table) and "account-type" (user table) are more general then the chaos from above.
1712 if (isset($contact["contact-type"])) {
1713 $type = $contact["contact-type"];
1716 if (isset($contact["account-type"])) {
1717 $type = $contact["account-type"];
1721 case self::TYPE_ORGANISATION:
1722 $account_type = DI::l10n()->t("Organisation");
1725 case self::TYPE_NEWS:
1726 $account_type = DI::l10n()->t('News');
1729 case self::TYPE_COMMUNITY:
1730 $account_type = DI::l10n()->t("Forum");
1738 return $account_type;
1746 * @throws \Exception
1748 public static function block($cid, $reason = null)
1750 $return = DBA::update('contact', ['blocked' => true, 'block_reason' => $reason], ['id' => $cid]);
1756 * Unblocks a contact
1760 * @throws \Exception
1762 public static function unblock($cid)
1764 $return = DBA::update('contact', ['blocked' => false, 'block_reason' => null], ['id' => $cid]);
1770 * Ensure that cached avatar exist
1772 * @param integer $cid
1774 public static function checkAvatarCache(int $cid)
1776 $contact = DBA::selectFirst('contact', ['url', 'avatar', 'photo', 'thumb', 'micro'], ['id' => $cid, 'uid' => 0, 'self' => false]);
1777 if (!DBA::isResult($contact)) {
1781 if (empty($contact['avatar']) || (!empty($contact['photo']) && !empty($contact['thumb']) && !empty($contact['micro']))) {
1785 Logger::info('Adding avatar cache', ['id' => $cid, 'contact' => $contact]);
1787 self::updateAvatar($cid, $contact['avatar'], true);
1791 * Check the given contact array for avatar cache fields
1793 * @param array $contact
1794 * @return array contact array with avatar cache fields
1796 public static function checkAvatarCacheByArray(array $contact)
1799 $contact_fields = [];
1800 $fields = ['photo', 'thumb', 'micro'];
1801 foreach ($fields as $field) {
1802 if (isset($contact[$field])) {
1803 $contact_fields[] = $field;
1805 if (isset($contact[$field]) && empty($contact[$field])) {
1814 if (!empty($contact['id']) && !empty($contact['avatar'])) {
1815 self::updateAvatar($contact['id'], $contact['avatar'], true);
1817 $new_contact = self::getById($contact['id'], $contact_fields);
1818 if (DBA::isResult($new_contact)) {
1819 // We only update the cache fields
1820 $contact = array_merge($contact, $new_contact);
1824 /// add the default avatars if the fields aren't filled
1825 if (isset($contact['photo']) && empty($contact['photo'])) {
1826 $contact['photo'] = DI::baseUrl() . '/images/person-300.jpg';
1828 if (isset($contact['thumb']) && empty($contact['thumb'])) {
1829 $contact['thumb'] = DI::baseUrl() . '/images/person-80.jpg';
1831 if (isset($contact['micro']) && empty($contact['micro'])) {
1832 $contact['micro'] = DI::baseUrl() . '/images/person-48.jpg';
1839 * Updates the avatar links in a contact only if needed
1841 * @param int $cid Contact id
1842 * @param string $avatar Link to avatar picture
1843 * @param bool $force force picture update
1846 * @throws HTTPException\InternalServerErrorException
1847 * @throws HTTPException\NotFoundException
1848 * @throws \ImagickException
1850 public static function updateAvatar(int $cid, string $avatar, bool $force = false)
1852 $contact = DBA::selectFirst('contact', ['uid', 'avatar', 'photo', 'thumb', 'micro', 'nurl'], ['id' => $cid, 'self' => false]);
1853 if (!DBA::isResult($contact)) {
1857 $uid = $contact['uid'];
1859 // Only update the cached photo links of public contacts when they already are cached
1860 if (($uid == 0) && !$force && empty($contact['thumb']) && empty($contact['micro'])) {
1861 if ($contact['avatar'] != $avatar) {
1862 DBA::update('contact', ['avatar' => $avatar], ['id' => $cid]);
1863 Logger::info('Only update the avatar', ['id' => $cid, 'avatar' => $avatar, 'contact' => $contact]);
1869 $contact['photo'] ?? '',
1870 $contact['thumb'] ?? '',
1871 $contact['micro'] ?? '',
1874 $update = ($contact['avatar'] != $avatar) || $force;
1877 foreach ($data as $image_uri) {
1878 $image_rid = Photo::ridFromURI($image_uri);
1879 if ($image_rid && !Photo::exists(['resource-id' => $image_rid, 'uid' => $uid])) {
1880 Logger::info('Regenerating avatar', ['contact uid' => $uid, 'cid' => $cid, 'missing photo' => $image_rid, 'avatar' => $contact['avatar']]);
1887 $photos = Photo::importProfilePhoto($avatar, $uid, $cid, true);
1889 $fields = ['avatar' => $avatar, 'photo' => $photos[0], 'thumb' => $photos[1], 'micro' => $photos[2], 'avatar-date' => DateTimeFormat::utcNow()];
1890 DBA::update('contact', $fields, ['id' => $cid]);
1891 } elseif (empty($contact['avatar'])) {
1892 // Ensure that the avatar field is set
1893 DBA::update('contact', ['avatar' => $avatar], ['id' => $cid]);
1894 Logger::info('Failed profile import', ['id' => $cid, 'force' => $force, 'avatar' => $avatar, 'contact' => $contact]);
1900 * Helper function for "updateFromProbe". Updates personal and public contact
1902 * @param integer $id contact id
1903 * @param integer $uid user id
1904 * @param string $url The profile URL of the contact
1905 * @param array $fields The fields that are updated
1907 * @throws \Exception
1909 private static function updateContact($id, $uid, $url, array $fields)
1911 if (!DBA::update('contact', $fields, ['id' => $id])) {
1912 Logger::info('Couldn\'t update contact.', ['id' => $id, 'fields' => $fields]);
1916 // Search for duplicated contacts and get rid of them
1917 if (self::removeDuplicates(Strings::normaliseLink($url), $uid) || ($uid != 0)) {
1921 // Update the corresponding gcontact entry
1922 GContact::updateFromPublicContactID($id);
1924 // Archive or unarchive the contact. We only need to do this for the public contact.
1925 // The archive/unarchive function will update the personal contacts by themselves.
1926 $contact = DBA::selectFirst('contact', [], ['id' => $id]);
1927 if (!DBA::isResult($contact)) {
1928 Logger::info('Couldn\'t select contact for archival.', ['id' => $id]);
1932 if (!empty($fields['success_update'])) {
1933 self::unmarkForArchival($contact);
1934 } elseif (!empty($fields['failure_update'])) {
1935 self::markForArchival($contact);
1938 $condition = ['self' => false, 'nurl' => Strings::normaliseLink($url), 'network' => Protocol::FEDERATED];
1940 // These contacts are sharing with us, we don't poll them.
1941 // This means that we don't set the update fields in "OnePoll.php".
1942 $condition['rel'] = self::SHARING;
1943 DBA::update('contact', $fields, $condition);
1945 unset($fields['last-update']);
1946 unset($fields['success_update']);
1947 unset($fields['failure_update']);
1949 if (empty($fields)) {
1953 // We are polling these contacts, so we mustn't set the update fields here.
1954 $condition['rel'] = [self::FOLLOWER, self::FRIEND];
1955 DBA::update('contact', $fields, $condition);
1959 * Remove duplicated contacts
1961 * @param string $nurl Normalised contact url
1962 * @param integer $uid User id
1964 * @throws \Exception
1966 public static function removeDuplicates(string $nurl, int $uid)
1968 $condition = ['nurl' => $nurl, 'uid' => $uid, 'deleted' => false, 'network' => Protocol::FEDERATED];
1969 $count = DBA::count('contact', $condition);
1974 $first_contact = DBA::selectFirst('contact', ['id', 'network'], $condition, ['order' => ['id']]);
1975 if (!DBA::isResult($first_contact)) {
1976 // Shouldn't happen - so we handle it
1980 $first = $first_contact['id'];
1981 Logger::info('Found duplicates', ['count' => $count, 'first' => $first, 'uid' => $uid, 'nurl' => $nurl]);
1982 if (($uid != 0 && ($first_contact['network'] == Protocol::DFRN))) {
1983 // Don't handle non public DFRN duplicates by now (legacy DFRN is very special because of the key handling)
1984 Logger::info('Not handling non public DFRN duplicate', ['uid' => $uid, 'nurl' => $nurl]);
1988 // Find all duplicates
1989 $condition = ["`nurl` = ? AND `uid` = ? AND `id` != ? AND NOT `self` AND NOT `deleted`", $nurl, $uid, $first];
1990 $duplicates = DBA::select('contact', ['id', 'network'], $condition);
1991 while ($duplicate = DBA::fetch($duplicates)) {
1992 if (!in_array($duplicate['network'], Protocol::FEDERATED)) {
1996 Worker::add(PRIORITY_HIGH, 'MergeContact', $first, $duplicate['id'], $uid);
1998 DBA::close($duplicates);
1999 Logger::info('Duplicates handled', ['uid' => $uid, 'nurl' => $nurl]);
2004 * @param integer $id contact id
2005 * @param string $network Optional network we are probing for
2006 * @param boolean $force Optional forcing of network probing (otherwise we use the cached data)
2008 * @throws HTTPException\InternalServerErrorException
2009 * @throws \ImagickException
2011 public static function updateFromProbe($id, $network = '', $force = false)
2014 Warning: Never ever fetch the public key via Probe::uri and write it into the contacts.
2015 This will reliably kill your communication with old Friendica contacts.
2018 // These fields aren't updated by this routine:
2019 // 'xmpp', 'sensitive'
2021 $fields = ['uid', 'avatar', 'name', 'nick', 'location', 'keywords', 'about', 'subscribe',
2022 'unsearchable', 'url', 'addr', 'batch', 'notify', 'poll', 'request', 'confirm', 'poco',
2023 'network', 'alias', 'baseurl', 'gsid', 'forum', 'prv', 'contact-type', 'pubkey'];
2024 $contact = DBA::selectFirst('contact', $fields, ['id' => $id]);
2025 if (!DBA::isResult($contact)) {
2029 $uid = $contact['uid'];
2030 unset($contact['uid']);
2032 $pubkey = $contact['pubkey'];
2033 unset($contact['pubkey']);
2035 $contact['photo'] = $contact['avatar'];
2036 unset($contact['avatar']);
2038 $ret = Probe::uri($contact['url'], $network, $uid, !$force);
2040 $updated = DateTimeFormat::utcNow();
2042 // We must not try to update relay contacts via probe. They are no real contacts.
2043 // We check after the probing to be able to correct falsely detected contact types.
2044 if (($contact['contact-type'] == self::TYPE_RELAY) &&
2045 (!Strings::compareLink($ret['url'], $contact['url']) || in_array($ret['network'], [Protocol::FEED, Protocol::PHANTOM]))) {
2046 self::updateContact($id, $uid, $contact['url'], ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]);
2047 Logger::info('Not updating relais', ['id' => $id, 'url' => $contact['url']]);
2051 // If Probe::uri fails the network code will be different ("feed" or "unkn")
2052 if (in_array($ret['network'], [Protocol::FEED, Protocol::PHANTOM]) && ($ret['network'] != $contact['network'])) {
2053 if ($force && ($uid == 0)) {
2054 self::updateContact($id, $uid, $ret['url'], ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated]);
2059 if (isset($ret['hide']) && is_bool($ret['hide'])) {
2060 $ret['unsearchable'] = $ret['hide'];
2063 if (isset($ret['account-type']) && is_int($ret['account-type'])) {
2064 $ret['forum'] = false;
2065 $ret['prv'] = false;
2066 $ret['contact-type'] = $ret['account-type'];
2067 if ($ret['contact-type'] == User::ACCOUNT_TYPE_COMMUNITY) {
2068 $apcontact = APContact::getByURL($ret['url'], false);
2069 if (isset($apcontact['manually-approve'])) {
2070 $ret['forum'] = (bool)!$apcontact['manually-approve'];
2071 $ret['prv'] = (bool)!$ret['forum'];
2076 $new_pubkey = $ret['pubkey'];
2078 // Update the gcontact entry
2080 GContact::updateFromPublicContactID($id);
2083 ContactRelation::discoverByUrl($ret['url']);
2087 // make sure to not overwrite existing values with blank entries except some technical fields
2088 $keep = ['batch', 'notify', 'poll', 'request', 'confirm', 'poco', 'baseurl'];
2089 foreach ($ret as $key => $val) {
2090 if (!array_key_exists($key, $contact)) {
2092 } elseif (($contact[$key] != '') && ($val === '') && !is_bool($ret[$key]) && !in_array($key, $keep)) {
2093 $ret[$key] = $contact[$key];
2094 } elseif ($ret[$key] != $contact[$key]) {
2099 if (!empty($ret['photo']) && ($ret['network'] != Protocol::FEED)) {
2100 self::updateAvatar($id, $ret['photo'], $update || $force);
2105 self::updateContact($id, $uid, $ret['url'], ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]);
2108 // Update the public contact
2110 self::updateFromProbeByURL($ret['url']);
2116 $ret['nurl'] = Strings::normaliseLink($ret['url']);
2117 $ret['updated'] = $updated;
2119 // Only fill the pubkey if it had been empty before. We have to prevent identity theft.
2120 if (empty($pubkey) && !empty($new_pubkey)) {
2121 $ret['pubkey'] = $new_pubkey;
2124 if (($ret['addr'] != $contact['addr']) || (!empty($ret['alias']) && ($ret['alias'] != $contact['alias']))) {
2125 $ret['uri-date'] = DateTimeFormat::utcNow();
2128 if (($ret['name'] != $contact['name']) || ($ret['nick'] != $contact['nick'])) {
2129 $ret['name-date'] = $updated;
2132 if ($force && ($uid == 0)) {
2133 $ret['last-update'] = $updated;
2134 $ret['success_update'] = $updated;
2135 $ret['failed'] = false;
2138 unset($ret['photo']);
2140 self::updateContact($id, $uid, $ret['url'], $ret);
2145 public static function updateFromProbeByURL($url, $force = false)
2147 $id = self::getIdForURL($url);
2153 self::updateFromProbe($id, '', $force);
2159 * Detects if a given contact array belongs to a legacy DFRN connection
2161 * @param array $contact
2164 public static function isLegacyDFRNContact($contact)
2166 // Newer Friendica contacts are connected via AP, then these fields aren't set
2167 return !empty($contact['dfrn-id']) || !empty($contact['issued-id']);
2171 * Detects the communication protocol for a given contact url.
2172 * This is used to detect Friendica contacts that we can communicate via AP.
2174 * @param string $url contact url
2175 * @param string $network Network of that contact
2176 * @return string with protocol
2178 public static function getProtocol($url, $network)
2180 if ($network != Protocol::DFRN) {
2184 $apcontact = APContact::getByURL($url);
2185 if (!empty($apcontact) && !empty($apcontact['generator'])) {
2186 return Protocol::ACTIVITYPUB;
2193 * Takes a $uid and a url/handle and adds a new contact
2195 * Currently if the contact is DFRN, interactive needs to be true, to redirect to the
2196 * dfrn_request page.
2198 * Otherwise this can be used to bulk add StatusNet contacts, Twitter contacts, etc.
2201 * $return['success'] boolean true if successful
2202 * $return['message'] error text if success is false.
2204 * Takes a $uid and a url/handle and adds a new contact
2206 * @param array $user The user the contact should be created for
2207 * @param string $url The profile URL of the contact
2208 * @param bool $interactive
2209 * @param string $network
2211 * @throws HTTPException\InternalServerErrorException
2212 * @throws HTTPException\NotFoundException
2213 * @throws \ImagickException
2215 public static function createFromProbe(array $user, $url, $interactive = false, $network = '')
2217 $result = ['cid' => -1, 'success' => false, 'message' => ''];
2219 // remove ajax junk, e.g. Twitter
2220 $url = str_replace('/#!/', '/', $url);
2222 if (!Network::isUrlAllowed($url)) {
2223 $result['message'] = DI::l10n()->t('Disallowed profile URL.');
2227 if (Network::isUrlBlocked($url)) {
2228 $result['message'] = DI::l10n()->t('Blocked domain');
2233 $result['message'] = DI::l10n()->t('Connect URL missing.');
2237 $arr = ['url' => $url, 'contact' => []];
2239 Hook::callAll('follow', $arr);
2242 $result['message'] = DI::l10n()->t('The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.');
2246 if (!empty($arr['contact']['name'])) {
2247 $ret = $arr['contact'];
2249 $ret = Probe::uri($url, $network, $user['uid'], false);
2252 if (($network != '') && ($ret['network'] != $network)) {
2253 Logger::log('Expected network ' . $network . ' does not match actual network ' . $ret['network']);
2257 // check if we already have a contact
2258 // the poll url is more reliable than the profile url, as we may have
2259 // indirect links or webfinger links
2261 $condition = ['uid' => $user['uid'], 'poll' => [$ret['poll'], Strings::normaliseLink($ret['poll'])], 'network' => $ret['network'], 'pending' => false];
2262 $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
2263 if (!DBA::isResult($contact)) {
2264 $condition = ['uid' => $user['uid'], 'nurl' => Strings::normaliseLink($ret['url']), 'network' => $ret['network'], 'pending' => false];
2265 $contact = DBA::selectFirst('contact', ['id', 'rel'], $condition);
2268 $protocol = self::getProtocol($ret['url'], $ret['network']);
2270 if (($protocol === Protocol::DFRN) && !DBA::isResult($contact)) {
2272 if (strlen(DI::baseUrl()->getUrlPath())) {
2273 $myaddr = bin2hex(DI::baseUrl() . '/profile/' . $user['nickname']);
2275 $myaddr = bin2hex($user['nickname'] . '@' . DI::baseUrl()->getHostname());
2278 DI::baseUrl()->redirect($ret['request'] . "&addr=$myaddr");
2282 } elseif (DI::config()->get('system', 'dfrn_only') && ($ret['network'] != Protocol::DFRN)) {
2283 $result['message'] = DI::l10n()->t('This site is not configured to allow communications with other networks.') . EOL;
2284 $result['message'] .= DI::l10n()->t('No compatible communication protocols or feeds were discovered.') . EOL;
2288 // This extra param just confuses things, remove it
2289 if ($protocol === Protocol::DIASPORA) {
2290 $ret['url'] = str_replace('?absolute=true', '', $ret['url']);
2293 // do we have enough information?
2294 if (empty($ret['name']) || empty($ret['poll']) || (empty($ret['url']) && empty($ret['addr']))) {
2295 $result['message'] .= DI::l10n()->t('The profile address specified does not provide adequate information.') . EOL;
2296 if (empty($ret['poll'])) {
2297 $result['message'] .= DI::l10n()->t('No compatible communication protocols or feeds were discovered.') . EOL;
2299 if (empty($ret['name'])) {
2300 $result['message'] .= DI::l10n()->t('An author or name was not found.') . EOL;
2302 if (empty($ret['url'])) {
2303 $result['message'] .= DI::l10n()->t('No browser URL could be matched to this address.') . EOL;
2305 if (strpos($ret['url'], '@') !== false) {
2306 $result['message'] .= DI::l10n()->t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
2307 $result['message'] .= DI::l10n()->t('Use mailto: in front of address to force email check.') . EOL;
2312 if ($protocol === Protocol::OSTATUS && DI::config()->get('system', 'ostatus_disabled')) {
2313 $result['message'] .= DI::l10n()->t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
2314 $ret['notify'] = '';
2317 if (!$ret['notify']) {
2318 $result['message'] .= DI::l10n()->t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
2321 $writeable = ((($protocol === Protocol::OSTATUS) && ($ret['notify'])) ? 1 : 0);
2323 $subhub = (($protocol === Protocol::OSTATUS) ? true : false);
2325 $hidden = (($protocol === Protocol::MAIL) ? 1 : 0);
2328 if ($protocol == Protocol::ACTIVITYPUB) {
2329 $apcontact = APContact::getByURL($ret['url'], false);
2330 if (isset($apcontact['manually-approve'])) {
2331 $pending = (bool)$apcontact['manually-approve'];
2335 if (in_array($protocol, [Protocol::MAIL, Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
2339 if (DBA::isResult($contact)) {
2341 $new_relation = (($contact['rel'] == self::FOLLOWER) ? self::FRIEND : self::SHARING);
2343 $fields = ['rel' => $new_relation, 'subhub' => $subhub, 'readonly' => false];
2344 DBA::update('contact', $fields, ['id' => $contact['id']]);
2346 $new_relation = (in_array($protocol, [Protocol::MAIL]) ? self::FRIEND : self::SHARING);
2348 // create contact record
2350 'uid' => $user['uid'],
2351 'created' => DateTimeFormat::utcNow(),
2352 'url' => $ret['url'],
2353 'nurl' => Strings::normaliseLink($ret['url']),
2354 'addr' => $ret['addr'],
2355 'alias' => $ret['alias'],
2356 'batch' => $ret['batch'],
2357 'notify' => $ret['notify'],
2358 'poll' => $ret['poll'],
2359 'poco' => $ret['poco'],
2360 'name' => $ret['name'],
2361 'nick' => $ret['nick'],
2362 'network' => $ret['network'],
2363 'baseurl' => $ret['baseurl'],
2364 'gsid' => $ret['gsid'] ?? null,
2365 'protocol' => $protocol,
2366 'pubkey' => $ret['pubkey'],
2367 'rel' => $new_relation,
2368 'priority'=> $ret['priority'],
2369 'writable'=> $writeable,
2370 'hidden' => $hidden,
2373 'pending' => $pending,
2378 $contact = DBA::selectFirst('contact', [], ['url' => $ret['url'], 'network' => $ret['network'], 'uid' => $user['uid']]);
2379 if (!DBA::isResult($contact)) {
2380 $result['message'] .= DI::l10n()->t('Unable to retrieve contact information.') . EOL;
2384 $contact_id = $contact['id'];
2385 $result['cid'] = $contact_id;
2387 Group::addMember(User::getDefaultGroup($user['uid'], $contact["network"]), $contact_id);
2389 // Update the avatar
2390 self::updateAvatar($contact_id, $ret['photo']);
2392 // pull feed and consume it, which should subscribe to the hub.
2394 Worker::add(PRIORITY_HIGH, "OnePoll", $contact_id, "force");
2396 $owner = User::getOwnerDataById($user['uid']);
2398 if (DBA::isResult($owner)) {
2399 if (in_array($protocol, [Protocol::OSTATUS, Protocol::DFRN])) {
2400 // create a follow slap
2402 $item['verb'] = Activity::FOLLOW;
2403 $item['gravity'] = GRAVITY_ACTIVITY;
2404 $item['follow'] = $contact["url"];
2406 $item['title'] = '';
2408 $item['uri-id'] = 0;
2409 $item['attach'] = '';
2411 $slap = OStatus::salmon($item, $owner);
2413 if (!empty($contact['notify'])) {
2414 Salmon::slapper($owner, $contact['notify'], $slap);
2416 } elseif ($protocol == Protocol::DIASPORA) {
2417 $ret = Diaspora::sendShare($owner, $contact);
2418 Logger::log('share returns: ' . $ret);
2419 } elseif ($protocol == Protocol::ACTIVITYPUB) {
2420 $activity_id = ActivityPub\Transmitter::activityIDFromContact($contact_id);
2421 if (empty($activity_id)) {
2422 // This really should never happen
2426 $ret = ActivityPub\Transmitter::sendActivity('Follow', $contact['url'], $user['uid'], $activity_id);
2427 Logger::log('Follow returns: ' . $ret);
2431 $result['success'] = true;
2436 * Updated contact's SSL policy
2438 * @param array $contact Contact array
2439 * @param string $new_policy New policy, valid: self,full
2441 * @return array Contact array with updated values
2442 * @throws \Exception
2444 public static function updateSslPolicy(array $contact, $new_policy)
2446 $ssl_changed = false;
2447 if ((intval($new_policy) == BaseURL::SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'], 'https:')) {
2448 $ssl_changed = true;
2449 $contact['url'] = str_replace('https:', 'http:', $contact['url']);
2450 $contact['request'] = str_replace('https:', 'http:', $contact['request']);
2451 $contact['notify'] = str_replace('https:', 'http:', $contact['notify']);
2452 $contact['poll'] = str_replace('https:', 'http:', $contact['poll']);
2453 $contact['confirm'] = str_replace('https:', 'http:', $contact['confirm']);
2454 $contact['poco'] = str_replace('https:', 'http:', $contact['poco']);
2457 if ((intval($new_policy) == BaseURL::SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'], 'http:')) {
2458 $ssl_changed = true;
2459 $contact['url'] = str_replace('http:', 'https:', $contact['url']);
2460 $contact['request'] = str_replace('http:', 'https:', $contact['request']);
2461 $contact['notify'] = str_replace('http:', 'https:', $contact['notify']);
2462 $contact['poll'] = str_replace('http:', 'https:', $contact['poll']);
2463 $contact['confirm'] = str_replace('http:', 'https:', $contact['confirm']);
2464 $contact['poco'] = str_replace('http:', 'https:', $contact['poco']);
2468 $fields = ['url' => $contact['url'], 'request' => $contact['request'],
2469 'notify' => $contact['notify'], 'poll' => $contact['poll'],
2470 'confirm' => $contact['confirm'], 'poco' => $contact['poco']];
2471 DBA::update('contact', $fields, ['id' => $contact['id']]);
2478 * @param array $importer Owner (local user) data
2479 * @param array $contact Existing owner-specific contact data we want to expand the relationship with. Optional.
2480 * @param array $datarray An item-like array with at least the 'author-id' and 'author-url' keys for the contact. Mandatory.
2481 * @param bool $sharing True: Contact is now sharing with Owner; False: Contact is now following Owner (default)
2482 * @param string $note Introduction additional message
2483 * @return bool|null True: follow request is accepted; False: relationship is rejected; Null: relationship is pending
2484 * @throws HTTPException\InternalServerErrorException
2485 * @throws \ImagickException
2487 public static function addRelationship(array $importer, array $contact, array $datarray, $sharing = false, $note = '')
2489 // Should always be set
2490 if (empty($datarray['author-id'])) {
2494 $fields = ['url', 'name', 'nick', 'avatar', 'photo', 'network', 'blocked'];
2495 $pub_contact = DBA::selectFirst('contact', $fields, ['id' => $datarray['author-id']]);
2496 if (!DBA::isResult($pub_contact)) {
2497 // Should never happen
2501 // Contact is blocked at node-level
2502 if (self::isBlocked($datarray['author-id'])) {
2506 $url = ($datarray['author-link'] ?? '') ?: $pub_contact['url'];
2507 $name = $pub_contact['name'];
2508 $photo = ($pub_contact['avatar'] ?? '') ?: $pub_contact["photo"];
2509 $nick = $pub_contact['nick'];
2510 $network = $pub_contact['network'];
2512 // Ensure that we don't create a new contact when there already is one
2513 $cid = self::getIdForURL($url, $importer['uid']);
2515 $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
2518 if (!empty($contact)) {
2519 if (!empty($contact['pending'])) {
2520 Logger::info('Pending contact request already exists.', ['url' => $url, 'uid' => $importer['uid']]);
2524 // Contact is blocked at user-level
2525 if (!empty($contact['id']) && !empty($importer['id']) &&
2526 self::isBlockedByUser($contact['id'], $importer['id'])) {
2530 // Make sure that the existing contact isn't archived
2531 self::unmarkForArchival($contact);
2533 if (($contact['rel'] == self::SHARING)
2534 || ($sharing && $contact['rel'] == self::FOLLOWER)) {
2535 DBA::update('contact', ['rel' => self::FRIEND, 'writable' => true, 'pending' => false],
2536 ['id' => $contact['id'], 'uid' => $importer['uid']]);
2539 // Ensure to always have the correct network type, independent from the connection request method
2540 self::updateFromProbe($contact['id'], '', true);
2544 // send email notification to owner?
2545 if (DBA::exists('contact', ['nurl' => Strings::normaliseLink($url), 'uid' => $importer['uid'], 'pending' => true])) {
2546 Logger::log('ignoring duplicated connection request from pending contact ' . $url);
2550 // create contact record
2551 DBA::insert('contact', [
2552 'uid' => $importer['uid'],
2553 'created' => DateTimeFormat::utcNow(),
2555 'nurl' => Strings::normaliseLink($url),
2558 'network' => $network,
2559 'rel' => self::FOLLOWER,
2566 $contact_id = DBA::lastInsertId();
2568 // Ensure to always have the correct network type, independent from the connection request method
2569 self::updateFromProbe($contact_id, '', true);
2571 self::updateAvatar($contact_id, $photo, true);
2573 $contact_record = DBA::selectFirst('contact', ['id', 'network', 'name', 'url', 'photo'], ['id' => $contact_id]);
2575 /// @TODO Encapsulate this into a function/method
2576 $fields = ['uid', 'username', 'email', 'page-flags', 'notify-flags', 'language'];
2577 $user = DBA::selectFirst('user', $fields, ['uid' => $importer['uid']]);
2578 if (DBA::isResult($user) && !in_array($user['page-flags'], [User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE, User::PAGE_FLAGS_COMMUNITY])) {
2579 // create notification
2580 $hash = Strings::getRandomHex();
2582 if (is_array($contact_record)) {
2583 DBA::insert('intro', ['uid' => $importer['uid'], 'contact-id' => $contact_record['id'],
2584 'blocked' => false, 'knowyou' => false, 'note' => $note,
2585 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow()]);
2588 Group::addMember(User::getDefaultGroup($importer['uid'], $contact_record["network"]), $contact_record['id']);
2590 if (($user['notify-flags'] & Type::INTRO) &&
2591 in_array($user['page-flags'], [User::PAGE_FLAGS_NORMAL])) {
2594 'type' => Type::INTRO,
2595 'notify_flags' => $user['notify-flags'],
2596 'language' => $user['language'],
2597 'to_name' => $user['username'],
2598 'to_email' => $user['email'],
2599 'uid' => $user['uid'],
2600 'link' => DI::baseUrl() . '/notifications/intros',
2601 'source_name' => ((strlen(stripslashes($contact_record['name']))) ? stripslashes($contact_record['name']) : DI::l10n()->t('[Name Withheld]')),
2602 'source_link' => $contact_record['url'],
2603 'source_photo' => $contact_record['photo'],
2604 'verb' => ($sharing ? Activity::FRIEND : Activity::FOLLOW),
2608 } elseif (DBA::isResult($user) && in_array($user['page-flags'], [User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE, User::PAGE_FLAGS_COMMUNITY])) {
2609 if (($user['page-flags'] == User::PAGE_FLAGS_FREELOVE) && ($network != Protocol::DIASPORA)) {
2610 self::createFromProbe($importer, $url, false, $network);
2613 $condition = ['uid' => $importer['uid'], 'url' => $url, 'pending' => true];
2614 $fields = ['pending' => false];
2615 if ($user['page-flags'] == User::PAGE_FLAGS_FREELOVE) {
2616 $fields['rel'] = Contact::FRIEND;
2619 DBA::update('contact', $fields, $condition);
2628 public static function removeFollower($importer, $contact, array $datarray = [], $item = "")
2630 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::SHARING)) {
2631 DBA::update('contact', ['rel' => self::SHARING], ['id' => $contact['id']]);
2633 Contact::remove($contact['id']);
2637 public static function removeSharer($importer, $contact, array $datarray = [], $item = "")
2639 if (($contact['rel'] == self::FRIEND) || ($contact['rel'] == self::FOLLOWER)) {
2640 DBA::update('contact', ['rel' => self::FOLLOWER], ['id' => $contact['id']]);
2642 Contact::remove($contact['id']);
2647 * Create a birthday event.
2649 * Update the year and the birthday.
2651 public static function updateBirthdays()
2655 AND `bd` > "0001-01-01"
2656 AND SUBSTRING(`bd`, 1, 4) != `bdyear`
2657 AND (`contact`.`rel` = ? OR `contact`.`rel` = ?)
2658 AND NOT `contact`.`pending`
2659 AND NOT `contact`.`hidden`
2660 AND NOT `contact`.`blocked`
2661 AND NOT `contact`.`archive`
2662 AND NOT `contact`.`deleted`',
2667 $contacts = DBA::select('contact', ['id', 'uid', 'name', 'url', 'bd'], $condition);
2669 while ($contact = DBA::fetch($contacts)) {
2670 Logger::log('update_contact_birthday: ' . $contact['bd']);
2672 $nextbd = DateTimeFormat::utcNow('Y') . substr($contact['bd'], 4);
2674 if (Event::createBirthday($contact, $nextbd)) {
2678 ['bdyear' => substr($nextbd, 0, 4), 'bd' => $nextbd],
2679 ['id' => $contact['id']]
2683 DBA::close($contacts);
2687 * Remove the unavailable contact ids from the provided list
2689 * @param array $contact_ids Contact id list
2691 * @throws \Exception
2693 public static function pruneUnavailable(array $contact_ids)
2695 if (empty($contact_ids)) {
2699 $contacts = Contact::selectToArray(['id'], [
2700 'id' => $contact_ids,
2706 return array_column($contacts, 'id');
2710 * Returns a magic link to authenticate remote visitors
2712 * @todo check if the return is either a fully qualified URL or a relative path to Friendica basedir
2714 * @param string $contact_url The address of the target contact profile
2715 * @param string $url An url that we will be redirected to after the authentication
2717 * @return string with "redir" link
2718 * @throws HTTPException\InternalServerErrorException
2719 * @throws \ImagickException
2721 public static function magicLink($contact_url, $url = '')
2723 if (!Session::isAuthenticated()) {
2724 return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2727 $data = self::getProbeDataFromDatabase($contact_url);
2729 return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
2732 // Prevents endless loop in case only a non-public contact exists for the contact URL
2733 unset($data['uid']);
2735 return self::magicLinkByContact($data, $url ?: $contact_url);
2739 * Returns a magic link to authenticate remote visitors
2741 * @param integer $cid The contact id of the target contact profile
2742 * @param string $url An url that we will be redirected to after the authentication
2744 * @return string with "redir" link
2745 * @throws HTTPException\InternalServerErrorException
2746 * @throws \ImagickException
2748 public static function magicLinkbyId($cid, $url = '')
2750 $contact = DBA::selectFirst('contact', ['id', 'network', 'url', 'uid'], ['id' => $cid]);
2752 return self::magicLinkByContact($contact, $url);
2756 * Returns a magic link to authenticate remote visitors
2758 * @param array $contact The contact array with "uid", "network" and "url"
2759 * @param string $url An url that we will be redirected to after the authentication
2761 * @return string with "redir" link
2762 * @throws HTTPException\InternalServerErrorException
2763 * @throws \ImagickException
2765 public static function magicLinkByContact($contact, $url = '')
2767 $destination = $url ?: $contact['url']; // Equivalent to ($url != '') ? $url : $contact['url'];
2769 if (!Session::isAuthenticated() || ($contact['network'] != Protocol::DFRN)) {
2770 return $destination;
2773 // Only redirections to the same host do make sense
2774 if (($url != '') && (parse_url($url, PHP_URL_HOST) != parse_url($contact['url'], PHP_URL_HOST))) {
2778 if (!empty($contact['uid'])) {
2779 return self::magicLink($contact['url'], $url);
2782 if (empty($contact['id'])) {
2783 return $destination;
2786 $redirect = 'redir/' . $contact['id'];
2788 if (($url != '') && !Strings::compareLink($contact['url'], $url)) {
2789 $redirect .= '?url=' . $url;
2796 * Remove a contact from all groups
2798 * @param integer $contact_id
2800 * @return boolean Success
2802 public static function removeFromGroups($contact_id)
2804 return DBA::delete('group_member', ['contact-id' => $contact_id]);
2808 * Is the contact a forum?
2810 * @param integer $contactid ID of the contact
2812 * @return boolean "true" if it is a forum
2814 public static function isForum($contactid)
2816 $fields = ['forum', 'prv'];
2817 $condition = ['id' => $contactid];
2818 $contact = DBA::selectFirst('contact', $fields, $condition);
2819 if (!DBA::isResult($contact)) {
2824 return ($contact['forum'] || $contact['prv']);
2828 * Can the remote contact receive private messages?
2830 * @param array $contact
2833 public static function canReceivePrivateMessages(array $contact)
2835 $protocol = $contact['network'] ?? $contact['protocol'] ?? Protocol::PHANTOM;
2836 $self = $contact['self'] ?? false;
2838 return in_array($protocol, [Protocol::DFRN, Protocol::DIASPORA, Protocol::ACTIVITYPUB]) && !$self;