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

36 lines
944 B
TypeScript
Raw Normal View History

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