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

26 lines
619 B
JavaScript
Raw Normal View History

'use strict'
2015-11-07 13:16:26 +00:00
2016-03-16 21:29:27 +00:00
const util = require('util')
2016-01-31 10:23:52 +00:00
2016-03-16 21:29:27 +00:00
const logger = require('../../helpers/logger')
2015-11-07 13:16:26 +00:00
2016-07-01 14:16:40 +00:00
const validatorsUtils = {
checkErrors
}
2015-11-07 13:16:26 +00:00
function checkErrors (req, res, next, statusCode) {
if (statusCode === undefined) statusCode = 400
2016-03-16 21:29:27 +00:00
const errors = req.validationErrors()
2015-11-07 13:16:26 +00:00
if (errors) {
logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors })
return res.status(statusCode).send('There have been validation errors: ' + util.inspect(errors))
2015-11-07 13:16:26 +00:00
}
return next()
}
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2016-07-01 14:16:40 +00:00
module.exports = validatorsUtils