mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-17 14:11:38 +00:00
* fix(agent): honor recipient session routing Co-authored-by: vincentkoc <25068+vincentkoc@users.noreply.github.com> Co-authored-by: pingfanfan <pingfan.work@gmail.com> * fix(agent): preserve canonical recipient routes * fix(agent): require exact recipient routes Co-authored-by: vincentkoc <25068+vincentkoc@users.noreply.github.com> Co-authored-by: pingfanfan <pingfan.work@gmail.com> * fix(agent): harden recipient route resolution * fix(imessage): require canonical recipient handles * fix(agent): refine provider recipient exactness * fix(agent): bound direct alias session routing * fix(signal): preserve direct alias route type * fix(agent): honor binding-scoped recipient sessions * fix(routing): honor configured main session aliases * fix(clickclack): align account-owned session routes * fix(twitch): preserve canonical recipient sessions * fix(routing): isolate stable outbound identities * chore: defer recipient session changelog * fix(sms): use dedicated channel SDK facade --------- Co-authored-by: vincentkoc <25068+vincentkoc@users.noreply.github.com> Co-authored-by: pingfanfan <pingfan.work@gmail.com>
115 lines
3.4 KiB
TypeScript
115 lines
3.4 KiB
TypeScript
import { buildChannelOutboundSessionRoute } from "openclaw/plugin-sdk/channel-core";
|
|
import type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";
|
|
// Irc helper module supports normalize behavior.
|
|
import {
|
|
normalizeLowercaseStringOrEmpty,
|
|
normalizeOptionalLowercaseString,
|
|
} from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
import { hasIrcControlChars } from "./control-chars.js";
|
|
import type { IrcInboundMessage } from "./types.js";
|
|
|
|
const IRC_TARGET_PATTERN = /^[^\s:]+$/u;
|
|
|
|
export function isChannelTarget(target: string): boolean {
|
|
return target.startsWith("#") || target.startsWith("&");
|
|
}
|
|
|
|
export function normalizeIrcMessagingTarget(raw: string): string | undefined {
|
|
const trimmed = raw.trim();
|
|
if (!trimmed) {
|
|
return undefined;
|
|
}
|
|
let target = trimmed;
|
|
const lowered = normalizeLowercaseStringOrEmpty(target);
|
|
if (lowered.startsWith("irc:")) {
|
|
target = target.slice("irc:".length).trim();
|
|
}
|
|
if (normalizeLowercaseStringOrEmpty(target).startsWith("channel:")) {
|
|
target = target.slice("channel:".length).trim();
|
|
if (!target.startsWith("#") && !target.startsWith("&")) {
|
|
target = `#${target}`;
|
|
}
|
|
}
|
|
if (normalizeLowercaseStringOrEmpty(target).startsWith("user:")) {
|
|
target = target.slice("user:".length).trim();
|
|
}
|
|
if (!target || !looksLikeIrcTargetId(target)) {
|
|
return undefined;
|
|
}
|
|
return target;
|
|
}
|
|
|
|
export function resolveIrcOutboundSessionRoute(params: {
|
|
cfg: OpenClawConfig;
|
|
agentId: string;
|
|
accountId?: string | null;
|
|
target: string;
|
|
}) {
|
|
const target = normalizeIrcMessagingTarget(params.target);
|
|
if (!target) {
|
|
return null;
|
|
}
|
|
const chatType = isChannelTarget(target) ? "group" : "direct";
|
|
// Server-specific casemapping and nick changes mean the outbound spelling is
|
|
// not a stable inbound peer identity, even when delivery succeeds.
|
|
return buildChannelOutboundSessionRoute({
|
|
cfg: params.cfg,
|
|
agentId: params.agentId,
|
|
channel: "irc",
|
|
accountId: params.accountId,
|
|
recipientSessionExact: chatType === "direct" ? "direct-alias" : false,
|
|
peer: { kind: chatType, id: target },
|
|
chatType,
|
|
from: `irc:${target}`,
|
|
to: target,
|
|
});
|
|
}
|
|
|
|
export function looksLikeIrcTargetId(raw: string): boolean {
|
|
const trimmed = raw.trim();
|
|
if (!trimmed) {
|
|
return false;
|
|
}
|
|
if (hasIrcControlChars(trimmed)) {
|
|
return false;
|
|
}
|
|
return IRC_TARGET_PATTERN.test(trimmed);
|
|
}
|
|
|
|
export function normalizeIrcAllowEntry(raw: string): string {
|
|
let value = normalizeLowercaseStringOrEmpty(raw);
|
|
if (!value) {
|
|
return "";
|
|
}
|
|
if (value.startsWith("irc:")) {
|
|
value = value.slice("irc:".length);
|
|
}
|
|
if (value.startsWith("user:")) {
|
|
value = value.slice("user:".length);
|
|
}
|
|
return value.trim();
|
|
}
|
|
|
|
export function buildIrcAllowlistCandidates(
|
|
message: IrcInboundMessage,
|
|
params?: { allowNameMatching?: boolean },
|
|
): string[] {
|
|
const nick = normalizeLowercaseStringOrEmpty(message.senderNick);
|
|
const user = normalizeOptionalLowercaseString(message.senderUser);
|
|
const host = normalizeOptionalLowercaseString(message.senderHost);
|
|
const candidates = new Set<string>();
|
|
if (nick && params?.allowNameMatching === true) {
|
|
candidates.add(nick);
|
|
}
|
|
if (nick && user) {
|
|
candidates.add(`${nick}!${user}`);
|
|
}
|
|
if (nick && host) {
|
|
candidates.add(`${nick}@${host}`);
|
|
}
|
|
if (nick && user && host) {
|
|
candidates.add(`${nick}!${user}@${host}`);
|
|
}
|
|
return [...candidates];
|
|
}
|