2017-09-15 12:17:08 +02:00
|
|
|
import { body } from 'express-validator/check'
|
2017-06-10 22:15:25 +02:00
|
|
|
import * as express from 'express'
|
|
|
|
|
2017-09-15 12:17:08 +02:00
|
|
|
import { logger, isHostValid } from '../../../helpers'
|
2017-05-15 22:22:03 +02:00
|
|
|
import { checkErrors } from '../utils'
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2017-09-15 12:17:08 +02:00
|
|
|
const signatureValidator = [
|
|
|
|
body('signature.host').custom(isHostValid).withMessage('Should have a signature host'),
|
|
|
|
body('signature.signature').not().isEmpty().withMessage('Should have a signature'),
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-09-15 12:17:08 +02:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking signature parameters', { parameters: { signature: req.body.signature } })
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-09-15 12:17:08 +02:00
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
|
|
|
]
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
signatureValidator
|
|
|
|
}
|