38d78e5b82
We don't need it anymore since HTTPS is mandatory now
30 lines
820 B
JavaScript
30 lines
820 B
JavaScript
'use strict'
|
|
|
|
const checkErrors = require('./utils').checkErrors
|
|
const logger = require('../../helpers/logger')
|
|
|
|
const validatorsRemote = {
|
|
remoteVideos,
|
|
signature
|
|
}
|
|
|
|
function remoteVideos (req, res, next) {
|
|
req.checkBody('data').isEachRemoteVideosValid()
|
|
|
|
logger.debug('Checking remoteVideos parameters', { parameters: req.body })
|
|
|
|
checkErrors(req, res, next)
|
|
}
|
|
|
|
function signature (req, res, next) {
|
|
req.checkBody('signature.host', 'Should have a signature host').isURL()
|
|
req.checkBody('signature.signature', 'Should have a signature').notEmpty()
|
|
|
|
logger.debug('Checking signature parameters', { parameters: { signatureHost: req.body.signature.host } })
|
|
|
|
checkErrors(req, res, next)
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
module.exports = validatorsRemote
|