diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-03-07 11:33:59 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-03-07 11:33:59 +0100 |
commit | b9a3e09ad5a7673f64556d1dba122ed4c4fac980 (patch) | |
tree | 66d4928b82af19a2372a2505822233884f3fd471 /middlewares/reqValidators/utils.js | |
parent | b2ff5e3e686eb552c5ccd64ce67b0455972ceef0 (diff) | |
download | PeerTube-b9a3e09ad5a7673f64556d1dba122ed4c4fac980.tar.gz PeerTube-b9a3e09ad5a7673f64556d1dba122ed4c4fac980.tar.zst PeerTube-b9a3e09ad5a7673f64556d1dba122ed4c4fac980.zip |
Prepare folders structure for angular app
Diffstat (limited to 'middlewares/reqValidators/utils.js')
-rw-r--r-- | middlewares/reqValidators/utils.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/middlewares/reqValidators/utils.js b/middlewares/reqValidators/utils.js deleted file mode 100644 index 46c982571..000000000 --- a/middlewares/reqValidators/utils.js +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | 'use strict' | ||
2 | |||
3 | var util = require('util') | ||
4 | |||
5 | var logger = require('../../helpers/logger') | ||
6 | |||
7 | var reqValidatorsUtils = { | ||
8 | checkErrors: checkErrors | ||
9 | } | ||
10 | |||
11 | function checkErrors (req, res, next, status_code) { | ||
12 | if (status_code === undefined) status_code = 400 | ||
13 | var errors = req.validationErrors() | ||
14 | |||
15 | if (errors) { | ||
16 | logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors }) | ||
17 | return res.status(status_code).send('There have been validation errors: ' + util.inspect(errors)) | ||
18 | } | ||
19 | |||
20 | return next() | ||
21 | } | ||
22 | |||
23 | // --------------------------------------------------------------------------- | ||
24 | |||
25 | module.exports = reqValidatorsUtils | ||