2020-07-07 04:57:04 -04:00
|
|
|
import * as express from 'express'
|
2020-01-07 08:56:07 -05:00
|
|
|
import validator from 'validator'
|
2020-07-07 04:57:04 -04:00
|
|
|
import { VideoCommentModel } from '@server/models/video/video-comment'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
|
2020-07-07 04:57:04 -04:00
|
|
|
import { MVideoId } from '@server/types/models'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
2017-12-22 04:50:07 -05:00
|
|
|
|
|
|
|
const VIDEO_COMMENTS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_COMMENTS
|
|
|
|
|
|
|
|
function isValidVideoCommentText (value: string) {
|
|
|
|
return value === null || validator.isLength(value, VIDEO_COMMENTS_CONSTRAINTS_FIELDS.TEXT)
|
|
|
|
}
|
|
|
|
|
2020-07-07 04:57:04 -04:00
|
|
|
async function doesVideoCommentThreadExist (idArg: number | string, video: MVideoId, res: express.Response) {
|
|
|
|
const id = parseInt(idArg + '', 10)
|
|
|
|
const videoComment = await VideoCommentModel.loadById(id)
|
|
|
|
|
|
|
|
if (!videoComment) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.NOT_FOUND_404)
|
2020-07-07 04:57:04 -04:00
|
|
|
.json({ error: 'Video comment thread not found' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoComment.videoId !== video.id) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.BAD_REQUEST_400)
|
2020-07-07 04:57:04 -04:00
|
|
|
.json({ error: 'Video comment is not associated to this video.' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoComment.inReplyToCommentId !== null) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.BAD_REQUEST_400)
|
2020-07-07 04:57:04 -04:00
|
|
|
.json({ error: 'Video comment is not a thread.' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.videoCommentThread = videoComment
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
async function doesVideoCommentExist (idArg: number | string, video: MVideoId, res: express.Response) {
|
|
|
|
const id = parseInt(idArg + '', 10)
|
|
|
|
const videoComment = await VideoCommentModel.loadByIdAndPopulateVideoAndAccountAndReply(id)
|
|
|
|
|
|
|
|
if (!videoComment) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.NOT_FOUND_404)
|
2020-07-07 04:57:04 -04:00
|
|
|
.json({ error: 'Video comment thread not found' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoComment.videoId !== video.id) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.BAD_REQUEST_400)
|
2020-07-07 04:57:04 -04:00
|
|
|
.json({ error: 'Video comment is not associated to this video.' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.videoCommentFull = videoComment
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
async function doesCommentIdExist (idArg: number | string, res: express.Response) {
|
|
|
|
const id = parseInt(idArg + '', 10)
|
2020-07-08 09:51:46 -04:00
|
|
|
const videoComment = await VideoCommentModel.loadByIdAndPopulateVideoAndAccountAndReply(id)
|
2020-07-07 04:57:04 -04:00
|
|
|
|
|
|
|
if (!videoComment) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.NOT_FOUND_404)
|
2020-07-07 04:57:04 -04:00
|
|
|
.json({ error: 'Video comment thread not found' })
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-07-08 09:51:46 -04:00
|
|
|
res.locals.videoCommentFull = videoComment
|
2020-07-07 04:57:04 -04:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-12-22 04:50:07 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-07-07 04:57:04 -04:00
|
|
|
isValidVideoCommentText,
|
|
|
|
doesVideoCommentThreadExist,
|
|
|
|
doesVideoCommentExist,
|
|
|
|
doesCommentIdExist
|
2017-12-22 04:50:07 -05:00
|
|
|
}
|