f160af3c9ce60c772072610f83eaf847311dd773
[oweals/peertube.git] / server / lib / activitypub / send / send-accept.ts
1 import { Transaction } from 'sequelize'
2 import { ActivityAccept } from '../../../../shared/models/activitypub'
3 import { AccountModel } from '../../../models/account/account'
4 import { AccountFollowModel } from '../../../models/account/account-follow'
5 import { getAccountFollowAcceptActivityPubUrl } from '../url'
6 import { unicastTo } from './misc'
7
8 async function sendAccept (accountFollow: AccountFollowModel, t: Transaction) {
9   const follower = accountFollow.AccountFollower
10   const me = accountFollow.AccountFollowing
11
12   const url = getAccountFollowAcceptActivityPubUrl(accountFollow)
13   const data = acceptActivityData(url, me)
14
15   return unicastTo(data, me, follower.inboxUrl, t)
16 }
17
18 // ---------------------------------------------------------------------------
19
20 export {
21   sendAccept
22 }
23
24 // ---------------------------------------------------------------------------
25
26 function acceptActivityData (url: string, byAccount: AccountModel) {
27   const activity: ActivityAccept = {
28     type: 'Accept',
29     id: url,
30     actor: byAccount.url
31   }
32
33   return activity
34 }