aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/activitypub/signature.ts
blob: 360685512aae5c5b6955db256fc53e8fc0d16d1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import * as express from 'express'
import { body } from 'express-validator/check'
import { isDateValid, isSignatureCreatorValid, isSignatureTypeValid, isSignatureValueValid, logger } from '../../../helpers'
import { areValidationErrors } from '../utils'

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 } })

    if (areValidationErrors(req, res)) return

    return next()
  }
]

// ---------------------------------------------------------------------------

export {
  signatureValidator
}