opc-agent 2.0.0 → 2.0.1
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/dist/channels/email.d.ts +32 -26
- package/dist/channels/email.js +239 -62
- package/dist/channels/feishu.d.ts +21 -6
- package/dist/channels/feishu.js +225 -126
- package/dist/channels/websocket.d.ts +46 -3
- package/dist/channels/websocket.js +306 -37
- package/dist/channels/wechat.d.ts +33 -13
- package/dist/channels/wechat.js +229 -42
- package/dist/cli.js +712 -11
- package/dist/core/a2a.d.ts +17 -0
- package/dist/core/a2a.js +43 -1
- package/dist/core/agent.d.ts +16 -0
- package/dist/core/agent.js +108 -0
- package/dist/core/runtime.d.ts +6 -0
- package/dist/core/runtime.js +161 -2
- package/dist/core/sandbox.d.ts +26 -0
- package/dist/core/sandbox.js +117 -0
- package/dist/core/workflow-graph.d.ts +93 -0
- package/dist/core/workflow-graph.js +247 -0
- package/dist/doctor.d.ts +15 -0
- package/dist/doctor.js +183 -0
- package/dist/eval/index.d.ts +65 -0
- package/dist/eval/index.js +191 -0
- package/dist/index.d.ts +30 -6
- package/dist/index.js +60 -4
- package/dist/plugins/content-filter.d.ts +7 -0
- package/dist/plugins/content-filter.js +25 -0
- package/dist/plugins/index.d.ts +42 -0
- package/dist/plugins/index.js +108 -2
- package/dist/plugins/logger.d.ts +6 -0
- package/dist/plugins/logger.js +20 -0
- package/dist/plugins/rate-limiter.d.ts +7 -0
- package/dist/plugins/rate-limiter.js +35 -0
- package/dist/protocols/a2a/client.d.ts +25 -0
- package/dist/protocols/a2a/client.js +115 -0
- package/dist/protocols/a2a/index.d.ts +6 -0
- package/dist/protocols/a2a/index.js +12 -0
- package/dist/protocols/a2a/server.d.ts +41 -0
- package/dist/protocols/a2a/server.js +295 -0
- package/dist/protocols/a2a/types.d.ts +91 -0
- package/dist/protocols/a2a/types.js +15 -0
- package/dist/protocols/a2a/utils.d.ts +6 -0
- package/dist/protocols/a2a/utils.js +47 -0
- package/dist/protocols/agui/client.d.ts +10 -0
- package/dist/protocols/agui/client.js +75 -0
- package/dist/protocols/agui/index.d.ts +4 -0
- package/dist/protocols/agui/index.js +25 -0
- package/dist/protocols/agui/server.d.ts +37 -0
- package/dist/protocols/agui/server.js +191 -0
- package/dist/protocols/agui/types.d.ts +107 -0
- package/dist/protocols/agui/types.js +17 -0
- package/dist/protocols/index.d.ts +2 -0
- package/dist/protocols/index.js +19 -0
- package/dist/protocols/mcp/agent-tools.d.ts +11 -0
- package/dist/protocols/mcp/agent-tools.js +129 -0
- package/dist/protocols/mcp/index.d.ts +5 -0
- package/dist/protocols/mcp/index.js +11 -0
- package/dist/protocols/mcp/server.d.ts +31 -0
- package/dist/protocols/mcp/server.js +248 -0
- package/dist/protocols/mcp/types.d.ts +92 -0
- package/dist/protocols/mcp/types.js +17 -0
- package/dist/publish/index.d.ts +45 -0
- package/dist/publish/index.js +350 -0
- package/dist/schema/oad.d.ts +682 -65
- package/dist/schema/oad.js +36 -3
- package/dist/security/approval.d.ts +36 -0
- package/dist/security/approval.js +113 -0
- package/dist/security/index.d.ts +4 -0
- package/dist/security/index.js +8 -0
- package/dist/security/keys.d.ts +16 -0
- package/dist/security/keys.js +117 -0
- package/dist/studio/server.d.ts +63 -0
- package/dist/studio/server.js +625 -0
- package/dist/studio-ui/index.html +662 -0
- package/dist/telemetry/index.d.ts +93 -0
- package/dist/telemetry/index.js +285 -0
- package/package.json +5 -3
- package/scripts/install.ps1 +31 -0
- package/scripts/install.sh +40 -0
- package/src/channels/email.ts +351 -177
- package/src/channels/feishu.ts +349 -236
- package/src/channels/websocket.ts +399 -87
- package/src/channels/wechat.ts +329 -149
- package/src/cli.ts +783 -12
- package/src/core/a2a.ts +60 -0
- package/src/core/agent.ts +125 -0
- package/src/core/runtime.ts +127 -0
- package/src/core/sandbox.ts +143 -0
- package/src/core/workflow-graph.ts +365 -0
- package/src/doctor.ts +156 -0
- package/src/eval/index.ts +211 -0
- package/src/eval/suites/basic.json +16 -0
- package/src/eval/suites/memory.json +12 -0
- package/src/eval/suites/safety.json +14 -0
- package/src/index.ts +54 -6
- package/src/plugins/content-filter.ts +23 -0
- package/src/plugins/index.ts +133 -2
- package/src/plugins/logger.ts +18 -0
- package/src/plugins/rate-limiter.ts +38 -0
- package/src/protocols/a2a/client.ts +132 -0
- package/src/protocols/a2a/index.ts +8 -0
- package/src/protocols/a2a/server.ts +333 -0
- package/src/protocols/a2a/types.ts +88 -0
- package/src/protocols/a2a/utils.ts +50 -0
- package/src/protocols/agui/client.ts +83 -0
- package/src/protocols/agui/index.ts +4 -0
- package/src/protocols/agui/server.ts +218 -0
- package/src/protocols/agui/types.ts +153 -0
- package/src/protocols/index.ts +2 -0
- package/src/protocols/mcp/agent-tools.ts +134 -0
- package/src/protocols/mcp/index.ts +8 -0
- package/src/protocols/mcp/server.ts +262 -0
- package/src/protocols/mcp/types.ts +69 -0
- package/src/publish/index.ts +376 -0
- package/src/schema/oad.ts +39 -2
- package/src/security/approval.ts +131 -0
- package/src/security/index.ts +3 -0
- package/src/security/keys.ts +87 -0
- package/src/studio/server.ts +629 -0
- package/src/studio-ui/index.html +662 -0
- package/src/telemetry/index.ts +324 -0
- package/src/types/agent-workstation.d.ts +2 -0
- package/tests/a2a-protocol.test.ts +285 -0
- package/tests/agui-protocol.test.ts +246 -0
- package/tests/channels/discord.test.ts +79 -0
- package/tests/channels/email.test.ts +148 -0
- package/tests/channels/feishu.test.ts +123 -0
- package/tests/channels/telegram.test.ts +129 -0
- package/tests/channels/websocket.test.ts +53 -0
- package/tests/channels/wechat.test.ts +170 -0
- package/tests/chat-cli.test.ts +160 -0
- package/tests/daemon.test.ts +135 -0
- package/tests/deepbrain-wire.test.ts +234 -0
- package/tests/doctor.test.ts +38 -0
- package/tests/eval.test.ts +173 -0
- package/tests/init-role.test.ts +124 -0
- package/tests/mcp-client.test.ts +92 -0
- package/tests/mcp-server.test.ts +178 -0
- package/tests/plugin-a2a-enhanced.test.ts +230 -0
- package/tests/publish.test.ts +231 -0
- package/tests/scheduler.test.ts +200 -0
- package/tests/security-enhanced.test.ts +233 -0
- package/tests/skill-learner.test.ts +161 -0
- package/tests/studio.test.ts +229 -0
- package/tests/subagent.test.ts +63 -0
- package/tests/telemetry.test.ts +186 -0
- package/tests/tools/builtin-extended.test.ts +138 -0
- package/tests/workflow-graph.test.ts +279 -0
- package/tutorial/customer-service-agent/README.md +612 -0
- package/tutorial/customer-service-agent/SOUL.md +26 -0
- package/tutorial/customer-service-agent/agent.yaml +63 -0
- package/tutorial/customer-service-agent/package.json +19 -0
- package/tutorial/customer-service-agent/src/index.ts +69 -0
- package/tutorial/customer-service-agent/src/skills/faq.ts +27 -0
- package/tutorial/customer-service-agent/src/skills/ticket.ts +22 -0
- package/tutorial/customer-service-agent/tsconfig.json +14 -0
package/src/channels/feishu.ts
CHANGED
|
@@ -1,236 +1,349 @@
|
|
|
1
|
-
import { BaseChannel } from './index';
|
|
2
|
-
import type { Message } from '../core/types';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* -
|
|
11
|
-
* -
|
|
12
|
-
* -
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
private
|
|
43
|
-
private
|
|
44
|
-
private
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
|
|
1
|
+
import { BaseChannel } from './index';
|
|
2
|
+
import type { Message } from '../core/types';
|
|
3
|
+
import * as http from 'http';
|
|
4
|
+
import * as https from 'https';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Feishu / Lark Channel — v1.1.0
|
|
8
|
+
*
|
|
9
|
+
* Supports:
|
|
10
|
+
* - Event Subscription (webhook) mode for receiving messages
|
|
11
|
+
* - Bot send via Feishu Open API
|
|
12
|
+
* - URL verification challenge
|
|
13
|
+
* - Message card (interactive) responses
|
|
14
|
+
* - Group chat & P2P messaging
|
|
15
|
+
* - Event deduplication
|
|
16
|
+
* - No external dependencies (uses Node.js built-in http/https)
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
export interface FeishuChannelConfig {
|
|
20
|
+
/** Feishu App ID */
|
|
21
|
+
appId?: string;
|
|
22
|
+
/** Feishu App Secret */
|
|
23
|
+
appSecret?: string;
|
|
24
|
+
/** Verification token for event subscription */
|
|
25
|
+
verificationToken?: string;
|
|
26
|
+
/** Encrypt key (optional, for encrypted events) */
|
|
27
|
+
encryptKey?: string;
|
|
28
|
+
/** Webhook server port (default: 8081) */
|
|
29
|
+
port?: number;
|
|
30
|
+
/** API base URL (use 'https://open.larksuite.com' for Lark international) */
|
|
31
|
+
apiBase?: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
interface FeishuTokenCache {
|
|
35
|
+
token: string;
|
|
36
|
+
expiresAt: number;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export class FeishuChannel extends BaseChannel {
|
|
40
|
+
readonly type = 'feishu';
|
|
41
|
+
private config: Required<Pick<FeishuChannelConfig, 'port' | 'apiBase'>> & FeishuChannelConfig;
|
|
42
|
+
private server: http.Server | null = null;
|
|
43
|
+
private tokenCache: FeishuTokenCache | null = null;
|
|
44
|
+
private processedEvents = new Set<string>();
|
|
45
|
+
|
|
46
|
+
constructor(config: FeishuChannelConfig = {}) {
|
|
47
|
+
super();
|
|
48
|
+
this.config = {
|
|
49
|
+
appId: config.appId ?? process.env.FEISHU_APP_ID ?? '',
|
|
50
|
+
appSecret: config.appSecret ?? process.env.FEISHU_APP_SECRET ?? '',
|
|
51
|
+
verificationToken: config.verificationToken ?? process.env.FEISHU_VERIFICATION_TOKEN ?? '',
|
|
52
|
+
encryptKey: config.encryptKey ?? process.env.FEISHU_ENCRYPT_KEY,
|
|
53
|
+
port: config.port ?? 8081,
|
|
54
|
+
apiBase: config.apiBase ?? 'https://open.feishu.cn',
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
async start(): Promise<void> {
|
|
59
|
+
if (!this.config.appId || !this.config.appSecret) {
|
|
60
|
+
console.warn('[FeishuChannel] Missing appId/appSecret. Set FEISHU_APP_ID and FEISHU_APP_SECRET.');
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
this.server = http.createServer(async (req, res) => {
|
|
65
|
+
if (req.method === 'GET' && req.url === '/health') {
|
|
66
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
67
|
+
res.end(JSON.stringify({ status: 'ok', channel: 'feishu' }));
|
|
68
|
+
return;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (req.method !== 'POST') {
|
|
72
|
+
res.writeHead(404);
|
|
73
|
+
res.end();
|
|
74
|
+
return;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
try {
|
|
78
|
+
const body = await this.readBody(req);
|
|
79
|
+
const parsed = JSON.parse(body);
|
|
80
|
+
await this.handleEvent(parsed, res);
|
|
81
|
+
} catch (err) {
|
|
82
|
+
console.error('[FeishuChannel] Error:', err);
|
|
83
|
+
res.writeHead(500, { 'Content-Type': 'application/json' });
|
|
84
|
+
res.end(JSON.stringify({ error: 'Internal error' }));
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
return new Promise((resolve) => {
|
|
89
|
+
this.server!.listen(this.config.port, () => {
|
|
90
|
+
console.log(`[FeishuChannel] Listening on port ${this.config.port}`);
|
|
91
|
+
resolve();
|
|
92
|
+
});
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
async stop(): Promise<void> {
|
|
97
|
+
return new Promise((resolve, reject) => {
|
|
98
|
+
if (!this.server) return resolve();
|
|
99
|
+
this.server.close((err) => (err ? reject(err) : resolve()));
|
|
100
|
+
this.server = null;
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/** Handle Feishu event */
|
|
105
|
+
private async handleEvent(body: any, res: http.ServerResponse): Promise<void> {
|
|
106
|
+
// URL verification challenge
|
|
107
|
+
if (body.type === 'url_verification') {
|
|
108
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
109
|
+
res.end(JSON.stringify({ challenge: body.challenge }));
|
|
110
|
+
return;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// Deduplicate events
|
|
114
|
+
const eventId = body.header?.event_id;
|
|
115
|
+
if (eventId && this.processedEvents.has(eventId)) {
|
|
116
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
117
|
+
res.end(JSON.stringify({ ok: true }));
|
|
118
|
+
return;
|
|
119
|
+
}
|
|
120
|
+
if (eventId) {
|
|
121
|
+
this.processedEvents.add(eventId);
|
|
122
|
+
if (this.processedEvents.size > 1000) {
|
|
123
|
+
const arr = [...this.processedEvents];
|
|
124
|
+
this.processedEvents = new Set(arr.slice(-500));
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// Verify token
|
|
129
|
+
if (this.config.verificationToken && body.header?.token !== this.config.verificationToken) {
|
|
130
|
+
res.writeHead(403, { 'Content-Type': 'application/json' });
|
|
131
|
+
res.end(JSON.stringify({ error: 'Invalid verification token' }));
|
|
132
|
+
return;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
// Handle im.message.receive_v1
|
|
136
|
+
const event = body.event;
|
|
137
|
+
if (body.header?.event_type === 'im.message.receive_v1' && this.handler) {
|
|
138
|
+
const msgBody = event?.message;
|
|
139
|
+
if (!msgBody) {
|
|
140
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
141
|
+
res.end(JSON.stringify({ ok: true }));
|
|
142
|
+
return;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
const msgType = msgBody.message_type;
|
|
146
|
+
let content = '';
|
|
147
|
+
if (msgType === 'text') {
|
|
148
|
+
try {
|
|
149
|
+
const parsed = JSON.parse(msgBody.content);
|
|
150
|
+
content = parsed.text ?? '';
|
|
151
|
+
} catch {
|
|
152
|
+
content = msgBody.content ?? '';
|
|
153
|
+
}
|
|
154
|
+
} else {
|
|
155
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
156
|
+
res.end(JSON.stringify({ ok: true }));
|
|
157
|
+
return;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// Strip @bot mentions
|
|
161
|
+
content = content.replace(/@_user_\d+/g, '').trim();
|
|
162
|
+
if (!content) {
|
|
163
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
164
|
+
res.end(JSON.stringify({ ok: true }));
|
|
165
|
+
return;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
const chatId = msgBody.chat_id;
|
|
169
|
+
const senderId = event.sender?.sender_id?.open_id ?? 'unknown';
|
|
170
|
+
|
|
171
|
+
const msg: Message = {
|
|
172
|
+
id: `feishu_${msgBody.message_id}`,
|
|
173
|
+
role: 'user',
|
|
174
|
+
content,
|
|
175
|
+
timestamp: parseInt(msgBody.create_time, 10) || Date.now(),
|
|
176
|
+
metadata: {
|
|
177
|
+
sessionId: `feishu_${chatId}`,
|
|
178
|
+
chatId,
|
|
179
|
+
userId: senderId,
|
|
180
|
+
platform: 'feishu',
|
|
181
|
+
messageId: msgBody.message_id,
|
|
182
|
+
chatType: msgBody.chat_type,
|
|
183
|
+
},
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
// Don't block the response
|
|
187
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
188
|
+
res.end(JSON.stringify({ ok: true }));
|
|
189
|
+
|
|
190
|
+
try {
|
|
191
|
+
const response = await this.handler(msg);
|
|
192
|
+
await this.sendTextMessage(chatId, response.content);
|
|
193
|
+
} catch (err) {
|
|
194
|
+
console.error('[FeishuChannel] Handler error:', err);
|
|
195
|
+
}
|
|
196
|
+
return;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
200
|
+
res.end(JSON.stringify({ ok: true }));
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
/** Parse Feishu event body (exported for testing) */
|
|
204
|
+
static parseEventBody(body: any): { type: string; challenge?: string; eventType?: string; content?: string; chatId?: string; senderId?: string; messageId?: string } {
|
|
205
|
+
if (body.type === 'url_verification') {
|
|
206
|
+
return { type: 'url_verification', challenge: body.challenge };
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
const eventType = body.header?.event_type;
|
|
210
|
+
const event = body.event;
|
|
211
|
+
|
|
212
|
+
if (eventType === 'im.message.receive_v1' && event?.message) {
|
|
213
|
+
const msgBody = event.message;
|
|
214
|
+
let content = '';
|
|
215
|
+
if (msgBody.message_type === 'text') {
|
|
216
|
+
try {
|
|
217
|
+
const parsed = JSON.parse(msgBody.content);
|
|
218
|
+
content = parsed.text ?? '';
|
|
219
|
+
} catch {
|
|
220
|
+
content = msgBody.content ?? '';
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
return {
|
|
225
|
+
type: 'message',
|
|
226
|
+
eventType,
|
|
227
|
+
content: content.replace(/@_user_\d+/g, '').trim(),
|
|
228
|
+
chatId: msgBody.chat_id,
|
|
229
|
+
senderId: event.sender?.sender_id?.open_id,
|
|
230
|
+
messageId: msgBody.message_id,
|
|
231
|
+
};
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
return { type: 'unknown', eventType };
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/** Get tenant access token (cached) */
|
|
238
|
+
private async getAccessToken(): Promise<string> {
|
|
239
|
+
if (this.tokenCache && Date.now() < this.tokenCache.expiresAt) {
|
|
240
|
+
return this.tokenCache.token;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
const body = JSON.stringify({
|
|
244
|
+
app_id: this.config.appId,
|
|
245
|
+
app_secret: this.config.appSecret,
|
|
246
|
+
});
|
|
247
|
+
|
|
248
|
+
const result = await this.httpsPost(
|
|
249
|
+
`${this.config.apiBase}/open-apis/auth/v3/tenant_access_token/internal`,
|
|
250
|
+
body
|
|
251
|
+
);
|
|
252
|
+
|
|
253
|
+
const data = JSON.parse(result);
|
|
254
|
+
if (data.code !== 0) {
|
|
255
|
+
throw new Error(`[FeishuChannel] Failed to get access token: ${result}`);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
this.tokenCache = {
|
|
259
|
+
token: data.tenant_access_token,
|
|
260
|
+
expiresAt: Date.now() + (data.expire - 60) * 1000,
|
|
261
|
+
};
|
|
262
|
+
return this.tokenCache.token;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/** Send a text message to a chat */
|
|
266
|
+
async sendTextMessage(chatId: string, text: string): Promise<void> {
|
|
267
|
+
const token = await this.getAccessToken();
|
|
268
|
+
const body = JSON.stringify({
|
|
269
|
+
receive_id: chatId,
|
|
270
|
+
msg_type: 'text',
|
|
271
|
+
content: JSON.stringify({ text }),
|
|
272
|
+
});
|
|
273
|
+
|
|
274
|
+
const url = `${this.config.apiBase}/open-apis/im/v1/messages?receive_id_type=chat_id`;
|
|
275
|
+
await this.httpsPostWithAuth(url, body, token);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/** Send an interactive card message */
|
|
279
|
+
async sendCardMessage(chatId: string, card: Record<string, unknown>): Promise<void> {
|
|
280
|
+
const token = await this.getAccessToken();
|
|
281
|
+
const body = JSON.stringify({
|
|
282
|
+
receive_id: chatId,
|
|
283
|
+
msg_type: 'interactive',
|
|
284
|
+
content: JSON.stringify(card),
|
|
285
|
+
});
|
|
286
|
+
|
|
287
|
+
const url = `${this.config.apiBase}/open-apis/im/v1/messages?receive_id_type=chat_id`;
|
|
288
|
+
await this.httpsPostWithAuth(url, body, token);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
/** Read request body */
|
|
292
|
+
private readBody(req: http.IncomingMessage): Promise<string> {
|
|
293
|
+
return new Promise((resolve, reject) => {
|
|
294
|
+
const chunks: Buffer[] = [];
|
|
295
|
+
req.on('data', (chunk: Buffer) => chunks.push(chunk));
|
|
296
|
+
req.on('end', () => resolve(Buffer.concat(chunks).toString('utf-8')));
|
|
297
|
+
req.on('error', reject);
|
|
298
|
+
});
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
/** HTTPS POST */
|
|
302
|
+
private httpsPost(url: string, body: string): Promise<string> {
|
|
303
|
+
return new Promise((resolve, reject) => {
|
|
304
|
+
const parsed = new URL(url);
|
|
305
|
+
const req = https.request({
|
|
306
|
+
hostname: parsed.hostname,
|
|
307
|
+
path: parsed.pathname + parsed.search,
|
|
308
|
+
method: 'POST',
|
|
309
|
+
headers: {
|
|
310
|
+
'Content-Type': 'application/json',
|
|
311
|
+
'Content-Length': Buffer.byteLength(body),
|
|
312
|
+
},
|
|
313
|
+
}, (res) => {
|
|
314
|
+
const chunks: Buffer[] = [];
|
|
315
|
+
res.on('data', (chunk: Buffer) => chunks.push(chunk));
|
|
316
|
+
res.on('end', () => resolve(Buffer.concat(chunks).toString()));
|
|
317
|
+
res.on('error', reject);
|
|
318
|
+
});
|
|
319
|
+
req.on('error', reject);
|
|
320
|
+
req.write(body);
|
|
321
|
+
req.end();
|
|
322
|
+
});
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/** HTTPS POST with Bearer auth */
|
|
326
|
+
private httpsPostWithAuth(url: string, body: string, token: string): Promise<string> {
|
|
327
|
+
return new Promise((resolve, reject) => {
|
|
328
|
+
const parsed = new URL(url);
|
|
329
|
+
const req = https.request({
|
|
330
|
+
hostname: parsed.hostname,
|
|
331
|
+
path: parsed.pathname + parsed.search,
|
|
332
|
+
method: 'POST',
|
|
333
|
+
headers: {
|
|
334
|
+
'Content-Type': 'application/json',
|
|
335
|
+
'Content-Length': Buffer.byteLength(body),
|
|
336
|
+
'Authorization': `Bearer ${token}`,
|
|
337
|
+
},
|
|
338
|
+
}, (res) => {
|
|
339
|
+
const chunks: Buffer[] = [];
|
|
340
|
+
res.on('data', (chunk: Buffer) => chunks.push(chunk));
|
|
341
|
+
res.on('end', () => resolve(Buffer.concat(chunks).toString()));
|
|
342
|
+
res.on('error', reject);
|
|
343
|
+
});
|
|
344
|
+
req.on('error', reject);
|
|
345
|
+
req.write(body);
|
|
346
|
+
req.end();
|
|
347
|
+
});
|
|
348
|
+
}
|
|
349
|
+
}
|