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