X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fsend%2Fsend-update.ts;h=7a4cf3f569e2da11ab61c66044ef21b36ad1095a;hb=610d0be13b3d01f653ef269271dd667a57c85ef2;hp=9baf13a87d8be7eb80ead93002db78914cc8c369;hpb=3fd3ab2d34d512b160a5e6084d7609be7b4f4452;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/send/send-update.ts b/server/lib/activitypub/send/send-update.ts index 9baf13a87..7a4cf3f56 100644 --- a/server/lib/activitypub/send/send-update.ts +++ b/server/lib/activitypub/send/send-update.ts @@ -1,56 +1,135 @@ import { Transaction } from 'sequelize' -import { ActivityUpdate } from '../../../../shared/models/activitypub' +import { ActivityAudience, ActivityUpdate } from '../../../../shared/models/activitypub' +import { VideoPrivacy } from '../../../../shared/models/videos' import { AccountModel } from '../../../models/account/account' import { VideoModel } from '../../../models/video/video' -import { VideoChannelModel } from '../../../models/video/video-channel' -import { VideoChannelShareModel } from '../../../models/video/video-channel-share' import { VideoShareModel } from '../../../models/video/video-share' import { getUpdateActivityPubUrl } from '../url' -import { broadcastToFollowers, getAudience } from './misc' +import { broadcastToFollowers, sendVideoRelatedActivity } from './utils' +import { audiencify, getActorsInvolvedInVideo, getAudience } from '../audience' +import { logger } from '../../../helpers/logger' +import { VideoPlaylistPrivacy } from '../../../../shared/models/videos/playlist/video-playlist-privacy.model' +import { + MAccountDefault, + MActor, + MActorLight, + MChannelDefault, + MVideoAP, + MVideoAPWithoutCaption, + MVideoPlaylistFull, + MVideoRedundancyVideo +} from '../../../typings/models' +import { getServerActor } from '@server/models/application/application' -async function sendUpdateVideoChannel (videoChannel: VideoChannelModel, t: Transaction) { - const byAccount = videoChannel.Account +async function sendUpdateVideo (videoArg: MVideoAPWithoutCaption, t: Transaction, overrodeByActor?: MActor) { + const video = videoArg as MVideoAP - const url = getUpdateActivityPubUrl(videoChannel.url, videoChannel.updatedAt.toISOString()) - const videoChannelObject = videoChannel.toActivityPubObject() - const data = await updateActivityData(url, byAccount, videoChannelObject, t) + if (!video.hasPrivacyForFederation()) return undefined - const accountsInvolved = await VideoChannelShareModel.loadAccountsByShare(videoChannel.id, t) - accountsInvolved.push(byAccount) + logger.info('Creating job to update video %s.', video.url) - return broadcastToFollowers(data, byAccount, accountsInvolved, t) -} - -async function sendUpdateVideo (video: VideoModel, t: Transaction) { - const byAccount = video.VideoChannel.Account + const byActor = overrodeByActor || video.VideoChannel.Account.Actor const url = getUpdateActivityPubUrl(video.url, video.updatedAt.toISOString()) + + // Needed to build the AP object + if (!video.VideoCaptions) { + video.VideoCaptions = await video.$get('VideoCaptions', { transaction: t }) + } + const videoObject = video.toActivityPubObject() - const data = await updateActivityData(url, byAccount, videoObject, t) + const audience = getAudience(byActor, video.privacy === VideoPrivacy.PUBLIC) - const accountsInvolved = await VideoShareModel.loadAccountsByShare(video.id, t) - accountsInvolved.push(byAccount) + const updateActivity = buildUpdateActivity(url, byActor, videoObject, audience) - return broadcastToFollowers(data, byAccount, accountsInvolved, t) + const actorsInvolved = await getActorsInvolvedInVideo(video, t) + if (overrodeByActor) actorsInvolved.push(overrodeByActor) + + return broadcastToFollowers(updateActivity, byActor, actorsInvolved, t) +} + +async function sendUpdateActor (accountOrChannel: MChannelDefault | MAccountDefault, t: Transaction) { + const byActor = accountOrChannel.Actor + + logger.info('Creating job to update actor %s.', byActor.url) + + const url = getUpdateActivityPubUrl(byActor.url, byActor.updatedAt.toISOString()) + const accountOrChannelObject = (accountOrChannel as any).toActivityPubObject() // FIXME: typescript bug? + const audience = getAudience(byActor) + const updateActivity = buildUpdateActivity(url, byActor, accountOrChannelObject, audience) + + let actorsInvolved: MActor[] + if (accountOrChannel instanceof AccountModel) { + // Actors that shared my videos are involved too + actorsInvolved = await VideoShareModel.loadActorsWhoSharedVideosOf(byActor.id, t) + } else { + // Actors that shared videos of my channel are involved too + actorsInvolved = await VideoShareModel.loadActorsByVideoChannel(accountOrChannel.id, t) + } + + actorsInvolved.push(byActor) + + return broadcastToFollowers(updateActivity, byActor, actorsInvolved, t) +} + +async function sendUpdateCacheFile (byActor: MActorLight, redundancyModel: MVideoRedundancyVideo) { + logger.info('Creating job to update cache file %s.', redundancyModel.url) + + const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(redundancyModel.getVideo().id) + + const activityBuilder = (audience: ActivityAudience) => { + const redundancyObject = redundancyModel.toActivityPubObject() + const url = getUpdateActivityPubUrl(redundancyModel.url, redundancyModel.updatedAt.toISOString()) + + return buildUpdateActivity(url, byActor, redundancyObject, audience) + } + + return sendVideoRelatedActivity(activityBuilder, { byActor, video, contextType: 'CacheFile' }) +} + +async function sendUpdateVideoPlaylist (videoPlaylist: MVideoPlaylistFull, t: Transaction) { + if (videoPlaylist.privacy === VideoPlaylistPrivacy.PRIVATE) return undefined + + const byActor = videoPlaylist.OwnerAccount.Actor + + logger.info('Creating job to update video playlist %s.', videoPlaylist.url) + + const url = getUpdateActivityPubUrl(videoPlaylist.url, videoPlaylist.updatedAt.toISOString()) + + const object = await videoPlaylist.toActivityPubObject(null, t) + const audience = getAudience(byActor, videoPlaylist.privacy === VideoPlaylistPrivacy.PUBLIC) + + const updateActivity = buildUpdateActivity(url, byActor, object, audience) + + const serverActor = await getServerActor() + const toFollowersOf = [ byActor, serverActor ] + + if (videoPlaylist.VideoChannel) toFollowersOf.push(videoPlaylist.VideoChannel.Actor) + + return broadcastToFollowers(updateActivity, byActor, toFollowersOf, t) } // --------------------------------------------------------------------------- export { - sendUpdateVideoChannel, - sendUpdateVideo + sendUpdateActor, + sendUpdateVideo, + sendUpdateCacheFile, + sendUpdateVideoPlaylist } // --------------------------------------------------------------------------- -async function updateActivityData (url: string, byAccount: AccountModel, object: any, t: Transaction): Promise { - const { to, cc } = await getAudience(byAccount, t) - return { - type: 'Update', - id: url, - actor: byAccount.url, - to, - cc, - object - } +function buildUpdateActivity (url: string, byActor: MActorLight, object: any, audience?: ActivityAudience): ActivityUpdate { + if (!audience) audience = getAudience(byActor) + + return audiencify( + { + type: 'Update' as 'Update', + id: url, + actor: byActor.url, + object: audiencify(object, audience) + }, + audience + ) }