2020-12-08 08:30:29 -05:00
|
|
|
|
2018-09-19 08:44:20 -04:00
|
|
|
import { ActorModel } from '../models/activitypub/actor'
|
2020-12-08 08:30:29 -05:00
|
|
|
import { MActorAccountChannelId, MActorFull } from '../types/models'
|
2018-09-19 08:44:20 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
type ActorFetchByUrlType = 'all' | 'association-ids'
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
function fetchActorByUrl (url: string, fetchType: ActorFetchByUrlType): Promise<MActorFull | MActorAccountChannelId> {
|
2018-09-19 08:44:20 -04:00
|
|
|
if (fetchType === 'all') return ActorModel.loadByUrlAndPopulateAccountAndChannel(url)
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
if (fetchType === 'association-ids') return ActorModel.loadByUrl(url)
|
2018-09-19 08:44:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
ActorFetchByUrlType,
|
|
|
|
fetchActorByUrl
|
|
|
|
}
|