2017-11-09 11:51:58 -05:00
|
|
|
import * as 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,
|
|
|
|
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'
|
2017-11-27 11:30:46 -05:00
|
|
|
import { areValidationErrors } from '../utils'
|
2017-11-09 11:51:58 -05:00
|
|
|
|
|
|
|
const signatureValidator = [
|
2018-10-19 05:41:19 -04:00
|
|
|
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 11:51:58 -05:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking activitypub signature parameter', { parameters: { signature: req.body.signature } })
|
|
|
|
|
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
|
|
|
|
}
|