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

21 lines
646 B
TypeScript
Raw Normal View History

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