2019-02-04 11:01:36 -07:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as Koa from 'koa';
|
2021-08-19 06:55:45 -06:00
|
|
|
import { serverLogger } from '../index';
|
|
|
|
import { IImage, convertToPng, convertToJpeg } from '@/services/drive/image-processor';
|
|
|
|
import { createTemp } from '@/misc/create-temp';
|
|
|
|
import { downloadUrl } from '@/misc/download-url';
|
|
|
|
import { detectType } from '@/misc/get-file-info';
|
2019-02-04 11:01:36 -07:00
|
|
|
|
2019-11-24 01:09:32 -07:00
|
|
|
export async function proxyMedia(ctx: Koa.Context) {
|
2019-02-04 11:01:36 -07:00
|
|
|
const url = 'url' in ctx.query ? ctx.query.url : 'https://' + ctx.params.url;
|
|
|
|
|
|
|
|
// Create temp file
|
2019-03-20 13:50:44 -06:00
|
|
|
const [path, cleanup] = await createTemp();
|
2019-02-04 11:01:36 -07:00
|
|
|
|
|
|
|
try {
|
2019-03-20 13:50:44 -06:00
|
|
|
await downloadUrl(url, path);
|
2019-02-04 11:01:36 -07:00
|
|
|
|
2020-01-12 00:40:58 -07:00
|
|
|
const { mime, ext } = await detectType(path);
|
2019-02-04 11:01:36 -07:00
|
|
|
|
2020-01-12 00:40:58 -07:00
|
|
|
if (!mime.startsWith('image/')) throw 403;
|
2019-06-13 21:14:23 -06:00
|
|
|
|
2019-02-04 11:01:36 -07:00
|
|
|
let image: IImage;
|
|
|
|
|
2020-08-18 07:48:52 -06:00
|
|
|
if ('static' in ctx.query && ['image/png', 'image/gif', 'image/apng', 'image/vnd.mozilla.apng', 'image/webp'].includes(mime)) {
|
2019-05-15 06:27:20 -06:00
|
|
|
image = await convertToPng(path, 498, 280);
|
2020-01-12 00:40:58 -07:00
|
|
|
} else if ('preview' in ctx.query && ['image/jpeg', 'image/png', 'image/gif', 'image/apng', 'image/vnd.mozilla.apng'].includes(mime)) {
|
2019-05-15 06:27:20 -06:00
|
|
|
image = await convertToJpeg(path, 200, 200);
|
2019-02-04 11:01:36 -07:00
|
|
|
} else {
|
|
|
|
image = {
|
|
|
|
data: fs.readFileSync(path),
|
|
|
|
ext,
|
2020-01-12 00:40:58 -07:00
|
|
|
type: mime,
|
2019-02-04 11:01:36 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-07-12 07:21:47 -06:00
|
|
|
ctx.set('Content-Type', image.type);
|
2019-02-04 11:01:36 -07:00
|
|
|
ctx.set('Cache-Control', 'max-age=31536000, immutable');
|
|
|
|
ctx.body = image.data;
|
|
|
|
} catch (e) {
|
|
|
|
serverLogger.error(e);
|
2019-02-05 08:20:00 -07:00
|
|
|
|
2021-09-03 06:00:44 -06:00
|
|
|
if (typeof e.statusCode === 'number' && e.statusCode >= 400 && e.statusCode < 500) {
|
|
|
|
ctx.status = e.statusCode;
|
2019-02-05 08:20:00 -07:00
|
|
|
} else {
|
|
|
|
ctx.status = 500;
|
|
|
|
}
|
2019-02-04 11:01:36 -07:00
|
|
|
} finally {
|
|
|
|
cleanup();
|
|
|
|
}
|
|
|
|
}
|