2017-12-22 04:50:07 -05:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
import { ResultList } from '../../shared/models'
|
2017-12-22 06:10:40 -05:00
|
|
|
import { VideoCommentThreadTree } from '../../shared/models/videos/video-comment.model'
|
2017-12-27 10:11:53 -05:00
|
|
|
import { AccountModel } from '../models/account/account'
|
2017-12-22 04:50:07 -05:00
|
|
|
import { VideoModel } from '../models/video/video'
|
|
|
|
import { VideoCommentModel } from '../models/video/video-comment'
|
2017-12-27 10:11:53 -05:00
|
|
|
import { getVideoCommentActivityPubUrl } from './activitypub'
|
2018-03-27 07:33:56 -04:00
|
|
|
import { sendCreateVideoComment } from './activitypub/send'
|
2017-12-22 04:50:07 -05:00
|
|
|
|
|
|
|
async function createVideoComment (obj: {
|
|
|
|
text: string,
|
2018-07-25 16:01:25 -04:00
|
|
|
inReplyToComment: VideoCommentModel | null,
|
2017-12-22 04:50:07 -05:00
|
|
|
video: VideoModel
|
2017-12-27 10:11:53 -05:00
|
|
|
account: AccountModel
|
2017-12-22 04:50:07 -05:00
|
|
|
}, t: Sequelize.Transaction) {
|
2018-07-25 16:01:25 -04:00
|
|
|
let originCommentId: number | null = null
|
|
|
|
let inReplyToCommentId: number | null = null
|
2017-12-22 06:10:40 -05:00
|
|
|
|
2018-07-25 16:01:25 -04:00
|
|
|
if (obj.inReplyToComment && obj.inReplyToComment !== null) {
|
2017-12-27 04:39:31 -05:00
|
|
|
originCommentId = obj.inReplyToComment.originCommentId || obj.inReplyToComment.id
|
2017-12-27 10:11:53 -05:00
|
|
|
inReplyToCommentId = obj.inReplyToComment.id
|
2017-12-22 04:50:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const comment = await VideoCommentModel.create({
|
|
|
|
text: obj.text,
|
|
|
|
originCommentId,
|
2017-12-27 10:11:53 -05:00
|
|
|
inReplyToCommentId,
|
2017-12-22 04:50:07 -05:00
|
|
|
videoId: obj.video.id,
|
2017-12-27 10:11:53 -05:00
|
|
|
accountId: obj.account.id,
|
2017-12-22 06:10:40 -05:00
|
|
|
url: 'fake url'
|
|
|
|
}, { transaction: t, validate: false })
|
2017-12-22 04:50:07 -05:00
|
|
|
|
|
|
|
comment.set('url', getVideoCommentActivityPubUrl(obj.video, comment))
|
|
|
|
|
2017-12-27 04:39:31 -05:00
|
|
|
const savedComment = await comment.save({ transaction: t })
|
|
|
|
savedComment.InReplyToVideoComment = obj.inReplyToComment
|
|
|
|
savedComment.Video = obj.video
|
2017-12-27 10:11:53 -05:00
|
|
|
savedComment.Account = obj.account
|
2017-12-27 04:39:31 -05:00
|
|
|
|
2018-03-27 07:33:56 -04:00
|
|
|
await sendCreateVideoComment(savedComment, t)
|
2017-12-27 04:39:31 -05:00
|
|
|
|
|
|
|
return savedComment
|
2017-12-22 04:50:07 -05:00
|
|
|
}
|
|
|
|
|
2017-12-22 06:10:40 -05:00
|
|
|
function buildFormattedCommentTree (resultList: ResultList<VideoCommentModel>): VideoCommentThreadTree {
|
2017-12-22 04:50:07 -05:00
|
|
|
// Comments are sorted by id ASC
|
|
|
|
const comments = resultList.data
|
|
|
|
|
|
|
|
const comment = comments.shift()
|
2017-12-22 06:10:40 -05:00
|
|
|
const thread: VideoCommentThreadTree = {
|
2017-12-22 04:50:07 -05:00
|
|
|
comment: comment.toFormattedJSON(),
|
|
|
|
children: []
|
|
|
|
}
|
|
|
|
const idx = {
|
|
|
|
[comment.id]: thread
|
|
|
|
}
|
|
|
|
|
|
|
|
while (comments.length !== 0) {
|
|
|
|
const childComment = comments.shift()
|
|
|
|
|
2017-12-22 06:10:40 -05:00
|
|
|
const childCommentThread: VideoCommentThreadTree = {
|
2017-12-22 04:50:07 -05:00
|
|
|
comment: childComment.toFormattedJSON(),
|
|
|
|
children: []
|
|
|
|
}
|
|
|
|
|
|
|
|
const parentCommentThread = idx[childComment.inReplyToCommentId]
|
|
|
|
if (!parentCommentThread) {
|
|
|
|
const msg = `Cannot format video thread tree, parent ${childComment.inReplyToCommentId} not found for child ${childComment.id}`
|
|
|
|
throw new Error(msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
parentCommentThread.children.push(childCommentThread)
|
|
|
|
idx[childComment.id] = childCommentThread
|
|
|
|
}
|
|
|
|
|
|
|
|
return thread
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
createVideoComment,
|
|
|
|
buildFormattedCommentTree
|
|
|
|
}
|