2016-02-07 04:23:23 -06:00
|
|
|
'use strict'
|
2015-11-07 07:16:26 -06:00
|
|
|
|
2017-01-04 13:59:23 -06:00
|
|
|
const checkErrors = require('../utils').checkErrors
|
|
|
|
const logger = require('../../../helpers/logger')
|
2015-11-07 07:16:26 -06:00
|
|
|
|
2017-01-04 13:59:23 -06:00
|
|
|
const validatorsRemoteSignature = {
|
2016-10-02 05:19:02 -05:00
|
|
|
signature
|
2016-02-07 04:23:23 -06:00
|
|
|
}
|
2015-11-07 07:16:26 -06:00
|
|
|
|
2016-06-18 09:13:54 -05:00
|
|
|
function signature (req, res, next) {
|
2016-11-14 13:03:04 -06:00
|
|
|
req.checkBody('signature.host', 'Should have a signature host').isURL()
|
2016-02-07 04:23:23 -06:00
|
|
|
req.checkBody('signature.signature', 'Should have a signature').notEmpty()
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2017-01-04 15:23:07 -06:00
|
|
|
logger.debug('Checking signature parameters', { parameters: { signature: req.body.signature } })
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2017-01-04 13:59:23 -06:00
|
|
|
module.exports = validatorsRemoteSignature
|