mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
reqValidators --> validators
This commit is contained in:
parent
69b0a27cbb
commit
fc51fde048
13 changed files with 54 additions and 53 deletions
41
server/middlewares/validators/remote.js
Normal file
41
server/middlewares/validators/remote.js
Normal file
|
@ -0,0 +1,41 @@
|
|||
'use strict'
|
||||
|
||||
const checkErrors = require('./utils').checkErrors
|
||||
const logger = require('../../helpers/logger')
|
||||
|
||||
const validatorsRemote = {
|
||||
dataToDecrypt: dataToDecrypt,
|
||||
remoteVideos: remoteVideos,
|
||||
signature: signature
|
||||
}
|
||||
|
||||
function dataToDecrypt (req, res, next) {
|
||||
req.checkBody('key', 'Should have a key').notEmpty()
|
||||
req.checkBody('data', 'Should have data').notEmpty()
|
||||
|
||||
logger.debug('Checking dataToDecrypt parameters', { parameters: { keyLength: req.body.key.length, bodyLength: req.body.data.length } })
|
||||
|
||||
checkErrors(req, res, next)
|
||||
}
|
||||
|
||||
function remoteVideos (req, res, next) {
|
||||
req.checkBody('data').isArray()
|
||||
req.checkBody('data').isEachRemoteVideosValid()
|
||||
|
||||
logger.debug('Checking remoteVideos parameters', { parameters: req.body })
|
||||
|
||||
checkErrors(req, res, next)
|
||||
}
|
||||
|
||||
function signature (req, res, next) {
|
||||
req.checkBody('signature.url', 'Should have a signature url').isURL()
|
||||
req.checkBody('signature.signature', 'Should have a signature').notEmpty()
|
||||
|
||||
logger.debug('Checking signature parameters', { parameters: { signatureUrl: req.body.signature.url } })
|
||||
|
||||
checkErrors(req, res, next)
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
module.exports = validatorsRemote
|
Loading…
Add table
Add a link
Reference in a new issue