PeerTube/server/models/video/video-comment.ts

715 lines
18 KiB
TypeScript
Raw Normal View History

2020-05-14 16:56:15 +02:00
import * as Bluebird from 'bluebird'
import { uniq } from 'lodash'
import { FindOptions, Op, Order, ScopeOptions, Sequelize, Transaction } from 'sequelize'
2019-08-15 11:53:26 +02:00
import { AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, Is, Model, Scopes, Table, UpdatedAt } from 'sequelize-typescript'
2020-05-14 16:56:15 +02:00
import { getServerActor } from '@server/models/application/application'
2020-06-18 10:45:25 +02:00
import { MAccount, MAccountId, MUserAccountId } from '@server/types/models'
2020-05-14 16:56:15 +02:00
import { VideoPrivacy } from '@shared/models'
import { ActivityTagObject, ActivityTombstoneObject } from '../../../shared/models/activitypub/objects/common-objects'
import { VideoCommentObject } from '../../../shared/models/activitypub/objects/video-comment-object'
2017-12-22 10:50:07 +01:00
import { VideoComment } from '../../../shared/models/videos/video-comment.model'
import { actorNameAlphabet } from '../../helpers/custom-validators/activitypub/actor'
2020-05-14 16:56:15 +02:00
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
import { regexpCapture } from '../../helpers/regexp'
2020-05-14 16:56:15 +02:00
import { CONSTRAINTS_FIELDS, WEBSERVER } from '../../initializers/constants'
2019-08-15 11:53:26 +02:00
import {
MComment,
2019-08-21 14:31:57 +02:00
MCommentAP,
2019-08-20 19:05:31 +02:00
MCommentFormattable,
2019-08-15 11:53:26 +02:00
MCommentId,
MCommentOwner,
MCommentOwnerReplyVideoLight,
MCommentOwnerVideo,
MCommentOwnerVideoFeed,
MCommentOwnerVideoReply,
MVideoImmutable
2020-06-18 10:45:25 +02:00
} from '../../types/models/video'
2020-05-14 16:56:15 +02:00
import { AccountModel } from '../account/account'
2020-05-19 10:48:50 +02:00
import { ActorModel, unusedActorAttributesForAPI } from '../activitypub/actor'
2020-05-14 16:56:15 +02:00
import { buildBlockedAccountSQL, buildLocalAccountIdsIn, getCommentSort, throwIfNotValid } from '../utils'
import { VideoModel } from './video'
import { VideoChannelModel } from './video-channel'
2017-12-22 10:50:07 +01:00
enum ScopeNames {
WITH_ACCOUNT = 'WITH_ACCOUNT',
2020-05-19 10:48:50 +02:00
WITH_ACCOUNT_FOR_API = 'WITH_ACCOUNT_FOR_API',
2017-12-27 16:11:53 +01:00
WITH_IN_REPLY_TO = 'WITH_IN_REPLY_TO',
2017-12-28 11:16:08 +01:00
WITH_VIDEO = 'WITH_VIDEO',
2017-12-27 16:11:53 +01:00
ATTRIBUTES_FOR_API = 'ATTRIBUTES_FOR_API'
2017-12-22 10:50:07 +01:00
}
2019-04-23 09:50:57 +02:00
@Scopes(() => ({
[ScopeNames.ATTRIBUTES_FOR_API]: (blockerAccountIds: number[]) => {
return {
attributes: {
include: [
[
Sequelize.literal(
'(' +
'WITH "blocklist" AS (' + buildBlockedAccountSQL(blockerAccountIds) + ')' +
'SELECT COUNT("replies"."id") - (' +
'SELECT COUNT("replies"."id") ' +
'FROM "videoComment" AS "replies" ' +
'WHERE "replies"."originCommentId" = "VideoCommentModel"."id" ' +
'AND "accountId" IN (SELECT "id" FROM "blocklist")' +
')' +
'FROM "videoComment" AS "replies" ' +
'WHERE "replies"."originCommentId" = "VideoCommentModel"."id" ' +
'AND "accountId" NOT IN (SELECT "id" FROM "blocklist")' +
')'
),
'totalReplies'
],
[
Sequelize.literal(
'(' +
'SELECT COUNT("replies"."id") ' +
'FROM "videoComment" AS "replies" ' +
'INNER JOIN "video" ON "video"."id" = "replies"."videoId" ' +
'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
'WHERE "replies"."originCommentId" = "VideoCommentModel"."id" ' +
'AND "replies"."accountId" = "videoChannel"."accountId"' +
')'
),
'totalRepliesFromVideoAuthor'
]
2017-12-27 16:11:53 +01:00
]
}
2019-04-23 09:50:57 +02:00
} as FindOptions
2017-12-27 16:11:53 +01:00
},
2017-12-22 12:10:40 +01:00
[ScopeNames.WITH_ACCOUNT]: {
2017-12-22 10:50:07 +01:00
include: [
2017-12-27 16:11:53 +01:00
{
2019-08-15 11:53:26 +02:00
model: AccountModel
2017-12-27 16:11:53 +01:00
}
2019-04-23 09:50:57 +02:00
]
},
2020-05-19 10:48:50 +02:00
[ScopeNames.WITH_ACCOUNT_FOR_API]: {
include: [
{
model: AccountModel.unscoped(),
include: [
{
attributes: {
exclude: unusedActorAttributesForAPI
},
model: ActorModel, // Default scope includes avatar and server
required: true
}
]
}
]
},
[ScopeNames.WITH_IN_REPLY_TO]: {
include: [
{
2019-04-23 09:50:57 +02:00
model: VideoCommentModel,
2017-12-28 11:16:08 +01:00
as: 'InReplyToVideoComment'
}
]
},
[ScopeNames.WITH_VIDEO]: {
include: [
{
2019-04-23 09:50:57 +02:00
model: VideoModel,
2018-01-04 11:19:16 +01:00
required: true,
include: [
{
2019-08-15 11:53:26 +02:00
model: VideoChannelModel,
2018-01-04 11:19:16 +01:00
required: true,
include: [
{
2019-04-23 09:50:57 +02:00
model: AccountModel,
2019-08-15 11:53:26 +02:00
required: true
2018-01-04 11:19:16 +01:00
}
]
}
]
}
2019-04-23 09:50:57 +02:00
]
2017-12-22 10:50:07 +01:00
}
2019-04-23 09:50:57 +02:00
}))
@Table({
tableName: 'videoComment',
indexes: [
{
fields: [ 'videoId' ]
2017-12-22 10:50:07 +01:00
},
{
fields: [ 'videoId', 'originCommentId' ]
2018-01-26 14:14:43 +01:00
},
{
fields: [ 'url' ],
unique: true
2018-07-23 20:13:30 +02:00
},
{
fields: [ 'accountId' ]
2020-06-05 10:42:36 +02:00
},
{
fields: [
{ name: 'createdAt', order: 'DESC' }
]
}
]
})
export class VideoCommentModel extends Model<VideoCommentModel> {
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
@AllowNull(true)
@Column(DataType.DATE)
deletedAt: Date
@AllowNull(false)
@Is('VideoCommentUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.URL.max))
url: string
@AllowNull(false)
@Column(DataType.TEXT)
text: string
@ForeignKey(() => VideoCommentModel)
@Column
originCommentId: number
@BelongsTo(() => VideoCommentModel, {
foreignKey: {
2017-12-28 11:45:10 +01:00
name: 'originCommentId',
allowNull: true
},
2017-12-28 11:45:10 +01:00
as: 'OriginVideoComment',
onDelete: 'CASCADE'
})
OriginVideoComment: VideoCommentModel
@ForeignKey(() => VideoCommentModel)
@Column
inReplyToCommentId: number
@BelongsTo(() => VideoCommentModel, {
foreignKey: {
2017-12-28 11:45:10 +01:00
name: 'inReplyToCommentId',
allowNull: true
},
2017-12-28 11:16:08 +01:00
as: 'InReplyToVideoComment',
onDelete: 'CASCADE'
})
InReplyToVideoComment: VideoCommentModel | null
@ForeignKey(() => VideoModel)
@Column
videoId: number
@BelongsTo(() => VideoModel, {
foreignKey: {
allowNull: false
},
onDelete: 'CASCADE'
})
Video: VideoModel
2017-12-22 12:10:40 +01:00
@ForeignKey(() => AccountModel)
@Column
2017-12-22 12:10:40 +01:00
accountId: number
2017-12-22 12:10:40 +01:00
@BelongsTo(() => AccountModel, {
foreignKey: {
allowNull: true
},
onDelete: 'CASCADE'
})
2017-12-22 12:10:40 +01:00
Account: AccountModel
2019-08-15 11:53:26 +02:00
static loadById (id: number, t?: Transaction): Bluebird<MComment> {
2019-04-18 11:28:17 +02:00
const query: FindOptions = {
2017-12-22 10:50:07 +01:00
where: {
id
}
}
if (t !== undefined) query.transaction = t
return VideoCommentModel.findOne(query)
}
2019-08-15 11:53:26 +02:00
static loadByIdAndPopulateVideoAndAccountAndReply (id: number, t?: Transaction): Bluebird<MCommentOwnerVideoReply> {
2019-04-18 11:28:17 +02:00
const query: FindOptions = {
2017-12-28 11:16:08 +01:00
where: {
id
}
}
if (t !== undefined) query.transaction = t
return VideoCommentModel
.scope([ ScopeNames.WITH_VIDEO, ScopeNames.WITH_ACCOUNT, ScopeNames.WITH_IN_REPLY_TO ])
.findOne(query)
}
2019-08-15 11:53:26 +02:00
static loadByUrlAndPopulateAccountAndVideo (url: string, t?: Transaction): Bluebird<MCommentOwnerVideo> {
2019-04-18 11:28:17 +02:00
const query: FindOptions = {
where: {
url
}
}
if (t !== undefined) query.transaction = t
return VideoCommentModel.scope([ ScopeNames.WITH_ACCOUNT, ScopeNames.WITH_VIDEO ]).findOne(query)
}
2017-12-22 10:50:07 +01:00
2019-08-15 11:53:26 +02:00
static loadByUrlAndPopulateReplyAndVideoUrlAndAccount (url: string, t?: Transaction): Bluebird<MCommentOwnerReplyVideoLight> {
2019-04-18 11:28:17 +02:00
const query: FindOptions = {
2018-01-04 11:19:16 +01:00
where: {
url
2019-08-06 17:19:53 +02:00
},
include: [
{
attributes: [ 'id', 'url' ],
model: VideoModel.unscoped()
}
]
2018-01-04 11:19:16 +01:00
}
if (t !== undefined) query.transaction = t
2019-08-06 17:19:53 +02:00
return VideoCommentModel.scope([ ScopeNames.WITH_IN_REPLY_TO, ScopeNames.WITH_ACCOUNT ]).findOne(query)
2018-01-04 11:19:16 +01:00
}
2019-07-18 14:28:37 +02:00
static async listThreadsForApi (parameters: {
2020-01-31 16:56:52 +01:00
videoId: number
isVideoOwned: boolean
2020-01-31 16:56:52 +01:00
start: number
count: number
sort: string
2019-08-15 11:53:26 +02:00
user?: MUserAccountId
2019-07-18 14:28:37 +02:00
}) {
const { videoId, isVideoOwned, start, count, sort, user } = parameters
2019-07-18 14:28:37 +02:00
const blockerAccountIds = await VideoCommentModel.buildBlockerAccountIds({ videoId, user, isVideoOwned })
2017-12-22 10:50:07 +01:00
const query = {
offset: start,
limit: count,
2019-12-27 17:02:34 +01:00
order: getCommentSort(sort),
2017-12-22 10:50:07 +01:00
where: {
2020-05-19 10:48:50 +02:00
[Op.and]: [
{
videoId
},
{
inReplyToCommentId: null
},
{
[Op.or]: [
{
accountId: {
[Op.notIn]: Sequelize.literal(
'(' + buildBlockedAccountSQL(blockerAccountIds) + ')'
2020-05-19 10:48:50 +02:00
)
}
},
{
accountId: null
}
]
}
]
2017-12-22 10:50:07 +01:00
}
}
2019-04-23 09:50:57 +02:00
const scopes: (string | ScopeOptions)[] = [
2020-05-19 10:48:50 +02:00
ScopeNames.WITH_ACCOUNT_FOR_API,
{
method: [ ScopeNames.ATTRIBUTES_FOR_API, blockerAccountIds ]
}
]
2017-12-22 10:50:07 +01:00
return VideoCommentModel
.scope(scopes)
2017-12-22 10:50:07 +01:00
.findAndCountAll(query)
.then(({ rows, count }) => {
return { total: count, data: rows }
})
}
2019-07-18 14:28:37 +02:00
static async listThreadCommentsForApi (parameters: {
2020-01-31 16:56:52 +01:00
videoId: number
isVideoOwned: boolean
2020-01-31 16:56:52 +01:00
threadId: number
2019-08-15 11:53:26 +02:00
user?: MUserAccountId
2019-07-18 14:28:37 +02:00
}) {
const { videoId, threadId, user, isVideoOwned } = parameters
2019-07-18 14:28:37 +02:00
const blockerAccountIds = await VideoCommentModel.buildBlockerAccountIds({ videoId, user, isVideoOwned })
2017-12-22 10:50:07 +01:00
const query = {
2019-04-18 11:28:17 +02:00
order: [ [ 'createdAt', 'ASC' ], [ 'updatedAt', 'ASC' ] ] as Order,
2017-12-22 10:50:07 +01:00
where: {
videoId,
2020-01-31 16:56:52 +01:00
[Op.or]: [
2017-12-22 10:50:07 +01:00
{ id: threadId },
{ originCommentId: threadId }
],
accountId: {
2019-04-18 11:28:17 +02:00
[Op.notIn]: Sequelize.literal(
'(' + buildBlockedAccountSQL(blockerAccountIds) + ')'
)
}
2017-12-22 10:50:07 +01:00
}
}
const scopes: any[] = [
2020-05-19 10:48:50 +02:00
ScopeNames.WITH_ACCOUNT_FOR_API,
{
method: [ ScopeNames.ATTRIBUTES_FOR_API, blockerAccountIds ]
}
]
2017-12-22 10:50:07 +01:00
return VideoCommentModel
.scope(scopes)
2017-12-22 10:50:07 +01:00
.findAndCountAll(query)
.then(({ rows, count }) => {
return { total: count, data: rows }
})
}
2019-08-15 11:53:26 +02:00
static listThreadParentComments (comment: MCommentId, t: Transaction, order: 'ASC' | 'DESC' = 'ASC'): Bluebird<MCommentOwner[]> {
2018-01-05 11:19:25 +01:00
const query = {
2019-04-18 11:28:17 +02:00
order: [ [ 'createdAt', order ] ] as Order,
2018-01-05 11:19:25 +01:00
where: {
id: {
2020-01-31 16:56:52 +01:00
[Op.in]: Sequelize.literal('(' +
2018-03-21 11:17:01 +01:00
'WITH RECURSIVE children (id, "inReplyToCommentId") AS ( ' +
`SELECT id, "inReplyToCommentId" FROM "videoComment" WHERE id = ${comment.id} ` +
'UNION ' +
'SELECT "parent"."id", "parent"."inReplyToCommentId" FROM "videoComment" "parent" ' +
'INNER JOIN "children" ON "children"."inReplyToCommentId" = "parent"."id"' +
') ' +
2018-03-21 11:17:01 +01:00
'SELECT id FROM children' +
')'),
2020-01-31 16:56:52 +01:00
[Op.ne]: comment.id
2018-01-05 11:19:25 +01:00
}
},
transaction: t
}
return VideoCommentModel
.scope([ ScopeNames.WITH_ACCOUNT ])
.findAll(query)
}
static async listAndCountByVideoForAP (video: MVideoImmutable, start: number, count: number, t?: Transaction) {
const blockerAccountIds = await VideoCommentModel.buildBlockerAccountIds({
videoId: video.id,
isVideoOwned: video.isOwned()
})
const query = {
order: [ [ 'createdAt', 'ASC' ] ] as Order,
offset: start,
limit: count,
where: {
videoId: video.id,
accountId: {
[Op.notIn]: Sequelize.literal(
'(' + buildBlockedAccountSQL(blockerAccountIds) + ')'
)
}
},
transaction: t
}
2019-08-15 11:53:26 +02:00
return VideoCommentModel.findAndCountAll<MComment>(query)
}
static async listForFeed (parameters: {
start: number
count: number
videoId?: number
accountId?: number
videoChannelId?: number
}): Promise<MCommentOwnerVideoFeed[]> {
2020-05-06 14:12:12 +02:00
const serverActor = await getServerActor()
const { start, count, videoId, accountId, videoChannelId } = parameters
const accountExclusion = {
[Op.notIn]: Sequelize.literal(
'(' + buildBlockedAccountSQL([ serverActor.Account.id, '"Video->VideoChannel"."accountId"' ]) + ')'
)
}
const accountWhere = accountId
? {
[Op.and]: {
...accountExclusion,
[Op.eq]: accountId
}
}
: accountExclusion
const videoChannelWhere = videoChannelId ? { id: videoChannelId } : undefined
2020-05-06 14:12:12 +02:00
2018-06-08 20:34:37 +02:00
const query = {
2019-04-18 11:28:17 +02:00
order: [ [ 'createdAt', 'DESC' ] ] as Order,
offset: start,
limit: count,
where: {
2020-05-06 14:12:12 +02:00
deletedAt: null,
accountId: accountWhere
},
2018-06-08 20:34:37 +02:00
include: [
{
2018-06-14 11:25:19 +02:00
attributes: [ 'name', 'uuid' ],
2018-06-08 20:34:37 +02:00
model: VideoModel.unscoped(),
required: true,
where: {
privacy: VideoPrivacy.PUBLIC
},
include: [
{
attributes: [ 'accountId' ],
model: VideoChannelModel.unscoped(),
required: true,
where: videoChannelWhere
}
]
2018-06-08 20:34:37 +02:00
}
]
}
if (videoId) query.where['videoId'] = videoId
return VideoCommentModel
.scope([ ScopeNames.WITH_ACCOUNT ])
.findAll(query)
}
2020-05-14 16:56:15 +02:00
static listForBulkDelete (ofAccount: MAccount, filter: { onVideosOfAccount?: MAccountId } = {}) {
const accountWhere = filter.onVideosOfAccount
? { id: filter.onVideosOfAccount.id }
: {}
const query = {
limit: 1000,
where: {
deletedAt: null,
accountId: ofAccount.id
},
include: [
{
model: VideoModel,
required: true,
include: [
{
model: VideoChannelModel,
required: true,
include: [
{
model: AccountModel,
required: true,
where: accountWhere
}
]
}
]
}
]
}
return VideoCommentModel
.scope([ ScopeNames.WITH_ACCOUNT ])
.findAll(query)
}
2018-02-28 18:04:46 +01:00
static async getStats () {
const totalLocalVideoComments = await VideoCommentModel.count({
include: [
{
model: AccountModel,
required: true,
include: [
{
model: ActorModel,
required: true,
where: {
serverId: null
}
}
]
}
]
})
const totalVideoComments = await VideoCommentModel.count()
return {
totalLocalVideoComments,
totalVideoComments
}
}
2019-03-19 16:23:02 +01:00
static cleanOldCommentsOf (videoId: number, beforeUpdatedAt: Date) {
const query = {
where: {
updatedAt: {
2019-04-18 11:28:17 +02:00
[Op.lt]: beforeUpdatedAt
2019-03-19 16:23:02 +01:00
},
2019-08-06 17:19:53 +02:00
videoId,
accountId: {
[Op.notIn]: buildLocalAccountIdsIn()
2020-05-14 16:56:15 +02:00
},
// Do not delete Tombstones
deletedAt: null
2019-08-06 17:19:53 +02:00
}
2019-03-19 16:23:02 +01:00
}
return VideoCommentModel.destroy(query)
}
2018-12-26 10:36:24 +01:00
getCommentStaticPath () {
return this.Video.getWatchStaticPath() + ';threadId=' + this.getThreadId()
}
2018-01-05 11:19:25 +01:00
getThreadId (): number {
return this.originCommentId || this.id
}
2018-01-04 11:19:16 +01:00
isOwned () {
if (!this.Account) {
return false
}
2018-01-04 11:19:16 +01:00
return this.Account.isOwned()
}
isDeleted () {
2020-01-31 16:56:52 +01:00
return this.deletedAt !== null
}
extractMentions () {
let result: string[] = []
const localMention = `@(${actorNameAlphabet}+)`
2019-04-11 11:33:44 +02:00
const remoteMention = `${localMention}@${WEBSERVER.HOST}`
const mentionRegex = this.isOwned()
? '(?:(?:' + remoteMention + ')|(?:' + localMention + '))' // Include local mentions?
: '(?:' + remoteMention + ')'
const firstMentionRegex = new RegExp(`^${mentionRegex} `, 'g')
const endMentionRegex = new RegExp(` ${mentionRegex}$`, 'g')
const remoteMentionsRegex = new RegExp(' ' + remoteMention + ' ', 'g')
result = result.concat(
regexpCapture(this.text, firstMentionRegex)
.map(([ , username1, username2 ]) => username1 || username2),
regexpCapture(this.text, endMentionRegex)
.map(([ , username1, username2 ]) => username1 || username2),
regexpCapture(this.text, remoteMentionsRegex)
.map(([ , username ]) => username)
)
// Include local mentions
if (this.isOwned()) {
const localMentionsRegex = new RegExp(' ' + localMention + ' ', 'g')
result = result.concat(
regexpCapture(this.text, localMentionsRegex)
.map(([ , username ]) => username)
)
}
return uniq(result)
}
2019-08-20 19:05:31 +02:00
toFormattedJSON (this: MCommentFormattable) {
2017-12-22 10:50:07 +01:00
return {
id: this.id,
url: this.url,
text: this.text,
threadId: this.originCommentId || this.id,
2017-12-27 20:03:37 +01:00
inReplyToCommentId: this.inReplyToCommentId || null,
2017-12-22 10:50:07 +01:00
videoId: this.videoId,
createdAt: this.createdAt,
2017-12-22 12:10:40 +01:00
updatedAt: this.updatedAt,
deletedAt: this.deletedAt,
isDeleted: this.isDeleted(),
totalRepliesFromVideoAuthor: this.get('totalRepliesFromVideoAuthor') || 0,
2017-12-27 16:11:53 +01:00
totalReplies: this.get('totalReplies') || 0,
account: this.Account ? this.Account.toFormattedJSON() : null
2017-12-22 10:50:07 +01:00
} as VideoComment
}
toActivityPubObject (this: MCommentAP, threadParentComments: MCommentOwner[]): VideoCommentObject | ActivityTombstoneObject {
let inReplyTo: string
// New thread, so in AS we reply to the video
if (this.inReplyToCommentId === null) {
inReplyTo = this.Video.url
} else {
inReplyTo = this.InReplyToVideoComment.url
}
if (this.isDeleted()) {
return {
id: this.url,
type: 'Tombstone',
formerType: 'Note',
inReplyTo,
published: this.createdAt.toISOString(),
updated: this.updatedAt.toISOString(),
deleted: this.deletedAt.toISOString()
}
}
2018-01-05 11:19:25 +01:00
const tag: ActivityTagObject[] = []
for (const parentComment of threadParentComments) {
if (!parentComment.Account) continue
2018-01-05 11:19:25 +01:00
const actor = parentComment.Account.Actor
tag.push({
type: 'Mention',
href: actor.url,
name: `@${actor.preferredUsername}@${actor.getHost()}`
})
}
return {
type: 'Note' as 'Note',
id: this.url,
content: this.text,
inReplyTo,
2017-12-28 11:16:08 +01:00
updated: this.updatedAt.toISOString(),
published: this.createdAt.toISOString(),
2017-12-28 11:16:08 +01:00
url: this.url,
2018-01-05 11:19:25 +01:00
attributedTo: this.Account.Actor.url,
tag
}
}
private static async buildBlockerAccountIds (options: {
videoId: number
isVideoOwned: boolean
user?: MUserAccountId
}) {
const { videoId, user, isVideoOwned } = options
const serverActor = await getServerActor()
const blockerAccountIds = [ serverActor.Account.id ]
if (user) blockerAccountIds.push(user.Account.id)
if (isVideoOwned) {
const videoOwnerAccount = await AccountModel.loadAccountIdFromVideo(videoId)
blockerAccountIds.push(videoOwnerAccount.id)
}
return blockerAccountIds
}
}