PeerTube/server/middlewares/validators/activitypub/activity.ts

29 lines
963 B
TypeScript
Raw Normal View History

2017-11-10 14:34:45 +01:00
import * as express from 'express'
2017-12-28 11:16:08 +01:00
import { isRootActivityValid } from '../../../helpers/custom-validators/activitypub/activity'
import { logger } from '../../../helpers/logger'
import { getServerActor } from '../../../helpers/utils'
2017-11-10 14:34:45 +01:00
2018-04-06 11:54:24 +02:00
async function activityPubValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
logger.debug('Checking activity pub parameters')
2017-11-10 14:34:45 +01:00
2018-04-06 11:54:24 +02:00
if (!isRootActivityValid(req.body)) {
logger.warn('Incorrect activity parameters.', { activity: req.body })
return res.status(400).json({ error: 'Incorrect activity.' })
}
2018-04-06 11:54:24 +02:00
const serverActor = await getServerActor()
2019-03-19 10:35:15 +01:00
const remoteActor = res.locals.signature.actor
2018-04-06 11:54:24 +02:00
if (serverActor.id === remoteActor.id) {
logger.error('Receiving request in INBOX by ourselves!', req.body)
return res.status(409).end()
2017-11-10 14:34:45 +01:00
}
2018-04-06 11:54:24 +02:00
return next()
}
2017-11-10 14:34:45 +01:00
// ---------------------------------------------------------------------------
export {
activityPubValidator
}