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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
J
Java Code Geeks
Martin Fowler
Martin Fowler
博客园 - Franky
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
B
Blog
The Cloudflare Blog
F
Fortinet All Blogs
量子位
腾讯CDC
博客园 - 司徒正美
D
Docker
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
V
Visual Studio Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
D
DataBreaches.Net
小众软件
小众软件

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
refactor: share native approval route gates · openclaw/op...
kevinslin · 2026-05-30 · via Recent Commits to openclaw:main

@@ -5,12 +5,10 @@ import {

55

import { createLazyChannelApprovalNativeRuntimeAdapter } from "openclaw/plugin-sdk/approval-handler-adapter-runtime";

66

import type { ChannelApprovalNativeRuntimeAdapter } from "openclaw/plugin-sdk/approval-handler-runtime";

77

import {

8-

createChannelApprovalForwardingEvaluator,

98

createChannelApproverDmTargetResolver,

109

createChannelNativeOriginTargetResolver,

10+

createNativeApprovalChannelRouteGates,

1111

createNativeApprovalForwardingFallbackSuppressor,

12-

nativeApprovalTargetsMatch,

13-

resolveApprovalRequestSessionTarget,

1412

shouldSuppressLocalNativeExecApprovalPrompt,

1513

} from "openclaw/plugin-sdk/approval-native-runtime";

1614

import {

@@ -48,8 +46,8 @@ import { normalizeIMessageMessagingTarget } from "./normalize.js";

4846

import { inferIMessageTargetChatType } from "./targets.js";

49475048

type ApprovalRequest = ExecApprovalRequest | PluginApprovalRequest;

51-

type ApprovalKind = "exec" | "plugin";

5249

type ApprovalForwardingConfig = NonNullable<NonNullable<OpenClawConfig["approvals"]>["exec"]>;

50+

type ApprovalForwardingMode = NonNullable<ApprovalForwardingConfig["mode"]>;

5351

type ChannelApprovalForwardTarget = Parameters<

5452

NonNullable<

5553

NonNullable<ChannelApprovalCapability["delivery"]>["shouldSuppressForwardingFallback"]

@@ -61,6 +59,7 @@ type IMessageApprovalTarget = {

6159

threadId?: string | number | null;

6260

};

636162+

const DEFAULT_APPROVAL_FORWARDING_MODE: ApprovalForwardingMode = "session";

6463

const DEFAULT_PLUGIN_APPROVAL_DECISIONS: readonly ExecApprovalReplyDecision[] = [

6564

"allow-once",

6665

"allow-always",

@@ -74,35 +73,6 @@ function isIMessageApprovalTransportEnabled(params: {

7473

return resolveIMessageAccount({ cfg: params.cfg, accountId: params.accountId }).enabled;

7574

}

767577-

function targetAccountMatchesIMessageAccount(params: {

78-

cfg: OpenClawConfig;

79-

targetAccountId?: string | null;

80-

accountId?: string | null;

81-

}): boolean {

82-

const targetAccountId = normalizeOptionalString(params.targetAccountId);

83-

const accountId = normalizeOptionalString(params.accountId);

84-

if (targetAccountId) {

85-

return !accountId || normalizeAccountId(targetAccountId) === normalizeAccountId(accountId);

86-

}

87-

if (!accountId) {

88-

return true;

89-

}

90-

const normalizedAccountId = normalizeAccountId(accountId);

91-

const defaultAccountId = normalizeAccountId(resolveDefaultIMessageAccountId(params.cfg));

92-

if (normalizedAccountId === defaultAccountId) {

93-

return true;

94-

}

95-

const enabledAccountIds = listIMessageAccountIds(params.cfg)

96-

.filter((candidateAccountId) =>

97-

isIMessageApprovalTransportEnabled({

98-

cfg: params.cfg,

99-

accountId: candidateAccountId,

100-

}),

101-

)

102-

.map((candidateAccountId) => normalizeAccountId(candidateAccountId));

103-

return enabledAccountIds.length === 1 && enabledAccountIds[0] === normalizedAccountId;

104-

}

105-10676

function normalizeIMessageForwardTarget(

10777

target: Pick<ChannelApprovalForwardTarget, "channel" | "to" | "accountId" | "threadId">,

10878

): IMessageApprovalTarget | null {

@@ -120,73 +90,6 @@ function normalizeIMessageForwardTarget(

12090

};

12191

}

12292123-

function hasMatchingIMessageTarget(params: {

124-

cfg: OpenClawConfig;

125-

config: ApprovalForwardingConfig;

126-

accountId?: string | null;

127-

target?: ChannelApprovalForwardTarget;

128-

}): boolean {

129-

const candidateTarget = params.target ? normalizeIMessageForwardTarget(params.target) : null;

130-

return (params.config.targets ?? []).some((target) => {

131-

const configuredTarget = normalizeIMessageForwardTarget(target);

132-

if (!configuredTarget) {

133-

return false;

134-

}

135-

if (

136-

!targetAccountMatchesIMessageAccount({

137-

cfg: params.cfg,

138-

targetAccountId: configuredTarget.accountId,

139-

accountId: params.accountId,

140-

})

141-

) {

142-

return false;

143-

}

144-

if (!candidateTarget) {

145-

return true;

146-

}

147-

return nativeApprovalTargetsMatch({

148-

channel: "imessage",

149-

left: configuredTarget,

150-

right: candidateTarget,

151-

});

152-

});

153-

}

154-155-

function hasIMessageOriginOrSessionTarget(params: {

156-

cfg: OpenClawConfig;

157-

accountId?: string | null;

158-

request: ApprovalRequest;

159-

}): boolean {

160-

if (resolveTurnSourceIMessageOriginTarget(params.request)) {

161-

return true;

162-

}

163-164-

const sessionTarget = resolveApprovalRequestSessionTarget({

165-

cfg: params.cfg,

166-

request: params.request,

167-

});

168-

return (

169-

normalizeLowercaseStringOrEmpty(sessionTarget?.channel) === "imessage" &&

170-

targetAccountMatchesIMessageAccount({

171-

cfg: params.cfg,

172-

targetAccountId: sessionTarget?.accountId,

173-

accountId: params.accountId,

174-

})

175-

);

176-

}

177-178-

const imessageApprovalForwarding = createChannelApprovalForwardingEvaluator({

179-

channel: "imessage",

180-

isTransportEnabled: isIMessageApprovalTransportEnabled,

181-

hasMatchingTarget: hasMatchingIMessageTarget,

182-

hasOriginOrSessionTarget: hasIMessageOriginOrSessionTarget,

183-

});

184-185-

const canApprovalPotentiallyRouteToIMessage = imessageApprovalForwarding.isPotentialRoute;

186-

const canAnyApprovalPotentiallyRouteToIMessage = imessageApprovalForwarding.canAnyPotentiallyRoute;

187-

const isIMessageSessionApprovalEligible = imessageApprovalForwarding.isSessionEligible;

188-

const isIMessageExplicitTargetEligible = imessageApprovalForwarding.isExplicitTargetEligible;

189-19093

function resolveTurnSourceIMessageOriginTarget(

19194

request: ApprovalRequest,

19295

): IMessageApprovalTarget | null {

@@ -212,6 +115,24 @@ function resolveSessionIMessageOriginTarget(sessionTarget: {

212115

return to ? { to, accountId: normalizeOptionalString(sessionTarget.accountId) } : null;

213116

}

214117118+

const imessageApprovalRouteGates = createNativeApprovalChannelRouteGates({

119+

channel: "imessage",

120+

defaultForwardingMode: DEFAULT_APPROVAL_FORWARDING_MODE,

121+

isTransportEnabled: isIMessageApprovalTransportEnabled,

122+

listAccountIds: listIMessageAccountIds,

123+

resolveDefaultAccountId: resolveDefaultIMessageAccountId,

124+

normalizeForwardTarget: normalizeIMessageForwardTarget,

125+

resolveTurnSourceTarget: resolveTurnSourceIMessageOriginTarget,

126+

});

127+128+

const {

129+

canApprovalPotentiallyRouteToChannel: canApprovalPotentiallyRouteToIMessage,

130+

canAnyApprovalPotentiallyRouteToChannel: canAnyApprovalPotentiallyRouteToIMessage,

131+

isSessionApprovalEligible: isIMessageSessionApprovalEligible,

132+

isExplicitTargetEligible: isIMessageExplicitTargetEligible,

133+

shouldHandleApprovalRequest: shouldHandleIMessageApprovalRequest,

134+

} = imessageApprovalRouteGates;

135+215136

function resolveIMessageSessionTargetFromSessionKey(

216137

sessionKey?: string | null,

217138

): IMessageApprovalTarget | null {

@@ -308,15 +229,6 @@ export function shouldSuppressLocalIMessageExecApprovalPrompt(params: {

308229

});

309230

}

310231311-

function shouldHandleIMessageApprovalRequest(params: {

312-

cfg: OpenClawConfig;

313-

accountId?: string | null;

314-

approvalKind?: ApprovalKind;

315-

request: ApprovalRequest;

316-

}): boolean {

317-

return imessageApprovalForwarding.shouldHandleRequest(params);

318-

}

319-320232

const resolveIMessageOriginTargetBase = createChannelNativeOriginTargetResolver({

321233

channel: "imessage",

322234

shouldHandleRequest: shouldHandleIMessageApprovalRequest,