1
0
Fork 0
peertube/server/lib/video-comment.ts

106 lines
3.4 KiB
TypeScript
Raw Normal View History

2020-05-14 14:56:15 +00:00
import { cloneDeep } from 'lodash'
2017-12-22 09:50:07 +00:00
import * as Sequelize from 'sequelize'
import express from 'express'
2020-05-14 14:56:15 +00:00
import { logger } from '@server/helpers/logger'
import { sequelizeTypescript } from '@server/initializers/database'
2017-12-22 09:50:07 +00:00
import { ResultList } from '../../shared/models'
2021-05-11 09:27:40 +00:00
import { VideoCommentThreadTree } from '../../shared/models/videos/comment/video-comment.model'
2017-12-22 09:50:07 +00:00
import { VideoCommentModel } from '../models/video/video-comment'
2020-11-20 10:21:08 +00:00
import { MAccountDefault, MComment, MCommentOwnerVideo, MCommentOwnerVideoReply, MVideoFullLight } from '../types/models'
2020-05-14 14:56:15 +00:00
import { sendCreateVideoComment, sendDeleteVideoComment } from './activitypub/send'
2020-11-20 10:21:08 +00:00
import { getLocalVideoCommentActivityPubUrl } from './activitypub/url'
2020-05-14 14:56:15 +00:00
import { Hooks } from './plugins/hooks'
async function removeComment (videoCommentInstance: MCommentOwnerVideo, req: express.Request, res: express.Response) {
2020-05-14 14:56:15 +00:00
const videoCommentInstanceBefore = cloneDeep(videoCommentInstance)
await sequelizeTypescript.transaction(async t => {
if (videoCommentInstance.isOwned() || videoCommentInstance.Video.isOwned()) {
await sendDeleteVideoComment(videoCommentInstance, t)
}
2021-06-15 07:17:19 +00:00
videoCommentInstance.markAsDeleted()
2020-05-14 14:56:15 +00:00
2021-06-15 07:17:19 +00:00
await videoCommentInstance.save({ transaction: t })
2020-05-14 14:56:15 +00:00
})
logger.info('Video comment %d deleted.', videoCommentInstance.id)
Hooks.runAction('action:api.video-comment.deleted', { comment: videoCommentInstanceBefore, req, res })
2020-05-14 14:56:15 +00:00
}
2017-12-22 09:50:07 +00:00
async function createVideoComment (obj: {
2020-01-31 15:56:52 +00:00
text: string
inReplyToComment: MComment | null
video: MVideoFullLight
2019-08-15 09:53:26 +00:00
account: MAccountDefault
2017-12-22 09:50:07 +00:00
}, t: Sequelize.Transaction) {
let originCommentId: number | null = null
let inReplyToCommentId: number | null = null
2017-12-22 11:10:40 +00:00
if (obj.inReplyToComment && obj.inReplyToComment !== null) {
originCommentId = obj.inReplyToComment.originCommentId || obj.inReplyToComment.id
2017-12-27 15:11:53 +00:00
inReplyToCommentId = obj.inReplyToComment.id
2017-12-22 09:50:07 +00:00
}
const comment = await VideoCommentModel.create({
text: obj.text,
originCommentId,
2017-12-27 15:11:53 +00:00
inReplyToCommentId,
2017-12-22 09:50:07 +00:00
videoId: obj.video.id,
2017-12-27 15:11:53 +00:00
accountId: obj.account.id,
2019-08-01 08:15:28 +00:00
url: new Date().toISOString()
}, { transaction: t, validate: false })
2017-12-22 09:50:07 +00:00
2020-11-20 10:21:08 +00:00
comment.url = getLocalVideoCommentActivityPubUrl(obj.video, comment)
2017-12-22 09:50:07 +00:00
2019-08-15 09:53:26 +00:00
const savedComment: MCommentOwnerVideoReply = await comment.save({ transaction: t })
savedComment.InReplyToVideoComment = obj.inReplyToComment
savedComment.Video = obj.video
2017-12-27 15:11:53 +00:00
savedComment.Account = obj.account
await sendCreateVideoComment(savedComment, t)
return savedComment
2017-12-22 09:50:07 +00:00
}
2017-12-22 11:10:40 +00:00
function buildFormattedCommentTree (resultList: ResultList<VideoCommentModel>): VideoCommentThreadTree {
2017-12-22 09:50:07 +00:00
// Comments are sorted by id ASC
const comments = resultList.data
const comment = comments.shift()
2017-12-22 11:10:40 +00:00
const thread: VideoCommentThreadTree = {
2017-12-22 09:50:07 +00:00
comment: comment.toFormattedJSON(),
children: []
}
const idx = {
[comment.id]: thread
}
while (comments.length !== 0) {
const childComment = comments.shift()
2017-12-22 11:10:40 +00:00
const childCommentThread: VideoCommentThreadTree = {
2017-12-22 09:50:07 +00:00
comment: childComment.toFormattedJSON(),
children: []
}
const parentCommentThread = idx[childComment.inReplyToCommentId]
// Maybe the parent comment was blocked by the admin/user
if (!parentCommentThread) continue
2017-12-22 09:50:07 +00:00
parentCommentThread.children.push(childCommentThread)
idx[childComment.id] = childCommentThread
}
return thread
}
// ---------------------------------------------------------------------------
export {
2020-05-14 14:56:15 +00:00
removeComment,
2017-12-22 09:50:07 +00:00
createVideoComment,
2021-06-15 07:17:19 +00:00
buildFormattedCommentTree
2017-12-22 09:50:07 +00:00
}