mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-15 07:04:01 -06:00
a2a68d154b
* 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>
32 lines
862 B
TypeScript
32 lines
862 B
TypeScript
// Nostr plugin module implements session route behavior.
|
|
import {
|
|
buildChannelOutboundSessionRoute,
|
|
stripChannelTargetPrefix,
|
|
type ChannelOutboundSessionRouteParams,
|
|
} from "openclaw/plugin-sdk/core";
|
|
import { normalizePubkey } from "./nostr-key-utils.js";
|
|
|
|
export function resolveNostrOutboundSessionRoute(params: ChannelOutboundSessionRouteParams) {
|
|
const rawTarget = stripChannelTargetPrefix(params.target, "nostr");
|
|
let target: string;
|
|
try {
|
|
target = normalizePubkey(rawTarget);
|
|
} catch {
|
|
return null;
|
|
}
|
|
return buildChannelOutboundSessionRoute({
|
|
cfg: params.cfg,
|
|
agentId: params.agentId,
|
|
channel: "nostr",
|
|
accountId: params.accountId,
|
|
recipientSessionExact: true,
|
|
peer: {
|
|
kind: "direct",
|
|
id: target,
|
|
},
|
|
chatType: "direct",
|
|
from: `nostr:${target}`,
|
|
to: `nostr:${target}`,
|
|
});
|
|
}
|