mirror of https://github.com/openclaw/openclaw.git
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import { normalizeChatType } from "openclaw/plugin-sdk/channel-runtime";
|
|
import type { MsgContext } from "openclaw/plugin-sdk/reply-runtime";
|
|
|
|
export function normalizeExplicitDiscordSessionKey(
|
|
sessionKey: string,
|
|
ctx: Pick<MsgContext, "ChatType" | "From" | "SenderId">,
|
|
): string {
|
|
let normalized = sessionKey.trim().toLowerCase();
|
|
if (normalizeChatType(ctx.ChatType) !== "direct") {
|
|
return normalized;
|
|
}
|
|
|
|
normalized = normalized.replace(/^(discord:)dm:/, "$1direct:");
|
|
normalized = normalized.replace(/^(agent:[^:]+:discord:)dm:/, "$1direct:");
|
|
const match = normalized.match(/^((?:agent:[^:]+:)?)discord:channel:([^:]+)$/);
|
|
if (!match) {
|
|
return normalized;
|
|
}
|
|
|
|
const from = (ctx.From ?? "").trim().toLowerCase();
|
|
const senderId = (ctx.SenderId ?? "").trim().toLowerCase();
|
|
const fromDiscordId =
|
|
from.startsWith("discord:") && !from.includes(":channel:") && !from.includes(":group:")
|
|
? from.slice("discord:".length)
|
|
: "";
|
|
const directId = senderId || fromDiscordId;
|
|
return directId && directId === match[2] ? `${match[1]}discord:direct:${match[2]}` : normalized;
|
|
}
|