From 47581df0737ebcc058a5863143c752f9112a4424 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 23 Oct 2019 11:33:53 +0200 Subject: Fix federation with some actors That don't have a shared inbox, or a URL --- server/helpers/custom-validators/activitypub/actor.ts | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'server/helpers/custom-validators') diff --git a/server/helpers/custom-validators/activitypub/actor.ts b/server/helpers/custom-validators/activitypub/actor.ts index 4e9aabf0e..ec4dd6f96 100644 --- a/server/helpers/custom-validators/activitypub/actor.ts +++ b/server/helpers/custom-validators/activitypub/actor.ts @@ -6,7 +6,12 @@ import { isHostValid } from '../servers' import { peertubeTruncate } from '@server/helpers/core-utils' function isActorEndpointsObjectValid (endpointObject: any) { - return isActivityPubUrlValid(endpointObject.sharedInbox) + if (endpointObject && endpointObject.sharedInbox) { + return isActivityPubUrlValid(endpointObject.sharedInbox) + } + + // Shared inbox is optional + return true } function isActorPublicKeyObjectValid (publicKeyObject: any) { @@ -16,7 +21,7 @@ function isActorPublicKeyObjectValid (publicKeyObject: any) { } function isActorTypeValid (type: string) { - return type === 'Person' || type === 'Application' || type === 'Group' + return type === 'Person' || type === 'Application' || type === 'Group' || type === 'Service' || type === 'Organization' } function isActorPublicKeyValid (publicKey: string) { @@ -81,9 +86,11 @@ function sanitizeAndCheckActorObject (object: any) { } function normalizeActor (actor: any) { - if (!actor || !actor.url) return + if (!actor) return - if (typeof actor.url !== 'string') { + if (!actor.url) { + actor.url = actor.id + } else if (typeof actor.url !== 'string') { actor.url = actor.url.href || actor.url.url } -- cgit v1.2.3