PeerTube/server/helpers/actor.ts

17 lines
511 B
TypeScript
Raw Normal View History

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