summary refs log tree commit diff
path: root/api/src/routes/channels/#channel_id/pins.ts
blob: 3ed42ab4f781fe0effb1b3a58cf3cc66000b717c (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
import { Channel, ChannelPinsUpdateEvent, Config, emitEvent, getPermission, Message, MessageUpdateEvent, toObject } from "@fosscord/util";
import { Router, Request, Response } from "express";
import { HTTPError } from "lambert-server";

const router: Router = Router();

router.put("/:message_id", async (req: Request, res: Response) => {
	const { channel_id, message_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");

	// * in dm channels anyone can pin messages -> only check for guilds
	if (channel.guild_id) permission.hasThrow("MANAGE_MESSAGES");

	const pinned_count = await Messagecount({ channel_id, pinned: true });
	const { maxPins } = Config.get().limits.channel;
	if (pinned_count >= maxPins) throw new HTTPError("Max pin count reached: " + maxPins);

	await Message.update({ id: message_id }, { pinned: true });
	const message = await Message.findOneOrFail({ id: message_id });

	await emitEvent({
		event: "MESSAGE_UPDATE",
		channel_id,
		data: message
	} as MessageUpdateEvent);

	await emitEvent({
		event: "CHANNEL_PINS_UPDATE",
		channel_id,
		data: {
			channel_id,
			guild_id: channel.guild_id,
			last_pin_timestamp: undefined
		}
	} as ChannelPinsUpdateEvent);

	res.sendStatus(204);
});

router.delete("/:message_id", async (req: Request, res: Response) => {
	const { channel_id, message_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");
	if (channel.guild_id) permission.hasThrow("MANAGE_MESSAGES");

	const message = await Message.findOneOrFailAndUpdate({ id: message_id }, { pinned: false }, { new: true });

	await emitEvent({
		event: "MESSAGE_UPDATE",
		channel_id,
		data: message
	} as MessageUpdateEvent);

	await emitEvent({
		event: "CHANNEL_PINS_UPDATE",
		channel_id,
		data: {
			channel_id,
			guild_id: channel.guild_id,
			last_pin_timestamp: undefined
		}
	} as ChannelPinsUpdateEvent);

	res.sendStatus(204);
});

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");

	let pins = await Message.find({ channel_id: channel_id, pinned: true });

	res.send(pins);
});

export default router;