2017-11-20 03:43:39 -05:00
|
|
|
import { Transaction } from 'sequelize'
|
2018-05-11 09:10:13 -04:00
|
|
|
import {
|
|
|
|
ActivityAnnounce,
|
|
|
|
ActivityAudience,
|
|
|
|
ActivityCreate,
|
|
|
|
ActivityFollow,
|
|
|
|
ActivityLike,
|
|
|
|
ActivityUndo
|
|
|
|
} from '../../../../shared/models/activitypub'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { ActorModel } from '../../../models/activitypub/actor'
|
|
|
|
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoModel } from '../../../models/video/video'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { getActorFollowActivityPubUrl, getUndoActivityPubUrl, getVideoDislikeActivityPubUrl, getVideoLikeActivityPubUrl } from '../url'
|
2018-09-14 10:51:35 -04:00
|
|
|
import { broadcastToFollowers, sendVideoRelatedActivity, unicastTo } from './utils'
|
|
|
|
import { audiencify, getAudience } from '../audience'
|
2018-09-11 10:27:07 -04:00
|
|
|
import { buildCreateActivity, buildDislikeActivity } from './send-create'
|
|
|
|
import { buildFollowActivity } from './send-follow'
|
|
|
|
import { buildLikeActivity } from './send-like'
|
2018-05-11 09:10:13 -04:00
|
|
|
import { VideoShareModel } from '../../../models/video/video-share'
|
2018-09-11 10:27:07 -04:00
|
|
|
import { buildAnnounceWithVideoAudience } from './send-announce'
|
2018-07-30 11:02:40 -04:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2018-09-11 10:27:07 -04:00
|
|
|
import { VideoRedundancyModel } from '../../../models/redundancy/video-redundancy'
|
2017-11-20 03:43:39 -05:00
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
async function sendUndoFollow (actorFollow: ActorFollowModel, t: Transaction) {
|
|
|
|
const me = actorFollow.ActorFollower
|
|
|
|
const following = actorFollow.ActorFollowing
|
2017-11-20 03:43:39 -05:00
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
// Same server as ours
|
|
|
|
if (!following.serverId) return
|
|
|
|
|
2018-07-30 11:02:40 -04:00
|
|
|
logger.info('Creating job to send an unfollow request to %s.', following.url)
|
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
const followUrl = getActorFollowActivityPubUrl(actorFollow)
|
2017-11-20 03:43:39 -05:00
|
|
|
const undoUrl = getUndoActivityPubUrl(followUrl)
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
const followActivity = buildFollowActivity(followUrl, me, following)
|
|
|
|
const undoActivity = undoActivityData(undoUrl, me, followActivity)
|
2017-11-20 03:43:39 -05:00
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
return unicastTo(undoActivity, me, following.inboxUrl)
|
2017-11-20 03:43:39 -05:00
|
|
|
}
|
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
async function sendUndoAnnounce (byActor: ActorModel, videoShare: VideoShareModel, video: VideoModel, t: Transaction) {
|
|
|
|
logger.info('Creating job to undo announce %s.', videoShare.url)
|
2018-07-30 11:02:40 -04:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
const undoUrl = getUndoActivityPubUrl(videoShare.url)
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
const { activity: announceActivity, actorsInvolvedInVideo } = await buildAnnounceWithVideoAudience(byActor, videoShare, video, t)
|
|
|
|
const undoActivity = undoActivityData(undoUrl, byActor, announceActivity)
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
const followersException = [ byActor ]
|
|
|
|
return broadcastToFollowers(undoActivity, byActor, actorsInvolvedInVideo, t, followersException)
|
|
|
|
}
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
async function sendUndoLike (byActor: ActorModel, video: VideoModel, t: Transaction) {
|
|
|
|
logger.info('Creating job to undo a like of video %s.', video.url)
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
const likeUrl = getVideoLikeActivityPubUrl(byActor, video)
|
|
|
|
const likeActivity = buildLikeActivity(likeUrl, byActor, video)
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
return sendUndoVideoRelatedActivity({ byActor, video, url: likeUrl, activity: likeActivity, transaction: t })
|
2017-11-23 08:19:55 -05:00
|
|
|
}
|
|
|
|
|
2018-03-27 07:33:56 -04:00
|
|
|
async function sendUndoDislike (byActor: ActorModel, video: VideoModel, t: Transaction) {
|
2018-07-30 11:02:40 -04:00
|
|
|
logger.info('Creating job to undo a dislike of video %s.', video.url)
|
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
const dislikeUrl = getVideoDislikeActivityPubUrl(byActor, video)
|
2018-11-14 09:01:28 -05:00
|
|
|
const dislikeActivity = buildDislikeActivity(dislikeUrl, byActor, video)
|
2018-09-11 10:27:07 -04:00
|
|
|
const createDislikeActivity = buildCreateActivity(dislikeUrl, byActor, dislikeActivity)
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
return sendUndoVideoRelatedActivity({ byActor, video, url: dislikeUrl, activity: createDislikeActivity, transaction: t })
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function sendUndoCacheFile (byActor: ActorModel, redundancyModel: VideoRedundancyModel, t: Transaction) {
|
|
|
|
logger.info('Creating job to undo cache file %s.', redundancyModel.url)
|
|
|
|
|
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(redundancyModel.VideoFile.Video.id)
|
|
|
|
const createActivity = buildCreateActivity(redundancyModel.url, byActor, redundancyModel.toActivityPubObject())
|
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
return sendUndoVideoRelatedActivity({ byActor, video, url: redundancyModel.url, activity: createActivity, transaction: t })
|
2018-05-11 09:10:13 -04:00
|
|
|
}
|
|
|
|
|
2017-11-20 03:43:39 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2017-11-23 08:19:55 -05:00
|
|
|
sendUndoFollow,
|
2018-03-27 07:33:56 -04:00
|
|
|
sendUndoLike,
|
2018-05-11 09:10:13 -04:00
|
|
|
sendUndoDislike,
|
2018-09-11 10:27:07 -04:00
|
|
|
sendUndoAnnounce,
|
|
|
|
sendUndoCacheFile
|
2017-11-20 03:43:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-06-12 14:04:58 -04:00
|
|
|
function undoActivityData (
|
2017-11-24 07:41:10 -05:00
|
|
|
url: string,
|
2017-12-14 11:38:41 -05:00
|
|
|
byActor: ActorModel,
|
2018-05-11 09:10:13 -04:00
|
|
|
object: ActivityFollow | ActivityLike | ActivityCreate | ActivityAnnounce,
|
2017-11-24 07:41:10 -05:00
|
|
|
audience?: ActivityAudience
|
2018-06-12 14:04:58 -04:00
|
|
|
): ActivityUndo {
|
|
|
|
if (!audience) audience = getAudience(byActor)
|
|
|
|
|
|
|
|
return audiencify(
|
|
|
|
{
|
|
|
|
type: 'Undo' as 'Undo',
|
|
|
|
id: url,
|
|
|
|
actor: byActor.url,
|
|
|
|
object
|
|
|
|
},
|
|
|
|
audience
|
|
|
|
)
|
2017-11-20 03:43:39 -05:00
|
|
|
}
|
2018-09-14 10:51:35 -04:00
|
|
|
|
|
|
|
async function sendUndoVideoRelatedActivity (options: {
|
|
|
|
byActor: ActorModel,
|
|
|
|
video: VideoModel,
|
|
|
|
url: string,
|
|
|
|
activity: ActivityFollow | ActivityLike | ActivityCreate | ActivityAnnounce,
|
|
|
|
transaction: Transaction
|
|
|
|
}) {
|
|
|
|
const activityBuilder = (audience: ActivityAudience) => {
|
|
|
|
const undoUrl = getUndoActivityPubUrl(options.url)
|
|
|
|
|
|
|
|
return undoActivityData(undoUrl, options.byActor, options.activity, audience)
|
|
|
|
}
|
|
|
|
|
|
|
|
return sendVideoRelatedActivity(activityBuilder, options)
|
|
|
|
}
|