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

18 lines
526 B
TypeScript
Raw Normal View History

2017-05-15 20:22:03 +00:00
import { logger } from '../../../helpers'
import { checkErrors } from '../utils'
2015-11-07 13:16:26 +00:00
2017-05-15 20:22:03 +00:00
function signatureValidator (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-05-15 20:22:03 +00:00
export {
signatureValidator
}