2018-08-10 16:54:01 +02:00
|
|
|
import * as express from 'express'
|
2020-05-06 17:39:07 +02:00
|
|
|
import { body, param, query } from 'express-validator'
|
|
|
|
import { exists, isIdOrUUIDValid, isIdValid } from '../../../helpers/custom-validators/misc'
|
2018-08-10 16:54:01 +02:00
|
|
|
import {
|
2020-05-06 17:39:07 +02:00
|
|
|
isAbuseVideoIsValid,
|
2018-08-10 16:54:01 +02:00
|
|
|
isVideoAbuseModerationCommentValid,
|
|
|
|
isVideoAbuseReasonValid,
|
|
|
|
isVideoAbuseStateValid
|
2018-10-05 11:15:06 +02:00
|
|
|
} from '../../../helpers/custom-validators/video-abuses'
|
2020-05-06 17:39:07 +02:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2019-07-23 10:40:39 +02:00
|
|
|
import { doesVideoAbuseExist, doesVideoExist } from '../../../helpers/middlewares'
|
2020-05-06 17:39:07 +02:00
|
|
|
import { areValidationErrors } from '../utils'
|
2018-08-10 16:54:01 +02:00
|
|
|
|
|
|
|
const videoAbuseReportValidator = [
|
|
|
|
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
|
|
|
|
body('reason').custom(isVideoAbuseReasonValid).withMessage('Should have a valid reason'),
|
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoAbuseReport parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
2019-03-19 09:26:50 +01:00
|
|
|
if (!await doesVideoExist(req.params.videoId, res)) return
|
2018-08-10 16:54:01 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const videoAbuseGetValidator = [
|
|
|
|
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
|
|
|
|
param('id').custom(isIdValid).not().isEmpty().withMessage('Should have a valid id'),
|
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoAbuseGetValidator parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
2020-04-16 14:22:27 +02:00
|
|
|
if (!await doesVideoAbuseExist(req.params.id, req.params.videoId, res)) return
|
2018-08-10 16:54:01 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const videoAbuseUpdateValidator = [
|
|
|
|
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
|
|
|
|
param('id').custom(isIdValid).not().isEmpty().withMessage('Should have a valid id'),
|
|
|
|
body('state')
|
|
|
|
.optional()
|
|
|
|
.custom(isVideoAbuseStateValid).withMessage('Should have a valid video abuse state'),
|
|
|
|
body('moderationComment')
|
|
|
|
.optional()
|
|
|
|
.custom(isVideoAbuseModerationCommentValid).withMessage('Should have a valid video moderation comment'),
|
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoAbuseUpdateValidator parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
2020-04-16 14:22:27 +02:00
|
|
|
if (!await doesVideoAbuseExist(req.params.id, req.params.videoId, res)) return
|
2018-08-10 16:54:01 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2020-05-06 17:39:07 +02:00
|
|
|
const videoAbuseListValidator = [
|
|
|
|
query('id')
|
|
|
|
.optional()
|
|
|
|
.custom(isIdValid).withMessage('Should have a valid id'),
|
|
|
|
query('search')
|
|
|
|
.optional()
|
|
|
|
.custom(exists).withMessage('Should have a valid search'),
|
|
|
|
query('state')
|
|
|
|
.optional()
|
|
|
|
.custom(isVideoAbuseStateValid).withMessage('Should have a valid video abuse state'),
|
|
|
|
query('videoIs')
|
|
|
|
.optional()
|
|
|
|
.custom(isAbuseVideoIsValid).withMessage('Should have a valid "video is" attribute'),
|
|
|
|
query('searchReporter')
|
|
|
|
.optional()
|
|
|
|
.custom(exists).withMessage('Should have a valid reporter search'),
|
|
|
|
query('searchReportee')
|
|
|
|
.optional()
|
|
|
|
.custom(exists).withMessage('Should have a valid reportee search'),
|
|
|
|
query('searchVideo')
|
|
|
|
.optional()
|
|
|
|
.custom(exists).withMessage('Should have a valid video search'),
|
|
|
|
query('searchVideoChannel')
|
|
|
|
.optional()
|
|
|
|
.custom(exists).withMessage('Should have a valid video channel search'),
|
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoAbuseListValidator parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-08-10 16:54:01 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-05-06 17:39:07 +02:00
|
|
|
videoAbuseListValidator,
|
2018-08-10 16:54:01 +02:00
|
|
|
videoAbuseReportValidator,
|
|
|
|
videoAbuseGetValidator,
|
|
|
|
videoAbuseUpdateValidator
|
|
|
|
}
|