]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/send/send-flag.ts
Fix incorrect IDs in AP federation
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / send / send-flag.ts
CommitLineData
d95d1559 1import { Transaction } from 'sequelize'
1e7eb25f 2import { ActivityAudience, ActivityFlag } from '../../../../shared/models/activitypub'
d95d1559
C
3import { logger } from '../../../helpers/logger'
4import { MAbuseAP, MAccountLight, MActor } from '../../../types/models'
1e7eb25f 5import { audiencify, getAudience } from '../audience'
de94ac86 6import { getLocalAbuseActivityPubUrl } from '../url'
d95d1559 7import { unicastTo } from './utils'
1e7eb25f 8
d95d1559
C
9function sendAbuse (byActor: MActor, abuse: MAbuseAP, flaggedAccount: MAccountLight, t: Transaction) {
10 if (!flaggedAccount.Actor.serverId) return // Local user
1e7eb25f 11
de94ac86 12 const url = getLocalAbuseActivityPubUrl(abuse)
1e7eb25f 13
d95d1559 14 logger.info('Creating job to send abuse %s.', url)
1e7eb25f
C
15
16 // Custom audience, we only send the abuse to the origin instance
d95d1559
C
17 const audience = { to: [ flaggedAccount.Actor.url ], cc: [] }
18 const flagActivity = buildFlagActivity(url, byActor, abuse, audience)
1e7eb25f 19
d95d1559 20 t.afterCommit(() => unicastTo(flagActivity, byActor, flaggedAccount.Actor.getSharedInbox()))
1e7eb25f
C
21}
22
d95d1559 23function buildFlagActivity (url: string, byActor: MActor, abuse: MAbuseAP, audience: ActivityAudience): ActivityFlag {
1e7eb25f
C
24 if (!audience) audience = getAudience(byActor)
25
26 const activity = Object.assign(
27 { id: url, actor: byActor.url },
d95d1559 28 abuse.toActivityPubObject()
1e7eb25f
C
29 )
30
31 return audiencify(activity, audience)
32}
33
34// ---------------------------------------------------------------------------
35
36export {
d95d1559 37 sendAbuse
1e7eb25f 38}