From 32651f7811868c52c1a9d556ae98f77ad9846f32 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 1 Dec 2023 20:20:00 +0000 Subject: [PATCH] Legacy code removed --- src/Protocol/ActivityPub/Receiver.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/Protocol/ActivityPub/Receiver.php b/src/Protocol/ActivityPub/Receiver.php index 1a4c759b9..933b9be43 100644 --- a/src/Protocol/ActivityPub/Receiver.php +++ b/src/Protocol/ActivityPub/Receiver.php @@ -498,19 +498,6 @@ class Receiver $object_data['receiver'] = array_replace($object_data['receiver'] ?? [], $receivers); $object_data['reception_type'] = array_replace($object_data['reception_type'] ?? [], $reception_types); - // This check here interferes with Hubzilla posts where the author host differs from the host the post was created - // $author = $object_data['author'] ?? $actor; - // if (!empty($author) && !empty($object_data['id'])) { - // $author_host = parse_url($author, PHP_URL_HOST); - // $id_host = parse_url($object_data['id'], PHP_URL_HOST); - // if ($author_host == $id_host) { - // Logger::info('Valid hosts', ['type' => $type, 'host' => $id_host]); - // } else { - // Logger::notice('Differing hosts on author and id', ['type' => $type, 'author' => $author_host, 'id' => $id_host]); - // $trust_source = false; - // } - // } - $account = Contact::selectFirstAccount(['platform'], ['nurl' => Strings::normaliseLink($actor)]); $platform = $account['platform'] ?? '';