aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/reqValidators/remote.js
blob: a23673d89aee0bf8a169c4de3cb153465d0fb240 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
'use strict'

const checkErrors = require('./utils').checkErrors
const logger = require('../../helpers/logger')

const reqValidatorsRemote = {
  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 remoteVideosAdd 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 = reqValidatorsRemote