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