惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 聂微东
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
美团技术团队
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
Jina AI
Jina AI
D
Docker
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(channels): handle generated dock commands · openclaw/...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -0,0 +1,176 @@

1+

import { getActivePluginChannelRegistry } from "../../plugins/runtime.js";

2+

import {

3+

normalizeLowercaseStringOrEmpty,

4+

normalizeOptionalString,

5+

} from "../../shared/string-coerce.js";

6+

import { resolveTextCommand } from "../commands-registry.js";

7+

import { resolveCommandSurfaceChannel } from "./channel-context.js";

8+

import { persistSessionEntry } from "./commands-session-store.js";

9+

import type { CommandHandler, HandleCommandsParams } from "./commands-types.js";

10+11+

const DOCK_KEY_PREFIX = "dock:";

12+13+

type LinkedDockTarget = {

14+

peerId: string;

15+

};

16+17+

function resolveDockCommandTarget(params: HandleCommandsParams): string | null {

18+

const resolved = resolveTextCommand(params.command.commandBodyNormalized, params.cfg);

19+

if (!resolved?.command.key.startsWith(DOCK_KEY_PREFIX)) {

20+

return null;

21+

}

22+

if (resolved.command.category !== "docks") {

23+

return null;

24+

}

25+

const target = normalizeLowercaseStringOrEmpty(

26+

resolved.command.key.slice(DOCK_KEY_PREFIX.length),

27+

);

28+

return target || null;

29+

}

30+31+

function resolveTargetChannelAccountId(

32+

params: HandleCommandsParams,

33+

targetChannel: string,

34+

): string {

35+

const plugin = getActivePluginChannelRegistry()?.channels.find(

36+

(entry) => normalizeLowercaseStringOrEmpty(entry.plugin.id) === targetChannel,

37+

)?.plugin;

38+

return normalizeOptionalString(plugin?.config.defaultAccountId?.(params.cfg)) || "default";

39+

}

40+41+

function collectSourcePeerCandidates(params: HandleCommandsParams): string[] {

42+

return [

43+

params.ctx.NativeDirectUserId,

44+

params.ctx.SenderId,

45+

params.command.senderId,

46+

params.ctx.SenderE164,

47+

params.ctx.SenderUsername,

48+

params.ctx.From,

49+

params.command.from,

50+

params.ctx.OriginatingTo,

51+

params.ctx.To,

52+

]

53+

.map((value) => normalizeOptionalString(value))

54+

.filter((value): value is string => Boolean(value));

55+

}

56+57+

function buildSourceIdentityCandidates(

58+

params: HandleCommandsParams,

59+

sourceChannel: string,

60+

): Set<string> {

61+

const candidates = new Set<string>();

62+

for (const peerId of collectSourcePeerCandidates(params)) {

63+

const raw = normalizeLowercaseStringOrEmpty(peerId);

64+

if (raw) {

65+

candidates.add(raw);

66+

}

67+

if (sourceChannel) {

68+

const scoped = normalizeLowercaseStringOrEmpty(`${sourceChannel}:${peerId}`);

69+

if (scoped) {

70+

candidates.add(scoped);

71+

}

72+

}

73+

}

74+

return candidates;

75+

}

76+77+

function resolveLinkedDockTarget(params: {

78+

identityLinks: Record<string, string[]> | undefined;

79+

sourceCandidates: Set<string>;

80+

targetChannel: string;

81+

}): LinkedDockTarget | null {

82+

if (!params.identityLinks || params.sourceCandidates.size === 0) {

83+

return null;

84+

}

85+

const targetPrefix = `${params.targetChannel}:`;

86+

for (const ids of Object.values(params.identityLinks)) {

87+

if (!Array.isArray(ids)) {

88+

continue;

89+

}

90+

const normalizedIds = ids.map((id) => normalizeLowercaseStringOrEmpty(id)).filter(Boolean);

91+

if (!normalizedIds.some((id) => params.sourceCandidates.has(id))) {

92+

continue;

93+

}

94+

for (const id of ids) {

95+

const trimmed = normalizeOptionalString(id);

96+

if (!trimmed) {

97+

continue;

98+

}

99+

if (!normalizeLowercaseStringOrEmpty(trimmed).startsWith(targetPrefix)) {

100+

continue;

101+

}

102+

return {

103+

peerId: trimmed.slice(targetPrefix.length).trim(),

104+

};

105+

}

106+

}

107+

return null;

108+

}

109+110+

export const handleDockCommand: CommandHandler = async (params, allowTextCommands) => {

111+

if (!allowTextCommands) {

112+

return null;

113+

}

114+

const targetChannel = resolveDockCommandTarget(params);

115+

if (!targetChannel) {

116+

return null;

117+

}

118+

if (!params.command.isAuthorizedSender) {

119+

return { shouldContinue: false };

120+

}

121+122+

const sourceChannel = resolveCommandSurfaceChannel(params);

123+

if (sourceChannel === targetChannel) {

124+

return {

125+

shouldContinue: false,

126+

reply: { text: `Already docked to ${targetChannel}.` },

127+

};

128+

}

129+130+

const sourceCandidates = buildSourceIdentityCandidates(params, sourceChannel);

131+

if (sourceCandidates.size === 0) {

132+

return {

133+

shouldContinue: false,

134+

reply: { text: `Cannot dock to ${targetChannel}: sender id is unavailable.` },

135+

};

136+

}

137+138+

const target = resolveLinkedDockTarget({

139+

identityLinks: params.cfg.session?.identityLinks,

140+

sourceCandidates,

141+

targetChannel,

142+

});

143+

if (!target?.peerId) {

144+

return {

145+

shouldContinue: false,

146+

reply: {

147+

text: `Cannot dock to ${targetChannel}: add this sender and a ${targetChannel}:... peer to session.identityLinks.`,

148+

},

149+

};

150+

}

151+152+

const sessionEntry = params.sessionStore?.[params.sessionKey] ?? params.sessionEntry;

153+

if (!sessionEntry || !params.sessionStore || !params.sessionKey) {

154+

return {

155+

shouldContinue: false,

156+

reply: { text: `Cannot dock to ${targetChannel}: no active session entry was found.` },

157+

};

158+

}

159+160+

sessionEntry.lastChannel = targetChannel;

161+

sessionEntry.lastTo = target.peerId;

162+

sessionEntry.lastAccountId = resolveTargetChannelAccountId(params, targetChannel);

163+

params.sessionEntry = sessionEntry;

164+

const persisted = await persistSessionEntry(params);

165+

if (!persisted) {

166+

return {

167+

shouldContinue: false,

168+

reply: { text: `Cannot dock to ${targetChannel}: session route could not be saved.` },

169+

};

170+

}

171+172+

return {

173+

shouldContinue: false,

174+

reply: { text: `Docked replies to ${targetChannel}.` },

175+

};

176+

};