@yanhaidao/wecom 2.4.120 → 2.5.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -5
- package/dist/index.js +68 -0
- package/dist/src/accounts.js +20 -0
- package/dist/src/agent/handler.js +895 -0
- package/dist/src/agent/index.js +5 -0
- package/dist/src/app/account-runtime.js +216 -0
- package/dist/src/app/bootstrap.js +19 -0
- package/dist/src/app/index.js +118 -0
- package/dist/src/capability/agent/delivery-service.js +63 -0
- package/dist/src/capability/agent/fallback-policy.js +6 -0
- package/dist/src/capability/agent/ingress-service.js +33 -0
- package/dist/src/capability/agent/upstream-delivery-service.js +71 -0
- package/dist/src/capability/bot/dispatch-config.js +45 -0
- package/dist/src/capability/bot/fallback-delivery.js +147 -0
- package/dist/src/capability/bot/local-path-delivery.js +178 -0
- package/dist/src/capability/bot/sandbox-media.js +138 -0
- package/dist/src/capability/bot/service.js +49 -0
- package/dist/src/capability/bot/stream-delivery.js +321 -0
- package/dist/src/capability/bot/stream-finalizer.js +81 -0
- package/dist/src/capability/bot/stream-orchestrator.js +318 -0
- package/dist/src/capability/bot/types.js +1 -0
- package/{src/capability/calendar/client.ts → dist/src/capability/calendar/client.js} +118 -241
- package/{src/capability/calendar/schema.ts → dist/src/capability/calendar/schema.js} +0 -38
- package/dist/src/capability/calendar/tool.js +365 -0
- package/dist/src/capability/calendar/types.js +12 -0
- package/{src/capability/doc/client.ts → dist/src/capability/doc/client.js} +370 -605
- package/{src/capability/doc/schema.ts → dist/src/capability/doc/schema.js} +345 -394
- package/dist/src/capability/doc/tool.js +1556 -0
- package/dist/src/capability/doc/types.js +113 -0
- package/dist/src/capability/mcp/index.js +3 -0
- package/dist/src/capability/mcp/schema.js +102 -0
- package/dist/src/capability/mcp/tool.js +146 -0
- package/dist/src/capability/mcp/transport.js +293 -0
- package/dist/src/channel.js +224 -0
- package/dist/src/config/accounts.js +236 -0
- package/dist/src/config/derived-paths.js +31 -0
- package/dist/src/config/index.js +7 -0
- package/dist/src/config/media.js +110 -0
- package/dist/src/config/network.js +32 -0
- package/dist/src/config/routing.js +20 -0
- package/dist/src/config/runtime-config.js +25 -0
- package/dist/src/config/schema.js +4 -0
- package/{src/config-schema.ts → dist/src/config-schema.js} +1 -1
- package/dist/src/context-store.js +219 -0
- package/{src/crypto/aes.ts → dist/src/crypto/aes.js} +11 -28
- package/dist/src/crypto/index.js +9 -0
- package/{src/crypto/signature.ts → dist/src/crypto/signature.js} +3 -18
- package/{src/crypto/xml.ts → dist/src/crypto/xml.js} +3 -11
- package/dist/src/crypto.js +145 -0
- package/dist/src/domain/models.js +1 -0
- package/dist/src/domain/policies.js +32 -0
- package/{src/dynamic-agent.ts → dist/src/dynamic-agent.js} +36 -73
- package/dist/src/gateway-monitor.js +139 -0
- package/dist/src/http.js +114 -0
- package/{src/media.ts → dist/src/media.js} +21 -40
- package/dist/src/monitor/limits.js +7 -0
- package/dist/src/monitor/state.js +28 -0
- package/dist/src/monitor.js +84 -0
- package/dist/src/observability/audit-log.js +30 -0
- package/dist/src/observability/legacy-operational-event-store.js +22 -0
- package/dist/src/observability/raw-envelope-log.js +24 -0
- package/dist/src/observability/status-registry.js +9 -0
- package/dist/src/observability/transport-session-view.js +14 -0
- package/dist/src/onboarding.js +546 -0
- package/dist/src/outbound.js +557 -0
- package/dist/src/runtime/dispatcher.js +57 -0
- package/{src/runtime/index.ts → dist/src/runtime/index.js} +0 -1
- package/dist/src/runtime/outbound-intent.js +1 -0
- package/dist/src/runtime/reply-orchestrator.js +38 -0
- package/dist/src/runtime/routing-bridge.js +26 -0
- package/dist/src/runtime/session-manager.js +112 -0
- package/dist/src/runtime/source-registry.js +174 -0
- package/dist/src/runtime.js +1 -0
- package/dist/src/shared/command-auth.js +57 -0
- package/{src/shared/index.ts → dist/src/shared/index.js} +0 -1
- package/dist/src/shared/media-asset.js +65 -0
- package/dist/src/shared/media-service.js +59 -0
- package/dist/src/shared/media-types.js +1 -0
- package/{src/shared/xml-parser.ts → dist/src/shared/xml-parser.js} +72 -63
- package/dist/src/store/active-reply-store.js +41 -0
- package/dist/src/store/interfaces.js +1 -0
- package/dist/src/store/memory-store.js +33 -0
- package/dist/src/store/stream-batch-store.js +319 -0
- package/{src/target.ts → dist/src/target.js} +15 -48
- package/dist/src/transport/agent-api/client.js +168 -0
- package/dist/src/transport/agent-api/core.js +337 -0
- package/dist/src/transport/agent-api/delivery.js +28 -0
- package/dist/src/transport/agent-api/media-upload.js +4 -0
- package/dist/src/transport/agent-api/reply.js +24 -0
- package/dist/src/transport/agent-api/upstream-delivery.js +30 -0
- package/dist/src/transport/agent-api/upstream-media-upload.js +46 -0
- package/dist/src/transport/agent-api/upstream-reply.js +26 -0
- package/dist/src/transport/agent-callback/http-handler.js +30 -0
- package/dist/src/transport/agent-callback/inbound.js +4 -0
- package/dist/src/transport/agent-callback/reply.js +8 -0
- package/dist/src/transport/agent-callback/request-handler.js +189 -0
- package/dist/src/transport/agent-callback/session.js +15 -0
- package/dist/src/transport/bot-webhook/active-reply.js +27 -0
- package/dist/src/transport/bot-webhook/http-handler.js +31 -0
- package/dist/src/transport/bot-webhook/inbound-normalizer.js +496 -0
- package/dist/src/transport/bot-webhook/inbound.js +4 -0
- package/dist/src/transport/bot-webhook/message-shape.js +98 -0
- package/dist/src/transport/bot-webhook/protocol.js +124 -0
- package/dist/src/transport/bot-webhook/reply.js +9 -0
- package/dist/src/transport/bot-webhook/request-handler.js +285 -0
- package/dist/src/transport/bot-webhook/session.js +15 -0
- package/dist/src/transport/bot-ws/inbound.js +147 -0
- package/dist/src/transport/bot-ws/media.js +236 -0
- package/dist/src/transport/bot-ws/reply.js +310 -0
- package/dist/src/transport/bot-ws/sdk-adapter.js +257 -0
- package/dist/src/transport/bot-ws/session.js +15 -0
- package/dist/src/transport/http/common.js +78 -0
- package/dist/src/transport/http/registry.js +71 -0
- package/dist/src/transport/http/request-handler.js +51 -0
- package/{src/transport/index.ts → dist/src/transport/index.js} +2 -10
- package/dist/src/types/account.js +1 -0
- package/dist/src/types/config.js +1 -0
- package/dist/src/types/constants.js +28 -0
- package/dist/src/types/events.js +1 -0
- package/dist/src/types/index.js +1 -0
- package/dist/src/types/legacy-stream.js +1 -0
- package/dist/src/types/message.js +5 -0
- package/dist/src/types/runtime-context.js +1 -0
- package/dist/src/types/runtime.js +1 -0
- package/dist/src/types.js +1 -0
- package/dist/src/upstream/index.js +111 -0
- package/dist/src/wecom_msg_adapter/markdown_adapter.js +280 -0
- package/openclaw.plugin.json +15 -0
- package/package.json +18 -1
- package/.github/workflows/release.yml +0 -143
- package/GOVERNANCE.md +0 -26
- package/MENU_EVENT_CONF.md +0 -500
- package/MENU_EVENT_PLAN.md +0 -440
- package/SKILLS_CAL.md +0 -895
- package/SKILLS_DOC.md +0 -2288
- package/UPSTREAM_CONFIG.md +0 -170
- package/UPSTREAM_PLAN.md +0 -175
- package/assets/01.bot-add.png +0 -0
- package/assets/01.bot-setp2.png +0 -0
- package/assets/01.image.jpg +0 -0
- package/assets/02.agent.add.png +0 -0
- package/assets/02.agent.api-set.png +0 -0
- package/assets/02.image.jpg +0 -0
- package/assets/03.agent.page.png +0 -0
- package/assets/03.bot.page.png +0 -0
- package/assets/link-me.jpg +0 -0
- package/assets/register.png +0 -0
- package/changelog/v2.2.28.md +0 -70
- package/changelog/v2.3.10.md +0 -17
- package/changelog/v2.3.11.md +0 -19
- package/changelog/v2.3.12.md +0 -25
- package/changelog/v2.3.13.md +0 -19
- package/changelog/v2.3.14.md +0 -48
- package/changelog/v2.3.15.md +0 -15
- package/changelog/v2.3.16.md +0 -11
- package/changelog/v2.3.18.md +0 -22
- package/changelog/v2.3.19.md +0 -73
- package/changelog/v2.3.2.md +0 -28
- package/changelog/v2.3.26.md +0 -21
- package/changelog/v2.3.27.md +0 -33
- package/changelog/v2.3.4.md +0 -20
- package/changelog/v2.3.9.md +0 -22
- package/changelog/v2.4.12.md +0 -37
- package/compat-single-account.md +0 -148
- package/index.test.ts +0 -38
- package/scripts/test-proxy.ts +0 -70
- package/scripts/wecom/README.md +0 -123
- package/scripts/wecom/menu-click-help.js +0 -59
- package/scripts/wecom/menu-click-help.py +0 -55
- package/src/accounts.ts +0 -34
- package/src/agent/api-client.upload.test.ts +0 -109
- package/src/agent/event-router.test.ts +0 -421
- package/src/agent/event-router.ts +0 -272
- package/src/agent/handler.event-filter.test.ts +0 -135
- package/src/agent/handler.ts +0 -1250
- package/src/agent/index.ts +0 -12
- package/src/agent/script-runner.ts +0 -186
- package/src/agent/test-fixtures/invalid-json-script.mjs +0 -1
- package/src/agent/test-fixtures/reply-event-script.mjs +0 -29
- package/src/agent/test-fixtures/reply-event-script.py +0 -17
- package/src/app/account-runtime.ts +0 -276
- package/src/app/bootstrap.ts +0 -29
- package/src/app/index.ts +0 -192
- package/src/capability/agent/delivery-service.ts +0 -87
- package/src/capability/agent/fallback-policy.ts +0 -13
- package/src/capability/agent/ingress-service.ts +0 -38
- package/src/capability/agent/upstream-delivery-service.ts +0 -96
- package/src/capability/bot/dispatch-config.ts +0 -47
- package/src/capability/bot/fallback-delivery.ts +0 -178
- package/src/capability/bot/local-path-delivery.ts +0 -215
- package/src/capability/bot/sandbox-media.test.ts +0 -221
- package/src/capability/bot/sandbox-media.ts +0 -176
- package/src/capability/bot/service.ts +0 -56
- package/src/capability/bot/stream-delivery.ts +0 -379
- package/src/capability/bot/stream-finalizer.ts +0 -120
- package/src/capability/bot/stream-orchestrator.ts +0 -371
- package/src/capability/bot/types.ts +0 -8
- package/src/capability/calendar/SKILLS_CHECKLIST.md +0 -251
- package/src/capability/calendar/tool.ts +0 -417
- package/src/capability/calendar/types.ts +0 -309
- package/src/capability/doc/tool.ts +0 -1629
- package/src/capability/doc/types.ts +0 -792
- package/src/capability/mcp/index.ts +0 -10
- package/src/capability/mcp/schema.ts +0 -107
- package/src/capability/mcp/tool.ts +0 -174
- package/src/capability/mcp/transport.ts +0 -394
- package/src/channel.config.test.ts +0 -180
- package/src/channel.lifecycle.test.ts +0 -255
- package/src/channel.meta.test.ts +0 -26
- package/src/channel.ts +0 -256
- package/src/config/accounts.resolve.test.ts +0 -75
- package/src/config/accounts.ts +0 -312
- package/src/config/derived-paths.test.ts +0 -111
- package/src/config/derived-paths.ts +0 -41
- package/src/config/index.ts +0 -22
- package/src/config/media.test.ts +0 -113
- package/src/config/media.ts +0 -139
- package/src/config/network.ts +0 -20
- package/src/config/routing.test.ts +0 -88
- package/src/config/routing.ts +0 -26
- package/src/config/runtime-config.ts +0 -46
- package/src/config/schema.ts +0 -144
- package/src/context-store.ts +0 -297
- package/src/crypto/index.ts +0 -24
- package/src/crypto.test.ts +0 -32
- package/src/crypto.ts +0 -176
- package/src/domain/models.ts +0 -7
- package/src/domain/policies.ts +0 -36
- package/src/dynamic-agent.account-scope.test.ts +0 -17
- package/src/gateway-monitor.ts +0 -181
- package/src/http.ts +0 -137
- package/src/media.test.ts +0 -82
- package/src/monitor/limits.ts +0 -7
- package/src/monitor/state.queue.test.ts +0 -185
- package/src/monitor/state.ts +0 -34
- package/src/monitor.active.test.ts +0 -245
- package/src/monitor.inbound-filter.test.ts +0 -63
- package/src/monitor.integration.test.ts +0 -208
- package/src/monitor.ts +0 -121
- package/src/monitor.webhook.test.ts +0 -774
- package/src/observability/audit-log.ts +0 -48
- package/src/observability/legacy-operational-event-store.ts +0 -36
- package/src/observability/raw-envelope-log.ts +0 -28
- package/src/observability/status-registry.ts +0 -13
- package/src/observability/transport-session-view.ts +0 -14
- package/src/onboarding.test.ts +0 -336
- package/src/onboarding.ts +0 -704
- package/src/outbound.test.ts +0 -1271
- package/src/outbound.ts +0 -746
- package/src/runtime/dispatcher.ts +0 -71
- package/src/runtime/outbound-intent.ts +0 -4
- package/src/runtime/reply-orchestrator.test.ts +0 -71
- package/src/runtime/reply-orchestrator.ts +0 -67
- package/src/runtime/routing-bridge.test.ts +0 -115
- package/src/runtime/routing-bridge.ts +0 -44
- package/src/runtime/session-manager.test.ts +0 -174
- package/src/runtime/session-manager.ts +0 -139
- package/src/runtime/source-registry.ts +0 -249
- package/src/runtime.ts +0 -14
- package/src/shared/command-auth.ts +0 -87
- package/src/shared/media-asset.ts +0 -78
- package/src/shared/media-service.test.ts +0 -111
- package/src/shared/media-service.ts +0 -84
- package/src/shared/media-types.ts +0 -5
- package/src/shared/xml-parser.test.ts +0 -50
- package/src/store/active-reply-store.ts +0 -42
- package/src/store/interfaces.ts +0 -11
- package/src/store/memory-store.ts +0 -43
- package/src/store/stream-batch-store.ts +0 -350
- package/src/transport/agent-api/client.ts +0 -277
- package/src/transport/agent-api/core.ts +0 -463
- package/src/transport/agent-api/delivery.ts +0 -41
- package/src/transport/agent-api/media-upload.ts +0 -11
- package/src/transport/agent-api/reply.ts +0 -39
- package/src/transport/agent-api/upstream-delivery.ts +0 -45
- package/src/transport/agent-api/upstream-media-upload.ts +0 -70
- package/src/transport/agent-api/upstream-reply.ts +0 -43
- package/src/transport/agent-callback/http-handler.ts +0 -47
- package/src/transport/agent-callback/inbound.ts +0 -5
- package/src/transport/agent-callback/reply.ts +0 -13
- package/src/transport/agent-callback/request-handler.ts +0 -244
- package/src/transport/agent-callback/session.ts +0 -23
- package/src/transport/bot-webhook/active-reply.ts +0 -39
- package/src/transport/bot-webhook/http-handler.ts +0 -48
- package/src/transport/bot-webhook/inbound-normalizer.ts +0 -371
- package/src/transport/bot-webhook/inbound.ts +0 -5
- package/src/transport/bot-webhook/message-shape.ts +0 -89
- package/src/transport/bot-webhook/protocol.ts +0 -148
- package/src/transport/bot-webhook/reply.ts +0 -15
- package/src/transport/bot-webhook/request-handler.ts +0 -394
- package/src/transport/bot-webhook/session.ts +0 -23
- package/src/transport/bot-ws/inbound.test.ts +0 -96
- package/src/transport/bot-ws/inbound.ts +0 -116
- package/src/transport/bot-ws/media.test.ts +0 -44
- package/src/transport/bot-ws/media.ts +0 -321
- package/src/transport/bot-ws/reply.test.ts +0 -450
- package/src/transport/bot-ws/reply.ts +0 -365
- package/src/transport/bot-ws/sdk-adapter.test.ts +0 -187
- package/src/transport/bot-ws/sdk-adapter.ts +0 -314
- package/src/transport/bot-ws/session.ts +0 -28
- package/src/transport/http/common.ts +0 -109
- package/src/transport/http/registry.ts +0 -92
- package/src/transport/http/request-handler.ts +0 -84
- package/src/types/account.ts +0 -72
- package/src/types/config.ts +0 -166
- package/src/types/constants.ts +0 -31
- package/src/types/events.ts +0 -21
- package/src/types/global.d.ts +0 -9
- package/src/types/index.ts +0 -17
- package/src/types/legacy-stream.ts +0 -50
- package/src/types/message.ts +0 -187
- package/src/types/runtime-context.ts +0 -28
- package/src/types/runtime.ts +0 -165
- package/src/types.ts +0 -41
- package/src/upstream/index.ts +0 -150
- package/src/upstream.test.ts +0 -84
- package/src/wecom_msg_adapter/markdown_adapter.ts +0 -331
- package/tsconfig.json +0 -22
- package/vitest.config.ts +0 -26
- /package/{src/capability/agent/index.ts → dist/src/capability/agent/index.js} +0 -0
- /package/{src/capability/bot/index.ts → dist/src/capability/bot/index.js} +0 -0
- /package/{src/capability/calendar/index.ts → dist/src/capability/calendar/index.js} +0 -0
- /package/{src/capability/index.ts → dist/src/capability/index.js} +0 -0
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
import type { OpenClawConfig } from "openclaw/plugin-sdk";
|
|
2
|
-
import { describe, expect, it } from "vitest";
|
|
3
|
-
|
|
4
|
-
import { wecomPlugin } from "./channel.js";
|
|
5
|
-
import { resolveWecomAccounts } from "./config/accounts.js";
|
|
6
|
-
|
|
7
|
-
describe("wecomPlugin config.deleteAccount", () => {
|
|
8
|
-
it("removes only the target matrix account", () => {
|
|
9
|
-
const cfg: OpenClawConfig = {
|
|
10
|
-
channels: {
|
|
11
|
-
wecom: {
|
|
12
|
-
enabled: true,
|
|
13
|
-
accounts: {
|
|
14
|
-
"acct-a": {
|
|
15
|
-
enabled: true,
|
|
16
|
-
bot: {
|
|
17
|
-
token: "token-a",
|
|
18
|
-
encodingAESKey: "aes-a",
|
|
19
|
-
},
|
|
20
|
-
},
|
|
21
|
-
"acct-b": {
|
|
22
|
-
enabled: true,
|
|
23
|
-
bot: {
|
|
24
|
-
token: "token-b",
|
|
25
|
-
encodingAESKey: "aes-b",
|
|
26
|
-
},
|
|
27
|
-
},
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
} as OpenClawConfig;
|
|
32
|
-
|
|
33
|
-
const next = wecomPlugin.config.deleteAccount!({ cfg, accountId: "acct-a" });
|
|
34
|
-
const accounts = (next.channels?.wecom as { accounts?: Record<string, unknown> } | undefined)
|
|
35
|
-
?.accounts;
|
|
36
|
-
|
|
37
|
-
expect(accounts?.["acct-a"]).toBeUndefined();
|
|
38
|
-
expect(accounts?.["acct-b"]).toBeDefined();
|
|
39
|
-
expect(next.channels?.wecom).toBeDefined();
|
|
40
|
-
});
|
|
41
|
-
|
|
42
|
-
it("removes legacy wecom section when deleting default account", () => {
|
|
43
|
-
const cfg: OpenClawConfig = {
|
|
44
|
-
channels: {
|
|
45
|
-
wecom: {
|
|
46
|
-
enabled: true,
|
|
47
|
-
bot: {
|
|
48
|
-
token: "token",
|
|
49
|
-
encodingAESKey: "aes",
|
|
50
|
-
},
|
|
51
|
-
},
|
|
52
|
-
},
|
|
53
|
-
} as OpenClawConfig;
|
|
54
|
-
|
|
55
|
-
const next = wecomPlugin.config.deleteAccount!({ cfg, accountId: "default" });
|
|
56
|
-
expect(next.channels?.wecom).toBeUndefined();
|
|
57
|
-
});
|
|
58
|
-
});
|
|
59
|
-
|
|
60
|
-
describe("wecomPlugin account conflict guards", () => {
|
|
61
|
-
it("marks duplicate bot token account as unconfigured", async () => {
|
|
62
|
-
const cfg: OpenClawConfig = {
|
|
63
|
-
channels: {
|
|
64
|
-
wecom: {
|
|
65
|
-
enabled: true,
|
|
66
|
-
accounts: {
|
|
67
|
-
"acct-a": {
|
|
68
|
-
enabled: true,
|
|
69
|
-
bot: { token: "token-shared", encodingAESKey: "aes-a" },
|
|
70
|
-
},
|
|
71
|
-
"acct-b": {
|
|
72
|
-
enabled: true,
|
|
73
|
-
bot: { token: "token-shared", encodingAESKey: "aes-b" },
|
|
74
|
-
},
|
|
75
|
-
},
|
|
76
|
-
},
|
|
77
|
-
},
|
|
78
|
-
} as OpenClawConfig;
|
|
79
|
-
|
|
80
|
-
const accountA = wecomPlugin.config.resolveAccount(cfg, "acct-a");
|
|
81
|
-
const accountB = wecomPlugin.config.resolveAccount(cfg, "acct-b");
|
|
82
|
-
expect(await wecomPlugin.config.isConfigured!(accountA, cfg)).toBe(true);
|
|
83
|
-
expect(await wecomPlugin.config.isConfigured!(accountB, cfg)).toBe(false);
|
|
84
|
-
expect(wecomPlugin.config.unconfiguredReason?.(accountB, cfg)).toContain("Duplicate WeCom bot token");
|
|
85
|
-
});
|
|
86
|
-
|
|
87
|
-
it("marks duplicate bot aibotid account as unconfigured", async () => {
|
|
88
|
-
const cfg: OpenClawConfig = {
|
|
89
|
-
channels: {
|
|
90
|
-
wecom: {
|
|
91
|
-
enabled: true,
|
|
92
|
-
accounts: {
|
|
93
|
-
"acct-a": {
|
|
94
|
-
enabled: true,
|
|
95
|
-
bot: { token: "token-a", encodingAESKey: "aes-a", aibotid: "BOT_001" },
|
|
96
|
-
},
|
|
97
|
-
"acct-b": {
|
|
98
|
-
enabled: true,
|
|
99
|
-
bot: { token: "token-b", encodingAESKey: "aes-b", aibotid: "BOT_001" },
|
|
100
|
-
},
|
|
101
|
-
},
|
|
102
|
-
},
|
|
103
|
-
},
|
|
104
|
-
} as OpenClawConfig;
|
|
105
|
-
|
|
106
|
-
const accountB = wecomPlugin.config.resolveAccount(cfg, "acct-b");
|
|
107
|
-
expect(await wecomPlugin.config.isConfigured!(accountB, cfg)).toBe(false);
|
|
108
|
-
expect(wecomPlugin.config.unconfiguredReason?.(accountB, cfg)).toContain("Duplicate WeCom bot aibotid");
|
|
109
|
-
});
|
|
110
|
-
|
|
111
|
-
it("marks duplicate corpId/agentId account as unconfigured", async () => {
|
|
112
|
-
const cfg: OpenClawConfig = {
|
|
113
|
-
channels: {
|
|
114
|
-
wecom: {
|
|
115
|
-
enabled: true,
|
|
116
|
-
accounts: {
|
|
117
|
-
"acct-a": {
|
|
118
|
-
enabled: true,
|
|
119
|
-
agent: {
|
|
120
|
-
corpId: "corp-1",
|
|
121
|
-
corpSecret: "secret-a",
|
|
122
|
-
agentId: 1001,
|
|
123
|
-
token: "token-a",
|
|
124
|
-
encodingAESKey: "aes-a",
|
|
125
|
-
},
|
|
126
|
-
},
|
|
127
|
-
"acct-b": {
|
|
128
|
-
enabled: true,
|
|
129
|
-
agent: {
|
|
130
|
-
corpId: "corp-1",
|
|
131
|
-
corpSecret: "secret-b",
|
|
132
|
-
agentId: 1001,
|
|
133
|
-
token: "token-b",
|
|
134
|
-
encodingAESKey: "aes-b",
|
|
135
|
-
},
|
|
136
|
-
},
|
|
137
|
-
},
|
|
138
|
-
},
|
|
139
|
-
},
|
|
140
|
-
} as OpenClawConfig;
|
|
141
|
-
|
|
142
|
-
const accountB = wecomPlugin.config.resolveAccount(cfg, "acct-b");
|
|
143
|
-
expect(await wecomPlugin.config.isConfigured!(accountB, cfg)).toBe(false);
|
|
144
|
-
expect(wecomPlugin.config.unconfiguredReason?.(accountB, cfg)).toContain(
|
|
145
|
-
"Duplicate WeCom agent identity",
|
|
146
|
-
);
|
|
147
|
-
});
|
|
148
|
-
|
|
149
|
-
it("normalizes agent inbound event policy on resolved accounts", () => {
|
|
150
|
-
const cfg: OpenClawConfig = {
|
|
151
|
-
channels: {
|
|
152
|
-
wecom: {
|
|
153
|
-
enabled: true,
|
|
154
|
-
accounts: {
|
|
155
|
-
default: {
|
|
156
|
-
enabled: true,
|
|
157
|
-
agent: {
|
|
158
|
-
corpId: "corp-1",
|
|
159
|
-
corpSecret: "secret-a",
|
|
160
|
-
agentId: 1001,
|
|
161
|
-
token: "token-a",
|
|
162
|
-
encodingAESKey: "aes-a",
|
|
163
|
-
inboundPolicy: {
|
|
164
|
-
eventEnabled: true,
|
|
165
|
-
eventPolicy: {
|
|
166
|
-
allowedEventTypes: [" Click ", "view", "click"],
|
|
167
|
-
},
|
|
168
|
-
},
|
|
169
|
-
},
|
|
170
|
-
},
|
|
171
|
-
},
|
|
172
|
-
},
|
|
173
|
-
},
|
|
174
|
-
} as OpenClawConfig;
|
|
175
|
-
|
|
176
|
-
const resolved = resolveWecomAccounts(cfg);
|
|
177
|
-
expect(resolved.accounts.default?.agent?.eventEnabled).toBe(true);
|
|
178
|
-
expect(resolved.accounts.default?.agent?.allowedEventTypes).toEqual(["click", "view"]);
|
|
179
|
-
});
|
|
180
|
-
});
|
|
@@ -1,255 +0,0 @@
|
|
|
1
|
-
import { IncomingMessage, ServerResponse } from "node:http";
|
|
2
|
-
import { Socket } from "node:net";
|
|
3
|
-
|
|
4
|
-
import {
|
|
5
|
-
type ChannelAccountSnapshot,
|
|
6
|
-
type ChannelGatewayContext,
|
|
7
|
-
type OpenClawConfig,
|
|
8
|
-
} from "openclaw/plugin-sdk";
|
|
9
|
-
import { describe, expect, it, vi } from "vitest";
|
|
10
|
-
|
|
11
|
-
import { createRuntimeEnv } from "../../test-utils/runtime-env.js";
|
|
12
|
-
import { computeWecomMsgSignature, encryptWecomPlaintext } from "./crypto.js";
|
|
13
|
-
import { wecomPlugin } from "./channel.js";
|
|
14
|
-
import { handleWecomWebhookRequest } from "./monitor.js";
|
|
15
|
-
import type { ResolvedWecomAccount } from "./types/index.js";
|
|
16
|
-
|
|
17
|
-
function createMockRequest(params: {
|
|
18
|
-
method: "GET" | "POST";
|
|
19
|
-
url: string;
|
|
20
|
-
body?: unknown;
|
|
21
|
-
}): IncomingMessage {
|
|
22
|
-
const socket = new Socket();
|
|
23
|
-
const req = new IncomingMessage(socket);
|
|
24
|
-
req.method = params.method;
|
|
25
|
-
req.url = params.url;
|
|
26
|
-
if (params.method === "POST") {
|
|
27
|
-
req.push(JSON.stringify(params.body ?? {}));
|
|
28
|
-
}
|
|
29
|
-
req.push(null);
|
|
30
|
-
return req;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
function createMockResponse(): ServerResponse & {
|
|
34
|
-
_getData: () => string;
|
|
35
|
-
_getStatusCode: () => number;
|
|
36
|
-
} {
|
|
37
|
-
type MockResponse = ServerResponse & {
|
|
38
|
-
_getData: () => string;
|
|
39
|
-
_getStatusCode: () => number;
|
|
40
|
-
};
|
|
41
|
-
const req = new IncomingMessage(new Socket());
|
|
42
|
-
const res = new ServerResponse(req) as MockResponse;
|
|
43
|
-
let data = "";
|
|
44
|
-
res.write = (chunk: string | Uint8Array) => {
|
|
45
|
-
data += String(chunk);
|
|
46
|
-
return true;
|
|
47
|
-
};
|
|
48
|
-
res.end = ((chunk?: string | Uint8Array) => {
|
|
49
|
-
if (chunk) data += String(chunk);
|
|
50
|
-
return res;
|
|
51
|
-
}) as MockResponse["end"];
|
|
52
|
-
res._getData = () => data;
|
|
53
|
-
res._getStatusCode = () => res.statusCode;
|
|
54
|
-
return res;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
function createCtx(params: {
|
|
58
|
-
cfg: OpenClawConfig;
|
|
59
|
-
accountId?: string;
|
|
60
|
-
abortController: AbortController;
|
|
61
|
-
}): ChannelGatewayContext<ResolvedWecomAccount> & {
|
|
62
|
-
statusUpdates: Array<Partial<ChannelAccountSnapshot>>;
|
|
63
|
-
} {
|
|
64
|
-
const accountId = params.accountId ?? "default";
|
|
65
|
-
const account = wecomPlugin.config.resolveAccount(
|
|
66
|
-
params.cfg,
|
|
67
|
-
accountId,
|
|
68
|
-
) as ResolvedWecomAccount;
|
|
69
|
-
const snapshot: ChannelAccountSnapshot = {
|
|
70
|
-
accountId,
|
|
71
|
-
configured: true,
|
|
72
|
-
enabled: true,
|
|
73
|
-
running: false,
|
|
74
|
-
};
|
|
75
|
-
const statusUpdates: Array<Partial<ChannelAccountSnapshot>> = [];
|
|
76
|
-
return {
|
|
77
|
-
cfg: params.cfg,
|
|
78
|
-
accountId,
|
|
79
|
-
account,
|
|
80
|
-
runtime: createRuntimeEnv(),
|
|
81
|
-
abortSignal: params.abortController.signal,
|
|
82
|
-
log: { info: vi.fn(), warn: vi.fn(), error: vi.fn(), debug: vi.fn() },
|
|
83
|
-
getStatus: () => snapshot,
|
|
84
|
-
setStatus: (next) => {
|
|
85
|
-
statusUpdates.push(next);
|
|
86
|
-
Object.assign(snapshot, next);
|
|
87
|
-
},
|
|
88
|
-
statusUpdates,
|
|
89
|
-
};
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
function createWebhookBotConfig(params: {
|
|
93
|
-
token: string;
|
|
94
|
-
encodingAESKey: string;
|
|
95
|
-
receiveId?: string;
|
|
96
|
-
}): OpenClawConfig {
|
|
97
|
-
return {
|
|
98
|
-
channels: {
|
|
99
|
-
wecom: {
|
|
100
|
-
enabled: true,
|
|
101
|
-
bot: {
|
|
102
|
-
primaryTransport: "webhook",
|
|
103
|
-
webhook: {
|
|
104
|
-
token: params.token,
|
|
105
|
-
encodingAESKey: params.encodingAESKey,
|
|
106
|
-
receiveId: params.receiveId ?? "",
|
|
107
|
-
},
|
|
108
|
-
},
|
|
109
|
-
},
|
|
110
|
-
},
|
|
111
|
-
} as OpenClawConfig;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
async function sendWecomGetVerify(params: {
|
|
115
|
-
path: string;
|
|
116
|
-
token: string;
|
|
117
|
-
encodingAESKey: string;
|
|
118
|
-
receiveId: string;
|
|
119
|
-
}): Promise<{ handled: boolean; status: number; body: string }> {
|
|
120
|
-
const timestamp = "1700000000";
|
|
121
|
-
const nonce = "nonce";
|
|
122
|
-
const echostr = encryptWecomPlaintext({
|
|
123
|
-
encodingAESKey: params.encodingAESKey,
|
|
124
|
-
receiveId: params.receiveId,
|
|
125
|
-
plaintext: "ping",
|
|
126
|
-
});
|
|
127
|
-
const msgSignature = computeWecomMsgSignature({
|
|
128
|
-
token: params.token,
|
|
129
|
-
timestamp,
|
|
130
|
-
nonce,
|
|
131
|
-
encrypt: echostr,
|
|
132
|
-
});
|
|
133
|
-
const req = createMockRequest({
|
|
134
|
-
method: "GET",
|
|
135
|
-
url:
|
|
136
|
-
`${params.path}?msg_signature=${encodeURIComponent(msgSignature)}` +
|
|
137
|
-
`×tamp=${encodeURIComponent(timestamp)}` +
|
|
138
|
-
`&nonce=${encodeURIComponent(nonce)}` +
|
|
139
|
-
`&echostr=${encodeURIComponent(echostr)}`,
|
|
140
|
-
});
|
|
141
|
-
const res = createMockResponse();
|
|
142
|
-
const handled = await handleWecomWebhookRequest(req, res);
|
|
143
|
-
return {
|
|
144
|
-
handled,
|
|
145
|
-
status: res._getStatusCode(),
|
|
146
|
-
body: res._getData(),
|
|
147
|
-
};
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
describe("wecomPlugin gateway lifecycle", () => {
|
|
151
|
-
it("keeps startAccount pending until abort signal", async () => {
|
|
152
|
-
const token = "token";
|
|
153
|
-
const encodingAESKey = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFG";
|
|
154
|
-
const cfg = createWebhookBotConfig({ token, encodingAESKey });
|
|
155
|
-
const abortController = new AbortController();
|
|
156
|
-
const ctx = createCtx({ cfg, abortController });
|
|
157
|
-
|
|
158
|
-
const startPromise = wecomPlugin.gateway!.startAccount!(ctx);
|
|
159
|
-
let resolved = false;
|
|
160
|
-
void startPromise.then(() => {
|
|
161
|
-
resolved = true;
|
|
162
|
-
});
|
|
163
|
-
|
|
164
|
-
await Promise.resolve();
|
|
165
|
-
await Promise.resolve();
|
|
166
|
-
expect(resolved).toBe(false);
|
|
167
|
-
|
|
168
|
-
abortController.abort();
|
|
169
|
-
await startPromise;
|
|
170
|
-
expect(resolved).toBe(true);
|
|
171
|
-
});
|
|
172
|
-
|
|
173
|
-
it("unregisters webhook targets after abort", async () => {
|
|
174
|
-
const token = "token";
|
|
175
|
-
const encodingAESKey = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFG";
|
|
176
|
-
const receiveId = "";
|
|
177
|
-
const cfg = createWebhookBotConfig({ token, encodingAESKey, receiveId });
|
|
178
|
-
const abortController = new AbortController();
|
|
179
|
-
const ctx = createCtx({ cfg, abortController });
|
|
180
|
-
|
|
181
|
-
const startPromise = wecomPlugin.gateway!.startAccount!(ctx);
|
|
182
|
-
await Promise.resolve();
|
|
183
|
-
|
|
184
|
-
const activeLegacyRoute = await sendWecomGetVerify({
|
|
185
|
-
path: "/wecom/bot",
|
|
186
|
-
token,
|
|
187
|
-
encodingAESKey,
|
|
188
|
-
receiveId,
|
|
189
|
-
});
|
|
190
|
-
expect(activeLegacyRoute.handled).toBe(true);
|
|
191
|
-
expect(activeLegacyRoute.status).toBe(200);
|
|
192
|
-
expect(activeLegacyRoute.body).toBe("ping");
|
|
193
|
-
|
|
194
|
-
const activePluginRoute = await sendWecomGetVerify({
|
|
195
|
-
path: "/plugins/wecom/bot",
|
|
196
|
-
token,
|
|
197
|
-
encodingAESKey,
|
|
198
|
-
receiveId,
|
|
199
|
-
});
|
|
200
|
-
expect(activePluginRoute.handled).toBe(true);
|
|
201
|
-
expect(activePluginRoute.status).toBe(200);
|
|
202
|
-
expect(activePluginRoute.body).toBe("ping");
|
|
203
|
-
|
|
204
|
-
abortController.abort();
|
|
205
|
-
await startPromise;
|
|
206
|
-
|
|
207
|
-
const inactiveLegacyRoute = await sendWecomGetVerify({
|
|
208
|
-
path: "/wecom/bot",
|
|
209
|
-
token,
|
|
210
|
-
encodingAESKey,
|
|
211
|
-
receiveId,
|
|
212
|
-
});
|
|
213
|
-
expect(inactiveLegacyRoute.handled).toBe(false);
|
|
214
|
-
|
|
215
|
-
const inactivePluginRoute = await sendWecomGetVerify({
|
|
216
|
-
path: "/plugins/wecom/bot",
|
|
217
|
-
token,
|
|
218
|
-
encodingAESKey,
|
|
219
|
-
receiveId,
|
|
220
|
-
});
|
|
221
|
-
expect(inactivePluginRoute.handled).toBe(false);
|
|
222
|
-
});
|
|
223
|
-
|
|
224
|
-
it("rejects startup when matrix account credentials conflict", async () => {
|
|
225
|
-
const cfg = {
|
|
226
|
-
channels: {
|
|
227
|
-
wecom: {
|
|
228
|
-
enabled: true,
|
|
229
|
-
accounts: {
|
|
230
|
-
"acct-a": {
|
|
231
|
-
enabled: true,
|
|
232
|
-
bot: {
|
|
233
|
-
token: "token-shared",
|
|
234
|
-
encodingAESKey: "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFG",
|
|
235
|
-
},
|
|
236
|
-
},
|
|
237
|
-
"acct-b": {
|
|
238
|
-
enabled: true,
|
|
239
|
-
bot: {
|
|
240
|
-
token: "token-shared",
|
|
241
|
-
encodingAESKey: "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFG",
|
|
242
|
-
},
|
|
243
|
-
},
|
|
244
|
-
},
|
|
245
|
-
},
|
|
246
|
-
},
|
|
247
|
-
} as OpenClawConfig;
|
|
248
|
-
const abortController = new AbortController();
|
|
249
|
-
const ctx = createCtx({ cfg, accountId: "acct-b", abortController });
|
|
250
|
-
|
|
251
|
-
await expect(wecomPlugin.gateway!.startAccount!(ctx)).rejects.toThrow(
|
|
252
|
-
/Duplicate WeCom bot token/i,
|
|
253
|
-
);
|
|
254
|
-
});
|
|
255
|
-
});
|
package/src/channel.meta.test.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { describe, expect, it } from "vitest";
|
|
2
|
-
import { wecomPlugin } from "./channel.js";
|
|
3
|
-
|
|
4
|
-
describe("wecomPlugin meta", () => {
|
|
5
|
-
it("uses chinese-facing labels in channel selection", () => {
|
|
6
|
-
expect(wecomPlugin.meta.label).toBe("WeCom (企业微信)");
|
|
7
|
-
expect(wecomPlugin.meta.selectionLabel).toBe("WeCom (企业微信)");
|
|
8
|
-
expect(wecomPlugin.meta.blurb).toContain("企业微信官方推荐三方插件");
|
|
9
|
-
expect(wecomPlugin.meta.docsLabel).toBe("企业微信");
|
|
10
|
-
expect(wecomPlugin.meta.selectionDocsPrefix).toBe("文档:");
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
it("exposes a setupWizard for guided setup discovery", () => {
|
|
14
|
-
expect(wecomPlugin.setupWizard?.channel).toBe("wecom");
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
it("preserves fully qualified WeCom messaging targets during normalization", () => {
|
|
18
|
-
expect(wecomPlugin.messaging?.normalizeTarget?.("wecom:user:zhangsan")).toBe(
|
|
19
|
-
"wecom:user:zhangsan",
|
|
20
|
-
);
|
|
21
|
-
expect(wecomPlugin.messaging?.normalizeTarget?.("wecom-agent:blue:user:zhangsan")).toBe(
|
|
22
|
-
"wecom-agent:blue:user:zhangsan",
|
|
23
|
-
);
|
|
24
|
-
expect(wecomPlugin.messaging?.normalizeTarget?.("wecom:zhangsan")).toBe("zhangsan");
|
|
25
|
-
});
|
|
26
|
-
});
|