PeerTube/server/middlewares/validators/remote/signature.js

22 lines
614 B
JavaScript
Raw Normal View History

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