Server: optimization for videoGet and videoRemove
[oweals/peertube.git] / server / middlewares / validators / remote.js
1 'use strict'
2
3 const checkErrors = require('./utils').checkErrors
4 const logger = require('../../helpers/logger')
5
6 const validatorsRemote = {
7   remoteVideos,
8   signature
9 }
10
11 function remoteVideos (req, res, next) {
12   req.checkBody('data').isEachRemoteVideosValid()
13
14   logger.debug('Checking remoteVideos parameters', { parameters: req.body })
15
16   checkErrors(req, res, next)
17 }
18
19 function signature (req, res, next) {
20   req.checkBody('signature.host', 'Should have a signature host').isURL()
21   req.checkBody('signature.signature', 'Should have a signature').notEmpty()
22
23   logger.debug('Checking signature parameters', { parameters: { signatureHost: req.body.signature.host } })
24
25   checkErrors(req, res, next)
26 }
27
28 // ---------------------------------------------------------------------------
29
30 module.exports = validatorsRemote