mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-06 12:06:58 +00:00
* wip * revert send-drive-file change * fix * Update packages/backend/src/server/proxy/proxy-media.ts Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com>
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
import * as fs from 'fs';
|
|
import * as Koa from 'koa';
|
|
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';
|
|
import { StatusError } from '@/misc/fetch';
|
|
import { FILE_TYPE_BROWSERSAFE } from '@/const';
|
|
|
|
export async function proxyMedia(ctx: Koa.Context) {
|
|
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 { mime, ext } = await detectType(path);
|
|
|
|
let image: IImage;
|
|
|
|
if ('static' in ctx.query && ['image/png', 'image/gif', 'image/apng', 'image/vnd.mozilla.apng', 'image/webp', 'image/svg+xml'].includes(mime)) {
|
|
image = await convertToPng(path, 498, 280);
|
|
} else if ('preview' in ctx.query && ['image/jpeg', 'image/png', 'image/gif', 'image/apng', 'image/vnd.mozilla.apng', 'image/svg+xml'].includes(mime)) {
|
|
image = await convertToJpeg(path, 200, 200);
|
|
} else if (['image/svg+xml'].includes(mime)) {
|
|
image = await convertToPng(path, 2048, 2048);
|
|
} else if (!mime.startsWith('image/') || !FILE_TYPE_BROWSERSAFE.includes(mime)) {
|
|
throw new StatusError('Rejected type', 403, 'Rejected type');
|
|
} else {
|
|
image = {
|
|
data: fs.readFileSync(path),
|
|
ext,
|
|
type: mime,
|
|
};
|
|
}
|
|
|
|
ctx.set('Content-Type', image.type);
|
|
ctx.set('Cache-Control', 'max-age=31536000, immutable');
|
|
ctx.body = image.data;
|
|
} catch (e) {
|
|
serverLogger.error(`${e}`);
|
|
|
|
if (e instanceof StatusError && e.isClientError) {
|
|
ctx.status = e.statusCode;
|
|
} else {
|
|
ctx.status = 500;
|
|
}
|
|
} finally {
|
|
cleanup();
|
|
}
|
|
}
|