aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/remote/signature.ts
blob: 6e3ebe7db3b747c927887bfef2790e40b2cc518c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { logger } from '../../../helpers'
import { checkErrors } from '../utils'

function signatureValidator (req, res, next) {
  req.checkBody('signature.host', 'Should have a signature host').isURL()
  req.checkBody('signature.signature', 'Should have a signature').notEmpty()

  logger.debug('Checking signature parameters', { parameters: { signature: req.body.signature } })

  checkErrors(req, res, next)
}

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

export {
  signatureValidator
}