2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const checkErrors = require('./utils').checkErrors
|
|
|
|
const logger = require('../../helpers/logger')
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-07-01 10:16:40 -04:00
|
|
|
const validatorsRemote = {
|
2016-10-02 06:19:02 -04:00
|
|
|
dataToDecrypt,
|
|
|
|
remoteVideos,
|
|
|
|
signature
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
function dataToDecrypt (req, res, next) {
|
|
|
|
req.checkBody('key', 'Should have a key').notEmpty()
|
|
|
|
req.checkBody('data', 'Should have data').notEmpty()
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
logger.debug('Checking dataToDecrypt parameters', { parameters: { keyLength: req.body.key.length, bodyLength: req.body.data.length } })
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
function remoteVideos (req, res, next) {
|
|
|
|
req.checkBody('data').isEachRemoteVideosValid()
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-06-24 11:42:51 -04:00
|
|
|
logger.debug('Checking remoteVideos parameters', { parameters: req.body })
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
function signature (req, res, next) {
|
2016-02-07 05:23:23 -05:00
|
|
|
req.checkBody('signature.url', 'Should have a signature url').isURL()
|
|
|
|
req.checkBody('signature.signature', 'Should have a signature').notEmpty()
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
logger.debug('Checking signature parameters', { parameters: { signatureUrl: req.body.signature.url } })
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-07-01 10:16:40 -04:00
|
|
|
module.exports = validatorsRemote
|