summary refs log tree commit diff
path: root/api/src/routes/guilds/#guild_id/templates.ts
blob: fdca1c40decf13c4bc2b6fc328d7b270ec145005 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import { Request, Response, Router } from "express";
import { TemplateModel, GuildModel, getPermission, toObject, UserModel, Snowflake } from "@fosscord/util";
import { HTTPError } from "lambert-server";
import { TemplateCreateSchema, TemplateModifySchema } from "../../../schema/Template";
import { check } from "../../../util/instanceOf";
import { generateCode } from "../../../util/String";

const router: Router = Router();

const TemplateGuildProjection = {
	name: true,
	description: true,
	region: true,
	verification_level: true,
	default_message_notifications: true,
	explicit_content_filter: true,
	preferred_locale: true,
	afk_timeout: true,
	roles: true,
	channels: true,
	afk_channel_id: true,
	system_channel_id: true,
	system_channel_flags: true,
	icon_hash: true
};

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

	var templates = await TemplateModel.find({ source_guild_id: guild_id }).exec();

	return res.json(toObject(templates));
});

router.post("/", check(TemplateCreateSchema), async (req: Request, res: Response) => {
	const { guild_id } = req.params;
	const guild = await GuildModel.findOne({ id: guild_id }, TemplateGuildProjection).exec();
	const perms = await getPermission(req.user_id, guild_id);
	perms.hasThrow("MANAGE_GUILD");

	const exists = await TemplateModel.findOne({ id: guild_id })
		.exec()
		.catch((e) => {});
	if (exists) throw new HTTPError("Template already exists", 400);

	const template = await new TemplateModel({
		...req.body,
		code: generateCode(),
		creator_id: req.user_id,
		created_at: new Date(),
		updated_at: new Date(),
		source_guild_id: guild_id,
		serialized_source_guild: guild
	}).save();

	res.json(toObject(template)).send();
});

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

	const perms = await getPermission(req.user_id, guild_id);
	perms.hasThrow("MANAGE_GUILD");

	const template = await TemplateModel.findOneAndDelete({
		code
	}).exec();

	res.send(toObject(template));
});

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

	const guild = await GuildModel.findOne({ id: guild_id }, TemplateGuildProjection).exec();

	const perms = await getPermission(req.user_id, guild_id);
	perms.hasThrow("MANAGE_GUILD");

	const template = await TemplateModel.findOneAndUpdate({ code }, { serialized_source_guild: guild }).exec();

	res.json(toObject(template)).send();
});

router.patch("/:code", check(TemplateModifySchema), async (req: Request, res: Response) => {
	const { guild_id } = req.params;
	const { code } = req.params;

	const perms = await getPermission(req.user_id, guild_id);
	perms.hasThrow("MANAGE_GUILD");

	const template = await TemplateModel.findOneAndUpdate({ code }, { name: req.body.name, description: req.body.description }).exec();

	res.json(toObject(template)).send();
});

export default router;