2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2019-12-04 08:49:59 -05:00
|
|
|
import { param, query } from 'express-validator'
|
|
|
|
import { isValidJobState, isValidJobType } from '../../helpers/custom-validators/jobs'
|
2021-03-09 03:22:05 -05:00
|
|
|
import { logger, loggerTagsFactory } from '../../helpers/logger'
|
2021-06-03 11:33:44 -04:00
|
|
|
import { areValidationErrors } from './shared'
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2021-03-09 03:22:05 -05:00
|
|
|
const lTags = loggerTagsFactory('validators', 'jobs')
|
|
|
|
|
2018-01-25 09:05:18 -05:00
|
|
|
const listJobsValidator = [
|
2020-12-14 06:00:35 -05:00
|
|
|
param('state')
|
|
|
|
.optional()
|
|
|
|
.custom(isValidJobState).not().isEmpty().withMessage('Should have a valid job state'),
|
|
|
|
|
2019-12-04 08:49:59 -05:00
|
|
|
query('jobType')
|
|
|
|
.optional()
|
|
|
|
.custom(isValidJobType).withMessage('Should have a valid job state'),
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2019-12-04 08:49:59 -05:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2021-03-09 03:22:05 -05:00
|
|
|
logger.debug('Checking listJobsValidator parameters.', { parameters: req.params, ...lTags() })
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-12-14 06:00:35 -05:00
|
|
|
listJobsValidator
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|