summary refs log tree commit diff
path: root/src/routes
diff options
context:
space:
mode:
authorIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-06 23:24:39 +0200
committerIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-06 23:24:39 +0200
commit4e765c424e9c520f788f5a9eb7001a9925779e9a (patch)
treedddd4fa9a3079b7434e82fa4703ab7bc877a7820 /src/routes
parent[Route] DELETE /guilds/:id/roles (diff)
downloadserver-4e765c424e9c520f788f5a9eb7001a9925779e9a.tar.xz
[Route] PATCH /guilds/:id/roles
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/guilds/#guild_id/roles.ts30
1 files changed, 29 insertions, 1 deletions
diff --git a/src/routes/guilds/#guild_id/roles.ts b/src/routes/guilds/#guild_id/roles.ts
index fa9025a4..b48dc75e 100644
--- a/src/routes/guilds/#guild_id/roles.ts
+++ b/src/routes/guilds/#guild_id/roles.ts
@@ -3,7 +3,7 @@ import { RoleModel, GuildModel, getPermission, toObject, UserModel, Snowflake, M
 import { HTTPError } from "lambert-server";
 import { emitEvent } from "../../../util/Event";
 import { check } from "../../../util/instanceOf";
-import { RoleCreateSchema } from "../../../schema/Roles";
+import { RoleCreateSchema, RoleModifySchema } from "../../../schema/Roles";
 import { getPublicUser } from "../../../util/User";
 
 const router: Router = Router();
@@ -75,4 +75,32 @@ router.delete("/:role_id", async (req: Request, res: Response) => {
 	res.send("Deleted");
 });
 
+
+router.patch("/:role_id", check(RoleModifySchema), async (req: Request, res: Response) => {
+    const guild_id = req.params.guild_id;
+    const { role_id } = req.params;
+
+	const guild = await GuildModel.findOne({ id: guild_id }, { id: true }).exec();
+	if (!guild) throw new HTTPError("Guild not found", 404);
+	if (!role_id) throw new HTTPError("Unknown template_id", 404);
+
+	const user = await UserModel.findOne({ id: req.user_id }).exec();
+	if (!user) throw new HTTPError("User not found", 404);
+
+	const role = await RoleModel.findOne({ id: role_id, guild_id: guild_id }).exec();
+	if (!role) throw new HTTPError("role not found", 404);
+
+	const perms = await getPermission(req.user_id, guild_id);
+
+	if (!perms.has("MANAGE_ROLES"))
+		throw new HTTPError("You missing the MANAGE_ROLES permission", 401);
+
+	var roleObj = await RoleModel.findOneAndUpdate({
+		id: role_id, guild_id: guild_id
+	}, ...req.body).exec();
+
+	res.json(toObject(roleObj)).send();
+});
+
+
 export default router;