1
0
Fork 0
peertube/server/middlewares/validators/utils.ts

22 lines
586 B
TypeScript
Raw Normal View History

2017-09-15 10:17:08 +00:00
import { validationResult } from 'express-validator/check'
2017-06-10 20:15:25 +00:00
import * as express from 'express'
2015-11-07 13:16:26 +00:00
2017-05-15 20:22:03 +00:00
import { logger } from '../../helpers'
2016-01-31 10:23:52 +00:00
function checkErrors (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-09-15 10:17:08 +00:00
const errors = validationResult(req)
2015-11-07 13:16:26 +00:00
2017-09-15 10:17:08 +00:00
if (!errors.isEmpty()) {
logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors.mapped() })
return res.status(400).json({ errors: errors.mapped() })
2015-11-07 13:16:26 +00:00
}
return next()
}
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2017-05-15 20:22:03 +00:00
export {
checkErrors
}