diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-06-10 22:15:25 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-06-10 22:15:25 +0200 |
commit | 69818c9394366b954b6ba3bd697bd9d2b09f2a16 (patch) | |
tree | ad199a18ec3c322460d6f9523fc383ee562554e0 /server/middlewares/validators/remote | |
parent | 4d4e5cd4dca78480ec7f40e747f424cd107376a4 (diff) | |
download | PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.tar.gz PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.tar.zst PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.zip |
Type functions
Diffstat (limited to 'server/middlewares/validators/remote')
-rw-r--r-- | server/middlewares/validators/remote/signature.ts | 5 | ||||
-rw-r--r-- | server/middlewares/validators/remote/videos.ts | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/server/middlewares/validators/remote/signature.ts b/server/middlewares/validators/remote/signature.ts index 6e3ebe7db..eb5c196eb 100644 --- a/server/middlewares/validators/remote/signature.ts +++ b/server/middlewares/validators/remote/signature.ts | |||
@@ -1,7 +1,10 @@ | |||
1 | import 'express-validator' | ||
2 | import * as express from 'express' | ||
3 | |||
1 | import { logger } from '../../../helpers' | 4 | import { logger } from '../../../helpers' |
2 | import { checkErrors } from '../utils' | 5 | import { checkErrors } from '../utils' |
3 | 6 | ||
4 | function signatureValidator (req, res, next) { | 7 | function signatureValidator (req: express.Request, res: express.Response, next: express.NextFunction) { |
5 | req.checkBody('signature.host', 'Should have a signature host').isURL() | 8 | req.checkBody('signature.host', 'Should have a signature host').isURL() |
6 | req.checkBody('signature.signature', 'Should have a signature').notEmpty() | 9 | req.checkBody('signature.signature', 'Should have a signature').notEmpty() |
7 | 10 | ||
diff --git a/server/middlewares/validators/remote/videos.ts b/server/middlewares/validators/remote/videos.ts index 3380c29e2..2037c0085 100644 --- a/server/middlewares/validators/remote/videos.ts +++ b/server/middlewares/validators/remote/videos.ts | |||
@@ -1,7 +1,10 @@ | |||
1 | import 'express-validator' | ||
2 | import * as express from 'express' | ||
3 | |||
1 | import { logger } from '../../../helpers' | 4 | import { logger } from '../../../helpers' |
2 | import { checkErrors } from '../utils' | 5 | import { checkErrors } from '../utils' |
3 | 6 | ||
4 | function remoteVideosValidator (req, res, next) { | 7 | function remoteVideosValidator (req: express.Request, res: express.Response, next: express.NextFunction) { |
5 | req.checkBody('data').isEachRemoteRequestVideosValid() | 8 | req.checkBody('data').isEachRemoteRequestVideosValid() |
6 | 9 | ||
7 | logger.debug('Checking remoteVideos parameters', { parameters: req.body }) | 10 | logger.debug('Checking remoteVideos parameters', { parameters: req.body }) |
@@ -9,7 +12,7 @@ function remoteVideosValidator (req, res, next) { | |||
9 | checkErrors(req, res, next) | 12 | checkErrors(req, res, next) |
10 | } | 13 | } |
11 | 14 | ||
12 | function remoteQaduVideosValidator (req, res, next) { | 15 | function remoteQaduVideosValidator (req: express.Request, res: express.Response, next: express.NextFunction) { |
13 | req.checkBody('data').isEachRemoteRequestVideosQaduValid() | 16 | req.checkBody('data').isEachRemoteRequestVideosQaduValid() |
14 | 17 | ||
15 | logger.debug('Checking remoteQaduVideos parameters', { parameters: req.body }) | 18 | logger.debug('Checking remoteQaduVideos parameters', { parameters: req.body }) |
@@ -17,7 +20,7 @@ function remoteQaduVideosValidator (req, res, next) { | |||
17 | checkErrors(req, res, next) | 20 | checkErrors(req, res, next) |
18 | } | 21 | } |
19 | 22 | ||
20 | function remoteEventsVideosValidator (req, res, next) { | 23 | function remoteEventsVideosValidator (req: express.Request, res: express.Response, next: express.NextFunction) { |
21 | req.checkBody('data').isEachRemoteRequestVideosEventsValid() | 24 | req.checkBody('data').isEachRemoteRequestVideosEventsValid() |
22 | 25 | ||
23 | logger.debug('Checking remoteEventsVideos parameters', { parameters: req.body }) | 26 | logger.debug('Checking remoteEventsVideos parameters', { parameters: req.body }) |