67 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { sendDirectMessage } from "../../db/chat";
/** POST /api/chat/dm Direktnachricht senden */
export default defineEventHandler(async (event) => {
const user = await requireUser(event);
const body = await readBody(event);
const {
receiverId,
content,
replyToId,
attachmentUrl,
attachmentType,
attachmentName,
} = body as {
receiverId: string;
content: string;
replyToId?: string;
attachmentUrl?: string;
attachmentType?: string;
attachmentName?: string;
};
if (!receiverId || (!content?.trim() && !attachmentUrl)) {
throw createError({
statusCode: 400,
message: "receiverId und content/Anhang erforderlich",
});
}
if (receiverId === user.id) {
throw createError({
statusCode: 400,
message: "Nachrichten an sich selbst nicht möglich",
});
}
if ((content ?? "").trim().length > 2000) {
throw createError({
statusCode: 400,
message: "Nachricht zu lang (max. 2000 Zeichen)",
});
}
const data = await sendDirectMessage(
user.id,
receiverId,
(content ?? "").trim(),
{
replyToId,
attachmentUrl,
attachmentType,
attachmentName,
},
);
return {
id: data.id,
content: data.content,
createdAt: data.createdAt,
isOwn: true,
readAt: null,
replyTo: data.replyTo,
attachmentUrl: data.attachmentUrl,
attachmentType: data.attachmentType,
attachmentName: data.attachmentName,
likesCount: data.likesCount,
};
});