1
0
Fork 0
peertube/server/middlewares/validators/videos/video-comments.ts

235 lines
7.9 KiB
TypeScript
Raw Normal View History

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