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

39 lines
1.3 KiB
TypeScript
Raw Normal View History

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