2020-12-08 14:30:29 +01:00
|
|
|
|
2021-06-03 17:33:44 +02:00
|
|
|
import { ActorModel } from '../../models/actor/actor'
|
|
|
|
import { MActorAccountChannelId, MActorFull } from '../../types/models'
|
2018-09-19 14:44:20 +02:00
|
|
|
|
2021-06-03 18:10:56 +02:00
|
|
|
type ActorLoadByUrlType = 'all' | 'association-ids'
|
2019-08-15 11:53:26 +02:00
|
|
|
|
2021-06-03 18:10:56 +02:00
|
|
|
function loadActorByUrl (url: string, fetchType: ActorLoadByUrlType): Promise<MActorFull | MActorAccountChannelId> {
|
2018-09-19 14:44:20 +02:00
|
|
|
if (fetchType === 'all') return ActorModel.loadByUrlAndPopulateAccountAndChannel(url)
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
if (fetchType === 'association-ids') return ActorModel.loadByUrl(url)
|
2018-09-19 14:44:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
2021-06-03 18:10:56 +02:00
|
|
|
ActorLoadByUrlType,
|
|
|
|
|
|
|
|
loadActorByUrl
|
2018-09-19 14:44:20 +02:00
|
|
|
}
|