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