mirror of
https://github.com/misskey-dev/media-proxy.git
synced 2025-08-07 16:53:56 +09:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
72431d805e | |||
c3738a339a | |||
99f0160e17 | |||
bd6f63b60e | |||
384c51569f | |||
57aa87f370 | |||
d86823e32d | |||
405e6a5adb |
@ -4,8 +4,6 @@
|
||||
|
||||
Misskeyの/proxyが単体で動作します(Misskeyのコードがほぼそのまま移植されています)。
|
||||
|
||||
/proxyは画像ではないと403を返しますが、Media Proxyではそのまま内容を送信します。
|
||||
|
||||
**Fastifyプラグインとして動作する気がします。**
|
||||
`pnpm start`は[fastify-cli](https://github.com/fastify/fastify-cli)が動作します。
|
||||
|
||||
|
@ -72,7 +72,7 @@ https://www.google.com/images/errors/robot.png をプロキシする場合:
|
||||
#### static
|
||||
存在すると、アニメーション画像では最初のフレームのみの静止画のwebpが応答される。
|
||||
|
||||
emojiまたはavatarとstaticが同時に指定された場合は、それぞれに応じた高さが、指定されていない場合は幅498px・高さ280pxに収まるサイズ以下に縮小される。
|
||||
emojiまたはavatarとstaticが同時に指定された場合は、それぞれに応じた高さが、指定されていない場合は幅498px・高さ422pxに収まるサイズ以下に縮小される。
|
||||
|
||||
#### preview
|
||||
存在すると、幅200px・高さ200pxに収まるサイズ以下のwebpが応答される。
|
||||
|
@ -61,9 +61,14 @@ export async function downloadUrl(url, path, settings = defaultDownloadConfig) {
|
||||
}
|
||||
const contentDisposition = res.headers['content-disposition'];
|
||||
if (contentDisposition != null) {
|
||||
const parsed = parse(contentDisposition);
|
||||
if (parsed.parameters.filename) {
|
||||
filename = parsed.parameters.filename;
|
||||
try {
|
||||
const parsed = parse(contentDisposition);
|
||||
if (parsed.parameters.filename) {
|
||||
filename = parsed.parameters.filename;
|
||||
}
|
||||
}
|
||||
catch (e) {
|
||||
console.log(`Failed to parse content-disposition: ${contentDisposition}\n${e}`);
|
||||
}
|
||||
}
|
||||
}).on('downloadProgress', (progress) => {
|
||||
|
@ -1,11 +1,12 @@
|
||||
import sharp from 'sharp';
|
||||
export const webpDefault = {
|
||||
quality: 85,
|
||||
quality: 77,
|
||||
alphaQuality: 95,
|
||||
lossless: false,
|
||||
nearLossless: false,
|
||||
smartSubsample: true,
|
||||
mixed: true,
|
||||
effort: 2,
|
||||
};
|
||||
export function convertToWebpStream(path, width, height, options = webpDefault) {
|
||||
return convertSharpToWebpStream(sharp(path), width, height, options);
|
||||
|
@ -122,7 +122,7 @@ async function proxyHandler(request, reply) {
|
||||
}
|
||||
}
|
||||
else if ('static' in request.query) {
|
||||
image = convertSharpToWebpStream(await sharpBmp(file.path, file.mime), 498, 280);
|
||||
image = convertSharpToWebpStream(await sharpBmp(file.path, file.mime), 498, 422);
|
||||
}
|
||||
else if ('preview' in request.query) {
|
||||
image = convertSharpToWebpStream(await sharpBmp(file.path, file.mime), 200, 200);
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "misskey-media-proxy",
|
||||
"version": "0.0.17",
|
||||
"version": "0.0.20",
|
||||
"description": "The Media Proxy for Misskey",
|
||||
"main": "built/index.js",
|
||||
"packageManager": "pnpm@7.28.0",
|
||||
|
@ -82,9 +82,13 @@ export async function downloadUrl(url: string, path: string, settings:DownloadCo
|
||||
|
||||
const contentDisposition = res.headers['content-disposition'];
|
||||
if (contentDisposition != null) {
|
||||
const parsed = parse(contentDisposition);
|
||||
if (parsed.parameters.filename) {
|
||||
filename = parsed.parameters.filename;
|
||||
try {
|
||||
const parsed = parse(contentDisposition);
|
||||
if (parsed.parameters.filename) {
|
||||
filename = parsed.parameters.filename;
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(`Failed to parse content-disposition: ${contentDisposition}\n${e}`);
|
||||
}
|
||||
}
|
||||
}).on('downloadProgress', (progress: Got.Progress) => {
|
||||
|
@ -16,12 +16,13 @@ export type IImageStream = {
|
||||
export type IImageStreamable = IImage | IImageStream;
|
||||
|
||||
export const webpDefault: sharp.WebpOptions = {
|
||||
quality: 85,
|
||||
quality: 77,
|
||||
alphaQuality: 95,
|
||||
lossless: false,
|
||||
nearLossless: false,
|
||||
smartSubsample: true,
|
||||
mixed: true,
|
||||
effort: 2,
|
||||
};
|
||||
|
||||
export function convertToWebpStream(path: string, width: number, height: number, options: sharp.WebpOptions = webpDefault): IImageStream {
|
||||
|
@ -168,7 +168,7 @@ async function proxyHandler(request: FastifyRequest<{ Params: { url: string; };
|
||||
};
|
||||
}
|
||||
} else if ('static' in request.query) {
|
||||
image = convertSharpToWebpStream(await sharpBmp(file.path, file.mime), 498, 280);
|
||||
image = convertSharpToWebpStream(await sharpBmp(file.path, file.mime), 498, 422);
|
||||
} else if ('preview' in request.query) {
|
||||
image = convertSharpToWebpStream(await sharpBmp(file.path, file.mime), 200, 200);
|
||||
} else if ('badge' in request.query) {
|
||||
|
Reference in New Issue
Block a user