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

271 lines
6.2 KiB
TypeScript
Raw Normal View History

import * as Sequelize from 'sequelize'
import {
2017-12-22 09:50:07 +00:00
AfterDestroy, AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, IFindOptions, Is, Model, Scopes, Table,
UpdatedAt
} from 'sequelize-typescript'
import { VideoCommentObject } from '../../../shared/models/activitypub/objects/video-comment-object'
2017-12-22 09:50:07 +00:00
import { VideoComment } from '../../../shared/models/videos/video-comment.model'
2017-12-28 10:16:08 +00:00
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
import { CONSTRAINTS_FIELDS } from '../../initializers'
2017-12-22 11:10:40 +00:00
import { AccountModel } from '../account/account'
2017-12-27 15:11:53 +00:00
import { ActorModel } from '../activitypub/actor'
import { ServerModel } from '../server/server'
2017-12-22 09:50:07 +00:00
import { getSort, throwIfNotValid } from '../utils'
import { VideoModel } from './video'
2017-12-22 09:50:07 +00:00
enum ScopeNames {
WITH_ACCOUNT = 'WITH_ACCOUNT',
2017-12-27 15:11:53 +00:00
WITH_IN_REPLY_TO = 'WITH_IN_REPLY_TO',
2017-12-28 10:16:08 +00:00
WITH_VIDEO = 'WITH_VIDEO',
2017-12-27 15:11:53 +00:00
ATTRIBUTES_FOR_API = 'ATTRIBUTES_FOR_API'
2017-12-22 09:50:07 +00:00
}
@Scopes({
2017-12-27 15:11:53 +00:00
[ScopeNames.ATTRIBUTES_FOR_API]: {
attributes: {
include: [
[
Sequelize.literal(
'(SELECT COUNT("replies"."id") ' +
'FROM "videoComment" AS "replies" ' +
'WHERE "replies"."originCommentId" = "VideoCommentModel"."id")'
),
'totalReplies'
]
]
}
},
2017-12-22 11:10:40 +00:00
[ScopeNames.WITH_ACCOUNT]: {
2017-12-22 09:50:07 +00:00
include: [
2017-12-27 15:11:53 +00:00
{
model: () => AccountModel,
include: [
{
model: () => ActorModel,
include: [
{
model: () => ServerModel,
required: false
}
]
}
]
}
2017-12-22 09:50:07 +00:00
]
},
[ScopeNames.WITH_IN_REPLY_TO]: {
include: [
{
model: () => VideoCommentModel,
2017-12-28 10:16:08 +00:00
as: 'InReplyToVideoComment'
}
]
},
[ScopeNames.WITH_VIDEO]: {
include: [
{
model: () => VideoModel,
required: false
}
]
2017-12-22 09:50:07 +00:00
}
})
@Table({
tableName: 'videoComment',
indexes: [
{
fields: [ 'videoId' ]
2017-12-22 09:50:07 +00:00
},
{
fields: [ 'videoId', 'originCommentId' ]
}
]
})
export class VideoCommentModel extends Model<VideoCommentModel> {
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: 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: {
allowNull: true
},
onDelete: 'CASCADE'
})
OriginVideoComment: VideoCommentModel
@ForeignKey(() => VideoCommentModel)
@Column
inReplyToCommentId: number
@BelongsTo(() => VideoCommentModel, {
foreignKey: {
allowNull: true
},
2017-12-28 10:16:08 +00:00
as: 'InReplyToVideoComment',
onDelete: 'CASCADE'
})
InReplyToVideoComment: VideoCommentModel
@ForeignKey(() => VideoModel)
@Column
videoId: number
@BelongsTo(() => VideoModel, {
foreignKey: {
allowNull: false
},
onDelete: 'CASCADE'
})
Video: VideoModel
2017-12-22 11:10:40 +00:00
@ForeignKey(() => AccountModel)
@Column
2017-12-22 11:10:40 +00:00
accountId: number
2017-12-22 11:10:40 +00:00
@BelongsTo(() => AccountModel, {
foreignKey: {
allowNull: false
},
onDelete: 'CASCADE'
})
2017-12-22 11:10:40 +00:00
Account: AccountModel
2017-12-22 09:50:07 +00:00
@AfterDestroy
static sendDeleteIfOwned (instance: VideoCommentModel) {
// TODO
return undefined
}
static loadById (id: number, t?: Sequelize.Transaction) {
const query: IFindOptions<VideoCommentModel> = {
where: {
id
}
}
if (t !== undefined) query.transaction = t
return VideoCommentModel.findOne(query)
}
2017-12-28 10:16:08 +00:00
static loadByIdAndPopulateVideoAndAccountAndReply (id: number, t?: Sequelize.Transaction) {
const query: IFindOptions<VideoCommentModel> = {
where: {
id
}
}
if (t !== undefined) query.transaction = t
return VideoCommentModel
.scope([ ScopeNames.WITH_VIDEO, ScopeNames.WITH_ACCOUNT, ScopeNames.WITH_IN_REPLY_TO ])
.findOne(query)
}
static loadByUrl (url: string, t?: Sequelize.Transaction) {
const query: IFindOptions<VideoCommentModel> = {
where: {
url
}
}
if (t !== undefined) query.transaction = t
return VideoCommentModel.findOne(query)
}
2017-12-22 09:50:07 +00:00
static listThreadsForApi (videoId: number, start: number, count: number, sort: string) {
const query = {
offset: start,
limit: count,
order: [ getSort(sort) ],
where: {
2017-12-22 11:10:40 +00:00
videoId,
inReplyToCommentId: null
2017-12-22 09:50:07 +00:00
}
}
return VideoCommentModel
2017-12-27 15:11:53 +00:00
.scope([ ScopeNames.WITH_ACCOUNT, ScopeNames.ATTRIBUTES_FOR_API ])
2017-12-22 09:50:07 +00:00
.findAndCountAll(query)
.then(({ rows, count }) => {
return { total: count, data: rows }
})
}
static listThreadCommentsForApi (videoId: number, threadId: number) {
const query = {
2017-12-22 11:10:40 +00:00
order: [ [ 'id', 'ASC' ] ],
2017-12-22 09:50:07 +00:00
where: {
videoId,
[ Sequelize.Op.or ]: [
{ id: threadId },
{ originCommentId: threadId }
]
}
}
return VideoCommentModel
2017-12-27 15:11:53 +00:00
.scope([ ScopeNames.WITH_ACCOUNT, ScopeNames.ATTRIBUTES_FOR_API ])
2017-12-22 09:50:07 +00:00
.findAndCountAll(query)
.then(({ rows, count }) => {
return { total: count, data: rows }
})
}
toFormattedJSON () {
return {
id: this.id,
url: this.url,
text: this.text,
threadId: this.originCommentId || this.id,
2017-12-27 19:03:37 +00:00
inReplyToCommentId: this.inReplyToCommentId || null,
2017-12-22 09:50:07 +00:00
videoId: this.videoId,
createdAt: this.createdAt,
2017-12-22 11:10:40 +00:00
updatedAt: this.updatedAt,
2017-12-27 15:11:53 +00:00
totalReplies: this.get('totalReplies') || 0,
2017-12-22 11:10:40 +00:00
account: {
2017-12-27 15:11:53 +00:00
name: this.Account.name,
host: this.Account.Actor.getHost()
2017-12-22 11:10:40 +00:00
}
2017-12-22 09:50:07 +00:00
} as VideoComment
}
toActivityPubObject (): VideoCommentObject {
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
}
return {
type: 'Note' as 'Note',
id: this.url,
content: this.text,
inReplyTo,
2017-12-28 10:16:08 +00:00
updated: this.updatedAt.toISOString(),
published: this.createdAt.toISOString(),
2017-12-28 10:16:08 +00:00
url: this.url,
attributedTo: this.Account.Actor.url
}
}
}