aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/activitypub/send/send-follow.ts
blob: 3c01fb77c378cc71462c277b7fa0091c45444b7f (plain) (tree)
1
2
3
4
5
6



                                                                                        
                                                       
                                  



























                                                                                                             
import { Transaction } from 'sequelize'
import { ActivityFollow } from '../../../../shared/models/activitypub/activity'
import { AccountInstance } from '../../../models'
import { AccountFollowInstance } from '../../../models/account/account-follow-interface'
import { getAccountFollowActivityPubUrl } from '../url'
import { unicastTo } from './misc'

async function sendFollow (accountFollow: AccountFollowInstance, t: Transaction) {
  const me = accountFollow.AccountFollower
  const following = accountFollow.AccountFollowing

  const url = getAccountFollowActivityPubUrl(accountFollow)
  const data = await followActivityData(url, me, following)

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

async function followActivityData (url: string, byAccount: AccountInstance, targetAccount: AccountInstance) {
  const activity: ActivityFollow = {
    type: 'Follow',
    id: url,
    actor: byAccount.url,
    object: targetAccount.url
  }

  return activity
}

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

export {
  sendFollow,
  followActivityData
}