2017-06-10 22:15:25 +02:00
|
|
|
import 'express-validator'
|
|
|
|
import * as express from 'express'
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
import { logger } from '../../../helpers'
|
|
|
|
import { checkErrors } from '../utils'
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function signatureValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-11-14 20:03:04 +01:00
|
|
|
req.checkBody('signature.host', 'Should have a signature host').isURL()
|
2016-02-07 11:23:23 +01:00
|
|
|
req.checkBody('signature.signature', 'Should have a signature').notEmpty()
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-01-04 22:23:07 +01:00
|
|
|
logger.debug('Checking signature parameters', { parameters: { signature: req.body.signature } })
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01: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
|
|
|
|
}
|