X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fsend%2Fsend-update.ts;h=3577ece02c5710232bf352bab0ff10ec0842e722;hb=bae616273d455d225d131eb17c56db6c20a0b6b3;hp=32cada06e3fb691a112dfc1ce46bcee74e6c999e;hpb=892211e8493b1f992fce7616cb1e48b7ff87a1dc;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/send/send-update.ts b/server/lib/activitypub/send/send-update.ts index 32cada06e..3577ece02 100644 --- a/server/lib/activitypub/send/send-update.ts +++ b/server/lib/activitypub/send/send-update.ts @@ -1,55 +1,158 @@ import { Transaction } from 'sequelize' -import { ActivityUpdate } from '../../../../shared/models/activitypub/activity' -import { database as db } from '../../../initializers' -import { AccountInstance, VideoChannelInstance, VideoInstance } from '../../../models' +import { getServerActor } from '@server/models/application/application' +import { ActivityAudience, ActivityUpdate, VideoPlaylistPrivacy, VideoPrivacy } from '@shared/models' +import { logger } from '../../../helpers/logger' +import { AccountModel } from '../../../models/account/account' +import { VideoModel } from '../../../models/video/video' +import { VideoShareModel } from '../../../models/video/video-share' +import { + MAccountDefault, + MActor, + MActorLight, + MChannelDefault, + MVideoAP, + MVideoAPWithoutCaption, + MVideoPlaylistFull, + MVideoRedundancyVideo +} from '../../../types/models' +import { audiencify, getAudience } from '../audience' import { getUpdateActivityPubUrl } from '../url' -import { broadcastToFollowers, getAudience } from './misc' +import { getActorsInvolvedInVideo } from './shared' +import { broadcastToFollowers, sendVideoRelatedActivity } from './shared/send-utils' -async function sendUpdateVideoChannel (videoChannel: VideoChannelInstance, t: Transaction) { - const byAccount = videoChannel.Account +async function sendUpdateVideo (videoArg: MVideoAPWithoutCaption, transaction: Transaction, overriddenByActor?: 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) + if (!video.hasPrivacyForFederation()) return undefined - const accountsInvolved = await db.VideoChannelShare.loadAccountsByShare(videoChannel.id) - accountsInvolved.push(byAccount) + logger.info('Creating job to update video %s.', video.url) - return broadcastToFollowers(data, byAccount, accountsInvolved, t) -} - -async function sendUpdateVideo (video: VideoInstance, t: Transaction) { - const byAccount = video.VideoChannel.Account + const byActor = overriddenByActor || 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 }) + } + const videoObject = video.toActivityPubObject() - const data = await updateActivityData(url, byAccount, videoObject) + const audience = getAudience(byActor, video.privacy === VideoPrivacy.PUBLIC) + + const updateActivity = buildUpdateActivity(url, byActor, videoObject, audience) + + const actorsInvolved = await getActorsInvolvedInVideo(video, transaction) + if (overriddenByActor) actorsInvolved.push(overriddenByActor) + + return broadcastToFollowers({ + data: updateActivity, + byActor, + toFollowersOf: actorsInvolved, + contextType: 'Video', + transaction + }) +} + +async function sendUpdateActor (accountOrChannel: MChannelDefault | MAccountDefault, transaction: 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, transaction) + } else { + // Actors that shared videos of my channel are involved too + actorsInvolved = await VideoShareModel.loadActorsByVideoChannel(accountOrChannel.id, transaction) + } + + actorsInvolved.push(byActor) + + return broadcastToFollowers({ + data: updateActivity, + byActor, + toFollowersOf: actorsInvolved, + transaction, + contextType: 'Actor' + }) +} - const accountsInvolved = await db.VideoShare.loadAccountsByShare(video.id) - accountsInvolved.push(byAccount) +async function sendUpdateCacheFile (byActor: MActorLight, redundancyModel: MVideoRedundancyVideo) { + logger.info('Creating job to update cache file %s.', redundancyModel.url) - return broadcastToFollowers(data, byAccount, accountsInvolved, t) + const associatedVideo = redundancyModel.getVideo() + if (!associatedVideo) { + logger.warn('Cannot send update activity for redundancy %s: no video files associated.', redundancyModel.url) + return + } + + const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(associatedVideo.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, transaction: 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, transaction) + 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({ + data: updateActivity, + byActor, + toFollowersOf, + transaction, + contextType: 'Playlist' + }) } // --------------------------------------------------------------------------- export { - sendUpdateVideoChannel, - sendUpdateVideo + sendUpdateActor, + sendUpdateVideo, + sendUpdateCacheFile, + sendUpdateVideoPlaylist } // --------------------------------------------------------------------------- -async function updateActivityData (url: string, byAccount: AccountInstance, object: any) { - const { to, cc } = await getAudience(byAccount) - const activity: ActivityUpdate = { - 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 activity + return audiencify( + { + type: 'Update' as 'Update', + id: url, + actor: byActor.url, + object: audiencify(object, audience) + }, + audience + ) }