🐛 fix handleFile()

This commit is contained in:
Flam3rboy 2021-08-07 19:21:00 +02:00
parent c396fac204
commit 30e05fdb86
3 changed files with 6 additions and 5 deletions

View File

@ -43,8 +43,8 @@ router.patch("/", check(GuildUpdateSchema), async (req: Request, res: Response)
const perms = await getPermission(req.user_id, guild_id);
perms.hasThrow("MANAGE_GUILD");
body.icon = await handleFile("icons", body.icon);
body.banner = await handleFile("banners", body.banner);
body.icon = await handleFile(`/icons/${guild_id}`, body.icon);
body.banner = await handleFile(`/banners/${guild_id}`, body.banner);
const guild = await GuildModel.findOneAndUpdate({ id: guild_id }, body)
.populate({ path: "joined_at", match: { id: req.user_id } })

View File

@ -14,7 +14,7 @@ router.get("/", async (req: Request, res: Response) => {
router.patch("/", check(UserModifySchema), async (req: Request, res: Response) => {
const body = req.body as UserModifySchema;
body.avatar = await handleFile(body.avatar as string);
body.avatar = await handleFile(`/avatars/${req.user_id}`, body.avatar as string);
const user = await UserModel.findOneAndUpdate({ id: req.user_id }, body, { projection: PublicUserProjection }).exec();
// TODO: dispatch user update event

View File

@ -31,9 +31,10 @@ export async function handleFile(path: string, body?: string): Promise<string |
const buffer = Buffer.from(body.split(",")[1], "base64");
// @ts-ignore
const { id } = await uploadFile(`/${path}/${guild_id}`, { buffer, mimetype, originalname: "banner" });
const { id } = await uploadFile(path, { buffer, mimetype, originalname: "banner" });
return id;
} catch (error) {
throw new HTTPError("Invalid " + path);
console.error(error);
throw new HTTPError("Invalid icon");
}
}