From a2bf29bc7f22c00129dd8f9e7e8aead33825ed93 Mon Sep 17 00:00:00 2001 From: Rory& Date: Tue, 3 Feb 2026 03:22:58 +0100 Subject: [PATCH] cdn: avatar decorations --- src/cdn/Server.ts | 4 +-- src/cdn/routes/avatar-decoration-presets.ts | 40 +++++++++++++++++++++ 2 files changed, 42 insertions(+), 2 deletions(-) create mode 100644 src/cdn/routes/avatar-decoration-presets.ts diff --git a/src/cdn/Server.ts b/src/cdn/Server.ts index 091621f06..68974433d 100644 --- a/src/cdn/Server.ts +++ b/src/cdn/Server.ts @@ -100,10 +100,10 @@ export class CDNServer extends Server { console.log("[Server] Route /channel-icons registered"); this.app.use("/guilds/:guild_id/users/:user_id/avatars", guildProfilesRoute); - console.log("[Server] Route /guilds/avatars registered"); + console.log("[Server] Route /guilds/:guild_id/users/:user_id/avatars registered"); this.app.use("/guilds/:guild_id/users/:user_id/banners", guildProfilesRoute); - console.log("[Server] Route /guilds/banners registered"); + console.log("[Server] Route /guilds/:guild_id/users/:user_id/banners registered"); return super.start(); } diff --git a/src/cdn/routes/avatar-decoration-presets.ts b/src/cdn/routes/avatar-decoration-presets.ts new file mode 100644 index 000000000..736a281d1 --- /dev/null +++ b/src/cdn/routes/avatar-decoration-presets.ts @@ -0,0 +1,40 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Spacebar and Spacebar Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + +import { Router, Response, Request } from "express"; +import { storage } from "../util/Storage"; +import { HTTPError } from "lambert-server"; +import { fileTypeFromBuffer } from "file-type"; +import { cache } from "../util/cache"; + +const router = Router({ mergeParams: true }); + +router.get("/:avatar_decoration_data_asset", cache, async (req: Request, res: Response) => { + const { avatar_decoration_data_asset } = req.params as { [key: string]: string }; + const path = `avatar-decoration-presets/${avatar_decoration_data_asset}`; + + const file = await storage.get(path); + if (!file) throw new HTTPError("not found", 404); + const type = await fileTypeFromBuffer(file); + + res.set("Content-Type", type?.mime); + + return res.send(file); +}); + +export default router;