diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-05-15 22:22:03 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-05-20 09:57:40 +0200 |
commit | 65fcc3119c334b75dd13bcfdebf186afdc580a8f (patch) | |
tree | 4f2158c61a9b7c3f47cfa233d01413b946ee53c0 /server/middlewares/validators/utils.ts | |
parent | d5f345ed4cfac4e1fa84dcb4fce1cda4d32f9c73 (diff) | |
download | PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.gz PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.zst PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.zip |
First typescript iteration
Diffstat (limited to 'server/middlewares/validators/utils.ts')
-rw-r--r-- | server/middlewares/validators/utils.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/server/middlewares/validators/utils.ts b/server/middlewares/validators/utils.ts new file mode 100644 index 000000000..710e65529 --- /dev/null +++ b/server/middlewares/validators/utils.ts | |||
@@ -0,0 +1,21 @@ | |||
1 | import { inspect } from 'util' | ||
2 | |||
3 | import { logger } from '../../helpers' | ||
4 | |||
5 | function checkErrors (req, res, next, statusCode?) { | ||
6 | if (statusCode === undefined) statusCode = 400 | ||
7 | const errors = req.validationErrors() | ||
8 | |||
9 | if (errors) { | ||
10 | logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors }) | ||
11 | return res.status(statusCode).send('There have been validation errors: ' + inspect(errors)) | ||
12 | } | ||
13 | |||
14 | return next() | ||
15 | } | ||
16 | |||
17 | // --------------------------------------------------------------------------- | ||
18 | |||
19 | export { | ||
20 | checkErrors | ||
21 | } | ||