aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/middlewares/validators/account.ts
blob: 47ed6a7bb1591ac56f7e5d9979baf3defee9fa13 (plain) (tree)
1
2
3
4
5
6
7
8
                                  
                                               
                                      
                                                                                                          
                                     

                               
                                                                                           




                                                                                         
                                                             








                                                                              
import * as express from 'express'
import { param } from 'express-validator/check'
import { logger } from '../../helpers'
import { checkLocalAccountNameExists, isAccountNameValid } from '../../helpers/custom-validators/accounts'
import { checkErrors } from './utils'

const localAccountValidator = [
  param('name').custom(isAccountNameValid).withMessage('Should have a valid account name'),

  (req: express.Request, res: express.Response, next: express.NextFunction) => {
    logger.debug('Checking localAccountValidator parameters', { parameters: req.params })

    checkErrors(req, res, () => {
      checkLocalAccountNameExists(req.params.name, res, next)
    })
  }
]

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

export {
  localAccountValidator
}