- Introduced conversationId and replyToConversationId to support threaded replies in cross-team messages. - Updated message formatting to include conversation metadata in the message prefix. - Enhanced CrossTeamService to infer conversation metadata when not explicitly provided. - Improved tests to validate the handling of conversation IDs and ensure correct message routing. - Updated UI components to display pending replies and manage cross-team interactions more effectively.
92 lines
2.9 KiB
TypeScript
92 lines
2.9 KiB
TypeScript
import { getTeamsBasePath } from '@main/utils/pathDecoder';
|
|
import { randomUUID } from 'crypto';
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
|
|
import { atomicWriteAsync } from './atomicWrite';
|
|
import { withFileLock } from './fileLock';
|
|
import { withInboxLock } from './inboxLock';
|
|
|
|
import type { InboxMessage, SendMessageRequest, SendMessageResult } from '@shared/types';
|
|
|
|
export class TeamInboxWriter {
|
|
async sendMessage(teamName: string, request: SendMessageRequest): Promise<SendMessageResult> {
|
|
const inboxPath = path.join(getTeamsBasePath(), teamName, 'inboxes', `${request.member}.json`);
|
|
const messageId = randomUUID();
|
|
|
|
const attachmentMeta = request.attachments?.map((a) => ({
|
|
id: a.id,
|
|
filename: a.filename,
|
|
mimeType: a.mimeType,
|
|
size: a.size,
|
|
}));
|
|
|
|
const payload: InboxMessage = {
|
|
from: request.from ?? 'user',
|
|
to: request.to ?? request.member,
|
|
text: request.text,
|
|
timestamp: new Date().toISOString(),
|
|
read: false,
|
|
summary: request.summary,
|
|
messageId,
|
|
attachments: attachmentMeta?.length ? attachmentMeta : undefined,
|
|
...(request.source && { source: request.source }),
|
|
...(request.leadSessionId && { leadSessionId: request.leadSessionId }),
|
|
...(request.conversationId && { conversationId: request.conversationId }),
|
|
...(request.replyToConversationId && {
|
|
replyToConversationId: request.replyToConversationId,
|
|
}),
|
|
};
|
|
|
|
await withFileLock(inboxPath, async () => {
|
|
await withInboxLock(inboxPath, async () => {
|
|
for (let attempt = 0; attempt < 3; attempt++) {
|
|
const list = await this.readInbox(inboxPath);
|
|
list.push(payload);
|
|
await atomicWriteAsync(inboxPath, JSON.stringify(list, null, 2));
|
|
const written = await this.readInbox(inboxPath);
|
|
if (written.some((msg) => msg.messageId === messageId)) {
|
|
return;
|
|
}
|
|
await new Promise((resolve) => setTimeout(resolve, 10 * 2 ** attempt));
|
|
}
|
|
throw new Error('Failed to verify inbox write');
|
|
});
|
|
});
|
|
|
|
return {
|
|
deliveredToInbox: true,
|
|
messageId,
|
|
};
|
|
}
|
|
|
|
private async readInbox(inboxPath: string): Promise<InboxMessage[]> {
|
|
let raw: string;
|
|
try {
|
|
raw = await fs.promises.readFile(inboxPath, 'utf8');
|
|
} catch (error) {
|
|
if ((error as NodeJS.ErrnoException).code === 'ENOENT') {
|
|
return [];
|
|
}
|
|
throw error;
|
|
}
|
|
|
|
const parsed = JSON.parse(raw) as unknown;
|
|
if (!Array.isArray(parsed)) {
|
|
return [];
|
|
}
|
|
|
|
return parsed.filter((item): item is InboxMessage => {
|
|
if (!item || typeof item !== 'object') {
|
|
return false;
|
|
}
|
|
const row = item as Partial<InboxMessage>;
|
|
return (
|
|
typeof row.from === 'string' &&
|
|
typeof row.text === 'string' &&
|
|
typeof row.timestamp === 'string' &&
|
|
typeof row.read === 'boolean'
|
|
);
|
|
});
|
|
}
|
|
}
|