summary refs log tree commit diff
diff options
context:
space:
mode:
authorIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-04 11:52:21 +0200
committerIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-04 11:52:21 +0200
commitc800c6f43989dcfa8ffde7c6a675d807d7e517c9 (patch)
treec879f5df5155a6936e3939f97b51b7619da0515e
parent[Route] GET /users/:id (diff)
downloadserver-c800c6f43989dcfa8ffde7c6a675d807d7e517c9.tar.xz
[Route] PATCH /guilds/:id/channels
modify
-rw-r--r--src/routes/guilds/#guild_id/channels.ts24
1 files changed, 22 insertions, 2 deletions
diff --git a/src/routes/guilds/#guild_id/channels.ts b/src/routes/guilds/#guild_id/channels.ts

index 19d466f3..73982ed5 100644 --- a/src/routes/guilds/#guild_id/channels.ts +++ b/src/routes/guilds/#guild_id/channels.ts
@@ -1,5 +1,5 @@ import { Router } from "express"; -import { ChannelCreateEvent, ChannelModel, ChannelType, GuildModel, Snowflake, toObject } from "@fosscord/server-util"; +import { ChannelCreateEvent, ChannelModel, ChannelType, GuildModel, Snowflake, toObject, ChannelUpdateEvent } from "@fosscord/server-util"; import { HTTPError } from "lambert-server"; import { ChannelModifySchema } from "../../../schema/Channel"; import { emitEvent } from "../../../util/Event"; @@ -37,7 +37,7 @@ router.post("/", check(ChannelModifySchema), async (req, res) => { } const guild = await GuildModel.findOne({ id: guild_id }, { id: true }).exec(); - if (!guild) throw new HTTPError("Guild not found", 4040); + if (!guild) throw new HTTPError("Guild not found", 404); const channel = { ...body, @@ -52,4 +52,24 @@ router.post("/", check(ChannelModifySchema), async (req, res) => { res.json(channel); }); +router.patch("/", check(ChannelModifySchema), async (req, res) => { + const { guild_id } = req.params; + const body = req.body as ChannelModifySchema; + + const guild = await GuildModel.findOne({ id: guild_id }, { id: true }).exec(); + if (!guild) throw new HTTPError("Guild not found", 404); + + const channel = { + ...body + }; + const channelm = await ChannelModel.find({ guild_id }).exec(); + if(!channelm) throw new HTTPError("Channel not found", 404); + + await new ChannelModel(channel).save(); + + await emitEvent({ event: "CHANNEL_UPDATE", data: channel } as ChannelUpdateEvent); + + res.json(channel); +}); + export default router;