PeerTube/server/middlewares/validators/utils.ts

22 lines
544 B
TypeScript
Raw Normal View History

2017-05-15 22:22:03 +02:00
import { inspect } from 'util'
2015-11-07 14:16:26 +01:00
2017-05-15 22:22:03 +02:00
import { logger } from '../../helpers'
2016-01-31 11:23:52 +01:00
2017-05-15 22:22:03 +02:00
function checkErrors (req, res, next, statusCode?) {
if (statusCode === undefined) statusCode = 400
2016-03-16 22:29:27 +01:00
const errors = req.validationErrors()
2015-11-07 14:16:26 +01:00
if (errors) {
logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors })
2017-05-15 22:22:03 +02:00
return res.status(statusCode).send('There have been validation errors: ' + inspect(errors))
2015-11-07 14:16:26 +01:00
}
return next()
}
// ---------------------------------------------------------------------------
2016-01-31 11:23:52 +01:00
2017-05-15 22:22:03 +02:00
export {
checkErrors
}