aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/remote/signature.ts
blob: d3937b5150c425a80e36743297c68122e9395d3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { body } from 'express-validator/check'
import * as express from 'express'

import { logger, isHostValid } from '../../../helpers'
import { checkErrors } from '../utils'

const signatureValidator = [
  body('signature.host').custom(isHostValid).withMessage('Should have a signature host'),
  body('signature.signature').not().isEmpty().withMessage('Should have a signature'),

  (req: express.Request, res: express.Response, next: express.NextFunction) => {
    logger.debug('Checking signature parameters', { parameters: { signature: req.body.signature } })

    checkErrors(req, res, next)
  }
]

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

export {
  signatureValidator
}