X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fsend%2Fmisc.ts;h=999def70168a4fef7866169d9ce348c42f7c4a1e;hb=25ed141c7c7631ef21d8764c1163fbf8a6591391;hp=fd1add68eaceedb0efde9f4c7303af8e7b7ff6c9;hpb=4e50b6a1c9a3eb261e04ede73241648e6edf21d6;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/send/misc.ts b/server/lib/activitypub/send/misc.ts index fd1add68e..999def701 100644 --- a/server/lib/activitypub/send/misc.ts +++ b/server/lib/activitypub/send/misc.ts @@ -25,8 +25,8 @@ async function forwardActivity ( } } - const toAccountFollowers = await db.Account.listByFollowersUrls(followersUrls) - const uris = await computeFollowerUris(toAccountFollowers, followersException) + const toAccountFollowers = await db.Account.listByFollowersUrls(followersUrls, t) + const uris = await computeFollowerUris(toAccountFollowers, followersException, t) if (uris.length === 0) { logger.info('0 followers for %s, no forwarding.', toAccountFollowers.map(a => a.id).join(', ')) @@ -50,7 +50,7 @@ async function broadcastToFollowers ( t: Transaction, followersException: AccountInstance[] = [] ) { - const uris = await computeFollowerUris(toAccountFollowers, followersException) + const uris = await computeFollowerUris(toAccountFollowers, followersException, t) if (uris.length === 0) { logger.info('0 followers for %s, no broadcasting.', toAccountFollowers.map(a => a.id).join(', ')) return undefined @@ -100,22 +100,22 @@ function getObjectFollowersAudience (accountsInvolvedInObject: AccountInstance[] } } -async function getAccountsInvolvedInVideo (video: VideoInstance) { - const accountsToForwardView = await db.VideoShare.loadAccountsByShare(video.id) +async function getAccountsInvolvedInVideo (video: VideoInstance, t: Transaction) { + const accountsToForwardView = await db.VideoShare.loadAccountsByShare(video.id, t) accountsToForwardView.push(video.VideoChannel.Account) return accountsToForwardView } -async function getAccountsInvolvedInVideoChannel (videoChannel: VideoChannelInstance) { - const accountsToForwardView = await db.VideoChannelShare.loadAccountsByShare(videoChannel.id) +async function getAccountsInvolvedInVideoChannel (videoChannel: VideoChannelInstance, t: Transaction) { + const accountsToForwardView = await db.VideoChannelShare.loadAccountsByShare(videoChannel.id, t) accountsToForwardView.push(videoChannel.Account) return accountsToForwardView } -async function getAudience (accountSender: AccountInstance, isPublic = true) { - const followerInboxUrls = await accountSender.getFollowerSharedInboxUrls() +async function getAudience (accountSender: AccountInstance, t: Transaction, isPublic = true) { + const followerInboxUrls = await accountSender.getFollowerSharedInboxUrls(t) // Thanks Mastodon: https://github.com/tootsuite/mastodon/blob/master/app/lib/activitypub/tag_manager.rb#L47 let to = [] @@ -132,10 +132,10 @@ async function getAudience (accountSender: AccountInstance, isPublic = true) { return { to, cc } } -async function computeFollowerUris (toAccountFollower: AccountInstance[], followersException: AccountInstance[]) { +async function computeFollowerUris (toAccountFollower: AccountInstance[], followersException: AccountInstance[], t: Transaction) { const toAccountFollowerIds = toAccountFollower.map(a => a.id) - const result = await db.AccountFollow.listAcceptedFollowerSharedInboxUrls(toAccountFollowerIds) + const result = await db.AccountFollow.listAcceptedFollowerSharedInboxUrls(toAccountFollowerIds, t) const followersSharedInboxException = followersException.map(f => f.sharedInboxUrl) const uris = result.data.filter(sharedInbox => followersSharedInboxException.indexOf(sharedInbox) === -1)