PeerTube/server/middlewares/validators/remote.js

31 lines
820 B
JavaScript
Raw Normal View History

'use strict'
2015-11-07 07:16:26 -06:00
2016-03-16 16:29:27 -05:00
const checkErrors = require('./utils').checkErrors
const logger = require('../../helpers/logger')
2015-11-07 07:16:26 -06:00
2016-07-01 09:16:40 -05:00
const validatorsRemote = {
remoteVideos,
signature
}
2015-11-07 07:16:26 -06:00
function remoteVideos (req, res, next) {
req.checkBody('data').isEachRemoteVideosValid()
2015-11-07 07:16:26 -06:00
logger.debug('Checking remoteVideos parameters', { parameters: req.body })
2015-11-07 07:16:26 -06:00
checkErrors(req, res, next)
}
2015-11-07 07:16:26 -06:00
function signature (req, res, next) {
req.checkBody('signature.host', 'Should have a signature host').isURL()
req.checkBody('signature.signature', 'Should have a signature').notEmpty()
2016-01-31 04:23:52 -06:00
logger.debug('Checking signature parameters', { parameters: { signatureHost: req.body.signature.host } })
2016-01-31 04:23:52 -06:00
checkErrors(req, res, next)
}
2016-01-31 04:23:52 -06:00
// ---------------------------------------------------------------------------
2016-01-31 04:23:52 -06:00
2016-07-01 09:16:40 -05:00
module.exports = validatorsRemote