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

67 lines
2.2 KiB
TypeScript
Raw Normal View History

2017-11-20 08:43:39 +00:00
import { Transaction } from 'sequelize'
2017-12-14 16:38:41 +00:00
import { ActivityAudience, ActivityUpdate } from '../../../../shared/models/activitypub'
import { VideoPrivacy } from '../../../../shared/models/videos'
2018-01-03 15:38:50 +00:00
import { UserModel } from '../../../models/account/user'
2017-12-14 16:38:41 +00:00
import { ActorModel } from '../../../models/activitypub/actor'
2017-12-12 16:53:50 +00:00
import { VideoModel } from '../../../models/video/video'
import { VideoShareModel } from '../../../models/video/video-share'
import { getUpdateActivityPubUrl } from '../url'
2017-12-19 09:34:56 +00:00
import { audiencify, broadcastToFollowers, getAudience } from './misc'
2017-11-20 08:43:39 +00:00
2017-12-12 16:53:50 +00:00
async function sendUpdateVideo (video: VideoModel, t: Transaction) {
2017-12-14 16:38:41 +00:00
const byActor = video.VideoChannel.Account.Actor
2017-11-20 08:43:39 +00:00
const url = getUpdateActivityPubUrl(video.url, video.updatedAt.toISOString())
const videoObject = video.toActivityPubObject()
2017-12-14 16:38:41 +00:00
const audience = await getAudience(byActor, t, video.privacy === VideoPrivacy.PUBLIC)
const data = await updateActivityData(url, byActor, videoObject, t, audience)
2017-11-20 08:43:39 +00:00
2017-12-14 16:38:41 +00:00
const actorsInvolved = await VideoShareModel.loadActorsByShare(video.id, t)
actorsInvolved.push(byActor)
2017-11-20 08:43:39 +00:00
2017-12-14 16:38:41 +00:00
return broadcastToFollowers(data, byActor, actorsInvolved, t)
2017-11-20 08:43:39 +00:00
}
2018-01-03 15:38:50 +00:00
async function sendUpdateUser (user: UserModel, t: Transaction) {
const byActor = user.Account.Actor
const url = getUpdateActivityPubUrl(byActor.url, byActor.updatedAt.toISOString())
const accountObject = user.Account.toActivityPubObject()
const audience = await getAudience(byActor, t)
const data = await updateActivityData(url, byActor, accountObject, t, audience)
const actorsInvolved = await VideoShareModel.loadActorsByVideoOwner(byActor.id, t)
actorsInvolved.push(byActor)
return broadcastToFollowers(data, byActor, actorsInvolved, t)
}
2017-11-20 08:43:39 +00:00
// ---------------------------------------------------------------------------
export {
2018-01-03 15:38:50 +00:00
sendUpdateUser,
2017-11-20 08:43:39 +00:00
sendUpdateVideo
}
// ---------------------------------------------------------------------------
2017-12-14 16:38:41 +00: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 09:34:56 +00:00
return audiencify({
2017-11-20 08:43:39 +00:00
type: 'Update',
id: url,
2017-12-14 16:38:41 +00:00
actor: byActor.url,
2017-12-19 09:34:56 +00:00
object: audiencify(object, audience)
}, audience)
2017-11-20 08:43:39 +00:00
}