PeerTube/server/core/controllers/api/videos/comment.ts

249 lines
7.5 KiB
TypeScript
Raw Normal View History

import { pick } from '@peertube/peertube-core-utils'
import {
HttpStatusCode,
ResultList,
ThreadsResultList,
UserRight,
VideoCommentCreate,
VideoCommentPolicy,
VideoCommentThreads
} from '@peertube/peertube-models'
import { getServerActor } from '@server/models/application/application.js'
import { MCommentFormattable } from '@server/types/models/index.js'
import express from 'express'
import { CommentAuditView, auditLoggerFactory, getAuditIdFromRes } from '../../../helpers/audit-logger.js'
import { getFormattedObjects } from '../../../helpers/utils.js'
import { Notifier } from '../../../lib/notifier/index.js'
import { Hooks } from '../../../lib/plugins/hooks.js'
import { approveComment, buildFormattedCommentTree, createLocalVideoComment, removeComment } from '../../../lib/video-comment.js'
2018-06-13 14:27:40 +02:00
import {
asyncMiddleware,
asyncRetryTransactionMiddleware,
2019-03-19 10:35:15 +01:00
authenticate,
2020-11-13 16:38:23 +01:00
ensureUserHasRight,
2019-03-19 10:35:15 +01:00
optionalAuthenticate,
2018-06-13 14:27:40 +02:00
paginationValidator,
setDefaultPagination,
setDefaultSort
} from '../../../middlewares/index.js'
2017-12-22 10:50:07 +01:00
import {
2018-06-13 14:27:40 +02:00
addVideoCommentReplyValidator,
addVideoCommentThreadValidator,
approveVideoCommentValidator,
listAllVideoCommentsForAdminValidator,
2018-06-13 14:27:40 +02:00
listVideoCommentThreadsValidator,
listVideoThreadCommentsValidator,
2018-10-05 11:15:06 +02:00
removeVideoCommentValidator,
videoCommentThreadsSortValidator,
videoCommentsValidator
} from '../../../middlewares/validators/index.js'
import { VideoCommentModel } from '../../../models/video/video-comment.js'
2017-12-22 10:50:07 +01:00
const auditLogger = auditLoggerFactory('comments')
2017-12-22 10:50:07 +01:00
const videoCommentRouter = express.Router()
videoCommentRouter.get('/:videoId/comment-threads',
paginationValidator,
videoCommentThreadsSortValidator,
2018-01-17 10:50:33 +01:00
setDefaultSort,
setDefaultPagination,
2017-12-22 10:50:07 +01:00
asyncMiddleware(listVideoCommentThreadsValidator),
optionalAuthenticate,
2017-12-22 10:50:07 +01:00
asyncMiddleware(listVideoThreads)
)
videoCommentRouter.get('/:videoId/comment-threads/:threadId',
asyncMiddleware(listVideoThreadCommentsValidator),
optionalAuthenticate,
2017-12-22 10:50:07 +01:00
asyncMiddleware(listVideoThreadComments)
)
videoCommentRouter.post('/:videoId/comment-threads',
authenticate,
asyncMiddleware(addVideoCommentThreadValidator),
2018-06-13 14:27:40 +02:00
asyncRetryTransactionMiddleware(addVideoCommentThread)
2017-12-22 10:50:07 +01:00
)
videoCommentRouter.post('/:videoId/comments/:commentId',
authenticate,
asyncMiddleware(addVideoCommentReplyValidator),
2018-06-13 14:27:40 +02:00
asyncRetryTransactionMiddleware(addVideoCommentReply)
2017-12-22 10:50:07 +01:00
)
2018-01-04 11:19:16 +01:00
videoCommentRouter.delete('/:videoId/comments/:commentId',
authenticate,
asyncMiddleware(removeVideoCommentValidator),
2018-06-13 14:27:40 +02:00
asyncRetryTransactionMiddleware(removeVideoComment)
2018-01-04 11:19:16 +01:00
)
2017-12-22 10:50:07 +01:00
videoCommentRouter.post('/:videoId/comments/:commentId/approve',
authenticate,
asyncMiddleware(approveVideoCommentValidator),
asyncMiddleware(approveVideoComment)
)
2020-11-13 16:38:23 +01:00
videoCommentRouter.get('/comments',
authenticate,
ensureUserHasRight(UserRight.SEE_ALL_COMMENTS),
paginationValidator,
videoCommentsValidator,
setDefaultSort,
setDefaultPagination,
asyncMiddleware(listAllVideoCommentsForAdminValidator),
2020-11-13 16:38:23 +01:00
asyncMiddleware(listComments)
)
2017-12-22 10:50:07 +01:00
// ---------------------------------------------------------------------------
export {
videoCommentRouter
}
// ---------------------------------------------------------------------------
2020-11-13 16:38:23 +01:00
async function listComments (req: express.Request, res: express.Response) {
const options = {
...pick(req.query, [
'start',
'count',
'sort',
'isLocal',
'onLocalVideo',
'search',
'searchAccount',
'searchVideo',
'autoTagOneOf'
]),
videoId: res.locals.onlyImmutableVideo?.id,
videoChannelOwnerId: res.locals.videoChannel?.id,
autoTagOfAccountId: (await getServerActor()).Account.id,
heldForReview: undefined
2020-11-13 16:38:23 +01:00
}
const resultList = await VideoCommentModel.listCommentsForApi(options)
return res.json({
total: resultList.total,
data: resultList.data.map(c => c.toFormattedForAdminOrUserJSON())
2020-11-13 16:38:23 +01:00
})
}
2019-03-19 10:35:15 +01:00
async function listVideoThreads (req: express.Request, res: express.Response) {
2019-08-15 11:53:26 +02:00
const video = res.locals.onlyVideo
2019-03-19 10:35:15 +01:00
const user = res.locals.oauth ? res.locals.oauth.token.User : undefined
2023-01-05 15:31:51 +01:00
let resultList: ThreadsResultList<MCommentFormattable>
2018-01-03 10:12:36 +01:00
if (video.commentsPolicy !== VideoCommentPolicy.DISABLED) {
2019-07-18 14:28:37 +02:00
const apiOptions = await Hooks.wrapObject({
video,
2019-07-18 14:28:37 +02:00
start: req.query.start,
count: req.query.count,
sort: req.query.sort,
2019-08-15 11:53:26 +02:00
user
2019-07-18 14:28:37 +02:00
}, 'filter:api.video-threads.list.params')
2019-07-19 17:30:41 +02:00
resultList = await Hooks.wrapPromiseFun(
2024-02-22 10:12:04 +01:00
VideoCommentModel.listThreadsForApi.bind(VideoCommentModel),
2019-07-19 17:30:41 +02:00
apiOptions,
2019-07-18 14:28:37 +02:00
'filter:api.video-threads.list.result'
)
2018-01-03 10:12:36 +01:00
} else {
resultList = {
total: 0,
totalNotDeletedComments: 0,
2018-01-03 10:12:36 +01:00
data: []
}
}
2017-12-22 10:50:07 +01:00
return res.json({
...getFormattedObjects(resultList.data, resultList.total),
totalNotDeletedComments: resultList.totalNotDeletedComments
2021-07-09 14:15:11 +02:00
} as VideoCommentThreads)
2017-12-22 10:50:07 +01:00
}
2019-03-19 10:35:15 +01:00
async function listVideoThreadComments (req: express.Request, res: express.Response) {
2019-08-15 11:53:26 +02:00
const video = res.locals.onlyVideo
2019-03-19 10:35:15 +01:00
const user = res.locals.oauth ? res.locals.oauth.token.User : undefined
2023-01-05 15:31:51 +01:00
let resultList: ResultList<MCommentFormattable>
2018-01-03 10:12:36 +01:00
if (video.commentsPolicy !== VideoCommentPolicy.DISABLED) {
2019-07-18 14:28:37 +02:00
const apiOptions = await Hooks.wrapObject({
video,
2019-07-18 14:28:37 +02:00
threadId: res.locals.videoCommentThread.id,
2019-07-22 11:14:58 +02:00
user
2019-07-18 14:28:37 +02:00
}, 'filter:api.video-thread-comments.list.params')
2019-07-19 17:30:41 +02:00
resultList = await Hooks.wrapPromiseFun(
2024-02-22 10:12:04 +01:00
VideoCommentModel.listThreadCommentsForApi.bind(VideoCommentModel),
2019-07-19 17:30:41 +02:00
apiOptions,
2019-07-18 14:28:37 +02:00
'filter:api.video-thread-comments.list.result'
)
2018-01-03 10:12:36 +01:00
} else {
resultList = {
total: 0,
data: []
}
}
2017-12-22 10:50:07 +01:00
2020-11-27 11:48:20 +01:00
if (resultList.data.length === 0) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'No comments were found'
})
2020-11-27 11:48:20 +01:00
}
2017-12-22 10:50:07 +01:00
return res.json(buildFormattedCommentTree(resultList))
}
2018-06-13 14:27:40 +02:00
async function addVideoCommentThread (req: express.Request, res: express.Response) {
2017-12-22 10:50:07 +01:00
const videoCommentInfo: VideoCommentCreate = req.body
const comment = await createLocalVideoComment({
text: videoCommentInfo.text,
inReplyToComment: null,
video: res.locals.videoAll,
user: res.locals.oauth.token.User
2017-12-22 10:50:07 +01:00
})
2018-12-26 10:36:24 +01:00
Notifier.Instance.notifyOnNewComment(comment)
2018-09-19 17:02:16 +02:00
auditLogger.create(getAuditIdFromRes(res), new CommentAuditView(comment.toFormattedJSON()))
Hooks.runAction('action:api.video-thread.created', { comment, req, res })
2019-07-18 14:28:37 +02:00
2020-05-14 16:56:15 +02:00
return res.json({ comment: comment.toFormattedJSON() })
2017-12-22 10:50:07 +01:00
}
2018-06-13 14:27:40 +02:00
async function addVideoCommentReply (req: express.Request, res: express.Response) {
2017-12-22 10:50:07 +01:00
const videoCommentInfo: VideoCommentCreate = req.body
const comment = await createLocalVideoComment({
text: videoCommentInfo.text,
inReplyToComment: res.locals.videoCommentFull,
video: res.locals.videoAll,
user: res.locals.oauth.token.User
2017-12-22 10:50:07 +01:00
})
2018-01-04 11:19:16 +01:00
2018-12-26 10:36:24 +01:00
Notifier.Instance.notifyOnNewComment(comment)
2018-09-19 17:02:16 +02:00
auditLogger.create(getAuditIdFromRes(res), new CommentAuditView(comment.toFormattedJSON()))
Hooks.runAction('action:api.video-comment-reply.created', { comment, req, res })
2019-07-18 14:28:37 +02:00
2020-05-14 16:56:15 +02:00
return res.json({ comment: comment.toFormattedJSON() })
2018-01-04 11:19:16 +01:00
}
async function removeVideoComment (req: express.Request, res: express.Response) {
const comment = res.locals.videoCommentFull
await removeComment(comment, req, res)
auditLogger.delete(getAuditIdFromRes(res), new CommentAuditView(comment.toFormattedJSON()))
return res.sendStatus(HttpStatusCode.NO_CONTENT_204)
}
2018-01-04 11:19:16 +01:00
async function approveVideoComment (req: express.Request, res: express.Response) {
await approveComment(res.locals.videoCommentFull)
2019-07-18 14:28:37 +02:00
return res.sendStatus(HttpStatusCode.NO_CONTENT_204)
2018-01-04 11:19:16 +01:00
}