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

100 lines
4.0 KiB
TypeScript
Raw Normal View History

2017-11-20 09:43:39 +01:00
import { Transaction } from 'sequelize'
2017-12-14 17:38:41 +01:00
import { ActivityAudience, ActivityUpdate } from '../../../../shared/models/activitypub'
import { VideoPrivacy } from '../../../../shared/models/videos'
import { AccountModel } from '../../../models/account/account'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../../../models/activitypub/actor'
2017-12-12 17:53:50 +01:00
import { VideoModel } from '../../../models/video/video'
import { VideoChannelModel } from '../../../models/video/video-channel'
2017-12-12 17:53:50 +01:00
import { VideoShareModel } from '../../../models/video/video-share'
import { getUpdateActivityPubUrl } from '../url'
2018-09-14 16:51:35 +02:00
import { broadcastToFollowers, sendVideoRelatedActivity, unicastTo } from './utils'
import { audiencify, getActorsInvolvedInVideo, getAudience, getAudienceFromFollowersOf } from '../audience'
2018-07-30 17:02:40 +02:00
import { logger } from '../../../helpers/logger'
2018-09-04 10:22:10 +02:00
import { VideoCaptionModel } from '../../../models/video/video-caption'
2018-09-11 16:27:07 +02:00
import { VideoRedundancyModel } from '../../../models/redundancy/video-redundancy'
2017-11-20 09:43:39 +01:00
2018-09-04 10:22:10 +02:00
async function sendUpdateVideo (video: VideoModel, t: Transaction, overrodeByActor?: ActorModel) {
2018-07-30 17:02:40 +02:00
logger.info('Creating job to update video %s.', video.url)
2018-09-04 10:22:10 +02:00
const byActor = overrodeByActor ? overrodeByActor : video.VideoChannel.Account.Actor
2017-11-20 09:43:39 +01:00
const url = getUpdateActivityPubUrl(video.url, video.updatedAt.toISOString())
2018-09-04 10:22:10 +02:00
// Needed to build the AP object
if (!video.VideoCaptions) video.VideoCaptions = await video.$get('VideoCaptions') as VideoCaptionModel[]
2017-11-20 09:43:39 +01:00
const videoObject = video.toActivityPubObject()
const audience = getAudience(byActor, video.privacy === VideoPrivacy.PUBLIC)
2017-12-14 17:38:41 +01:00
2018-09-11 16:27:07 +02:00
const updateActivity = buildUpdateActivity(url, byActor, videoObject, audience)
2017-11-20 09:43:39 +01:00
2018-09-11 16:27:07 +02:00
const actorsInvolved = await getActorsInvolvedInVideo(video, t)
if (overrodeByActor) actorsInvolved.push(overrodeByActor)
2017-11-20 09:43:39 +01:00
2018-09-11 16:27:07 +02:00
return broadcastToFollowers(updateActivity, byActor, actorsInvolved, t)
2017-11-20 09:43:39 +01:00
}
async function sendUpdateActor (accountOrChannel: AccountModel | VideoChannelModel, t: Transaction) {
const byActor = accountOrChannel.Actor
2018-01-03 16:38:50 +01:00
2018-07-30 17:02:40 +02:00
logger.info('Creating job to update actor %s.', byActor.url)
2018-01-03 16:38:50 +01:00
const url = getUpdateActivityPubUrl(byActor.url, byActor.updatedAt.toISOString())
const accountOrChannelObject = accountOrChannel.toActivityPubObject()
const audience = getAudience(byActor)
2018-09-11 16:27:07 +02:00
const updateActivity = buildUpdateActivity(url, byActor, accountOrChannelObject, audience)
let actorsInvolved: ActorModel[]
if (accountOrChannel instanceof AccountModel) {
// Actors that shared my videos are involved too
actorsInvolved = await VideoShareModel.loadActorsByVideoOwner(byActor.id, t)
} else {
// Actors that shared videos of my channel are involved too
actorsInvolved = await VideoShareModel.loadActorsByVideoChannel(accountOrChannel.id, t)
}
2018-01-03 16:38:50 +01:00
actorsInvolved.push(byActor)
2018-09-11 16:27:07 +02:00
return broadcastToFollowers(updateActivity, byActor, actorsInvolved, t)
}
async function sendUpdateCacheFile (byActor: ActorModel, redundancyModel: VideoRedundancyModel) {
logger.info('Creating job to update cache file %s.', redundancyModel.url)
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(redundancyModel.VideoFile.Video.id)
2018-09-14 16:51:35 +02:00
const activityBuilder = (audience: ActivityAudience) => {
const redundancyObject = redundancyModel.toActivityPubObject()
const url = getUpdateActivityPubUrl(redundancyModel.url, redundancyModel.updatedAt.toISOString())
2018-09-11 16:27:07 +02:00
2018-09-14 16:51:35 +02:00
return buildUpdateActivity(url, byActor, redundancyObject, audience)
}
2018-09-11 16:27:07 +02:00
2018-09-14 16:51:35 +02:00
return sendVideoRelatedActivity(activityBuilder, { byActor, video })
2018-01-03 16:38:50 +01:00
}
2017-11-20 09:43:39 +01:00
// ---------------------------------------------------------------------------
export {
sendUpdateActor,
2018-09-11 16:27:07 +02:00
sendUpdateVideo,
sendUpdateCacheFile
2017-11-20 09:43:39 +01:00
}
// ---------------------------------------------------------------------------
2018-09-11 16:27:07 +02:00
function buildUpdateActivity (url: string, byActor: ActorModel, object: any, audience?: ActivityAudience): ActivityUpdate {
if (!audience) audience = getAudience(byActor)
2017-12-14 17:38:41 +01:00
return audiencify(
{
type: 'Update' as 'Update',
id: url,
actor: byActor.url,
object: audiencify(object, audience
)
},
audience
)
2017-11-20 09:43:39 +01:00
}