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

40 lines
1.3 KiB
TypeScript
Raw Normal View History

2021-08-27 08:32:44 -04:00
import express from 'express'
2019-07-25 10:23:44 -04:00
import { body } from 'express-validator'
2017-12-28 05:16:08 -05:00
import {
isSignatureCreatorValid,
isSignatureTypeValid,
2017-12-28 05:16:08 -05:00
isSignatureValueValid
} from '../../../helpers/custom-validators/activitypub/signature'
2017-12-12 11:53:50 -05:00
import { isDateValid } from '../../../helpers/custom-validators/misc'
2017-12-28 05:16:08 -05:00
import { logger } from '../../../helpers/logger'
import { areValidationErrors } from '../shared'
2017-11-09 11:51:58 -05:00
const signatureValidator = [
body('signature.type')
.optional()
.custom(isSignatureTypeValid).withMessage('Should have a valid signature type'),
body('signature.created')
.optional()
2021-05-31 13:47:14 -04:00
.custom(isDateValid).withMessage('Should have a signature created date that conforms to ISO 8601'),
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 11:51:58 -05:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
2021-03-10 05:17:20 -05:00
logger.debug('Checking Linked Data Signature parameter', { parameters: { signature: req.body.signature } })
2017-11-09 11:51:58 -05:00
2017-11-27 11:30:46 -05:00
if (areValidationErrors(req, res)) return
return next()
2017-11-09 11:51:58 -05:00
}
]
// ---------------------------------------------------------------------------
export {
signatureValidator
}