2018-01-25 09:05:18 -05:00
|
|
|
import * as express from 'express'
|
2019-07-25 10:23:44 -04:00
|
|
|
import { param } from 'express-validator'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { isValidJobState } from '../../helpers/custom-validators/jobs'
|
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { areValidationErrors } from './utils'
|
|
|
|
|
|
|
|
const listJobsValidator = [
|
|
|
|
param('state').custom(isValidJobState).not().isEmpty().withMessage('Should have a valid job state'),
|
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking listJobsValidator parameters.', { parameters: req.params })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
listJobsValidator
|
|
|
|
}
|