PeerTube/server/middlewares/validators/jobs.ts

30 lines
756 B
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
2019-12-04 14:49:59 +01:00
import { param, query } from 'express-validator'
import { isValidJobState, isValidJobType } from '../../helpers/custom-validators/jobs'
2022-08-17 14:58:40 +02:00
import { loggerTagsFactory } from '../../helpers/logger'
import { areValidationErrors } from './shared'
2021-03-09 09:22:05 +01:00
const lTags = loggerTagsFactory('validators', 'jobs')
const listJobsValidator = [
2020-12-14 12:00:35 +01:00
param('state')
.optional()
.custom(isValidJobState),
2020-12-14 12:00:35 +01:00
2019-12-04 14:49:59 +01:00
query('jobType')
.optional()
.custom(isValidJobType),
2019-12-04 14:49:59 +01:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
2022-08-17 14:58:40 +02:00
if (areValidationErrors(req, res, lTags())) return
return next()
}
]
// ---------------------------------------------------------------------------
export {
2020-12-14 12:00:35 +01:00
listJobsValidator
}