mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
| import * as express from 'express'
 | |
| import { body } from 'express-validator/check'
 | |
| import { isUserVideoQuotaValid } from '../../helpers/custom-validators/users'
 | |
| import { logger } from '../../helpers/logger'
 | |
| import { areValidationErrors } from './utils'
 | |
| 
 | |
| const customConfigUpdateValidator = [
 | |
|   body('cache.previews.size').isInt().withMessage('Should have a valid previews size'),
 | |
|   body('signup.enabled').isBoolean().withMessage('Should have a valid signup enabled boolean'),
 | |
|   body('signup.limit').isInt().withMessage('Should have a valid signup limit'),
 | |
|   body('admin.email').isEmail().withMessage('Should have a valid administrator email'),
 | |
|   body('user.videoQuota').custom(isUserVideoQuotaValid).withMessage('Should have a valid video quota'),
 | |
|   body('transcoding.enabled').isBoolean().withMessage('Should have a valid transcoding enabled boolean'),
 | |
|   body('transcoding.threads').isInt().withMessage('Should have a valid transcoding threads number'),
 | |
|   body('transcoding.resolutions.240p').isBoolean().withMessage('Should have a valid transcoding 240p resolution enabled boolean'),
 | |
|   body('transcoding.resolutions.360p').isBoolean().withMessage('Should have a valid transcoding 360p resolution enabled boolean'),
 | |
|   body('transcoding.resolutions.480p').isBoolean().withMessage('Should have a valid transcoding 480p resolution enabled boolean'),
 | |
|   body('transcoding.resolutions.720p').isBoolean().withMessage('Should have a valid transcoding 720p resolution enabled boolean'),
 | |
|   body('transcoding.resolutions.1080p').isBoolean().withMessage('Should have a valid transcoding 1080p resolution enabled boolean'),
 | |
| 
 | |
|   async (req: express.Request, res: express.Response, next: express.NextFunction) => {
 | |
|     logger.debug('Checking customConfigUpdateValidator parameters', { parameters: req.body })
 | |
| 
 | |
|     if (areValidationErrors(req, res)) return
 | |
| 
 | |
|     return next()
 | |
|   }
 | |
| ]
 | |
| 
 | |
| export {
 | |
|   customConfigUpdateValidator
 | |
| }
 |