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

231 lines
8.4 KiB
TypeScript
Raw Normal View History

2017-12-22 10:50:07 +01:00
import * as express from 'express'
2020-11-13 16:38:23 +01:00
import { body, param, query } from 'express-validator'
2020-06-18 10:45:25 +02:00
import { MUserAccountUrl } from '@server/types/models'
2018-10-05 11:15:06 +02:00
import { UserRight } from '../../../../shared'
2020-11-16 11:55:17 +01:00
import { exists, isBooleanValid, isIdOrUUIDValid, isIdValid, toBooleanOrNull } from '../../../helpers/custom-validators/misc'
2020-07-07 10:57:04 +02:00
import {
doesVideoCommentExist,
doesVideoCommentThreadExist,
isValidVideoCommentText
} from '../../../helpers/custom-validators/video-comments'
2018-10-05 11:15:06 +02:00
import { logger } from '../../../helpers/logger'
2020-05-06 08:48:06 +02:00
import { doesVideoExist } from '../../../helpers/middlewares'
import { AcceptResult, isLocalVideoCommentReplyAccepted, isLocalVideoThreadAccepted } from '../../../lib/moderation'
import { Hooks } from '../../../lib/plugins/hooks'
2020-07-07 10:57:04 +02:00
import { MCommentOwnerVideoReply, MVideo, MVideoFullLight } from '../../../types/models/video'
2018-10-05 11:15:06 +02:00
import { areValidationErrors } from '../utils'
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
2017-12-22 10:50:07 +01:00
2020-11-13 16:38:23 +01:00
const listVideoCommentsValidator = [
query('isLocal')
.optional()
2020-11-16 11:55:17 +01:00
.customSanitizer(toBooleanOrNull)
2020-11-13 16:38:23 +01:00
.custom(isBooleanValid)
.withMessage('Should have a valid is local boolean'),
query('search')
.optional()
.custom(exists).withMessage('Should have a valid search'),
query('searchAccount')
.optional()
.custom(exists).withMessage('Should have a valid account search'),
query('searchVideo')
.optional()
.custom(exists).withMessage('Should have a valid video search'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking listVideoCommentsValidator parameters.', { parameters: req.query })
if (areValidationErrors(req, res)) return
return next()
}
]
2017-12-22 10:50:07 +01:00
const listVideoCommentThreadsValidator = [
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-12-22 12:10:40 +01:00
logger.debug('Checking listVideoCommentThreads parameters.', { parameters: req.params })
2017-12-22 10:50:07 +01:00
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.videoId, res, 'only-video')) return
2017-12-22 10:50:07 +01:00
return next()
}
]
const listVideoThreadCommentsValidator = [
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
param('threadId').custom(isIdValid).not().isEmpty().withMessage('Should have a valid threadId'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-12-22 12:10:40 +01:00
logger.debug('Checking listVideoThreadComments parameters.', { parameters: req.params })
2017-12-22 10:50:07 +01:00
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.videoId, res, 'only-video')) return
2019-08-15 11:53:26 +02:00
if (!await doesVideoCommentThreadExist(req.params.threadId, res.locals.onlyVideo, res)) return
2017-12-22 10:50:07 +01:00
return next()
}
]
const addVideoCommentThreadValidator = [
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
body('text').custom(isValidVideoCommentText).not().isEmpty().withMessage('Should have a valid comment text'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2018-02-20 10:41:11 +01:00
logger.debug('Checking addVideoCommentThread parameters.', { parameters: req.params, body: req.body })
2017-12-22 10:50:07 +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 (!isVideoCommentsEnabled(res.locals.videoAll, res)) return
2020-01-31 16:56:52 +01:00
if (!await isVideoCommentAccepted(req, res, res.locals.videoAll, false)) return
2017-12-22 10:50:07 +01:00
return next()
}
]
const addVideoCommentReplyValidator = [
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
param('commentId').custom(isIdValid).not().isEmpty().withMessage('Should have a valid commentId'),
body('text').custom(isValidVideoCommentText).not().isEmpty().withMessage('Should have a valid comment text'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2018-02-20 10:41:11 +01:00
logger.debug('Checking addVideoCommentReply parameters.', { parameters: req.params, body: req.body })
2017-12-22 10:50:07 +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 (!isVideoCommentsEnabled(res.locals.videoAll, res)) return
if (!await doesVideoCommentExist(req.params.commentId, res.locals.videoAll, res)) return
if (!await isVideoCommentAccepted(req, res, res.locals.videoAll, true)) return
2017-12-22 10:50:07 +01:00
return next()
}
]
2017-12-28 11:16:08 +01:00
const videoCommentGetValidator = [
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
param('commentId').custom(isIdValid).not().isEmpty().withMessage('Should have a valid commentId'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videoCommentGetValidator parameters.', { parameters: req.params })
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.videoId, res, 'id')) return
2019-08-15 11:53:26 +02:00
if (!await doesVideoCommentExist(req.params.commentId, res.locals.videoId, res)) return
2017-12-28 11:16:08 +01:00
return next()
}
]
2018-01-04 11:19:16 +01:00
const removeVideoCommentValidator = [
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
param('commentId').custom(isIdValid).not().isEmpty().withMessage('Should have a valid commentId'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking removeVideoCommentValidator parameters.', { parameters: req.params })
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 doesVideoCommentExist(req.params.commentId, res.locals.videoAll, res)) return
2018-01-04 11:19:16 +01:00
// Check if the user who did the request is able to delete the video
2019-08-15 11:53:26 +02:00
if (!checkUserCanDeleteVideoComment(res.locals.oauth.token.User, res.locals.videoCommentFull, res)) return
2018-01-04 11:19:16 +01:00
return next()
}
]
2017-12-22 10:50:07 +01:00
// ---------------------------------------------------------------------------
export {
listVideoCommentThreadsValidator,
listVideoThreadCommentsValidator,
addVideoCommentThreadValidator,
2020-11-13 16:38:23 +01:00
listVideoCommentsValidator,
2017-12-28 11:16:08 +01:00
addVideoCommentReplyValidator,
2018-01-04 11:19:16 +01:00
videoCommentGetValidator,
removeVideoCommentValidator
2017-12-22 10:50:07 +01:00
}
// ---------------------------------------------------------------------------
2019-08-15 11:53:26 +02:00
function isVideoCommentsEnabled (video: MVideo, res: express.Response) {
2018-01-03 10:12:36 +01:00
if (video.commentsEnabled !== true) {
res.fail({
status: HttpStatusCode.CONFLICT_409,
message: 'Video comments are disabled for this video.'
})
2018-01-03 10:12:36 +01:00
return false
}
return true
}
2018-01-04 11:19:16 +01:00
function checkUserCanDeleteVideoComment (user: MUserAccountUrl, videoComment: MCommentOwnerVideoReply, res: express.Response) {
if (videoComment.isDeleted()) {
res.fail({
status: HttpStatusCode.CONFLICT_409,
message: 'This comment is already deleted'
})
return false
}
const userAccount = user.Account
if (
user.hasRight(UserRight.REMOVE_ANY_VIDEO_COMMENT) === false && // Not a moderator
videoComment.accountId !== userAccount.id && // Not the comment owner
videoComment.Video.VideoChannel.accountId !== userAccount.id // Not the video owner
) {
res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message: 'Cannot remove video comment of another user'
})
2018-01-04 11:19:16 +01:00
return false
}
return true
}
2019-07-18 14:28:37 +02:00
2019-08-15 11:53:26 +02:00
async function isVideoCommentAccepted (req: express.Request, res: express.Response, video: MVideoFullLight, isReply: boolean) {
2019-07-18 14:28:37 +02:00
const acceptParameters = {
2019-08-15 11:53:26 +02:00
video,
2019-07-18 14:28:37 +02:00
commentBody: req.body,
user: res.locals.oauth.token.User
}
let acceptedResult: AcceptResult
if (isReply) {
2019-08-15 11:53:26 +02:00
const acceptReplyParameters = Object.assign(acceptParameters, { parentComment: res.locals.videoCommentFull })
2019-07-18 14:28:37 +02:00
2019-07-22 11:14:58 +02:00
acceptedResult = await Hooks.wrapFun(
isLocalVideoCommentReplyAccepted,
acceptReplyParameters,
2019-07-18 14:28:37 +02:00
'filter:api.video-comment-reply.create.accept.result'
)
} else {
2019-07-22 11:14:58 +02:00
acceptedResult = await Hooks.wrapFun(
isLocalVideoThreadAccepted,
acceptParameters,
2019-07-18 14:28:37 +02:00
'filter:api.video-thread.create.accept.result'
)
}
if (!acceptedResult || acceptedResult.accepted !== true) {
logger.info('Refused local comment.', { acceptedResult, acceptParameters })
res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message: acceptedResult?.errorMessage || 'Refused local comment'
})
2019-07-18 14:28:37 +02:00
return false
}
return true
}