2017-09-15 12:17:08 +02:00
|
|
|
import { validationResult } from 'express-validator/check'
|
2017-06-10 22:15:25 +02:00
|
|
|
import * as express from 'express'
|
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-10-19 09:43:01 +02:00
|
|
|
function checkErrors (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-09-15 12:17:08 +02:00
|
|
|
const errors = validationResult(req)
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2017-09-15 12:17:08 +02:00
|
|
|
if (!errors.isEmpty()) {
|
|
|
|
logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors.mapped() })
|
2017-10-19 09:43:01 +02:00
|
|
|
return res.status(400).json({ errors: errors.mapped() })
|
2015-11-07 14:16:26 +01:00
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
checkErrors
|
|
|
|
}
|