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

                                                                                      
                                                                
                                              
 

                                                     
                           
                

                             
 

                  
                            
 
                                                                                
                                                                                                  









                                                                              
                   
 
import express from 'express'
import { param, query } from 'express-validator'
import { isValidJobState, isValidJobType } from '../../helpers/custom-validators/jobs'
import { logger, loggerTagsFactory } from '../../helpers/logger'
import { areValidationErrors } from './shared'

const lTags = loggerTagsFactory('validators', 'jobs')

const listJobsValidator = [
  param('state')
    .optional()
    .custom(isValidJobState),

  query('jobType')
    .optional()
    .custom(isValidJobType),

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

    if (areValidationErrors(req, res)) return

    return next()
  }
]

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

export {
  listJobsValidator
}