diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-07-01 16:16:40 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-07-01 16:16:40 +0200 |
commit | fc51fde048f2c3ce1dd3e85f5528335040bae894 (patch) | |
tree | 6de1eeac1291d9398cc99cda926b189c39b3ea0b /server/middlewares/reqValidators/pods.js | |
parent | 69b0a27cbbd69ca019eb7db5f917b1dd06dc82cd (diff) | |
download | PeerTube-fc51fde048f2c3ce1dd3e85f5528335040bae894.tar.gz PeerTube-fc51fde048f2c3ce1dd3e85f5528335040bae894.tar.zst PeerTube-fc51fde048f2c3ce1dd3e85f5528335040bae894.zip |
reqValidators --> validators
Diffstat (limited to 'server/middlewares/reqValidators/pods.js')
-rw-r--r-- | server/middlewares/reqValidators/pods.js | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/server/middlewares/reqValidators/pods.js b/server/middlewares/reqValidators/pods.js deleted file mode 100644 index 78a4b76c1..000000000 --- a/server/middlewares/reqValidators/pods.js +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | 'use strict' | ||
2 | |||
3 | const checkErrors = require('./utils').checkErrors | ||
4 | const friends = require('../../lib/friends') | ||
5 | const logger = require('../../helpers/logger') | ||
6 | |||
7 | const reqValidatorsPod = { | ||
8 | makeFriends: makeFriends, | ||
9 | podsAdd: podsAdd | ||
10 | } | ||
11 | |||
12 | function makeFriends (req, res, next) { | ||
13 | friends.hasFriends(function (err, hasFriends) { | ||
14 | if (err) { | ||
15 | logger.error('Cannot know if we have friends.', { error: err }) | ||
16 | res.sendStatus(500) | ||
17 | } | ||
18 | |||
19 | if (hasFriends === true) { | ||
20 | // We need to quit our friends before make new ones | ||
21 | res.sendStatus(409) | ||
22 | } else { | ||
23 | return next() | ||
24 | } | ||
25 | }) | ||
26 | } | ||
27 | |||
28 | function podsAdd (req, res, next) { | ||
29 | req.checkBody('url', 'Should have an url').notEmpty().isURL({ require_protocol: true }) | ||
30 | req.checkBody('publicKey', 'Should have a public key').notEmpty() | ||
31 | |||
32 | // TODO: check we don't have it already | ||
33 | |||
34 | logger.debug('Checking podsAdd parameters', { parameters: req.body }) | ||
35 | |||
36 | checkErrors(req, res, next) | ||
37 | } | ||
38 | |||
39 | // --------------------------------------------------------------------------- | ||
40 | |||
41 | module.exports = reqValidatorsPod | ||