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

23 lines
616 B
TypeScript
Raw Normal View History

2017-11-10 13:34:45 +00:00
import * as express from 'express'
2017-11-14 16:31:26 +00:00
import { body } from 'express-validator/check'
import { isRootActivityValid, logger } from '../../../helpers'
2017-11-27 16:30:46 +00:00
import { areValidationErrors } from '../utils'
2017-11-10 13:34:45 +00:00
const activityPubValidator = [
2017-11-14 16:31:26 +00:00
body('').custom((value, { req }) => isRootActivityValid(req.body)),
2017-11-10 13:34:45 +00:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-11-30 13:15:17 +00:00
logger.debug('Checking activity pub parameters')
2017-11-10 13:34:45 +00:00
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
return next()
2017-11-10 13:34:45 +00:00
}
]
// ---------------------------------------------------------------------------
export {
activityPubValidator
}