1
0
Fork 0
peertube/server/middlewares/validators/activitypub/signature.ts

31 lines
1.2 KiB
TypeScript
Raw Normal View History

2017-11-09 16:51:58 +00:00
import * as express from 'express'
2017-11-27 16:30:46 +00:00
import { body } from 'express-validator/check'
2017-12-28 10:16:08 +00:00
import {
isSignatureCreatorValid, isSignatureTypeValid,
isSignatureValueValid
} from '../../../helpers/custom-validators/activitypub/signature'
2017-12-12 16:53:50 +00:00
import { isDateValid } from '../../../helpers/custom-validators/misc'
2017-12-28 10:16:08 +00:00
import { logger } from '../../../helpers/logger'
2017-11-27 16:30:46 +00:00
import { areValidationErrors } from '../utils'
2017-11-09 16:51:58 +00:00
const signatureValidator = [
body('signature.type').custom(isSignatureTypeValid).withMessage('Should have a valid signature type'),
body('signature.created').custom(isDateValid).withMessage('Should have a valid signature created date'),
body('signature.creator').custom(isSignatureCreatorValid).withMessage('Should have a valid signature creator'),
body('signature.signatureValue').custom(isSignatureValueValid).withMessage('Should have a valid signature value'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking activitypub signature parameter', { parameters: { signature: req.body.signature } })
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
return next()
2017-11-09 16:51:58 +00:00
}
]
// ---------------------------------------------------------------------------
export {
signatureValidator
}