123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- import { Transaction } from 'sequelize'
- import { Activity, ActivityAudience } from '../../../../shared/models/activitypub'
- import { logger } from '../../../helpers/logger'
- import { ActorModel } from '../../../models/activitypub/actor'
- import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
- import { JobQueue } from '../../job-queue'
- import { VideoModel } from '../../../models/video/video'
- import { getActorsInvolvedInVideo, getAudienceFromFollowersOf, getRemoteVideoAudience } from '../audience'
- import { getServerActor } from '../../../helpers/utils'
- async function sendVideoRelatedActivity (activityBuilder: (audience: ActivityAudience) => Activity, options: {
- byActor: ActorModel,
- video: VideoModel,
- transaction?: Transaction
- }) {
- const actorsInvolvedInVideo = await getActorsInvolvedInVideo(options.video, options.transaction)
- // Send to origin
- if (options.video.isOwned() === false) {
- const audience = getRemoteVideoAudience(options.video, actorsInvolvedInVideo)
- const activity = activityBuilder(audience)
- return unicastTo(activity, options.byActor, options.video.VideoChannel.Account.Actor.sharedInboxUrl)
- }
- // Send to followers
- const audience = getAudienceFromFollowersOf(actorsInvolvedInVideo)
- const activity = activityBuilder(audience)
- const actorsException = [ options.byActor ]
- return broadcastToFollowers(activity, options.byActor, actorsInvolvedInVideo, options.transaction, actorsException)
- }
- async function forwardVideoRelatedActivity (
- activity: Activity,
- t: Transaction,
- followersException: ActorModel[] = [],
- video: VideoModel
- ) {
- // Mastodon does not add our announces in audience, so we forward to them manually
- const additionalActors = await getActorsInvolvedInVideo(video, t)
- const additionalFollowerUrls = additionalActors.map(a => a.followersUrl)
- return forwardActivity(activity, t, followersException, additionalFollowerUrls)
- }
- async function forwardActivity (
- activity: Activity,
- t: Transaction,
- followersException: ActorModel[] = [],
- additionalFollowerUrls: string[] = []
- ) {
- logger.info('Forwarding activity %s.', activity.id)
- const to = activity.to || []
- const cc = activity.cc || []
- const followersUrls = additionalFollowerUrls
- for (const dest of to.concat(cc)) {
- if (dest.endsWith('/followers')) {
- followersUrls.push(dest)
- }
- }
- const toActorFollowers = await ActorModel.listByFollowersUrls(followersUrls, t)
- const uris = await computeFollowerUris(toActorFollowers, followersException, t)
- if (uris.length === 0) {
- logger.info('0 followers for %s, no forwarding.', toActorFollowers.map(a => a.id).join(', '))
- return undefined
- }
- logger.debug('Creating forwarding job.', { uris })
- const payload = {
- uris,
- body: activity
- }
- return JobQueue.Instance.createJob({ type: 'activitypub-http-broadcast', payload })
- }
- async function broadcastToFollowers (
- data: any,
- byActor: ActorModel,
- toFollowersOf: ActorModel[],
- t: Transaction,
- actorsException: ActorModel[] = []
- ) {
- const uris = await computeFollowerUris(toFollowersOf, actorsException, t)
- return broadcastTo(uris, data, byActor)
- }
- async function broadcastToActors (
- data: any,
- byActor: ActorModel,
- toActors: ActorModel[],
- actorsException: ActorModel[] = []
- ) {
- const uris = await computeUris(toActors, actorsException)
- return broadcastTo(uris, data, byActor)
- }
- async function broadcastTo (uris: string[], data: any, byActor: ActorModel) {
- if (uris.length === 0) return undefined
- logger.debug('Creating broadcast job.', { uris })
- const payload = {
- uris,
- signatureActorId: byActor.id,
- body: data
- }
- return JobQueue.Instance.createJob({ type: 'activitypub-http-broadcast', payload })
- }
- async function unicastTo (data: any, byActor: ActorModel, toActorUrl: string) {
- logger.debug('Creating unicast job.', { uri: toActorUrl })
- const payload = {
- uri: toActorUrl,
- signatureActorId: byActor.id,
- body: data
- }
- return JobQueue.Instance.createJob({ type: 'activitypub-http-unicast', payload })
- }
- // ---------------------------------------------------------------------------
- export {
- broadcastToFollowers,
- unicastTo,
- forwardActivity,
- broadcastToActors,
- forwardVideoRelatedActivity,
- sendVideoRelatedActivity
- }
- // ---------------------------------------------------------------------------
- async function computeFollowerUris (toFollowersOf: ActorModel[], actorsException: ActorModel[], t: Transaction) {
- const toActorFollowerIds = toFollowersOf.map(a => a.id)
- const result = await ActorFollowModel.listAcceptedFollowerSharedInboxUrls(toActorFollowerIds, t)
- const sharedInboxesException = await buildSharedInboxesException(actorsException)
- return result.data.filter(sharedInbox => sharedInboxesException.indexOf(sharedInbox) === -1)
- }
- async function computeUris (toActors: ActorModel[], actorsException: ActorModel[] = []) {
- const serverActor = await getServerActor()
- const targetUrls = toActors
- .filter(a => a.id !== serverActor.id) // Don't send to ourselves
- .map(a => a.sharedInboxUrl || a.inboxUrl)
- const toActorSharedInboxesSet = new Set(targetUrls)
- const sharedInboxesException = await buildSharedInboxesException(actorsException)
- return Array.from(toActorSharedInboxesSet)
- .filter(sharedInbox => sharedInboxesException.indexOf(sharedInbox) === -1)
- }
- async function buildSharedInboxesException (actorsException: ActorModel[]) {
- const serverActor = await getServerActor()
- return actorsException
- .map(f => f.sharedInboxUrl || f.inboxUrl)
- .concat([ serverActor.sharedInboxUrl ])
- }
|