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

97 lines
3.2 KiB
TypeScript
Raw Normal View History

2017-10-10 10:02:18 +02:00
import * as express from 'express'
import { body, query } from 'express-validator'
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
import { isBooleanValid, toBooleanOrNull, toIntOrNull } from '../../../helpers/custom-validators/misc'
2019-07-23 10:40:39 +02:00
import { isVideoBlacklistReasonValid, isVideoBlacklistTypeValid } from '../../../helpers/custom-validators/video-blacklist'
2020-08-06 16:14:58 +02:00
import { logger } from '../../../helpers/logger'
import { areValidationErrors, doesVideoBlacklistExist, doesVideoExist, isValidVideoIdParam } from '../shared'
2017-10-10 10:02:18 +02:00
const videosBlacklistRemoveValidator = [
isValidVideoIdParam('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
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.videoId, res)) return
2019-08-15 11:53:26 +02:00
if (!await doesVideoBlacklistExist(res.locals.videoAll.id, res)) return
2017-11-27 17:30:46 +01:00
return next()
2017-10-10 10:02:18 +02:00
}
]
const videosBlacklistAddValidator = [
isValidVideoIdParam('videoId'),
body('unfederate')
.optional()
2019-07-25 16:23:44 +02:00
.customSanitizer(toBooleanOrNull)
.custom(isBooleanValid).withMessage('Should have a valid unfederate boolean'),
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
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.videoId, res)) return
2017-11-27 17:30:46 +01:00
2019-08-15 11:53:26 +02:00
const video = res.locals.videoAll
if (req.body.unfederate === true && video.remote === true) {
return res.fail({
status: HttpStatusCode.CONFLICT_409,
message: 'You cannot unfederate a remote video.'
})
}
2017-11-27 17:30:46 +01:00
return next()
2017-10-10 10:02:18 +02:00
}
]
2018-08-13 16:57:13 +02:00
const videosBlacklistUpdateValidator = [
isValidVideoIdParam('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
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
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.videoId, res)) return
2019-08-15 11:53:26 +02:00
if (!await doesVideoBlacklistExist(res.locals.videoAll.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
const videosBlacklistFiltersValidator = [
query('type')
2020-08-06 16:14:58 +02:00
.optional()
.customSanitizer(toIntOrNull)
.custom(isVideoBlacklistTypeValid).withMessage('Should have a valid video blacklist type attribute'),
query('search')
.optional()
.not()
.isEmpty().withMessage('Should have a valid search'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videos blacklist filters query', { parameters: req.query })
if (areValidationErrors(req, res)) return
return next()
}
]
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,
videosBlacklistFiltersValidator
2017-10-10 10:02:18 +02:00
}