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