PeerTube/server/helpers/actor.ts

17 lines
517 B
TypeScript
Raw Normal View History

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