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