]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/lib/activitypub/send/utils.ts
Process slow followers in unicast job queue
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / send / utils.ts
... / ...
CommitLineData
1import { Transaction } from 'sequelize'
2import { ActorFollowHealthCache } from '@server/lib/actor-follow-health-cache'
3import { getServerActor } from '@server/models/application/application'
4import { ContextType } from '@shared/models/activitypub/context'
5import { Activity, ActivityAudience } from '../../../../shared/models/activitypub'
6import { afterCommitIfTransaction } from '../../../helpers/database-utils'
7import { logger } from '../../../helpers/logger'
8import { ActorModel } from '../../../models/actor/actor'
9import { ActorFollowModel } from '../../../models/actor/actor-follow'
10import { MActor, MActorId, MActorLight, MActorWithInboxes, MVideoAccountLight, MVideoId, MVideoImmutable } from '../../../types/models'
11import { JobQueue } from '../../job-queue'
12import { getActorsInvolvedInVideo, getAudienceFromFollowersOf, getRemoteVideoAudience } from '../audience'
13
14async function sendVideoRelatedActivity (activityBuilder: (audience: ActivityAudience) => Activity, options: {
15 byActor: MActorLight
16 video: MVideoImmutable | MVideoAccountLight
17 transaction?: Transaction
18 contextType?: ContextType
19}) {
20 const { byActor, video, transaction, contextType } = options
21
22 const actorsInvolvedInVideo = await getActorsInvolvedInVideo(video, transaction)
23
24 // Send to origin
25 if (video.isOwned() === false) {
26 let accountActor: MActorLight = (video as MVideoAccountLight).VideoChannel?.Account?.Actor
27
28 if (!accountActor) accountActor = await ActorModel.loadAccountActorByVideoId(video.id, transaction)
29
30 const audience = getRemoteVideoAudience(accountActor, actorsInvolvedInVideo)
31 const activity = activityBuilder(audience)
32
33 return afterCommitIfTransaction(transaction, () => {
34 return unicastTo(activity, byActor, accountActor.getSharedInbox(), contextType)
35 })
36 }
37
38 // Send to followers
39 const audience = getAudienceFromFollowersOf(actorsInvolvedInVideo)
40 const activity = activityBuilder(audience)
41
42 const actorsException = [ byActor ]
43
44 return broadcastToFollowers(activity, byActor, actorsInvolvedInVideo, transaction, actorsException, contextType)
45}
46
47async function forwardVideoRelatedActivity (
48 activity: Activity,
49 t: Transaction,
50 followersException: MActorWithInboxes[],
51 video: MVideoId
52) {
53 // Mastodon does not add our announces in audience, so we forward to them manually
54 const additionalActors = await getActorsInvolvedInVideo(video, t)
55 const additionalFollowerUrls = additionalActors.map(a => a.followersUrl)
56
57 return forwardActivity(activity, t, followersException, additionalFollowerUrls)
58}
59
60async function forwardActivity (
61 activity: Activity,
62 t: Transaction,
63 followersException: MActorWithInboxes[] = [],
64 additionalFollowerUrls: string[] = []
65) {
66 logger.info('Forwarding activity %s.', activity.id)
67
68 const to = activity.to || []
69 const cc = activity.cc || []
70
71 const followersUrls = additionalFollowerUrls
72 for (const dest of to.concat(cc)) {
73 if (dest.endsWith('/followers')) {
74 followersUrls.push(dest)
75 }
76 }
77
78 const toActorFollowers = await ActorModel.listByFollowersUrls(followersUrls, t)
79 const uris = await computeFollowerUris(toActorFollowers, followersException, t)
80
81 if (uris.length === 0) {
82 logger.info('0 followers for %s, no forwarding.', toActorFollowers.map(a => a.id).join(', '))
83 return undefined
84 }
85
86 logger.debug('Creating forwarding job.', { uris })
87
88 const payload = {
89 uris,
90 body: activity
91 }
92 return afterCommitIfTransaction(t, () => JobQueue.Instance.createJob({ type: 'activitypub-http-broadcast', payload }))
93}
94
95async function broadcastToFollowers (
96 data: any,
97 byActor: MActorId,
98 toFollowersOf: MActorId[],
99 t: Transaction,
100 actorsException: MActorWithInboxes[] = [],
101 contextType?: ContextType
102) {
103 const uris = await computeFollowerUris(toFollowersOf, actorsException, t)
104
105 return afterCommitIfTransaction(t, () => broadcastTo(uris, data, byActor, contextType))
106}
107
108async function broadcastToActors (
109 data: any,
110 byActor: MActorId,
111 toActors: MActor[],
112 t?: Transaction,
113 actorsException: MActorWithInboxes[] = [],
114 contextType?: ContextType
115) {
116 const uris = await computeUris(toActors, actorsException)
117 return afterCommitIfTransaction(t, () => broadcastTo(uris, data, byActor, contextType))
118}
119
120function broadcastTo (uris: string[], data: any, byActor: MActorId, contextType?: ContextType) {
121 if (uris.length === 0) return undefined
122
123 const broadcastUris: string[] = []
124 const unicastUris: string[] = []
125
126 // Bad URIs could be slow to respond, prefer to process them in a dedicated queue
127 for (const uri of uris) {
128 if (ActorFollowHealthCache.Instance.isBadInbox(uri)) {
129 unicastUris.push(uri)
130 } else {
131 broadcastUris.push(uri)
132 }
133 }
134
135 logger.debug('Creating broadcast job.', { broadcastUris, unicastUris })
136
137 if (broadcastUris.length !== 0) {
138 const payload = {
139 uris: broadcastUris,
140 signatureActorId: byActor.id,
141 body: data,
142 contextType
143 }
144
145 JobQueue.Instance.createJob({ type: 'activitypub-http-broadcast', payload })
146 }
147
148 for (const unicastUri of unicastUris) {
149 const payload = {
150 uri: unicastUri,
151 signatureActorId: byActor.id,
152 body: data,
153 contextType
154 }
155
156 JobQueue.Instance.createJob({ type: 'activitypub-http-unicast', payload })
157 }
158}
159
160function unicastTo (data: any, byActor: MActorId, toActorUrl: string, contextType?: ContextType) {
161 logger.debug('Creating unicast job.', { uri: toActorUrl })
162
163 const payload = {
164 uri: toActorUrl,
165 signatureActorId: byActor.id,
166 body: data,
167 contextType
168 }
169
170 JobQueue.Instance.createJob({ type: 'activitypub-http-unicast', payload })
171}
172
173// ---------------------------------------------------------------------------
174
175export {
176 broadcastToFollowers,
177 unicastTo,
178 forwardActivity,
179 broadcastToActors,
180 forwardVideoRelatedActivity,
181 sendVideoRelatedActivity
182}
183
184// ---------------------------------------------------------------------------
185
186async function computeFollowerUris (toFollowersOf: MActorId[], actorsException: MActorWithInboxes[], t: Transaction) {
187 const toActorFollowerIds = toFollowersOf.map(a => a.id)
188
189 const result = await ActorFollowModel.listAcceptedFollowerSharedInboxUrls(toActorFollowerIds, t)
190 const sharedInboxesException = await buildSharedInboxesException(actorsException)
191
192 return result.data.filter(sharedInbox => sharedInboxesException.includes(sharedInbox) === false)
193}
194
195async function computeUris (toActors: MActor[], actorsException: MActorWithInboxes[] = []) {
196 const serverActor = await getServerActor()
197 const targetUrls = toActors
198 .filter(a => a.id !== serverActor.id) // Don't send to ourselves
199 .map(a => a.getSharedInbox())
200
201 const toActorSharedInboxesSet = new Set(targetUrls)
202
203 const sharedInboxesException = await buildSharedInboxesException(actorsException)
204 return Array.from(toActorSharedInboxesSet)
205 .filter(sharedInbox => sharedInboxesException.includes(sharedInbox) === false)
206}
207
208async function buildSharedInboxesException (actorsException: MActorWithInboxes[]) {
209 const serverActor = await getServerActor()
210
211 return actorsException
212 .map(f => f.getSharedInbox())
213 .concat([ serverActor.sharedInboxUrl ])
214}