mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-12-04 07:38:08 -07:00
83096440cc
* wip * Update packages/client/src/os.ts Co-authored-by: tamaina <tamaina@hotmail.co.jp> * メニューをComposition API化、switchアイテム追加 クライアントサイド画像圧縮の準備 * メニュー型定義を分離 (TypeScriptの型支援が効かないので) * disabled * make keepOriginal to follow setting value * ✌️ * fix * fix * ✌️ * WEBP * aaa * ✌️ * webp * lazy load browser-image-resizer * rename * rename 2 * Fix * clean up * add comment * clean up * jpeg, pngにもどす * fix * fix name * webpでなくする ただしサムネやプレビューはwebpのまま (テスト) * 動画サムネイルはjpegに * エラーハンドリング * ✌️ * v2.2.1-misskey-beta.2 * browser-image-resizer#v2.2.1-misskey.1 * ✌️ * fix alert * update browser-image-resizer to v2.2.1-misskey.2 * lockfile Co-authored-by: mei23 <m@m544.net> Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com>
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
import * as fs from 'node:fs';
|
|
import Koa from 'koa';
|
|
import { serverLogger } from '../index.js';
|
|
import { IImage, convertToWebp } from '@/services/drive/image-processor.js';
|
|
import { createTemp } from '@/misc/create-temp.js';
|
|
import { downloadUrl } from '@/misc/download-url.js';
|
|
import { detectType } from '@/misc/get-file-info.js';
|
|
import { StatusError } from '@/misc/fetch.js';
|
|
import { FILE_TYPE_BROWSERSAFE } from '@/const.js';
|
|
|
|
export async function proxyMedia(ctx: Koa.Context) {
|
|
const url = 'url' in ctx.query ? ctx.query.url : 'https://' + ctx.params.url;
|
|
|
|
if (typeof url !== 'string') {
|
|
ctx.status = 400;
|
|
return;
|
|
}
|
|
|
|
// 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 convertToWebp(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 convertToWebp(path, 200, 200);
|
|
} else if (['image/svg+xml'].includes(mime)) {
|
|
image = await convertToWebp(path, 2048, 2048, 1);
|
|
} 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();
|
|
}
|
|
}
|