1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00
Peertube/server/middlewares/validators/remote/signature.ts
2017-06-10 22:15:25 +02:00

20 lines
646 B
TypeScript

import 'express-validator'
import * as express from 'express'
import { logger } from '../../../helpers'
import { checkErrors } from '../utils'
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()
logger.debug('Checking signature parameters', { parameters: { signature: req.body.signature } })
checkErrors(req, res, next)
}
// ---------------------------------------------------------------------------
export {
signatureValidator
}