aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/middlewares/validators/remote/signature.js
blob: 002232c05cb68473a7037a1d8068cbf7132e4de7 (plain) (tree)
1
2
3
4
5
6
7
8
9
            
 

                                                   
 
                                   
           
 
 
                                     
                                                                         
                                                                            
 
                                                                                                  
 

                             
 
                                                                              
 
                                          
'use strict'

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

const validatorsRemoteSignature = {
  signature
}

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: { signature: req.body.signature } })

  checkErrors(req, res, next)
}

// ---------------------------------------------------------------------------

module.exports = validatorsRemoteSignature