aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/activitypub/send/send-accept.ts
blob: 7579884a79ca43f241a5d325e9bfda903f1918e9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                       
                                                                      


                                                                           
                                  
 


                                                                           
 
                                                             
                                          











                                                                              

                                                                                

                   
                      
   
 
import { Transaction } from 'sequelize'
import { ActivityAccept } from '../../../../shared/models/activitypub'
import { ActorModel } from '../../../models/activitypub/actor'
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
import { getActorFollowAcceptActivityPubUrl } from '../url'
import { unicastTo } from './misc'

async function sendAccept (actorFollow: ActorFollowModel, t: Transaction) {
  const follower = actorFollow.ActorFollower
  const me = actorFollow.ActorFollowing

  const url = getActorFollowAcceptActivityPubUrl(actorFollow)
  const data = acceptActivityData(url, me)

  return unicastTo(data, me, follower.inboxUrl, t)
}

// ---------------------------------------------------------------------------

export {
  sendAccept
}

// ---------------------------------------------------------------------------

function acceptActivityData (url: string, byActor: ActorModel): ActivityAccept {
  return {
    type: 'Accept',
    id: url,
    actor: byActor.url
  }
}