mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
	
	
		
			21 lines
		
	
	
		
			434 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			434 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 
								 | 
							
								import { BaseAPI } from "./_base";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								const prefix = "/api";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								export class UtilsAPI extends BaseAPI {
							 | 
						||
| 
								 | 
							
								  async download(url: string) {
							 | 
						||
| 
								 | 
							
								    const { response } = await this.requests.get(url);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    if (!response) {
							 | 
						||
| 
								 | 
							
								      return;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    // @ts-ignore
							 | 
						||
| 
								 | 
							
								    const token: String = response.data.fileToken;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    const tokenURL = prefix + "/utils/download?token=" + token;
							 | 
						||
| 
								 | 
							
								    window.open(tokenURL, "_blank");
							 | 
						||
| 
								 | 
							
								    return await response;
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								}
							 |