2017-11-20 03:43:39 -05:00
|
|
|
import { Transaction } from 'sequelize'
|
2017-11-27 08:44:51 -05:00
|
|
|
import { Activity } from '../../../../shared/models/activitypub/activity'
|
2017-11-20 03:43:39 -05:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { ACTIVITY_PUB, database as db } from '../../../initializers'
|
|
|
|
import { AccountInstance } from '../../../models/account/account-interface'
|
2017-11-27 08:44:51 -05:00
|
|
|
import { VideoChannelInstance } from '../../../models/index'
|
|
|
|
import { VideoInstance } from '../../../models/video/video-interface'
|
2017-11-24 07:41:10 -05:00
|
|
|
import {
|
|
|
|
activitypubHttpJobScheduler,
|
|
|
|
ActivityPubHttpPayload
|
|
|
|
} from '../../jobs/activitypub-http-job-scheduler/activitypub-http-job-scheduler'
|
|
|
|
|
|
|
|
async function forwardActivity (
|
|
|
|
activity: Activity,
|
|
|
|
t: Transaction,
|
|
|
|
followersException: AccountInstance[] = []
|
|
|
|
) {
|
|
|
|
const to = activity.to || []
|
|
|
|
const cc = activity.cc || []
|
|
|
|
|
|
|
|
const followersUrls: string[] = []
|
|
|
|
for (const dest of to.concat(cc)) {
|
|
|
|
if (dest.endsWith('/followers')) {
|
|
|
|
followersUrls.push(dest)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-30 05:31:15 -05:00
|
|
|
const toAccountFollowers = await db.Account.listByFollowersUrls(followersUrls, t)
|
|
|
|
const uris = await computeFollowerUris(toAccountFollowers, followersException, t)
|
2017-11-24 07:41:10 -05:00
|
|
|
|
|
|
|
if (uris.length === 0) {
|
|
|
|
logger.info('0 followers for %s, no forwarding.', toAccountFollowers.map(a => a.id).join(', '))
|
2017-11-24 09:00:10 -05:00
|
|
|
return undefined
|
2017-11-24 07:41:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
logger.debug('Creating forwarding job.', { uris })
|
|
|
|
|
|
|
|
const jobPayload: ActivityPubHttpPayload = {
|
|
|
|
uris,
|
|
|
|
body: activity
|
|
|
|
}
|
|
|
|
|
|
|
|
return activitypubHttpJobScheduler.createJob(t, 'activitypubHttpBroadcastHandler', jobPayload)
|
|
|
|
}
|
2017-11-20 03:43:39 -05:00
|
|
|
|
2017-11-22 10:25:03 -05:00
|
|
|
async function broadcastToFollowers (
|
|
|
|
data: any,
|
|
|
|
byAccount: AccountInstance,
|
|
|
|
toAccountFollowers: AccountInstance[],
|
|
|
|
t: Transaction,
|
|
|
|
followersException: AccountInstance[] = []
|
|
|
|
) {
|
2017-11-30 05:31:15 -05:00
|
|
|
const uris = await computeFollowerUris(toAccountFollowers, followersException, t)
|
2017-11-24 07:41:10 -05:00
|
|
|
if (uris.length === 0) {
|
|
|
|
logger.info('0 followers for %s, no broadcasting.', toAccountFollowers.map(a => a.id).join(', '))
|
2017-11-24 09:00:10 -05:00
|
|
|
return undefined
|
2017-11-20 03:43:39 -05:00
|
|
|
}
|
|
|
|
|
2017-11-24 07:41:10 -05:00
|
|
|
logger.debug('Creating broadcast job.', { uris })
|
2017-11-22 10:25:03 -05:00
|
|
|
|
2017-11-24 07:41:10 -05:00
|
|
|
const jobPayload: ActivityPubHttpPayload = {
|
2017-11-22 10:25:03 -05:00
|
|
|
uris,
|
2017-11-20 03:43:39 -05:00
|
|
|
signatureAccountId: byAccount.id,
|
|
|
|
body: data
|
|
|
|
}
|
|
|
|
|
|
|
|
return activitypubHttpJobScheduler.createJob(t, 'activitypubHttpBroadcastHandler', jobPayload)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function unicastTo (data: any, byAccount: AccountInstance, toAccountUrl: string, t: Transaction) {
|
2017-11-24 07:41:10 -05:00
|
|
|
logger.debug('Creating unicast job.', { uri: toAccountUrl })
|
|
|
|
|
|
|
|
const jobPayload: ActivityPubHttpPayload = {
|
2017-11-20 03:43:39 -05:00
|
|
|
uris: [ toAccountUrl ],
|
|
|
|
signatureAccountId: byAccount.id,
|
|
|
|
body: data
|
|
|
|
}
|
|
|
|
|
|
|
|
return activitypubHttpJobScheduler.createJob(t, 'activitypubHttpUnicastHandler', jobPayload)
|
|
|
|
}
|
|
|
|
|
2017-11-24 07:41:10 -05:00
|
|
|
function getOriginVideoAudience (video: VideoInstance, accountsInvolvedInVideo: AccountInstance[]) {
|
2017-11-23 08:19:55 -05:00
|
|
|
return {
|
|
|
|
to: [ video.VideoChannel.Account.url ],
|
2017-11-24 07:41:10 -05:00
|
|
|
cc: accountsInvolvedInVideo.map(a => a.followersUrl)
|
2017-11-23 08:19:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-27 08:44:51 -05:00
|
|
|
function getOriginVideoChannelAudience (videoChannel: VideoChannelInstance, accountsInvolved: AccountInstance[]) {
|
|
|
|
return {
|
|
|
|
to: [ videoChannel.Account.url ],
|
|
|
|
cc: accountsInvolved.map(a => a.followersUrl)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getObjectFollowersAudience (accountsInvolvedInObject: AccountInstance[]) {
|
2017-11-23 08:19:55 -05:00
|
|
|
return {
|
2017-11-27 08:44:51 -05:00
|
|
|
to: accountsInvolvedInObject.map(a => a.followersUrl),
|
2017-11-23 08:19:55 -05:00
|
|
|
cc: []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-30 05:31:15 -05:00
|
|
|
async function getAccountsInvolvedInVideo (video: VideoInstance, t: Transaction) {
|
|
|
|
const accountsToForwardView = await db.VideoShare.loadAccountsByShare(video.id, t)
|
2017-11-23 08:19:55 -05:00
|
|
|
accountsToForwardView.push(video.VideoChannel.Account)
|
|
|
|
|
|
|
|
return accountsToForwardView
|
|
|
|
}
|
|
|
|
|
2017-11-30 05:31:15 -05:00
|
|
|
async function getAccountsInvolvedInVideoChannel (videoChannel: VideoChannelInstance, t: Transaction) {
|
|
|
|
const accountsToForwardView = await db.VideoChannelShare.loadAccountsByShare(videoChannel.id, t)
|
2017-11-27 08:44:51 -05:00
|
|
|
accountsToForwardView.push(videoChannel.Account)
|
|
|
|
|
|
|
|
return accountsToForwardView
|
|
|
|
}
|
|
|
|
|
2017-11-30 05:31:15 -05:00
|
|
|
async function getAudience (accountSender: AccountInstance, t: Transaction, isPublic = true) {
|
|
|
|
const followerInboxUrls = await accountSender.getFollowerSharedInboxUrls(t)
|
2017-11-20 03:43:39 -05:00
|
|
|
|
|
|
|
// Thanks Mastodon: https://github.com/tootsuite/mastodon/blob/master/app/lib/activitypub/tag_manager.rb#L47
|
|
|
|
let to = []
|
|
|
|
let cc = []
|
|
|
|
|
|
|
|
if (isPublic) {
|
|
|
|
to = [ ACTIVITY_PUB.PUBLIC ]
|
|
|
|
cc = followerInboxUrls
|
|
|
|
} else { // Unlisted
|
|
|
|
to = followerInboxUrls
|
|
|
|
cc = [ ACTIVITY_PUB.PUBLIC ]
|
|
|
|
}
|
|
|
|
|
|
|
|
return { to, cc }
|
|
|
|
}
|
|
|
|
|
2017-11-30 05:31:15 -05:00
|
|
|
async function computeFollowerUris (toAccountFollower: AccountInstance[], followersException: AccountInstance[], t: Transaction) {
|
2017-11-24 07:41:10 -05:00
|
|
|
const toAccountFollowerIds = toAccountFollower.map(a => a.id)
|
|
|
|
|
2017-11-30 05:31:15 -05:00
|
|
|
const result = await db.AccountFollow.listAcceptedFollowerSharedInboxUrls(toAccountFollowerIds, t)
|
2017-11-24 07:41:10 -05:00
|
|
|
const followersSharedInboxException = followersException.map(f => f.sharedInboxUrl)
|
|
|
|
const uris = result.data.filter(sharedInbox => followersSharedInboxException.indexOf(sharedInbox) === -1)
|
|
|
|
|
|
|
|
return uris
|
|
|
|
}
|
|
|
|
|
2017-11-20 03:43:39 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
broadcastToFollowers,
|
2017-11-27 08:44:51 -05:00
|
|
|
getOriginVideoChannelAudience,
|
2017-11-20 03:43:39 -05:00
|
|
|
unicastTo,
|
2017-11-23 08:19:55 -05:00
|
|
|
getAudience,
|
|
|
|
getOriginVideoAudience,
|
2017-11-24 07:41:10 -05:00
|
|
|
getAccountsInvolvedInVideo,
|
2017-11-27 08:44:51 -05:00
|
|
|
getAccountsInvolvedInVideoChannel,
|
|
|
|
getObjectFollowersAudience,
|
2017-11-24 07:41:10 -05:00
|
|
|
forwardActivity
|
2017-11-20 03:43:39 -05:00
|
|
|
}
|