mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			862 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			862 B
		
	
	
	
		
			TypeScript
		
	
	
| import * as express from 'express'
 | |
| import { param, query } from 'express-validator'
 | |
| import { isValidJobState, isValidJobType } 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'),
 | |
|   query('jobType')
 | |
|     .optional()
 | |
|     .custom(isValidJobType).withMessage('Should have a valid job state'),
 | |
| 
 | |
|   (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
 | |
| }
 |