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

128 lines
5.2 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'
import { broadcastToFollowers, sendVideoRelatedActivity } from './utils'
import { audiencify, getActorsInvolvedInVideo, getAudience } 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'
2019-02-26 10:55:40 +01:00
import { VideoPlaylistModel } from '../../../models/video/video-playlist'
import { VideoPlaylistPrivacy } from '../../../../shared/models/videos/playlist/video-playlist-privacy.model'
import { getServerActor } from '../../../helpers/utils'
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) {
2019-02-26 10:55:40 +01:00
if (video.privacy === VideoPrivacy.PRIVATE) return undefined
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
2019-03-05 10:58:44 +01:00
actorsInvolved = await VideoShareModel.loadActorsWhoSharedVideosOf(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)
2019-01-29 08:37:25 +01:00
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(redundancyModel.getVideo().id)
2018-09-11 16:27:07 +02:00
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
}
2019-02-26 10:55:40 +01:00
async function sendUpdateVideoPlaylist (videoPlaylist: VideoPlaylistModel, t: 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())
2019-03-05 10:58:44 +01:00
const object = await videoPlaylist.toActivityPubObject(null, t)
2019-02-26 10:55:40 +01:00
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(updateActivity, byActor, toFollowersOf, t)
}
2017-11-20 09:43:39 +01:00
// ---------------------------------------------------------------------------
export {
sendUpdateActor,
2018-09-11 16:27:07 +02:00
sendUpdateVideo,
2019-02-26 10:55:40 +01:00
sendUpdateCacheFile,
sendUpdateVideoPlaylist
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
}