mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			556 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			556 B
		
	
	
	
		
			TypeScript
		
	
	
| import { ActorModel } from '../models/activitypub/actor'
 | |
| import * as Bluebird from 'bluebird'
 | |
| import { MActorFull, MActorAccountChannelId } from '../typings/models'
 | |
| 
 | |
| type ActorFetchByUrlType = 'all' | 'association-ids'
 | |
| 
 | |
| function fetchActorByUrl (url: string, fetchType: ActorFetchByUrlType): Bluebird<MActorFull | MActorAccountChannelId> {
 | |
|   if (fetchType === 'all') return ActorModel.loadByUrlAndPopulateAccountAndChannel(url)
 | |
| 
 | |
|   if (fetchType === 'association-ids') return ActorModel.loadByUrl(url)
 | |
| }
 | |
| 
 | |
| export {
 | |
|   ActorFetchByUrlType,
 | |
|   fetchActorByUrl
 | |
| }
 |