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

26 lines
634 B
JavaScript
Raw Normal View History

'use strict'
2015-11-07 13:16:26 +00:00
var util = require('util')
2016-01-31 10:23:52 +00:00
var logger = require('../../helpers/logger')
2015-11-07 13:16:26 +00:00
var reqValidatorsUtils = {
checkErrors: checkErrors
}
2015-11-07 13:16:26 +00:00
function checkErrors (req, res, next, status_code) {
if (status_code === undefined) status_code = 400
var 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(status_code).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
module.exports = reqValidatorsUtils