import * as fs from 'fs'; import * as Koa from 'koa'; import { serverLogger } from '..'; import { IImage, ConvertToPng, ConvertToJpeg } from '../../services/drive/image-processor'; import { createTemp } from '../../misc/create-temp'; import { downloadUrl } from '../../misc/donwload-url'; import { detectMine } from '../../misc/detect-mine'; export async function proxyMedia(ctx: Koa.BaseContext) { const url = 'url' in ctx.query ? ctx.query.url : 'https://' + ctx.params.url; // Create temp file const [path, cleanup] = await createTemp(); try { await downloadUrl(url, path); const [type, ext] = await detectMine(path); let image: IImage; if ('static' in ctx.query && ['image/png', 'image/gif'].includes(type)) { image = await ConvertToPng(path, 498, 280); } else if ('preview' in ctx.query && ['image/jpeg', 'image/png', 'image/gif'].includes(type)) { image = await ConvertToJpeg(path, 200, 200); } else { image = { data: fs.readFileSync(path), ext, type, }; } ctx.set('Content-Type', type); ctx.set('Cache-Control', 'max-age=31536000, immutable'); ctx.body = image.data; } catch (e) { serverLogger.error(e); if (typeof e == 'number' && e >= 400 && e < 500) { ctx.status = e; } else { ctx.status = 500; } } finally { cleanup(); } }