Always use direct DFRN transport on local contacts

This commit is contained in:
Michael 2019-09-21 12:39:07 +00:00
parent 7e600df9a6
commit c364a77d63
3 changed files with 36 additions and 8 deletions

View File

@ -290,6 +290,19 @@ class Contact extends BaseObject
return ''; return '';
} }
/**
* Check if the given contact url is on the same machine
*
* @param string $url The contact link
*
* @return boolean Is it the same machine?
*/
public static function isLocal($url)
{
return Strings::compareLink(self::getBasepath($url), System::baseUrl());
}
/** /**
* Returns the public contact id of the given user id * Returns the public contact id of the given user id
* *
@ -2486,6 +2499,9 @@ class Contact extends BaseObject
['id' => $contact['id'], 'uid' => $importer['uid']]); ['id' => $contact['id'], 'uid' => $importer['uid']]);
} }
// Ensure to always have the correct network type, independent from the connection request method
self::updateFromProbe($contact['id'], '', true);
return true; return true;
} else { } else {
// send email notification to owner? // send email notification to owner?
@ -2511,15 +2527,14 @@ class Contact extends BaseObject
'writable' => 1, 'writable' => 1,
]); ]);
$contact_record = [ $contact_id = DBA::lastInsertId();
'id' => DBA::lastInsertId(),
'network' => $network,
'name' => $name,
'url' => $url,
'photo' => $photo
];
Contact::updateAvatar($photo, $importer["uid"], $contact_record["id"], true); // Ensure to always have the correct network type, independent from the connection request method
self::updateFromProbe($contact_id, '', true);
Contact::updateAvatar($photo, $importer["uid"], $contact_id, true);
$contact_record = DBA::selectFirst('contact', ['id', 'network', 'name', 'url', 'photo'], ['id' => $contact_id]);
/// @TODO Encapsulate this into a function/method /// @TODO Encapsulate this into a function/method
$fields = ['uid', 'username', 'email', 'page-flags', 'notify-flags', 'language']; $fields = ['uid', 'username', 'email', 'page-flags', 'notify-flags', 'language'];

View File

@ -544,6 +544,10 @@ class Transmitter
$contacts = DBA::select('contact', ['url', 'network', 'protocol'], $condition); $contacts = DBA::select('contact', ['url', 'network', 'protocol'], $condition);
while ($contact = DBA::fetch($contacts)) { while ($contact = DBA::fetch($contacts)) {
if (Contact::isLocal($contact['url'])) {
continue;
}
if (!in_array($contact['network'], $networks) && ($contact['protocol'] != Protocol::ACTIVITYPUB)) { if (!in_array($contact['network'], $networks) && ($contact['protocol'] != Protocol::ACTIVITYPUB)) {
continue; continue;
} }
@ -611,6 +615,10 @@ class Transmitter
if ($receiver == $item_profile['followers']) { if ($receiver == $item_profile['followers']) {
$inboxes = array_merge($inboxes, self::fetchTargetInboxesforUser($uid, $personal)); $inboxes = array_merge($inboxes, self::fetchTargetInboxesforUser($uid, $personal));
} else { } else {
if (Contact::isLocal($receiver)) {
continue;
}
$profile = APContact::getByURL($receiver, false); $profile = APContact::getByURL($receiver, false);
if (!empty($profile)) { if (!empty($profile)) {
if (empty($profile['sharedinbox']) || $personal || $blindcopy) { if (empty($profile['sharedinbox']) || $personal || $blindcopy) {

View File

@ -568,6 +568,11 @@ class Notifier
*/ */
private static function skipDFRN($contact, $item, $cmd) private static function skipDFRN($contact, $item, $cmd)
{ {
// Use DFRN if we are on the same site
if (Contact::isLocal($contact['url'])) {
return false;
}
// Don't skip when author or owner don't have AP profiles // Don't skip when author or owner don't have AP profiles
if ((!empty($item['author-link']) && empty(APContact::getByURL($item['author-link'], false))) || (!empty($item['owner-link']) && empty(APContact::getByURL($item['owner-link'], false)))) { if ((!empty($item['author-link']) && empty(APContact::getByURL($item['author-link'], false))) || (!empty($item['owner-link']) && empty(APContact::getByURL($item['owner-link'], false)))) {
return false; return false;