2015-11-07 07:16:26 -06:00
|
|
|
;(function () {
|
|
|
|
'use strict'
|
|
|
|
|
|
|
|
var checkErrors = require('./utils').checkErrors
|
|
|
|
var logger = require('../../src/logger')
|
|
|
|
|
|
|
|
var remote = {}
|
|
|
|
|
|
|
|
remote.secureRequest = function (req, res, next) {
|
|
|
|
req.checkBody('signature.url', 'Should have a signature url').isURL()
|
|
|
|
req.checkBody('signature.signature', 'Should have a signature').notEmpty()
|
|
|
|
req.checkBody('key', 'Should have a key').notEmpty()
|
|
|
|
req.checkBody('data', 'Should have data').notEmpty()
|
|
|
|
|
2015-12-06 14:36:57 -06:00
|
|
|
logger.debug('Checking secureRequest parameters', { parameters: { data: req.body.data, keyLength: req.body.key.length } })
|
2015-11-07 07:16:26 -06:00
|
|
|
|
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
|
|
|
|
|
|
|
remote.remoteVideosAdd = function (req, res, next) {
|
2015-12-04 09:13:32 -06:00
|
|
|
req.checkBody('data').isArray()
|
|
|
|
req.checkBody('data').eachIsRemoteVideosAddValid()
|
2015-11-07 07:16:26 -06:00
|
|
|
|
|
|
|
logger.debug('Checking remoteVideosAdd parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
|
|
|
|
|
|
|
remote.remoteVideosRemove = function (req, res, next) {
|
2015-12-04 09:13:32 -06:00
|
|
|
req.checkBody('data').isArray()
|
|
|
|
req.checkBody('data').eachIsRemoteVideosRemoveValid()
|
2015-11-07 07:16:26 -06:00
|
|
|
|
|
|
|
logger.debug('Checking remoteVideosRemove parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = remote
|
|
|
|
})()
|