aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/actor.ts
blob: a60d3ed5d06340c96d8cfb367cd62df5d807285b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { ActorModel } from '../models/activitypub/actor'
import { MActorAccountChannelId, MActorFull } from '../types/models'

type ActorFetchByUrlType = 'all' | 'association-ids'

function fetchActorByUrl (url: string, fetchType: ActorFetchByUrlType): Promise<MActorFull | MActorAccountChannelId> {
  if (fetchType === 'all') return ActorModel.loadByUrlAndPopulateAccountAndChannel(url)

  if (fetchType === 'association-ids') return ActorModel.loadByUrl(url)
}

export {
  ActorFetchByUrlType,
  fetchActorByUrl
}