PeerTube/server/lib/activitypub/send/send-undo.ts

127 lines
4.6 KiB
TypeScript
Raw Normal View History

2017-11-20 09:43:39 +01:00
import { Transaction } from 'sequelize'
2018-05-11 15:10:13 +02:00
import {
ActivityAnnounce,
ActivityAudience,
ActivityCreate,
ActivityFollow,
ActivityLike,
ActivityUndo
} from '../../../../shared/models/activitypub'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../../../models/activitypub/actor'
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
2017-12-12 17:53:50 +01:00
import { VideoModel } from '../../../models/video/video'
2017-12-14 17:38:41 +01:00
import { getActorFollowActivityPubUrl, getUndoActivityPubUrl, getVideoDislikeActivityPubUrl, getVideoLikeActivityPubUrl } from '../url'
2018-05-25 11:32:36 +02:00
import { broadcastToFollowers, unicastTo } from './utils'
import { audiencify, getActorsInvolvedInVideo, getAudience, getObjectFollowersAudience, getVideoAudience } from '../audience'
2017-11-23 14:37:00 +01:00
import { createActivityData, createDislikeActivityData } from './send-create'
2017-11-20 09:43:39 +01:00
import { followActivityData } from './send-follow'
2017-11-23 14:19:55 +01:00
import { likeActivityData } from './send-like'
2018-05-11 15:10:13 +02:00
import { VideoShareModel } from '../../../models/video/video-share'
import { buildVideoAnnounce } from './send-announce'
2018-07-30 17:02:40 +02:00
import { logger } from '../../../helpers/logger'
2017-11-20 09:43:39 +01:00
2017-12-14 17:38:41 +01:00
async function sendUndoFollow (actorFollow: ActorFollowModel, t: Transaction) {
const me = actorFollow.ActorFollower
const following = actorFollow.ActorFollowing
2017-11-20 09:43:39 +01:00
2018-07-30 17:02:40 +02:00
logger.info('Creating job to send an unfollow request to %s.', following.url)
2017-12-14 17:38:41 +01:00
const followUrl = getActorFollowActivityPubUrl(actorFollow)
2017-11-20 09:43:39 +01:00
const undoUrl = getUndoActivityPubUrl(followUrl)
const object = followActivityData(followUrl, me, following)
const data = undoActivityData(undoUrl, me, object)
2017-11-20 09:43:39 +01:00
return unicastTo(data, me, following.inboxUrl)
2017-11-20 09:43:39 +01:00
}
async function sendUndoLike (byActor: ActorModel, video: VideoModel, t: Transaction) {
2018-07-30 17:02:40 +02:00
logger.info('Creating job to undo a like of video %s.', video.url)
2017-12-14 17:38:41 +01:00
const likeUrl = getVideoLikeActivityPubUrl(byActor, video)
2017-11-23 14:19:55 +01:00
const undoUrl = getUndoActivityPubUrl(likeUrl)
2017-12-14 17:38:41 +01:00
const actorsInvolvedInVideo = await getActorsInvolvedInVideo(video, t)
const object = likeActivityData(likeUrl, byActor, video)
2017-11-23 14:19:55 +01:00
// Send to origin
if (video.isOwned() === false) {
2018-05-25 11:32:36 +02:00
const audience = getVideoAudience(video, actorsInvolvedInVideo)
const data = undoActivityData(undoUrl, byActor, object, audience)
2017-11-23 14:19:55 +01:00
return unicastTo(data, byActor, video.VideoChannel.Account.Actor.sharedInboxUrl)
}
2017-11-23 14:19:55 +01:00
const audience = getObjectFollowersAudience(actorsInvolvedInVideo)
const data = undoActivityData(undoUrl, byActor, object, audience)
2017-11-23 14:19:55 +01:00
2017-12-14 17:38:41 +01:00
const followersException = [ byActor ]
return broadcastToFollowers(data, byActor, actorsInvolvedInVideo, t, followersException)
2017-11-23 14:19:55 +01:00
}
async function sendUndoDislike (byActor: ActorModel, video: VideoModel, t: Transaction) {
2018-07-30 17:02:40 +02:00
logger.info('Creating job to undo a dislike of video %s.', video.url)
2017-12-14 17:38:41 +01:00
const dislikeUrl = getVideoDislikeActivityPubUrl(byActor, video)
2017-11-23 14:19:55 +01:00
const undoUrl = getUndoActivityPubUrl(dislikeUrl)
2017-12-14 17:38:41 +01:00
const actorsInvolvedInVideo = await getActorsInvolvedInVideo(video, t)
const dislikeActivity = createDislikeActivityData(byActor, video)
const object = createActivityData(dislikeUrl, byActor, dislikeActivity)
2017-11-23 14:19:55 +01:00
if (video.isOwned() === false) {
2018-05-25 11:32:36 +02:00
const audience = getVideoAudience(video, actorsInvolvedInVideo)
const data = undoActivityData(undoUrl, byActor, object, audience)
2017-11-23 14:19:55 +01:00
return unicastTo(data, byActor, video.VideoChannel.Account.Actor.sharedInboxUrl)
}
2017-11-23 14:19:55 +01:00
const data = undoActivityData(undoUrl, byActor, object)
2017-11-23 14:19:55 +01:00
2017-12-14 17:38:41 +01:00
const followersException = [ byActor ]
return broadcastToFollowers(data, byActor, actorsInvolvedInVideo, t, followersException)
2017-11-23 14:19:55 +01:00
}
2018-05-11 15:10:13 +02:00
async function sendUndoAnnounce (byActor: ActorModel, videoShare: VideoShareModel, video: VideoModel, t: Transaction) {
2018-07-30 17:02:40 +02:00
logger.info('Creating job to undo announce %s.', videoShare.url)
2018-05-11 15:10:13 +02:00
const undoUrl = getUndoActivityPubUrl(videoShare.url)
const actorsInvolvedInVideo = await getActorsInvolvedInVideo(video, t)
const object = await buildVideoAnnounce(byActor, videoShare, video, t)
const data = undoActivityData(undoUrl, byActor, object)
2018-05-11 15:10:13 +02:00
const followersException = [ byActor ]
return broadcastToFollowers(data, byActor, actorsInvolvedInVideo, t, followersException)
}
2017-11-20 09:43:39 +01:00
// ---------------------------------------------------------------------------
export {
2017-11-23 14:19:55 +01:00
sendUndoFollow,
sendUndoLike,
2018-05-11 15:10:13 +02:00
sendUndoDislike,
sendUndoAnnounce
2017-11-20 09:43:39 +01:00
}
// ---------------------------------------------------------------------------
function undoActivityData (
url: string,
2017-12-14 17:38:41 +01:00
byActor: ActorModel,
2018-05-11 15:10:13 +02:00
object: ActivityFollow | ActivityLike | ActivityCreate | ActivityAnnounce,
audience?: ActivityAudience
): ActivityUndo {
if (!audience) audience = getAudience(byActor)
return audiencify(
{
type: 'Undo' as 'Undo',
id: url,
actor: byActor.url,
object
},
audience
)
2017-11-20 09:43:39 +01:00
}