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