]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/video-comment.ts
Fix video follow SQL
[github/Chocobozzz/PeerTube.git] / server / models / video / video-comment.ts
CommitLineData
444c0a0e
C
1import * as Bluebird from 'bluebird'
2import { uniq } from 'lodash'
3import { FindOptions, Op, Order, ScopeOptions, Sequelize, Transaction } from 'sequelize'
453e83ea 4import { AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, Is, Model, Scopes, Table, UpdatedAt } from 'sequelize-typescript'
444c0a0e
C
5import { getServerActor } from '@server/models/application/application'
6import { MAccount, MAccountId, MUserAccountId } from '@server/typings/models'
7import { VideoPrivacy } from '@shared/models'
69222afa 8import { ActivityTagObject, ActivityTombstoneObject } from '../../../shared/models/activitypub/objects/common-objects'
ea44f375 9import { VideoCommentObject } from '../../../shared/models/activitypub/objects/video-comment-object'
bf1f6508 10import { VideoComment } from '../../../shared/models/videos/video-comment.model'
f7cc67b4 11import { actorNameAlphabet } from '../../helpers/custom-validators/activitypub/actor'
444c0a0e 12import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
f7cc67b4 13import { regexpCapture } from '../../helpers/regexp'
444c0a0e 14import { CONSTRAINTS_FIELDS, WEBSERVER } from '../../initializers/constants'
453e83ea
C
15import {
16 MComment,
b5fecbf4 17 MCommentAP,
1ca9f7c3 18 MCommentFormattable,
453e83ea
C
19 MCommentId,
20 MCommentOwner,
21 MCommentOwnerReplyVideoLight,
22 MCommentOwnerVideo,
23 MCommentOwnerVideoFeed,
696d83fd
C
24 MCommentOwnerVideoReply,
25 MVideoImmutable
453e83ea 26} from '../../typings/models/video'
444c0a0e 27import { AccountModel } from '../account/account'
8adf0a76 28import { ActorModel, unusedActorAttributesForAPI } from '../activitypub/actor'
444c0a0e
C
29import { buildBlockedAccountSQL, buildLocalAccountIdsIn, getCommentSort, throwIfNotValid } from '../utils'
30import { VideoModel } from './video'
31import { VideoChannelModel } from './video-channel'
6d852470 32
bf1f6508 33enum ScopeNames {
ea44f375 34 WITH_ACCOUNT = 'WITH_ACCOUNT',
8adf0a76 35 WITH_ACCOUNT_FOR_API = 'WITH_ACCOUNT_FOR_API',
4635f59d 36 WITH_IN_REPLY_TO = 'WITH_IN_REPLY_TO',
da854ddd 37 WITH_VIDEO = 'WITH_VIDEO',
4635f59d 38 ATTRIBUTES_FOR_API = 'ATTRIBUTES_FOR_API'
bf1f6508
C
39}
40
3acc5084 41@Scopes(() => ({
696d83fd 42 [ScopeNames.ATTRIBUTES_FOR_API]: (blockerAccountIds: number[]) => {
7ad9b984
C
43 return {
44 attributes: {
45 include: [
46 [
47 Sequelize.literal(
48 '(' +
696d83fd 49 'WITH "blocklist" AS (' + buildBlockedAccountSQL(blockerAccountIds) + ')' +
7ad9b984
C
50 'SELECT COUNT("replies"."id") - (' +
51 'SELECT COUNT("replies"."id") ' +
52 'FROM "videoComment" AS "replies" ' +
53 'WHERE "replies"."originCommentId" = "VideoCommentModel"."id" ' +
54 'AND "accountId" IN (SELECT "id" FROM "blocklist")' +
55 ')' +
56 'FROM "videoComment" AS "replies" ' +
57 'WHERE "replies"."originCommentId" = "VideoCommentModel"."id" ' +
58 'AND "accountId" NOT IN (SELECT "id" FROM "blocklist")' +
59 ')'
60 ),
61 'totalReplies'
5b0413dd
RK
62 ],
63 [
64 Sequelize.literal(
65 '(' +
66 'SELECT COUNT("replies"."id") ' +
67 'FROM "videoComment" AS "replies" ' +
562724a1
C
68 'INNER JOIN "video" ON "video"."id" = "replies"."videoId" ' +
69 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
5b0413dd 70 'WHERE "replies"."originCommentId" = "VideoCommentModel"."id" ' +
562724a1 71 'AND "replies"."accountId" = "videoChannel"."accountId"' +
5b0413dd
RK
72 ')'
73 ),
74 'totalRepliesFromVideoAuthor'
7ad9b984 75 ]
4635f59d 76 ]
7ad9b984 77 }
3acc5084 78 } as FindOptions
4635f59d 79 },
d3ea8975 80 [ScopeNames.WITH_ACCOUNT]: {
bf1f6508 81 include: [
4635f59d 82 {
453e83ea 83 model: AccountModel
4635f59d 84 }
3acc5084 85 ]
ea44f375 86 },
8adf0a76
C
87 [ScopeNames.WITH_ACCOUNT_FOR_API]: {
88 include: [
89 {
90 model: AccountModel.unscoped(),
91 include: [
92 {
93 attributes: {
94 exclude: unusedActorAttributesForAPI
95 },
96 model: ActorModel, // Default scope includes avatar and server
97 required: true
98 }
99 ]
100 }
101 ]
102 },
ea44f375
C
103 [ScopeNames.WITH_IN_REPLY_TO]: {
104 include: [
105 {
3acc5084 106 model: VideoCommentModel,
da854ddd
C
107 as: 'InReplyToVideoComment'
108 }
109 ]
110 },
111 [ScopeNames.WITH_VIDEO]: {
112 include: [
113 {
3acc5084 114 model: VideoModel,
4cb6d457
C
115 required: true,
116 include: [
117 {
453e83ea 118 model: VideoChannelModel,
4cb6d457
C
119 required: true,
120 include: [
121 {
3acc5084 122 model: AccountModel,
453e83ea 123 required: true
4cb6d457
C
124 }
125 ]
126 }
127 ]
ea44f375 128 }
3acc5084 129 ]
bf1f6508 130 }
3acc5084 131}))
6d852470
C
132@Table({
133 tableName: 'videoComment',
134 indexes: [
135 {
136 fields: [ 'videoId' ]
bf1f6508
C
137 },
138 {
139 fields: [ 'videoId', 'originCommentId' ]
0776d83f
C
140 },
141 {
142 fields: [ 'url' ],
143 unique: true
8cd72bd3
C
144 },
145 {
146 fields: [ 'accountId' ]
b84d4c80
C
147 },
148 {
149 fields: [
150 { name: 'createdAt', order: 'DESC' }
151 ]
6d852470
C
152 }
153 ]
154})
155export class VideoCommentModel extends Model<VideoCommentModel> {
156 @CreatedAt
157 createdAt: Date
158
159 @UpdatedAt
160 updatedAt: Date
161
69222afa
JM
162 @AllowNull(true)
163 @Column(DataType.DATE)
164 deletedAt: Date
165
6d852470
C
166 @AllowNull(false)
167 @Is('VideoCommentUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
168 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.URL.max))
169 url: string
170
171 @AllowNull(false)
172 @Column(DataType.TEXT)
173 text: string
174
175 @ForeignKey(() => VideoCommentModel)
176 @Column
177 originCommentId: number
178
179 @BelongsTo(() => VideoCommentModel, {
180 foreignKey: {
db799da3 181 name: 'originCommentId',
6d852470
C
182 allowNull: true
183 },
db799da3 184 as: 'OriginVideoComment',
6d852470
C
185 onDelete: 'CASCADE'
186 })
187 OriginVideoComment: VideoCommentModel
188
189 @ForeignKey(() => VideoCommentModel)
190 @Column
191 inReplyToCommentId: number
192
193 @BelongsTo(() => VideoCommentModel, {
194 foreignKey: {
db799da3 195 name: 'inReplyToCommentId',
6d852470
C
196 allowNull: true
197 },
da854ddd 198 as: 'InReplyToVideoComment',
6d852470
C
199 onDelete: 'CASCADE'
200 })
c1e791ba 201 InReplyToVideoComment: VideoCommentModel | null
6d852470
C
202
203 @ForeignKey(() => VideoModel)
204 @Column
205 videoId: number
206
207 @BelongsTo(() => VideoModel, {
208 foreignKey: {
209 allowNull: false
210 },
211 onDelete: 'CASCADE'
212 })
213 Video: VideoModel
214
d3ea8975 215 @ForeignKey(() => AccountModel)
6d852470 216 @Column
d3ea8975 217 accountId: number
6d852470 218
d3ea8975 219 @BelongsTo(() => AccountModel, {
6d852470 220 foreignKey: {
69222afa 221 allowNull: true
6d852470
C
222 },
223 onDelete: 'CASCADE'
224 })
d3ea8975 225 Account: AccountModel
6d852470 226
453e83ea 227 static loadById (id: number, t?: Transaction): Bluebird<MComment> {
1735c825 228 const query: FindOptions = {
bf1f6508
C
229 where: {
230 id
231 }
232 }
233
234 if (t !== undefined) query.transaction = t
235
236 return VideoCommentModel.findOne(query)
237 }
238
453e83ea 239 static loadByIdAndPopulateVideoAndAccountAndReply (id: number, t?: Transaction): Bluebird<MCommentOwnerVideoReply> {
1735c825 240 const query: FindOptions = {
da854ddd
C
241 where: {
242 id
243 }
244 }
245
246 if (t !== undefined) query.transaction = t
247
248 return VideoCommentModel
249 .scope([ ScopeNames.WITH_VIDEO, ScopeNames.WITH_ACCOUNT, ScopeNames.WITH_IN_REPLY_TO ])
250 .findOne(query)
251 }
252
453e83ea 253 static loadByUrlAndPopulateAccountAndVideo (url: string, t?: Transaction): Bluebird<MCommentOwnerVideo> {
1735c825 254 const query: FindOptions = {
6d852470
C
255 where: {
256 url
257 }
258 }
259
260 if (t !== undefined) query.transaction = t
261
511765c9 262 return VideoCommentModel.scope([ ScopeNames.WITH_ACCOUNT, ScopeNames.WITH_VIDEO ]).findOne(query)
6d852470 263 }
bf1f6508 264
453e83ea 265 static loadByUrlAndPopulateReplyAndVideoUrlAndAccount (url: string, t?: Transaction): Bluebird<MCommentOwnerReplyVideoLight> {
1735c825 266 const query: FindOptions = {
4cb6d457
C
267 where: {
268 url
6b9c966f
C
269 },
270 include: [
271 {
272 attributes: [ 'id', 'url' ],
273 model: VideoModel.unscoped()
274 }
275 ]
4cb6d457
C
276 }
277
278 if (t !== undefined) query.transaction = t
279
6b9c966f 280 return VideoCommentModel.scope([ ScopeNames.WITH_IN_REPLY_TO, ScopeNames.WITH_ACCOUNT ]).findOne(query)
4cb6d457
C
281 }
282
b4055e1c 283 static async listThreadsForApi (parameters: {
a1587156 284 videoId: number
696d83fd 285 isVideoOwned: boolean
a1587156
C
286 start: number
287 count: number
288 sort: string
453e83ea 289 user?: MUserAccountId
b4055e1c 290 }) {
696d83fd 291 const { videoId, isVideoOwned, start, count, sort, user } = parameters
b4055e1c 292
696d83fd 293 const blockerAccountIds = await VideoCommentModel.buildBlockerAccountIds({ videoId, user, isVideoOwned })
7ad9b984 294
bf1f6508
C
295 const query = {
296 offset: start,
297 limit: count,
c1125bca 298 order: getCommentSort(sort),
bf1f6508 299 where: {
8adf0a76
C
300 [Op.and]: [
301 {
302 videoId
303 },
304 {
305 inReplyToCommentId: null
306 },
307 {
308 [Op.or]: [
309 {
310 accountId: {
311 [Op.notIn]: Sequelize.literal(
696d83fd 312 '(' + buildBlockedAccountSQL(blockerAccountIds) + ')'
8adf0a76
C
313 )
314 }
315 },
316 {
317 accountId: null
318 }
319 ]
320 }
321 ]
bf1f6508
C
322 }
323 }
324
3acc5084 325 const scopes: (string | ScopeOptions)[] = [
8adf0a76 326 ScopeNames.WITH_ACCOUNT_FOR_API,
7ad9b984 327 {
696d83fd 328 method: [ ScopeNames.ATTRIBUTES_FOR_API, blockerAccountIds ]
7ad9b984
C
329 }
330 ]
331
bf1f6508 332 return VideoCommentModel
7ad9b984 333 .scope(scopes)
bf1f6508
C
334 .findAndCountAll(query)
335 .then(({ rows, count }) => {
336 return { total: count, data: rows }
337 })
338 }
339
b4055e1c 340 static async listThreadCommentsForApi (parameters: {
a1587156 341 videoId: number
696d83fd 342 isVideoOwned: boolean
a1587156 343 threadId: number
453e83ea 344 user?: MUserAccountId
b4055e1c 345 }) {
696d83fd 346 const { videoId, threadId, user, isVideoOwned } = parameters
b4055e1c 347
696d83fd 348 const blockerAccountIds = await VideoCommentModel.buildBlockerAccountIds({ videoId, user, isVideoOwned })
7ad9b984 349
bf1f6508 350 const query = {
1735c825 351 order: [ [ 'createdAt', 'ASC' ], [ 'updatedAt', 'ASC' ] ] as Order,
bf1f6508
C
352 where: {
353 videoId,
a1587156 354 [Op.or]: [
bf1f6508
C
355 { id: threadId },
356 { originCommentId: threadId }
7ad9b984
C
357 ],
358 accountId: {
1735c825 359 [Op.notIn]: Sequelize.literal(
696d83fd 360 '(' + buildBlockedAccountSQL(blockerAccountIds) + ')'
7ad9b984
C
361 )
362 }
bf1f6508
C
363 }
364 }
365
7ad9b984 366 const scopes: any[] = [
8adf0a76 367 ScopeNames.WITH_ACCOUNT_FOR_API,
7ad9b984 368 {
696d83fd 369 method: [ ScopeNames.ATTRIBUTES_FOR_API, blockerAccountIds ]
7ad9b984
C
370 }
371 ]
372
bf1f6508 373 return VideoCommentModel
7ad9b984 374 .scope(scopes)
bf1f6508
C
375 .findAndCountAll(query)
376 .then(({ rows, count }) => {
377 return { total: count, data: rows }
378 })
379 }
380
453e83ea 381 static listThreadParentComments (comment: MCommentId, t: Transaction, order: 'ASC' | 'DESC' = 'ASC'): Bluebird<MCommentOwner[]> {
d7e70384 382 const query = {
1735c825 383 order: [ [ 'createdAt', order ] ] as Order,
d7e70384 384 where: {
d7e70384 385 id: {
a1587156 386 [Op.in]: Sequelize.literal('(' +
a3cffab4 387 'WITH RECURSIVE children (id, "inReplyToCommentId") AS ( ' +
f7cc67b4
C
388 `SELECT id, "inReplyToCommentId" FROM "videoComment" WHERE id = ${comment.id} ` +
389 'UNION ' +
390 'SELECT "parent"."id", "parent"."inReplyToCommentId" FROM "videoComment" "parent" ' +
391 'INNER JOIN "children" ON "children"."inReplyToCommentId" = "parent"."id"' +
392 ') ' +
a3cffab4
C
393 'SELECT id FROM children' +
394 ')'),
a1587156 395 [Op.ne]: comment.id
d7e70384
C
396 }
397 },
398 transaction: t
399 }
400
401 return VideoCommentModel
402 .scope([ ScopeNames.WITH_ACCOUNT ])
403 .findAll(query)
404 }
405
696d83fd
C
406 static async listAndCountByVideoForAP (video: MVideoImmutable, start: number, count: number, t?: Transaction) {
407 const blockerAccountIds = await VideoCommentModel.buildBlockerAccountIds({
408 videoId: video.id,
409 isVideoOwned: video.isOwned()
410 })
411
8fffe21a 412 const query = {
696d83fd 413 order: [ [ 'createdAt', 'ASC' ] ] as Order,
9a4a9b6c
C
414 offset: start,
415 limit: count,
8fffe21a 416 where: {
696d83fd
C
417 videoId: video.id,
418 accountId: {
419 [Op.notIn]: Sequelize.literal(
420 '(' + buildBlockedAccountSQL(blockerAccountIds) + ')'
421 )
422 }
8fffe21a
C
423 },
424 transaction: t
425 }
426
453e83ea 427 return VideoCommentModel.findAndCountAll<MComment>(query)
8fffe21a
C
428 }
429
1df8a4d7
C
430 static async listForFeed (start: number, count: number, videoId?: number): Promise<MCommentOwnerVideoFeed[]> {
431 const serverActor = await getServerActor()
432
fe3a55b0 433 const query = {
1735c825 434 order: [ [ 'createdAt', 'DESC' ] ] as Order,
9a4a9b6c
C
435 offset: start,
436 limit: count,
193272b8 437 where: {
1df8a4d7
C
438 deletedAt: null,
439 accountId: {
440 [Op.notIn]: Sequelize.literal(
696d83fd 441 '(' + buildBlockedAccountSQL([ serverActor.Account.id, '"Video->VideoChannel"."accountId"' ]) + ')'
1df8a4d7
C
442 )
443 }
193272b8 444 },
fe3a55b0
C
445 include: [
446 {
4dae00e6 447 attributes: [ 'name', 'uuid' ],
fe3a55b0 448 model: VideoModel.unscoped(),
68b6fd21
C
449 required: true,
450 where: {
451 privacy: VideoPrivacy.PUBLIC
696d83fd
C
452 },
453 include: [
454 {
455 attributes: [ 'accountId' ],
456 model: VideoChannelModel.unscoped(),
457 required: true
458 }
459 ]
fe3a55b0
C
460 }
461 ]
462 }
463
464 if (videoId) query.where['videoId'] = videoId
465
466 return VideoCommentModel
467 .scope([ ScopeNames.WITH_ACCOUNT ])
468 .findAll(query)
469 }
470
444c0a0e
C
471 static listForBulkDelete (ofAccount: MAccount, filter: { onVideosOfAccount?: MAccountId } = {}) {
472 const accountWhere = filter.onVideosOfAccount
473 ? { id: filter.onVideosOfAccount.id }
474 : {}
475
476 const query = {
477 limit: 1000,
478 where: {
479 deletedAt: null,
480 accountId: ofAccount.id
481 },
482 include: [
483 {
484 model: VideoModel,
485 required: true,
486 include: [
487 {
488 model: VideoChannelModel,
489 required: true,
490 include: [
491 {
492 model: AccountModel,
493 required: true,
494 where: accountWhere
495 }
496 ]
497 }
498 ]
499 }
500 ]
501 }
502
503 return VideoCommentModel
504 .scope([ ScopeNames.WITH_ACCOUNT ])
505 .findAll(query)
506 }
507
09cababd
C
508 static async getStats () {
509 const totalLocalVideoComments = await VideoCommentModel.count({
510 include: [
511 {
512 model: AccountModel,
513 required: true,
514 include: [
515 {
516 model: ActorModel,
517 required: true,
518 where: {
519 serverId: null
520 }
521 }
522 ]
523 }
524 ]
525 })
526 const totalVideoComments = await VideoCommentModel.count()
527
528 return {
529 totalLocalVideoComments,
530 totalVideoComments
531 }
532 }
533
2ba92871
C
534 static cleanOldCommentsOf (videoId: number, beforeUpdatedAt: Date) {
535 const query = {
536 where: {
537 updatedAt: {
1735c825 538 [Op.lt]: beforeUpdatedAt
2ba92871 539 },
6b9c966f
C
540 videoId,
541 accountId: {
542 [Op.notIn]: buildLocalAccountIdsIn()
444c0a0e
C
543 },
544 // Do not delete Tombstones
545 deletedAt: null
6b9c966f 546 }
2ba92871
C
547 }
548
549 return VideoCommentModel.destroy(query)
550 }
551
cef534ed
C
552 getCommentStaticPath () {
553 return this.Video.getWatchStaticPath() + ';threadId=' + this.getThreadId()
554 }
555
d7e70384
C
556 getThreadId (): number {
557 return this.originCommentId || this.id
558 }
559
4cb6d457 560 isOwned () {
69222afa
JM
561 if (!this.Account) {
562 return false
563 }
564
4cb6d457
C
565 return this.Account.isOwned()
566 }
567
69222afa 568 isDeleted () {
a1587156 569 return this.deletedAt !== null
69222afa
JM
570 }
571
f7cc67b4 572 extractMentions () {
1f6d57e3 573 let result: string[] = []
f7cc67b4
C
574
575 const localMention = `@(${actorNameAlphabet}+)`
6dd9de95 576 const remoteMention = `${localMention}@${WEBSERVER.HOST}`
f7cc67b4 577
1f6d57e3
C
578 const mentionRegex = this.isOwned()
579 ? '(?:(?:' + remoteMention + ')|(?:' + localMention + '))' // Include local mentions?
580 : '(?:' + remoteMention + ')'
581
582 const firstMentionRegex = new RegExp(`^${mentionRegex} `, 'g')
583 const endMentionRegex = new RegExp(` ${mentionRegex}$`, 'g')
f7cc67b4 584 const remoteMentionsRegex = new RegExp(' ' + remoteMention + ' ', 'g')
f7cc67b4 585
1f6d57e3
C
586 result = result.concat(
587 regexpCapture(this.text, firstMentionRegex)
588 .map(([ , username1, username2 ]) => username1 || username2),
f7cc67b4 589
1f6d57e3
C
590 regexpCapture(this.text, endMentionRegex)
591 .map(([ , username1, username2 ]) => username1 || username2),
592
593 regexpCapture(this.text, remoteMentionsRegex)
594 .map(([ , username ]) => username)
595 )
f7cc67b4 596
1f6d57e3
C
597 // Include local mentions
598 if (this.isOwned()) {
599 const localMentionsRegex = new RegExp(' ' + localMention + ' ', 'g')
f7cc67b4 600
1f6d57e3
C
601 result = result.concat(
602 regexpCapture(this.text, localMentionsRegex)
603 .map(([ , username ]) => username)
f7cc67b4 604 )
1f6d57e3
C
605 }
606
607 return uniq(result)
f7cc67b4
C
608 }
609
1ca9f7c3 610 toFormattedJSON (this: MCommentFormattable) {
bf1f6508
C
611 return {
612 id: this.id,
613 url: this.url,
614 text: this.text,
615 threadId: this.originCommentId || this.id,
d50acfab 616 inReplyToCommentId: this.inReplyToCommentId || null,
bf1f6508
C
617 videoId: this.videoId,
618 createdAt: this.createdAt,
d3ea8975 619 updatedAt: this.updatedAt,
69222afa
JM
620 deletedAt: this.deletedAt,
621 isDeleted: this.isDeleted(),
5b0413dd 622 totalRepliesFromVideoAuthor: this.get('totalRepliesFromVideoAuthor') || 0,
4635f59d 623 totalReplies: this.get('totalReplies') || 0,
69222afa 624 account: this.Account ? this.Account.toFormattedJSON() : null
bf1f6508
C
625 } as VideoComment
626 }
ea44f375 627
69222afa 628 toActivityPubObject (this: MCommentAP, threadParentComments: MCommentOwner[]): VideoCommentObject | ActivityTombstoneObject {
b5206dfc
JM
629 let inReplyTo: string
630 // New thread, so in AS we reply to the video
631 if (this.inReplyToCommentId === null) {
632 inReplyTo = this.Video.url
633 } else {
634 inReplyTo = this.InReplyToVideoComment.url
635 }
636
69222afa
JM
637 if (this.isDeleted()) {
638 return {
639 id: this.url,
640 type: 'Tombstone',
641 formerType: 'Note',
b5206dfc 642 inReplyTo,
69222afa
JM
643 published: this.createdAt.toISOString(),
644 updated: this.updatedAt.toISOString(),
645 deleted: this.deletedAt.toISOString()
646 }
647 }
648
d7e70384
C
649 const tag: ActivityTagObject[] = []
650 for (const parentComment of threadParentComments) {
b5206dfc
JM
651 if (!parentComment.Account) continue
652
d7e70384
C
653 const actor = parentComment.Account.Actor
654
655 tag.push({
656 type: 'Mention',
657 href: actor.url,
658 name: `@${actor.preferredUsername}@${actor.getHost()}`
659 })
660 }
661
ea44f375
C
662 return {
663 type: 'Note' as 'Note',
664 id: this.url,
665 content: this.text,
666 inReplyTo,
da854ddd 667 updated: this.updatedAt.toISOString(),
ea44f375 668 published: this.createdAt.toISOString(),
da854ddd 669 url: this.url,
d7e70384
C
670 attributedTo: this.Account.Actor.url,
671 tag
ea44f375
C
672 }
673 }
696d83fd
C
674
675 private static async buildBlockerAccountIds (options: {
676 videoId: number
677 isVideoOwned: boolean
678 user?: MUserAccountId
679 }) {
680 const { videoId, user, isVideoOwned } = options
681
682 const serverActor = await getServerActor()
683 const blockerAccountIds = [ serverActor.Account.id ]
684
685 if (user) blockerAccountIds.push(user.Account.id)
686
687 if (isVideoOwned) {
688 const videoOwnerAccount = await AccountModel.loadAccountIdFromVideo(videoId)
689 blockerAccountIds.push(videoOwnerAccount.id)
690 }
691
692 return blockerAccountIds
693 }
6d852470 694}