summary refs log tree commit diff
path: root/src/routes/channels/#channel_id/typing.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/channels/#channel_id/typing.ts')
-rw-r--r--src/routes/channels/#channel_id/typing.ts33
1 files changed, 31 insertions, 2 deletions
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;