PeerTube/server/middlewares/reqValidators/remote.js

42 lines
1.2 KiB
JavaScript
Raw Normal View History

'use strict'
2015-11-07 13:16:26 +00:00
2016-03-16 21:29:27 +00:00
const checkErrors = require('./utils').checkErrors
const logger = require('../../helpers/logger')
2015-11-07 13:16:26 +00:00
2016-03-16 21:29:27 +00:00
const reqValidatorsRemote = {
dataToDecrypt: dataToDecrypt,
remoteVideos: remoteVideos,
signature: signature
}
2015-11-07 13:16:26 +00:00
function dataToDecrypt (req, res, next) {
req.checkBody('key', 'Should have a key').notEmpty()
req.checkBody('data', 'Should have data').notEmpty()
2015-11-07 13:16:26 +00:00
logger.debug('Checking dataToDecrypt parameters', { parameters: { keyLength: req.body.key.length, bodyLength: req.body.data.length } })
2015-11-07 13:16:26 +00:00
checkErrors(req, res, next)
}
2015-11-07 13:16:26 +00:00
function remoteVideos (req, res, next) {
req.checkBody('data').isArray()
req.checkBody('data').isEachRemoteVideosValid()
2015-11-07 13:16:26 +00:00
logger.debug('Checking remoteVideosAdd parameters', { parameters: req.body })
2015-11-07 13:16:26 +00:00
checkErrors(req, res, next)
}
2015-11-07 13:16:26 +00:00
function signature (req, res, next) {
req.checkBody('signature.url', 'Should have a signature url').isURL()
req.checkBody('signature.signature', 'Should have a signature').notEmpty()
2016-01-31 10:23:52 +00:00
logger.debug('Checking signature parameters', { parameters: { signatureUrl: req.body.signature.url } })
2016-01-31 10:23:52 +00:00
checkErrors(req, res, next)
}
2016-01-31 10:23:52 +00:00
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
module.exports = reqValidatorsRemote