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


                                                                             

                               
                                                                                           
 
                                                                                      

                                                                                         



                                                                    







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

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

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

    if (areValidationErrors(req, res)) return
    if (!await isLocalAccountNameExist(req.params.name, res)) return

    return next()
  }
]

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

export {
  localAccountValidator
}