]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/send/send-update.ts
Fix import with when the imported file has the same extension than an
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / send / send-update.ts
CommitLineData
54141398 1import { Transaction } from 'sequelize'
50d6de9c
C
2import { ActivityAudience, ActivityUpdate } from '../../../../shared/models/activitypub'
3import { VideoPrivacy } from '../../../../shared/models/videos'
2422c46b 4import { AccountModel } from '../../../models/account/account'
50d6de9c 5import { ActorModel } from '../../../models/activitypub/actor'
3fd3ab2d 6import { VideoModel } from '../../../models/video/video'
2422c46b 7import { VideoChannelModel } from '../../../models/video/video-channel'
3fd3ab2d 8import { VideoShareModel } from '../../../models/video/video-share'
892211e8 9import { getUpdateActivityPubUrl } from '../url'
e251f170
C
10import { broadcastToFollowers } from './utils'
11import { audiencify, getAudience } from '../audience'
54141398 12
3fd3ab2d 13async function sendUpdateVideo (video: VideoModel, t: Transaction) {
50d6de9c 14 const byActor = video.VideoChannel.Account.Actor
54141398
C
15
16 const url = getUpdateActivityPubUrl(video.url, video.updatedAt.toISOString())
17 const videoObject = video.toActivityPubObject()
50d6de9c
C
18 const audience = await getAudience(byActor, t, video.privacy === VideoPrivacy.PUBLIC)
19
20 const data = await updateActivityData(url, byActor, videoObject, t, audience)
54141398 21
50d6de9c
C
22 const actorsInvolved = await VideoShareModel.loadActorsByShare(video.id, t)
23 actorsInvolved.push(byActor)
54141398 24
50d6de9c 25 return broadcastToFollowers(data, byActor, actorsInvolved, t)
54141398
C
26}
27
2422c46b
C
28async function sendUpdateActor (accountOrChannel: AccountModel | VideoChannelModel, t: Transaction) {
29 const byActor = accountOrChannel.Actor
265ba139
C
30
31 const url = getUpdateActivityPubUrl(byActor.url, byActor.updatedAt.toISOString())
2422c46b 32 const accountOrChannelObject = accountOrChannel.toActivityPubObject()
265ba139 33 const audience = await getAudience(byActor, t)
2422c46b
C
34 const data = await updateActivityData(url, byActor, accountOrChannelObject, t, audience)
35
36 let actorsInvolved: ActorModel[]
37 if (accountOrChannel instanceof AccountModel) {
38 // Actors that shared my videos are involved too
39 actorsInvolved = await VideoShareModel.loadActorsByVideoOwner(byActor.id, t)
40 } else {
41 // Actors that shared videos of my channel are involved too
42 actorsInvolved = await VideoShareModel.loadActorsByVideoChannel(accountOrChannel.id, t)
43 }
265ba139 44
265ba139
C
45 actorsInvolved.push(byActor)
46
47 return broadcastToFollowers(data, byActor, actorsInvolved, t)
48}
49
54141398
C
50// ---------------------------------------------------------------------------
51
52export {
2422c46b 53 sendUpdateActor,
54141398
C
54 sendUpdateVideo
55}
56
57// ---------------------------------------------------------------------------
58
50d6de9c
C
59async function updateActivityData (
60 url: string,
61 byActor: ActorModel,
62 object: any,
63 t: Transaction,
64 audience?: ActivityAudience
65): Promise<ActivityUpdate> {
66 if (!audience) {
67 audience = await getAudience(byActor, t)
68 }
69
e12a0092 70 return audiencify({
73c08093 71 type: 'Update' as 'Update',
54141398 72 id: url,
50d6de9c 73 actor: byActor.url,
e12a0092
C
74 object: audiencify(object, audience)
75 }, audience)
54141398 76}