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

77 lines
2.7 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-05-25 11:32:36 +02:00
import { broadcastToFollowers } from './utils'
import { audiencify, getAudience } from '../audience'
2017-11-20 09:43:39 +01:00
2017-12-12 17:53:50 +01:00
async function sendUpdateVideo (video: VideoModel, t: Transaction) {
2017-12-14 17:38:41 +01:00
const byActor = video.VideoChannel.Account.Actor
2017-11-20 09:43:39 +01:00
const url = getUpdateActivityPubUrl(video.url, video.updatedAt.toISOString())
const videoObject = video.toActivityPubObject()
2017-12-14 17:38:41 +01:00
const audience = await getAudience(byActor, t, video.privacy === VideoPrivacy.PUBLIC)
const data = await updateActivityData(url, byActor, videoObject, t, audience)
2017-11-20 09:43:39 +01:00
2017-12-14 17:38:41 +01:00
const actorsInvolved = await VideoShareModel.loadActorsByShare(video.id, t)
actorsInvolved.push(byActor)
2017-11-20 09:43:39 +01:00
2017-12-14 17:38:41 +01:00
return broadcastToFollowers(data, 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
const url = getUpdateActivityPubUrl(byActor.url, byActor.updatedAt.toISOString())
const accountOrChannelObject = accountOrChannel.toActivityPubObject()
2018-01-03 16:38:50 +01:00
const audience = await getAudience(byActor, t)
const data = await updateActivityData(url, byActor, accountOrChannelObject, t, 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)
return broadcastToFollowers(data, byActor, actorsInvolved, t)
}
2017-11-20 09:43:39 +01:00
// ---------------------------------------------------------------------------
export {
sendUpdateActor,
2017-11-20 09:43:39 +01:00
sendUpdateVideo
}
// ---------------------------------------------------------------------------
2017-12-14 17:38:41 +01:00
async function updateActivityData (
url: string,
byActor: ActorModel,
object: any,
t: Transaction,
audience?: ActivityAudience
): Promise<ActivityUpdate> {
if (!audience) {
audience = await getAudience(byActor, t)
}
2017-12-19 10:34:56 +01:00
return audiencify({
2018-03-27 10:26:52 +02:00
type: 'Update' as 'Update',
2017-11-20 09:43:39 +01:00
id: url,
2017-12-14 17:38:41 +01:00
actor: byActor.url,
2017-12-19 10:34:56 +01:00
object: audiencify(object, audience)
}, audience)
2017-11-20 09:43:39 +01:00
}