summary refs log tree commit diff
path: root/cdn/src/routes/external.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cdn/src/routes/external.ts')
-rw-r--r--cdn/src/routes/external.ts35
1 files changed, 34 insertions, 1 deletions
diff --git a/cdn/src/routes/external.ts b/cdn/src/routes/external.ts

index dc90e3c8..577c38ec 100644 --- a/cdn/src/routes/external.ts +++ b/cdn/src/routes/external.ts
@@ -3,8 +3,9 @@ import fetch from "node-fetch"; import { HTTPError } from "lambert-server"; import { Snowflake } from "@fosscord/util"; import { storage } from "../util/Storage"; -import FileType from "file-type"; +import FileType, { stream } from "file-type"; import { Config } from "@fosscord/util"; +import sharp from "sharp"; // TODO: somehow handle the deletion of images posted to the /external route @@ -56,4 +57,36 @@ router.get("/:id", async (req: Request, res: Response) => { return res.send(file); }); +// this method is gross lol don't care +router.get("/resize/:url", async (req: Request, res: Response) => { + const url = decodeURIComponent(req.params.url); + const { width, height } = req.query; + if (!width || !height) throw new HTTPError("Must provide width and height"); + + const { resizeHeightMax, resizeWidthMax } = Config.get().cdn; + const w = Math.min(parseInt(width as string), resizeWidthMax ?? 100); + const h = Math.min(parseInt(height as string), resizeHeightMax ?? 100); + if (w < 1 || h < 1) throw new HTTPError("Width and height must be greater than 0"); + + let buffer; + try { + const response = await fetch(url, DEFAULT_FETCH_OPTIONS); + buffer = await response.buffer(); + } + catch (e) { + throw new HTTPError("Couldn't fetch website"); + } + + const resizedBuffer = await sharp(buffer) + .resize(parseInt(width as string), parseInt(height as string), { + fit: "inside", + }) + .png() + .toBuffer(); + + res.setHeader("Content-Disposition", "attachment"); + res.setHeader("Content-Type", "image/png"); + return res.end(resizedBuffer); +}); + export default router;