Skip to content

Commit 6f031db

Browse files
WORKAROUND: Ignore client-requested file extension for role icons
1 parent 583d9ff commit 6f031db

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

src/cdn/routes/role-icons.ts

+19-2
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,26 @@ router.get("/:role_id", async (req: Request, res: Response) => {
9393
router.get("/:role_id/:hash", async (req: Request, res: Response) => {
9494
const { role_id, hash } = req.params;
9595
//hash = hash.split(".")[0]; // remove .file extension
96-
const path = `role-icons/${role_id}/${hash}`;
96+
const requested_extension = hash.split(".")[1];
97+
const role_icon_hash = hash.split(".")[0];
98+
let file: Buffer | null = null;
99+
100+
const extensions_to_try = [
101+
requested_extension,
102+
"png",
103+
"jpg",
104+
"jpeg",
105+
"webp",
106+
"svg",
107+
];
108+
109+
for (let i = 0; i < extensions_to_try.length; i++) {
110+
file = await storage.get(
111+
`role-icons/${role_id}/${role_icon_hash}.${extensions_to_try[i]}`,
112+
);
113+
if (file) break;
114+
}
97115

98-
const file = await storage.get(path);
99116
if (!file) throw new HTTPError("not found", 404);
100117
const type = await FileType.fromBuffer(file);
101118

0 commit comments

Comments
 (0)