summary refs log tree commit diff
path: root/api/src/routes/channels/#channel_id/index.ts
blob: 915346023170e7d166b2adb2c1e3dbc4628ffeb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { ChannelDeleteEvent, Channel, ChannelUpdateEvent, emitEvent, getPermission, GuildUpdateEvent, toObject } from "@fosscord/util";
import { Router, Response, Request } from "express";
import { HTTPError } from "lambert-server";
import { ChannelModifySchema } from "../../../schema/Channel";
import { check } from "../../../util/instanceOf";
const router: Router = Router();
// TODO: delete channel
// TODO: Get channel

router.get("/", async (req: Request, res: Response) => {
	const { channel_id } = req.params;

	const channel = await Channel.findOneOrFail({ id: channel_id });

	const permission = await getPermission(req.user_id, channel.guild_id, channel_id);
	permission.hasThrow("VIEW_CHANNEL");

	return res.send(channel);
});

router.delete("/", async (req: Request, res: Response) => {
	const { channel_id } = req.params;

	const channel = await Channel.findOneOrFail({ id: channel_id });

	const permission = await getPermission(req.user_id, channel?.guild_id, channel_id, { channel });
	permission.hasThrow("MANAGE_CHANNELS");

	// TODO: Dm channel "close" not delete
	const data = channel;

	await emitEvent({ event: "CHANNEL_DELETE", data, channel_id } as ChannelDeleteEvent);

	await Channel.deleteOne({ id: channel_id });

	res.send(data);
});

router.patch("/", check(ChannelModifySchema), async (req: Request, res: Response) => {
	var payload = req.body as ChannelModifySchema;
	const { channel_id } = req.params;

	const permission = await getPermission(req.user_id, undefined, channel_id);
	permission.hasThrow("MANAGE_CHANNELS");

	const channel = await Channel.findOneOrFailAndUpdate({ id: channel_id }, payload, { new: true });

	const data = channel;

	await emitEvent({
		event: "CHANNEL_UPDATE",
		data,
		channel_id
	} as ChannelUpdateEvent);

	res.send(data);
});

export default router;