summary refs log tree commit diff
path: root/src/routes/channels/#channel_id
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/channels/#channel_id')
-rw-r--r--src/routes/channels/#channel_id/pins.ts36
-rw-r--r--src/routes/channels/#channel_id/typing.ts33
2 files changed, 65 insertions, 4 deletions
diff --git a/src/routes/channels/#channel_id/pins.ts b/src/routes/channels/#channel_id/pins.ts
index 93c33ea5..fc7dfb09 100644
--- a/src/routes/channels/#channel_id/pins.ts
+++ b/src/routes/channels/#channel_id/pins.ts
@@ -1,5 +1,37 @@
-import { Router } from "express";
+import { ChannelModel, getPermission, MessageModel, toObject } from "@fosscord/server-util";
+import { Router, Request, Response } from "express";
+import Config from "../../../util/Config"
+import { HTTPError } from "lambert-server";
+
 const router: Router = Router();
-// TODO:
 
+router.put("/:message_id", async (req: Request, res: Response) => {
+    const { channel_id, message_id } = req.params;
+    const channel = await ChannelModel.findOne({ id: channel_id }).exec()
+    if (!channel) throw new HTTPError("Channel not found", 404)
+    const permission = await getPermission(req.user_id, channel.guild_id, channel_id)
+    permission.hasThrow("VIEW_CHANNEL")
+    permission.hasThrow("MANAGE_MESSAGES")
+
+    const pinned_count = await MessageModel.count({ channel_id, pinned: true }).exec()
+    const { maxPins } = Config.get().limits.channel
+    if (pinned_count >= maxPins) throw new HTTPError("Max pin count reached: " + maxPins)
+
+    await MessageModel.updateOne({ id: message_id }, { pinned: true }).exec()
+
+    res.sendStatus(204)
+});
+
+router.get("/", async (req: Request, res: Response) => {
+    const { channel_id } = req.params;
+
+    const channel = await ChannelModel.findOne({ id: channel_id }).exec()
+    if (!channel) throw new HTTPError("Channel not found", 404)
+    const permission = await getPermission(req.user_id, channel.guild_id, channel_id)
+    permission.hasThrow("VIEW_CHANNEL")
+
+    let pins = await MessageModel.find({ channel_id: channel_id, pinned: true }).exec()
+
+    res.send(toObject(pins))
+});
 export default router;
diff --git a/src/routes/channels/#channel_id/typing.ts b/src/routes/channels/#channel_id/typing.ts
index 93c33ea5..f0ca138c 100644
--- a/src/routes/channels/#channel_id/typing.ts
+++ b/src/routes/channels/#channel_id/typing.ts
@@ -1,5 +1,34 @@
-import { Router } from "express";
+import { ChannelModel, MemberModel, toObject, TypingStartEvent } from "@fosscord/server-util";
+import { Router, Request, Response } from "express";
+
+import { HTTPError } from "lambert-server";
+import { emitEvent } from "../../../util/Event";
+
 const router: Router = Router();
-// TODO:
+
+router.post("/", async (req: Request, res: Response) => {
+    const { channel_id } = req.params;
+    const user_id = req.user_id;
+    const timestamp = Date.now()
+    const channel = await ChannelModel.findOne({ id: channel_id });
+    if (!channel) throw new HTTPError("Channel not found", 404)
+    const member = await MemberModel.findOne({ id: user_id }).exec()
+    if (!member) throw new HTTPError("Member not found", 404)
+
+
+    await emitEvent({
+        event: "TYPING_START",
+        channel_id: channel_id,
+        guild_id: channel.guild_id,
+        data: { // this is the paylod
+            member: toObject(member),
+            channel_id,
+            timestamp,
+            user_id,
+            guild_id: channel.guild_id
+        }
+    } as TypingStartEvent)
+    res.sendStatus(204)
+});
 
 export default router;