2017-06-10 15:15:25 -05:00
|
|
|
import * as express from 'express'
|
2017-11-27 10:30:46 -06:00
|
|
|
import { validationResult } from 'express-validator/check'
|
2017-12-28 04:16:08 -06:00
|
|
|
import { logger } from '../../helpers/logger'
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2017-11-27 07:44:51 -06:00
|
|
|
function areValidationErrors (req: express.Request, res: express.Response) {
|
|
|
|
const errors = validationResult(req)
|
|
|
|
|
|
|
|
if (!errors.isEmpty()) {
|
|
|
|
logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors.mapped() })
|
|
|
|
res.status(400).json({ errors: errors.mapped() })
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
export {
|
2017-11-27 07:44:51 -06:00
|
|
|
areValidationErrors
|
2017-05-15 15:22:03 -05:00
|
|
|
}
|