X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fsend%2Fsend-delete.ts;h=3d1dfb699e287965bbbf974741be4ef2a34f5a41;hb=a651038487faa838bda3ce04695b08bc65baff70;hp=1ca03189802ea138f91f358d338a47bc55514e96;hpb=4cb6d4578893db310297d7e118ce2fb7ecb952a3;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/send/send-delete.ts b/server/lib/activitypub/send/send-delete.ts index 1ca031898..3d1dfb699 100644 --- a/server/lib/activitypub/send/send-delete.ts +++ b/server/lib/activitypub/send/send-delete.ts @@ -1,15 +1,21 @@ import { Transaction } from 'sequelize' -import { ActivityDelete } from '../../../../shared/models/activitypub' +import { ActivityAudience, ActivityDelete } from '../../../../shared/models/activitypub' import { ActorModel } from '../../../models/activitypub/actor' import { VideoModel } from '../../../models/video/video' import { VideoCommentModel } from '../../../models/video/video-comment' import { VideoShareModel } from '../../../models/video/video-share' -import { broadcastToFollowers } from './misc' +import { getDeleteActivityPubUrl } from '../url' +import { broadcastToActors, broadcastToFollowers, unicastTo } from './utils' +import { audiencify, getActorsInvolvedInVideo, getVideoCommentAudience } from '../audience' +import { logger } from '../../../helpers/logger' async function sendDeleteVideo (video: VideoModel, t: Transaction) { + logger.info('Creating job to broadcast delete of video %s.', video.url) + + const url = getDeleteActivityPubUrl(video.url) const byActor = video.VideoChannel.Account.Actor - const data = deleteActivityData(video.url, byActor) + const data = deleteActivityData(url, video.url, byActor) const actorsInvolved = await VideoShareModel.loadActorsByShare(video.id, t) actorsInvolved.push(byActor) @@ -18,21 +24,44 @@ async function sendDeleteVideo (video: VideoModel, t: Transaction) { } async function sendDeleteActor (byActor: ActorModel, t: Transaction) { - const data = deleteActivityData(byActor.url, byActor) + logger.info('Creating job to broadcast delete of actor %s.', byActor.url) + + const url = getDeleteActivityPubUrl(byActor.url) + const data = deleteActivityData(url, byActor.url, byActor) + + const actorsInvolved = await VideoShareModel.loadActorsByVideoOwner(byActor.id, t) + actorsInvolved.push(byActor) - return broadcastToFollowers(data, byActor, [ byActor ], t) + return broadcastToFollowers(data, byActor, actorsInvolved, t) } async function sendDeleteVideoComment (videoComment: VideoCommentModel, t: Transaction) { + logger.info('Creating job to send delete of comment %s.', videoComment.url) + + const isVideoOrigin = videoComment.Video.isOwned() + + const url = getDeleteActivityPubUrl(videoComment.url) const byActor = videoComment.Account.Actor + const threadParentComments = await VideoCommentModel.listThreadParentComments(videoComment, t) - const data = deleteActivityData(videoComment.url, byActor) + const actorsInvolvedInComment = await getActorsInvolvedInVideo(videoComment.Video, t) + actorsInvolvedInComment.push(byActor) - const actorsInvolved = await VideoShareModel.loadActorsByShare(videoComment.Video.id, t) - actorsInvolved.push(videoComment.Video.VideoChannel.Account.Actor) - actorsInvolved.push(byActor) + const audience = getVideoCommentAudience(videoComment, threadParentComments, actorsInvolvedInComment, isVideoOrigin) + const data = deleteActivityData(url, videoComment.url, byActor, audience) - return broadcastToFollowers(data, byActor, actorsInvolved, t) + // This was a reply, send it to the parent actors + const actorsException = [ byActor ] + await broadcastToActors(data, byActor, threadParentComments.map(c => c.Account.Actor), actorsException) + + // Broadcast to our followers + await broadcastToFollowers(data, byActor, [ byActor ], t) + + // Send to actors involved in the comment + if (isVideoOrigin) return broadcastToFollowers(data, byActor, actorsInvolvedInComment, t, actorsException) + + // Send to origin + return unicastTo(data, byActor, videoComment.Video.VideoChannel.Account.Actor.sharedInboxUrl) } // --------------------------------------------------------------------------- @@ -45,10 +74,15 @@ export { // --------------------------------------------------------------------------- -function deleteActivityData (url: string, byActor: ActorModel): ActivityDelete { - return { - type: 'Delete', +function deleteActivityData (url: string, object: string, byActor: ActorModel, audience?: ActivityAudience): ActivityDelete { + const activity = { + type: 'Delete' as 'Delete', id: url, - actor: byActor.url + actor: byActor.url, + object } + + if (audience) return audiencify(activity, audience) + + return activity }