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/remote/videos.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/remote/videos.ts')
-rw-r--r-- | server/middlewares/validators/remote/videos.ts | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/server/middlewares/validators/remote/videos.ts b/server/middlewares/validators/remote/videos.ts new file mode 100644 index 000000000..3380c29e2 --- /dev/null +++ b/server/middlewares/validators/remote/videos.ts | |||
@@ -0,0 +1,34 @@ | |||
1 | import { logger } from '../../../helpers' | ||
2 | import { checkErrors } from '../utils' | ||
3 | |||
4 | function remoteVideosValidator (req, res, next) { | ||
5 | req.checkBody('data').isEachRemoteRequestVideosValid() | ||
6 | |||
7 | logger.debug('Checking remoteVideos parameters', { parameters: req.body }) | ||
8 | |||
9 | checkErrors(req, res, next) | ||
10 | } | ||
11 | |||
12 | function remoteQaduVideosValidator (req, res, next) { | ||
13 | req.checkBody('data').isEachRemoteRequestVideosQaduValid() | ||
14 | |||
15 | logger.debug('Checking remoteQaduVideos parameters', { parameters: req.body }) | ||
16 | |||
17 | checkErrors(req, res, next) | ||
18 | } | ||
19 | |||
20 | function remoteEventsVideosValidator (req, res, next) { | ||
21 | req.checkBody('data').isEachRemoteRequestVideosEventsValid() | ||
22 | |||
23 | logger.debug('Checking remoteEventsVideos parameters', { parameters: req.body }) | ||
24 | |||
25 | checkErrors(req, res, next) | ||
26 | } | ||
27 | |||
28 | // --------------------------------------------------------------------------- | ||
29 | |||
30 | export { | ||
31 | remoteVideosValidator, | ||
32 | remoteQaduVideosValidator, | ||
33 | remoteEventsVideosValidator | ||
34 | } | ||