aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-05-29 15:05:03 +0200
committerChocobozzz <me@florianbigard.com>2018-05-29 15:05:14 +0200
commitf6a7c82ca51896a433bc2264c52afd6981c7c4c6 (patch)
tree61523331ce489fb89ea6f18da98088e255ea310b /server/helpers/custom-validators
parentf6d2158fd9b16e304532549cf97440c0d995340b (diff)
downloadPeerTube-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.ts3
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 {
18import { isViewActivityValid } from './view' 18import { isViewActivityValid } from './view'
19 19
20function isRootActivityValid (activity: any) { 20function 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
33const activityCheckers: { [ P in ActivityType ]: (activity: Activity) => boolean } = { 34const activityCheckers: { [ P in ActivityType ]: (activity: Activity) => boolean } = {