diff options
author | Chocobozzz <me@florianbigard.com> | 2018-05-29 15:05:03 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-05-29 15:05:14 +0200 |
commit | f6a7c82ca51896a433bc2264c52afd6981c7c4c6 (patch) | |
tree | 61523331ce489fb89ea6f18da98088e255ea310b /server/helpers/custom-validators | |
parent | f6d2158fd9b16e304532549cf97440c0d995340b (diff) | |
download | PeerTube-f6a7c82ca51896a433bc2264c52afd6981c7c4c6.tar.gz PeerTube-f6a7c82ca51896a433bc2264c52afd6981c7c4c6.tar.zst PeerTube-f6a7c82ca51896a433bc2264c52afd6981c7c4c6.zip |
Fix AP activity validator
Diffstat (limited to 'server/helpers/custom-validators')
-rw-r--r-- | server/helpers/custom-validators/activitypub/activity.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/helpers/custom-validators/activitypub/activity.ts b/server/helpers/custom-validators/activitypub/activity.ts index cabedaf20..1d2ef2ac6 100644 --- a/server/helpers/custom-validators/activitypub/activity.ts +++ b/server/helpers/custom-validators/activitypub/activity.ts | |||
@@ -18,7 +18,7 @@ import { | |||
18 | import { isViewActivityValid } from './view' | 18 | import { isViewActivityValid } from './view' |
19 | 19 | ||
20 | function isRootActivityValid (activity: any) { | 20 | function isRootActivityValid (activity: any) { |
21 | return Array.isArray(activity['@context']) && | 21 | return Array.isArray(activity['@context']) && ( |
22 | ( | 22 | ( |
23 | (activity.type === 'Collection' || activity.type === 'OrderedCollection') && | 23 | (activity.type === 'Collection' || activity.type === 'OrderedCollection') && |
24 | validator.isInt(activity.totalItems, { min: 0 }) && | 24 | validator.isInt(activity.totalItems, { min: 0 }) && |
@@ -28,6 +28,7 @@ function isRootActivityValid (activity: any) { | |||
28 | isActivityPubUrlValid(activity.id) && | 28 | isActivityPubUrlValid(activity.id) && |
29 | (isActivityPubUrlValid(activity.actor) || isActivityPubUrlValid(activity.actor.id)) | 29 | (isActivityPubUrlValid(activity.actor) || isActivityPubUrlValid(activity.actor.id)) |
30 | ) | 30 | ) |
31 | ) | ||
31 | } | 32 | } |
32 | 33 | ||
33 | const activityCheckers: { [ P in ActivityType ]: (activity: Activity) => boolean } = { | 34 | const activityCheckers: { [ P in ActivityType ]: (activity: Activity) => boolean } = { |