blob: 3741b84c65c4c98ef7e26db287d9b25987704cf5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
'use strict'
const util = require('util')
const logger = require('../../helpers/logger')
const validatorsUtils = {
checkErrors
}
function checkErrors (req, res, next, statusCode) {
if (statusCode === undefined) statusCode = 400
const errors = req.validationErrors()
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))
}
return next()
}
// ---------------------------------------------------------------------------
module.exports = validatorsUtils
|