PeerTube/server/middlewares/validators/utils.ts

23 lines
619 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 { inspect } from 'util'
2015-11-07 07:16:26 -06:00
2017-05-15 15:22:03 -05:00
import { logger } from '../../helpers'
2016-01-31 04:23:52 -06:00
2017-06-10 15:15:25 -05:00
function checkErrors (req: express.Request, res: express.Response, next: express.NextFunction, statusCode = 400) {
2016-03-16 16:29:27 -05:00
const errors = req.validationErrors()
2015-11-07 07:16:26 -06:00
if (errors) {
logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors })
2017-05-15 15:22:03 -05:00
return res.status(statusCode).send('There have been validation errors: ' + inspect(errors))
2015-11-07 07:16:26 -06:00
}
return next()
}
// ---------------------------------------------------------------------------
2016-01-31 04:23:52 -06:00
2017-05-15 15:22:03 -05:00
export {
checkErrors
}