PeerTube/server/middlewares/validators/videos/video-blacklist.ts

63 lines
2.3 KiB
TypeScript
Raw Normal View History

2017-10-10 10:02:18 +02:00
import * as express from 'express'
2018-08-13 16:57:13 +02:00
import { body, param } from 'express-validator/check'
2018-10-05 11:15:06 +02:00
import { isIdOrUUIDValid } from '../../../helpers/custom-validators/misc'
import { isVideoExist } from '../../../helpers/custom-validators/videos'
import { logger } from '../../../helpers/logger'
import { areValidationErrors } from '../utils'
import { isVideoBlacklistExist, isVideoBlacklistReasonValid } from '../../../helpers/custom-validators/video-blacklist'
2017-10-10 10:02:18 +02:00
const videosBlacklistRemoveValidator = [
2017-10-24 19:41:09 +02:00
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
2017-10-10 10:02:18 +02:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-10-10 10:02:18 +02:00
logger.debug('Checking blacklistRemove parameters.', { parameters: req.params })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.videoId, res)) return
2018-08-13 16:57:13 +02:00
if (!await isVideoBlacklistExist(res.locals.video.id, res)) return
2017-11-27 17:30:46 +01:00
return next()
2017-10-10 10:02:18 +02:00
}
]
const videosBlacklistAddValidator = [
2017-10-24 19:41:09 +02:00
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
2018-08-13 16:57:13 +02:00
body('reason')
.optional()
.custom(isVideoBlacklistReasonValid).withMessage('Should have a valid reason'),
2017-10-10 10:02:18 +02:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2018-08-13 16:57:13 +02:00
logger.debug('Checking videosBlacklistAdd parameters', { parameters: req.params })
2017-10-10 10:02:18 +02:00
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.videoId, res)) return
return next()
2017-10-10 10:02:18 +02:00
}
]
2018-08-13 16:57:13 +02:00
const videosBlacklistUpdateValidator = [
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
body('reason')
.optional()
.custom(isVideoBlacklistReasonValid).withMessage('Should have a valid reason'),
2017-10-10 10:02:18 +02:00
2018-08-13 16:57:13 +02:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videosBlacklistUpdate parameters', { parameters: req.params })
2017-10-10 10:02:18 +02:00
2018-08-13 16:57:13 +02:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.videoId, res)) return
if (!await isVideoBlacklistExist(res.locals.video.id, res)) return
2017-11-27 17:30:46 +01:00
2018-08-13 16:57:13 +02:00
return next()
2017-10-10 10:02:18 +02:00
}
2018-08-13 16:57:13 +02:00
]
2017-10-10 10:02:18 +02:00
2018-08-13 16:57:13 +02:00
// ---------------------------------------------------------------------------
2017-10-10 10:02:18 +02:00
2018-08-13 16:57:13 +02:00
export {
videosBlacklistAddValidator,
videosBlacklistRemoveValidator,
videosBlacklistUpdateValidator
2017-10-10 10:02:18 +02:00
}