1 import { Transaction } from 'sequelize'
2 import { ActivityAudience } from '../../../shared/models/activitypub'
3 import { ACTIVITY_PUB } from '../../initializers/constants'
4 import { ActorModel } from '../../models/activitypub/actor'
5 import { VideoModel } from '../../models/video/video'
6 import { VideoShareModel } from '../../models/video/video-share'
7 import { MActorFollowersUrl, MActorLight, MActorUrl, MCommentOwner, MCommentOwnerVideo, MVideoId } from '../../types/models'
9 function getRemoteVideoAudience (accountActor: MActorUrl, actorsInvolvedInVideo: MActorFollowersUrl[]): ActivityAudience {
11 to: [ accountActor.url ],
12 cc: actorsInvolvedInVideo.map(a => a.followersUrl)
16 function getVideoCommentAudience (
17 videoComment: MCommentOwnerVideo,
18 threadParentComments: MCommentOwner[],
19 actorsInvolvedInVideo: MActorFollowersUrl[],
22 const to = [ ACTIVITY_PUB.PUBLIC ]
23 const cc: string[] = []
25 // Owner of the video we comment
26 if (isOrigin === false) {
27 cc.push(videoComment.Video.VideoChannel.Account.Actor.url)
30 // Followers of the poster
31 cc.push(videoComment.Account.Actor.followersUrl)
33 // Send to actors we reply to
34 for (const parentComment of threadParentComments) {
35 if (parentComment.isDeleted()) continue
37 cc.push(parentComment.Account.Actor.url)
42 cc: cc.concat(actorsInvolvedInVideo.map(a => a.followersUrl))
46 function getAudienceFromFollowersOf (actorsInvolvedInObject: MActorFollowersUrl[]): ActivityAudience {
48 to: [ ACTIVITY_PUB.PUBLIC ].concat(actorsInvolvedInObject.map(a => a.followersUrl)),
53 async function getActorsInvolvedInVideo (video: MVideoId, t: Transaction) {
54 const actors: MActorLight[] = await VideoShareModel.loadActorsByShare(video.id, t)
56 const videoAll = video as VideoModel
58 const videoActor = videoAll.VideoChannel?.Account
59 ? videoAll.VideoChannel.Account.Actor
60 : await ActorModel.loadFromAccountByVideoId(video.id, t)
62 actors.push(videoActor)
67 function getAudience (actorSender: MActorFollowersUrl, isPublic = true) {
68 return buildAudience([ actorSender.followersUrl ], isPublic)
71 function buildAudience (followerUrls: string[], isPublic = true) {
76 to = [ ACTIVITY_PUB.PUBLIC ]
86 function audiencify<T> (object: T, audience: ActivityAudience) {
87 return Object.assign(object, audience)
90 // ---------------------------------------------------------------------------
95 getRemoteVideoAudience,
96 getActorsInvolvedInVideo,
97 getAudienceFromFollowersOf,
99 getVideoCommentAudience