Implement federated chat message sending and receiving

Adds /api/chat/receive endpoint to accept federated chat messages from remote nodes and store them for local users. Updates /api/chat/send to support sending messages to remote nodes by resolving recipient domains, posting to their /api/chat/receive endpoint, and storing a local copy of the sent message. Enables basic cross-node chat federation.
This commit is contained in:
Christopher
2026-01-28 07:27:44 -08:00
parent 70b86244a7
commit a21af87144
2 changed files with 181 additions and 4 deletions
+94
View File
@@ -0,0 +1,94 @@
import { NextRequest, NextResponse } from 'next/server';
import { db } from '@/db';
import { chatConversations, chatMessages, users } from '@/db/schema';
import { eq, and } from 'drizzle-orm';
/**
* POST /api/chat/receive
* Endpoint for receiving federated chat messages from other nodes.
*
* Body: {
* senderDid: string,
* senderHandle: string, // user@domain
* senderDisplayName: string,
* senderAvatarUrl: string,
* senderNodeDomain: string,
* recipientDid: string,
* encryptedContent: string (base64 JSON of {senderPublicKey, ciphertext, nonce, recipientDid}),
* sentAt: string (ISO date)
* }
*/
export async function POST(request: NextRequest) {
try {
const body = await request.json();
const {
senderDid,
senderHandle,
senderDisplayName,
senderAvatarUrl,
senderNodeDomain,
recipientDid,
encryptedContent
} = body;
// Basic validation
if (!senderDid || !senderHandle || !recipientDid || !encryptedContent || !senderNodeDomain) {
return NextResponse.json({ error: 'Missing required fields' }, { status: 400 });
}
// 1. Find local recipient
const recipientUser = await db.query.users.findFirst({
where: eq(users.did, recipientDid)
});
if (!recipientUser) {
return NextResponse.json({ error: 'Recipient not found' }, { status: 404 });
}
// 2. Find or Create Conversation
// For the RECIPIENT, the conversation is with the SENDER (Remote)
let conversation = await db.query.chatConversations.findFirst({
where: and(
eq(chatConversations.participant1Id, recipientUser.id),
eq(chatConversations.participant2Handle, senderHandle)
)
});
if (!conversation) {
const [newConv] = await db.insert(chatConversations).values({
participant1Id: recipientUser.id,
participant2Handle: senderHandle,
lastMessageAt: new Date(),
lastMessagePreview: '[Encrypted Message]'
}).returning();
conversation = newConv;
}
// 3. Store Message
await db.insert(chatMessages).values({
conversationId: conversation.id,
senderHandle: senderHandle,
senderDisplayName: senderDisplayName || senderHandle,
senderAvatarUrl: senderAvatarUrl,
senderNodeDomain: senderNodeDomain,
senderDid: senderDid,
encryptedContent: encryptedContent,
deliveredAt: new Date(),
});
// 4. Update conversation timestamp
await db.update(chatConversations)
.set({
lastMessageAt: new Date(),
lastMessagePreview: '[Encrypted Message]'
})
.where(eq(chatConversations.id, conversation.id));
return NextResponse.json({ success: true });
} catch (error: any) {
console.error('Federated Receive Failed:', error);
return NextResponse.json({ error: error.message }, { status: 500 });
}
}