Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | 1x 1x 1x | /**
* 会话管理模块
* 构建 OpenClaw 标准会话上下文
*/
import { NEW_SESSION_COMMANDS } from './constants.ts';
/** OpenClaw 标准会话上下文 */
export interface SessionContext {
channel: 'dingtalk-connector';
accountId: string;
chatType: 'direct' | 'group';
peerId: string;
conversationId?: string;
senderName?: string;
groupSubject?: string;
}
/**
* 构建 OpenClaw 标准会话上下文
* 遵循 OpenClaw session.dmScope 机制,让 Gateway 根据配置自动处理会话隔离
*/
export function buildSessionContext(params: {
accountId: string;
senderId: string;
senderName?: string;
conversationType: string;
conversationId?: string;
groupSubject?: string;
separateSessionByConversation?: boolean;
groupSessionScope?: 'group' | 'group_sender';
}): SessionContext {
const {
accountId,
senderId,
senderName,
conversationType,
conversationId,
groupSubject,
separateSessionByConversation,
groupSessionScope,
} = params;
const isDirect = conversationType === '1';
if (separateSessionByConversation === false) {
return {
channel: 'dingtalk-connector',
accountId,
chatType: isDirect ? 'direct' : 'group',
peerId: senderId,
senderName,
};
}
if (isDirect) {
return {
channel: 'dingtalk-connector',
accountId,
chatType: 'direct',
peerId: senderId,
senderName,
};
}
if (groupSessionScope === 'group_sender') {
return {
channel: 'dingtalk-connector',
accountId,
chatType: 'group',
peerId: `${conversationId}:${senderId}`,
conversationId,
senderName,
groupSubject,
};
}
return {
channel: 'dingtalk-connector',
accountId,
chatType: 'group',
peerId: conversationId || senderId,
conversationId,
senderName,
groupSubject,
};
}
/**
* 检查消息是否是新会话命令
*/
export function normalizeSlashCommand(text: string): string {
const trimmed = text.trim();
const lower = trimmed.toLowerCase();
if (NEW_SESSION_COMMANDS.some((cmd) => lower === cmd.toLowerCase())) {
return '/new';
}
return text;
}
|