@tencent-ai/cloud-agent-sdk 0.2.6 → 0.2.7-next.8d34e3c.20260128
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/index.cjs +1440 -194
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +624 -164
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +624 -164
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1440 -194
- package/dist/index.mjs.map +1 -1
- package/dist/tencent-ai-cloud-agent-sdk-0.2.7-next.8d34e3c.20260128.tgz +0 -0
- package/package.json +4 -3
- package/dist/MockAgentProvider-4e4oOusg.cjs +0 -3
- package/dist/MockAgentProvider-D-basTXz.cjs +0 -3219
- package/dist/MockAgentProvider-D-basTXz.cjs.map +0 -1
- package/dist/MockAgentProvider-TNsV559x.mjs +0 -3202
- package/dist/MockAgentProvider-TNsV559x.mjs.map +0 -1
- package/dist/MockAgentProvider-tNdtAJCv.mjs +0 -3
- package/dist/tencent-ai-cloud-agent-sdk-0.2.6.tgz +0 -0
package/dist/index.cjs
CHANGED
|
@@ -1,10 +1,633 @@
|
|
|
1
|
-
require(
|
|
1
|
+
let zod = require("zod");
|
|
2
2
|
let _agentclientprotocol_sdk = require("@agentclientprotocol/sdk");
|
|
3
3
|
require("@connectrpc/connect");
|
|
4
4
|
require("@connectrpc/connect-web");
|
|
5
5
|
require("@bufbuild/protobuf");
|
|
6
6
|
let e2b = require("e2b");
|
|
7
7
|
|
|
8
|
+
//#region ../agent-provider/src/common/_legacy/tool-schemas.ts
|
|
9
|
+
/**
|
|
10
|
+
* ACP Tool Input/Output Schema 定义
|
|
11
|
+
*
|
|
12
|
+
* 用于约束 ACP 协议中 ToolCallUpdate 的 rawInput 和 rawOutput 字段
|
|
13
|
+
* 基于 getCraftToolProvider 使用的工具定义
|
|
14
|
+
*/
|
|
15
|
+
/**
|
|
16
|
+
* 工具输入 Schema 定义
|
|
17
|
+
* 用于验证和约束 rawInput
|
|
18
|
+
*/
|
|
19
|
+
const ToolInputSchemas = {
|
|
20
|
+
list_dir: zod.z.object({
|
|
21
|
+
target_directory: zod.z.string().describe("要列出内容的目录路径"),
|
|
22
|
+
ignore_globs: zod.z.string().optional().describe("可选的 glob 模式数组,用于忽略特定文件")
|
|
23
|
+
}),
|
|
24
|
+
search_file: zod.z.object({
|
|
25
|
+
target_directory: zod.z.string().describe("搜索的目录绝对路径"),
|
|
26
|
+
pattern: zod.z.string().describe("文件模式(如 \"*.js\"),支持通配符"),
|
|
27
|
+
recursive: zod.z.boolean().describe("是否递归搜索子目录"),
|
|
28
|
+
caseSensitive: zod.z.boolean().describe("是否区分大小写")
|
|
29
|
+
}),
|
|
30
|
+
read_file: zod.z.object({
|
|
31
|
+
filePath: zod.z.string().describe("要读取的文件的绝对路径"),
|
|
32
|
+
offset: zod.z.number().optional().describe("开始读取的行号"),
|
|
33
|
+
limit: zod.z.number().optional().describe("要读取的行数")
|
|
34
|
+
}),
|
|
35
|
+
read_lints: zod.z.object({ paths: zod.z.string().optional().describe("要读取 lint 错误的文件或目录路径") }),
|
|
36
|
+
rag_search: zod.z.object({
|
|
37
|
+
queryString: zod.z.string().describe("用户的实际问题或搜索查询"),
|
|
38
|
+
knowledgeBaseNames: zod.z.string().describe("知识库名称,多个用逗号分隔")
|
|
39
|
+
}),
|
|
40
|
+
read_rules: zod.z.object({ ruleNames: zod.z.string().describe("要读取的规则关键词,用逗号分隔,格式:{ruleName}_{ruleId}") }),
|
|
41
|
+
mcp_get_tool_description: zod.z.object({ toolRequests: zod.z.string().describe("JSON 字符串,二维数组格式:[[\"server1\", \"tool1\"], [\"server2\", \"tool2\"]]") }),
|
|
42
|
+
mcp_call_tool: zod.z.object({
|
|
43
|
+
serverName: zod.z.string().describe("MCP 服务器名称"),
|
|
44
|
+
toolName: zod.z.string().describe("要调用的工具名称"),
|
|
45
|
+
arguments: zod.z.string().describe("目标 MCP 工具的参数,JSON 格式字符串"),
|
|
46
|
+
maxOutputLength: zod.z.number().optional().describe("控制工具输出的最大长度,默认 200000")
|
|
47
|
+
}),
|
|
48
|
+
fetch_mcp_resource: zod.z.object({
|
|
49
|
+
server: zod.z.string().describe("MCP 服务器标识符"),
|
|
50
|
+
uri: zod.z.string().describe("要读取的资源 URI"),
|
|
51
|
+
arguments: zod.z.record(zod.z.unknown()).optional().describe("资源模板的参数"),
|
|
52
|
+
downloadPath: zod.z.string().optional().describe("可选的绝对路径,用于保存资源到磁盘")
|
|
53
|
+
}),
|
|
54
|
+
create_rule: zod.z.object({
|
|
55
|
+
ruleScope: zod.z.string().describe("规则范围,project rule 或 user rule"),
|
|
56
|
+
ruleName: zod.z.string().describe("规则文件名,不带扩展名"),
|
|
57
|
+
ruleType: zod.z.string().describe("规则类型,always、manual 或 requested"),
|
|
58
|
+
ruleContent: zod.z.string().describe("规则内容,使用 Markdown 格式"),
|
|
59
|
+
ruleDescription: zod.z.string().optional().describe("规则描述,使用 Markdown 格式")
|
|
60
|
+
}),
|
|
61
|
+
update_memory: zod.z.object({
|
|
62
|
+
action: zod.z.enum([
|
|
63
|
+
"create",
|
|
64
|
+
"update",
|
|
65
|
+
"delete"
|
|
66
|
+
]).optional().describe("执行的操作"),
|
|
67
|
+
existing_knowledge_id: zod.z.string().optional().describe("更新或删除时必需,现有记忆的 ID"),
|
|
68
|
+
knowledge_to_store: zod.z.string().optional().describe("要存储的特定记忆"),
|
|
69
|
+
title: zod.z.string().optional().describe("记忆的标题")
|
|
70
|
+
}),
|
|
71
|
+
search_content: zod.z.object({
|
|
72
|
+
pattern: zod.z.string().describe("要搜索的关键字或正则表达式模式"),
|
|
73
|
+
directory: zod.z.string().describe("要搜索的目录的绝对路径"),
|
|
74
|
+
fileTypes: zod.z.string().optional().describe("可选的逗号分隔文件扩展名"),
|
|
75
|
+
contextBefore: zod.z.number().optional().describe("每个匹配前显示的行数"),
|
|
76
|
+
contextAfter: zod.z.number().optional().describe("每个匹配后显示的行数"),
|
|
77
|
+
contextAround: zod.z.number().optional().describe("每个匹配前后显示的行数"),
|
|
78
|
+
outputMode: zod.z.string().optional().describe("输出模式:content、files_with_matches 或 count"),
|
|
79
|
+
caseSensitive: zod.z.boolean().optional().describe("是否区分大小写")
|
|
80
|
+
}),
|
|
81
|
+
write_to_file: zod.z.object({
|
|
82
|
+
filePath: zod.z.string().describe("目标文件的绝对路径"),
|
|
83
|
+
content: zod.z.string().describe("要写入的内容")
|
|
84
|
+
}),
|
|
85
|
+
replace_in_file: zod.z.object({
|
|
86
|
+
filePath: zod.z.string().describe("要修改的文件的绝对路径"),
|
|
87
|
+
old_str: zod.z.string().describe("要替换的文本"),
|
|
88
|
+
new_str: zod.z.string().describe("替换后的文本")
|
|
89
|
+
}),
|
|
90
|
+
delete_file: zod.z.object({
|
|
91
|
+
target_file: zod.z.string().describe("要删除的文件的绝对路径"),
|
|
92
|
+
explanation: zod.z.string().optional().describe("为什么使用此工具的一句话解释")
|
|
93
|
+
}),
|
|
94
|
+
execute_command: zod.z.object({
|
|
95
|
+
command: zod.z.string().describe("要执行的 CLI 命令"),
|
|
96
|
+
requires_approval: zod.z.boolean().describe("命令是否需要用户批准")
|
|
97
|
+
}),
|
|
98
|
+
preview_url: zod.z.object({ url: zod.z.string().describe("要打开的完整、有效的 HTTP/HTTPS URL") }),
|
|
99
|
+
ask_followup_question: zod.z.object({ questions: zod.z.array(zod.z.object({
|
|
100
|
+
question: zod.z.string(),
|
|
101
|
+
header: zod.z.string().max(12),
|
|
102
|
+
options: zod.z.array(zod.z.object({
|
|
103
|
+
label: zod.z.string().max(50),
|
|
104
|
+
description: zod.z.string()
|
|
105
|
+
})).min(2).max(4),
|
|
106
|
+
multiSelect: zod.z.boolean().optional()
|
|
107
|
+
})).min(1).max(4) }),
|
|
108
|
+
invoke_integration: zod.z.object({}).passthrough(),
|
|
109
|
+
call_integration: zod.z.object({}).passthrough(),
|
|
110
|
+
search_integration_tool: zod.z.object({}).passthrough(),
|
|
111
|
+
supabase_get_logs: zod.z.object({}).passthrough(),
|
|
112
|
+
supabase_execute_sql: zod.z.object({}).passthrough(),
|
|
113
|
+
supabase_apply_migration: zod.z.object({}).passthrough(),
|
|
114
|
+
supabase_list_migration: zod.z.object({}).passthrough(),
|
|
115
|
+
supabase_list_tables: zod.z.object({}).passthrough(),
|
|
116
|
+
cloud_studio_fetch_log: zod.z.object({}).passthrough(),
|
|
117
|
+
cloud_studio_execute_command: zod.z.object({}).passthrough(),
|
|
118
|
+
cloud_studio_deploy_sandbox: zod.z.object({}).passthrough(),
|
|
119
|
+
component_get_prompt: zod.z.object({}).passthrough(),
|
|
120
|
+
web_fetch: zod.z.object({
|
|
121
|
+
url: zod.z.string().describe("要获取内容的 URL"),
|
|
122
|
+
fetchInfo: zod.z.string().describe("用户想要获取的信息描述")
|
|
123
|
+
}),
|
|
124
|
+
use_skill: zod.z.object({ command: zod.z.string().describe("技能名称(不含参数),如 \"pdf\" 或 \"xlsx\"") }),
|
|
125
|
+
web_search: zod.z.object({
|
|
126
|
+
explanation: zod.z.string().describe("为什么使用此工具的一句话解释"),
|
|
127
|
+
searchTerm: zod.z.string().describe("要在网络上搜索的搜索词")
|
|
128
|
+
}),
|
|
129
|
+
task: zod.z.object({
|
|
130
|
+
subagent_name: zod.z.string().describe("要调用的子代理名称"),
|
|
131
|
+
description: zod.z.string().describe("任务的简短描述(3-5 个词)"),
|
|
132
|
+
prompt: zod.z.string().describe("子代理要执行的任务"),
|
|
133
|
+
subagent_path: zod.z.string().optional().describe("子代理定义文件的路径")
|
|
134
|
+
}),
|
|
135
|
+
codebase_search: zod.z.object({
|
|
136
|
+
query: zod.z.string().describe("关于你想理解的内容的完整问题"),
|
|
137
|
+
path: zod.z.string().describe("限制搜索范围的目录路径前缀"),
|
|
138
|
+
limit: zod.z.number().max(100).optional().describe("返回的最大结果数,默认 10")
|
|
139
|
+
}),
|
|
140
|
+
lsp: zod.z.object({}).passthrough(),
|
|
141
|
+
spec_create: zod.z.object({
|
|
142
|
+
name: zod.z.string().describe("Plan 名称,用作稳定标识符/文件名"),
|
|
143
|
+
overview: zod.z.string().describe("用一两句话精确概括本次 plan 的主要内容"),
|
|
144
|
+
relative_history: zod.z.string().describe("准备阶段的上下文,包含用户需求、代码位置、额外上下文等")
|
|
145
|
+
}),
|
|
146
|
+
spec_update: zod.z.object({ status: zod.z.enum([
|
|
147
|
+
"prepare",
|
|
148
|
+
"ready",
|
|
149
|
+
"building",
|
|
150
|
+
"finished"
|
|
151
|
+
]).optional().describe("Plan 状态") })
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* 工具输出 Schema 定义
|
|
155
|
+
* 用于验证和约束 rawOutput
|
|
156
|
+
*/
|
|
157
|
+
const ToolOutputSchemas = {
|
|
158
|
+
list_dir: zod.z.object({
|
|
159
|
+
type: zod.z.literal("list_files_result"),
|
|
160
|
+
files: zod.z.array(zod.z.object({
|
|
161
|
+
filePath: zod.z.string(),
|
|
162
|
+
size: zod.z.string(),
|
|
163
|
+
modifyTime: zod.z.string()
|
|
164
|
+
})),
|
|
165
|
+
root: zod.z.string(),
|
|
166
|
+
listing: zod.z.string().optional()
|
|
167
|
+
}),
|
|
168
|
+
search_file: zod.z.object({
|
|
169
|
+
type: zod.z.literal("search_file_result"),
|
|
170
|
+
path: zod.z.string(),
|
|
171
|
+
pattern: zod.z.string(),
|
|
172
|
+
recursive: zod.z.boolean().optional(),
|
|
173
|
+
caseSensitive: zod.z.boolean().optional(),
|
|
174
|
+
results: zod.z.array(zod.z.object({
|
|
175
|
+
filePath: zod.z.string(),
|
|
176
|
+
size: zod.z.string(),
|
|
177
|
+
modifyTime: zod.z.string()
|
|
178
|
+
}))
|
|
179
|
+
}),
|
|
180
|
+
read_file: zod.z.object({
|
|
181
|
+
type: zod.z.literal("read_file_result"),
|
|
182
|
+
path: zod.z.string(),
|
|
183
|
+
content: zod.z.string(),
|
|
184
|
+
totalLineCount: zod.z.number(),
|
|
185
|
+
hasMore: zod.z.boolean(),
|
|
186
|
+
diagnostic: zod.z.string().optional(),
|
|
187
|
+
hint: zod.z.string().optional(),
|
|
188
|
+
image: zod.z.object({
|
|
189
|
+
data: zod.z.string(),
|
|
190
|
+
mimeType: zod.z.string()
|
|
191
|
+
}).optional()
|
|
192
|
+
}),
|
|
193
|
+
read_lints: zod.z.object({
|
|
194
|
+
type: zod.z.literal("read_lints_result"),
|
|
195
|
+
diagnostics: zod.z.array(zod.z.string()),
|
|
196
|
+
totalCount: zod.z.number().optional(),
|
|
197
|
+
hint: zod.z.string().optional(),
|
|
198
|
+
isTruncated: zod.z.boolean().optional()
|
|
199
|
+
}),
|
|
200
|
+
rag_search: zod.z.object({
|
|
201
|
+
type: zod.z.literal("knowledge_base_result"),
|
|
202
|
+
selectedKnowledgeBases: zod.z.string(),
|
|
203
|
+
queryInput: zod.z.string()
|
|
204
|
+
}),
|
|
205
|
+
read_rules: zod.z.object({
|
|
206
|
+
type: zod.z.literal("rule_match_result"),
|
|
207
|
+
ruleDescription: zod.z.string(),
|
|
208
|
+
filePaths: zod.z.array(zod.z.string())
|
|
209
|
+
}),
|
|
210
|
+
mcp_get_tool_description: zod.z.object({}).passthrough(),
|
|
211
|
+
mcp_call_tool: zod.z.object({
|
|
212
|
+
type: zod.z.literal("mcp_call_tool_result"),
|
|
213
|
+
serverName: zod.z.string(),
|
|
214
|
+
toolName: zod.z.string(),
|
|
215
|
+
data: zod.z.array(zod.z.union([
|
|
216
|
+
zod.z.object({
|
|
217
|
+
type: zod.z.literal("text"),
|
|
218
|
+
text: zod.z.string()
|
|
219
|
+
}),
|
|
220
|
+
zod.z.object({
|
|
221
|
+
type: zod.z.literal("image"),
|
|
222
|
+
data: zod.z.string(),
|
|
223
|
+
mimeType: zod.z.string()
|
|
224
|
+
}),
|
|
225
|
+
zod.z.object({
|
|
226
|
+
type: zod.z.literal("resource"),
|
|
227
|
+
resource: zod.z.object({
|
|
228
|
+
uri: zod.z.string(),
|
|
229
|
+
mimeType: zod.z.string().optional(),
|
|
230
|
+
text: zod.z.string().optional(),
|
|
231
|
+
blob: zod.z.string().optional()
|
|
232
|
+
})
|
|
233
|
+
})
|
|
234
|
+
])),
|
|
235
|
+
isError: zod.z.boolean().optional(),
|
|
236
|
+
error: zod.z.unknown().optional(),
|
|
237
|
+
hint: zod.z.string().optional()
|
|
238
|
+
}),
|
|
239
|
+
fetch_mcp_resource: zod.z.object({
|
|
240
|
+
type: zod.z.literal("fetch_mcp_resource_result"),
|
|
241
|
+
server: zod.z.string(),
|
|
242
|
+
uri: zod.z.string(),
|
|
243
|
+
content: zod.z.string(),
|
|
244
|
+
downloadPath: zod.z.string().optional()
|
|
245
|
+
}),
|
|
246
|
+
create_rule: zod.z.object({
|
|
247
|
+
type: zod.z.literal("rule_create_result"),
|
|
248
|
+
ruleName: zod.z.string(),
|
|
249
|
+
createState: zod.z.enum([
|
|
250
|
+
"success",
|
|
251
|
+
"invoke",
|
|
252
|
+
"cancelled"
|
|
253
|
+
]),
|
|
254
|
+
hint: zod.z.string().optional(),
|
|
255
|
+
filePath: zod.z.string().optional()
|
|
256
|
+
}),
|
|
257
|
+
update_memory: zod.z.object({
|
|
258
|
+
type: zod.z.literal("update_memory_result"),
|
|
259
|
+
success: zod.z.boolean(),
|
|
260
|
+
message: zod.z.string(),
|
|
261
|
+
action: zod.z.enum([
|
|
262
|
+
"create",
|
|
263
|
+
"update",
|
|
264
|
+
"delete"
|
|
265
|
+
]),
|
|
266
|
+
knowledge_id: zod.z.string().optional()
|
|
267
|
+
}),
|
|
268
|
+
search_content: zod.z.object({
|
|
269
|
+
type: zod.z.literal("search_content_result"),
|
|
270
|
+
directory: zod.z.string(),
|
|
271
|
+
pattern: zod.z.string(),
|
|
272
|
+
fileTypes: zod.z.string(),
|
|
273
|
+
matches: zod.z.array(zod.z.object({
|
|
274
|
+
filePath: zod.z.string(),
|
|
275
|
+
content: zod.z.string(),
|
|
276
|
+
startLine: zod.z.number(),
|
|
277
|
+
endLine: zod.z.number(),
|
|
278
|
+
size: zod.z.string(),
|
|
279
|
+
modifyTime: zod.z.string()
|
|
280
|
+
})),
|
|
281
|
+
totalCount: zod.z.number(),
|
|
282
|
+
hasMore: zod.z.boolean(),
|
|
283
|
+
offset: zod.z.number(),
|
|
284
|
+
limit: zod.z.number(),
|
|
285
|
+
contextBefore: zod.z.number(),
|
|
286
|
+
contextAfter: zod.z.number(),
|
|
287
|
+
contextAround: zod.z.number().optional(),
|
|
288
|
+
outputMode: zod.z.string(),
|
|
289
|
+
caseSensitive: zod.z.boolean(),
|
|
290
|
+
hint: zod.z.string().optional()
|
|
291
|
+
}),
|
|
292
|
+
write_to_file: zod.z.object({
|
|
293
|
+
type: zod.z.literal("write_to_file_result"),
|
|
294
|
+
path: zod.z.string(),
|
|
295
|
+
addLineCount: zod.z.number(),
|
|
296
|
+
removedLines: zod.z.number(),
|
|
297
|
+
addedChars: zod.z.number().optional(),
|
|
298
|
+
removedChars: zod.z.number().optional(),
|
|
299
|
+
bytesWritten: zod.z.number(),
|
|
300
|
+
isNewFile: zod.z.boolean(),
|
|
301
|
+
oldContent: zod.z.string().optional(),
|
|
302
|
+
diagnostic: zod.z.string().optional()
|
|
303
|
+
}),
|
|
304
|
+
replace_in_file: zod.z.object({
|
|
305
|
+
type: zod.z.literal("replace_in_file_result"),
|
|
306
|
+
path: zod.z.string(),
|
|
307
|
+
addLineCount: zod.z.number().optional(),
|
|
308
|
+
removedLines: zod.z.number().optional(),
|
|
309
|
+
addedChars: zod.z.number().optional(),
|
|
310
|
+
removedChars: zod.z.number().optional(),
|
|
311
|
+
matchCount: zod.z.number().optional(),
|
|
312
|
+
hint: zod.z.string().optional(),
|
|
313
|
+
diagnosticChange: zod.z.object({
|
|
314
|
+
added: zod.z.string(),
|
|
315
|
+
removed: zod.z.string(),
|
|
316
|
+
unchanged: zod.z.string()
|
|
317
|
+
}).optional()
|
|
318
|
+
}),
|
|
319
|
+
delete_file: zod.z.object({
|
|
320
|
+
type: zod.z.literal("delete_file_result"),
|
|
321
|
+
path: zod.z.string(),
|
|
322
|
+
recursive: zod.z.boolean(),
|
|
323
|
+
hint: zod.z.string().optional()
|
|
324
|
+
}),
|
|
325
|
+
execute_command: zod.z.object({
|
|
326
|
+
type: zod.z.literal("execute_command_result"),
|
|
327
|
+
stdout: zod.z.string(),
|
|
328
|
+
stderr: zod.z.string(),
|
|
329
|
+
exitCode: zod.z.number(),
|
|
330
|
+
hint: zod.z.string().optional(),
|
|
331
|
+
serviceInfo: zod.z.object({
|
|
332
|
+
isWatchCommand: zod.z.boolean(),
|
|
333
|
+
isServiceOutput: zod.z.boolean(),
|
|
334
|
+
serviceReady: zod.z.boolean(),
|
|
335
|
+
message: zod.z.string()
|
|
336
|
+
}).optional(),
|
|
337
|
+
use_standalone_terminal: zod.z.boolean().optional()
|
|
338
|
+
}),
|
|
339
|
+
preview_url: zod.z.object({
|
|
340
|
+
type: zod.z.literal("preview_tool_result"),
|
|
341
|
+
url: zod.z.string(),
|
|
342
|
+
message: zod.z.string()
|
|
343
|
+
}),
|
|
344
|
+
ask_followup_question: zod.z.object({
|
|
345
|
+
type: zod.z.literal("multi_question_result"),
|
|
346
|
+
questions: zod.z.array(zod.z.object({
|
|
347
|
+
id: zod.z.string(),
|
|
348
|
+
question: zod.z.string(),
|
|
349
|
+
options: zod.z.array(zod.z.string()),
|
|
350
|
+
multiSelect: zod.z.boolean().optional(),
|
|
351
|
+
title: zod.z.string().optional()
|
|
352
|
+
})),
|
|
353
|
+
answers: zod.z.record(zod.z.union([zod.z.string(), zod.z.array(zod.z.string())])),
|
|
354
|
+
message: zod.z.string()
|
|
355
|
+
}),
|
|
356
|
+
invoke_integration: zod.z.object({
|
|
357
|
+
type: zod.z.literal("invoke_integration_tool_result"),
|
|
358
|
+
recommend: zod.z.object({
|
|
359
|
+
id: zod.z.string(),
|
|
360
|
+
type: zod.z.string(),
|
|
361
|
+
status: zod.z.enum(["connected", "disconnected"])
|
|
362
|
+
}),
|
|
363
|
+
message: zod.z.string()
|
|
364
|
+
}),
|
|
365
|
+
call_integration: zod.z.object({
|
|
366
|
+
type: zod.z.literal("call_integration_tool_result"),
|
|
367
|
+
integrationId: zod.z.string(),
|
|
368
|
+
toolName: zod.z.string(),
|
|
369
|
+
data: zod.z.object({
|
|
370
|
+
type: zod.z.literal("text"),
|
|
371
|
+
text: zod.z.string()
|
|
372
|
+
}),
|
|
373
|
+
isError: zod.z.boolean().optional(),
|
|
374
|
+
error: zod.z.unknown().optional()
|
|
375
|
+
}),
|
|
376
|
+
search_integration_tool: zod.z.object({
|
|
377
|
+
type: zod.z.literal("search_integration_tool_result"),
|
|
378
|
+
data: zod.z.array(zod.z.object({
|
|
379
|
+
integrationId: zod.z.string(),
|
|
380
|
+
integrationName: zod.z.string(),
|
|
381
|
+
toolName: zod.z.string(),
|
|
382
|
+
description: zod.z.string(),
|
|
383
|
+
inputSchema: zod.z.record(zod.z.unknown())
|
|
384
|
+
})),
|
|
385
|
+
hint: zod.z.string().optional()
|
|
386
|
+
}),
|
|
387
|
+
supabase_get_logs: zod.z.object({
|
|
388
|
+
type: zod.z.enum([
|
|
389
|
+
"supabase_get_logs_result",
|
|
390
|
+
"supabase_execute_sql_result",
|
|
391
|
+
"supabase_apply_migration_result",
|
|
392
|
+
"supabase_list_migration_result",
|
|
393
|
+
"supabase_list_tables_result"
|
|
394
|
+
]),
|
|
395
|
+
message: zod.z.string()
|
|
396
|
+
}),
|
|
397
|
+
supabase_execute_sql: zod.z.object({
|
|
398
|
+
type: zod.z.enum([
|
|
399
|
+
"supabase_get_logs_result",
|
|
400
|
+
"supabase_execute_sql_result",
|
|
401
|
+
"supabase_apply_migration_result",
|
|
402
|
+
"supabase_list_migration_result",
|
|
403
|
+
"supabase_list_tables_result"
|
|
404
|
+
]),
|
|
405
|
+
message: zod.z.string()
|
|
406
|
+
}),
|
|
407
|
+
supabase_apply_migration: zod.z.object({
|
|
408
|
+
type: zod.z.enum([
|
|
409
|
+
"supabase_get_logs_result",
|
|
410
|
+
"supabase_execute_sql_result",
|
|
411
|
+
"supabase_apply_migration_result",
|
|
412
|
+
"supabase_list_migration_result",
|
|
413
|
+
"supabase_list_tables_result"
|
|
414
|
+
]),
|
|
415
|
+
message: zod.z.string()
|
|
416
|
+
}),
|
|
417
|
+
supabase_list_migration: zod.z.object({
|
|
418
|
+
type: zod.z.enum([
|
|
419
|
+
"supabase_get_logs_result",
|
|
420
|
+
"supabase_execute_sql_result",
|
|
421
|
+
"supabase_apply_migration_result",
|
|
422
|
+
"supabase_list_migration_result",
|
|
423
|
+
"supabase_list_tables_result"
|
|
424
|
+
]),
|
|
425
|
+
message: zod.z.string()
|
|
426
|
+
}),
|
|
427
|
+
supabase_list_tables: zod.z.object({
|
|
428
|
+
type: zod.z.enum([
|
|
429
|
+
"supabase_get_logs_result",
|
|
430
|
+
"supabase_execute_sql_result",
|
|
431
|
+
"supabase_apply_migration_result",
|
|
432
|
+
"supabase_list_migration_result",
|
|
433
|
+
"supabase_list_tables_result"
|
|
434
|
+
]),
|
|
435
|
+
message: zod.z.string()
|
|
436
|
+
}),
|
|
437
|
+
cloud_studio_fetch_log: zod.z.object({
|
|
438
|
+
type: zod.z.literal("cloud_studio_fetch_log_result"),
|
|
439
|
+
success: zod.z.boolean(),
|
|
440
|
+
logs: zod.z.record(zod.z.string())
|
|
441
|
+
}),
|
|
442
|
+
cloud_studio_execute_command: zod.z.object({
|
|
443
|
+
type: zod.z.literal("cloud_studio_execute_command_result"),
|
|
444
|
+
success: zod.z.boolean(),
|
|
445
|
+
message: zod.z.string()
|
|
446
|
+
}),
|
|
447
|
+
cloud_studio_deploy_sandbox: zod.z.object({
|
|
448
|
+
type: zod.z.literal("cloud_studio_integration_result"),
|
|
449
|
+
previewUrl: zod.z.string().optional(),
|
|
450
|
+
steps: zod.z.array(zod.z.object({
|
|
451
|
+
status: zod.z.enum([
|
|
452
|
+
"idle",
|
|
453
|
+
"success",
|
|
454
|
+
"running",
|
|
455
|
+
"error"
|
|
456
|
+
]),
|
|
457
|
+
name: zod.z.enum([
|
|
458
|
+
"createSandbox",
|
|
459
|
+
"uploadProject",
|
|
460
|
+
"installDependencies",
|
|
461
|
+
"startService",
|
|
462
|
+
"preview"
|
|
463
|
+
]),
|
|
464
|
+
error: zod.z.object({
|
|
465
|
+
code: zod.z.number().optional(),
|
|
466
|
+
message: zod.z.string().optional()
|
|
467
|
+
}).optional()
|
|
468
|
+
}))
|
|
469
|
+
}),
|
|
470
|
+
component_get_prompt: zod.z.object({
|
|
471
|
+
type: zod.z.literal("component_get_prompt_result"),
|
|
472
|
+
componentType: zod.z.string(),
|
|
473
|
+
webFramework: zod.z.string(),
|
|
474
|
+
data: zod.z.object({
|
|
475
|
+
type: zod.z.literal("text"),
|
|
476
|
+
text: zod.z.string()
|
|
477
|
+
})
|
|
478
|
+
}),
|
|
479
|
+
web_fetch: zod.z.object({
|
|
480
|
+
type: zod.z.literal("web_fetch_tool_result"),
|
|
481
|
+
message: zod.z.string(),
|
|
482
|
+
data: zod.z.string(),
|
|
483
|
+
loading: zod.z.string().optional(),
|
|
484
|
+
title: zod.z.string().optional(),
|
|
485
|
+
favicon: zod.z.string().optional()
|
|
486
|
+
}),
|
|
487
|
+
use_skill: zod.z.object({
|
|
488
|
+
type: zod.z.literal("use_skill_tool_result"),
|
|
489
|
+
commandMessage: zod.z.string(),
|
|
490
|
+
message: zod.z.string()
|
|
491
|
+
}),
|
|
492
|
+
web_search: zod.z.object({
|
|
493
|
+
type: zod.z.literal("web_search_tool_result"),
|
|
494
|
+
data: zod.z.array(zod.z.object({
|
|
495
|
+
passage: zod.z.string(),
|
|
496
|
+
uri: zod.z.string(),
|
|
497
|
+
site: zod.z.string(),
|
|
498
|
+
title: zod.z.string(),
|
|
499
|
+
snippets: zod.z.array(zod.z.string()).optional(),
|
|
500
|
+
content: zod.z.string().optional()
|
|
501
|
+
})),
|
|
502
|
+
searchInput: zod.z.string().optional()
|
|
503
|
+
}),
|
|
504
|
+
task: zod.z.object({
|
|
505
|
+
type: zod.z.literal("task_tool_result"),
|
|
506
|
+
toolInfo: zod.z.array(zod.z.object({
|
|
507
|
+
name: zod.z.string(),
|
|
508
|
+
info: zod.z.string(),
|
|
509
|
+
needApprove: zod.z.boolean().optional(),
|
|
510
|
+
toolCallId: zod.z.string().optional(),
|
|
511
|
+
executeStatus: zod.z.enum([
|
|
512
|
+
"ing",
|
|
513
|
+
"completed",
|
|
514
|
+
"cancel",
|
|
515
|
+
"fail"
|
|
516
|
+
]).optional()
|
|
517
|
+
})).optional(),
|
|
518
|
+
startCallTool: zod.z.boolean().optional(),
|
|
519
|
+
finalResult: zod.z.string().optional(),
|
|
520
|
+
toolCallBrief: zod.z.string().optional()
|
|
521
|
+
}),
|
|
522
|
+
codebase_search: zod.z.object({
|
|
523
|
+
type: zod.z.literal("codebase_search_result"),
|
|
524
|
+
query: zod.z.string(),
|
|
525
|
+
path: zod.z.string(),
|
|
526
|
+
content: zod.z.string()
|
|
527
|
+
}),
|
|
528
|
+
lsp: zod.z.object({
|
|
529
|
+
type: zod.z.literal("lsp_tool_result"),
|
|
530
|
+
operation: zod.z.string(),
|
|
531
|
+
result: zod.z.string(),
|
|
532
|
+
resultCount: zod.z.number().optional(),
|
|
533
|
+
fileCount: zod.z.number().optional(),
|
|
534
|
+
character: zod.z.number().optional()
|
|
535
|
+
}),
|
|
536
|
+
spec_create: zod.z.object({
|
|
537
|
+
type: zod.z.literal("plan_create_tool_result"),
|
|
538
|
+
message: zod.z.string(),
|
|
539
|
+
data: zod.z.string()
|
|
540
|
+
}),
|
|
541
|
+
spec_update: zod.z.object({
|
|
542
|
+
type: zod.z.literal("plan_update_tool_result"),
|
|
543
|
+
status: zod.z.enum([
|
|
544
|
+
"prepare",
|
|
545
|
+
"ready",
|
|
546
|
+
"building",
|
|
547
|
+
"finished"
|
|
548
|
+
]),
|
|
549
|
+
data: zod.z.string(),
|
|
550
|
+
reminder: zod.z.string()
|
|
551
|
+
})
|
|
552
|
+
};
|
|
553
|
+
|
|
554
|
+
//#endregion
|
|
555
|
+
//#region ../agent-provider/src/common/_legacy/MockAgentProvider.ts
|
|
556
|
+
/**
|
|
557
|
+
* Mock 会话数据存储
|
|
558
|
+
* 每个会话都有对应的模拟历史消息
|
|
559
|
+
*/
|
|
560
|
+
const mockSessionHistories = /* @__PURE__ */ new Map();
|
|
561
|
+
mockSessionHistories.set("1", [
|
|
562
|
+
{
|
|
563
|
+
type: "user",
|
|
564
|
+
content: "帮我开发一个五子棋游戏,需要包含以下功能:\n1. 双人对战模式\n2. 悔棋功能\n3. 计时器",
|
|
565
|
+
timestamp: Date.now() - 18e5 - 6e4
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
type: "assistant",
|
|
569
|
+
content: "好的,我来帮你开发一个五子棋游戏。我会创建以下文件结构:\n\n- `index.html` - 主页面\n- `game.js` - 游戏逻辑\n- `style.css` - 样式文件\n\n让我开始创建这些文件...",
|
|
570
|
+
timestamp: Date.now() - 18e5 - 5e4
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
type: "assistant",
|
|
574
|
+
content: "我已经完成了所有文件的创建和修改。游戏支持双人对战、悔棋和计时功能。你可以直接在浏览器中打开 index.html 开始游戏。",
|
|
575
|
+
timestamp: Date.now() - 18e5
|
|
576
|
+
}
|
|
577
|
+
]);
|
|
578
|
+
mockSessionHistories.set("2", [
|
|
579
|
+
{
|
|
580
|
+
type: "user",
|
|
581
|
+
content: "登录页面的样式有问题,按钮颜色不对齐,帮我修复一下",
|
|
582
|
+
timestamp: Date.now() - 72e5 - 12e4
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
type: "assistant",
|
|
586
|
+
content: "我来检查登录页面的样式。让我先看看相关的 CSS 文件...",
|
|
587
|
+
timestamp: Date.now() - 72e5 - 1e5
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
type: "assistant",
|
|
591
|
+
content: "样式问题已修复,请查看效果。主要修改了按钮的 flex 布局和颜色变量。",
|
|
592
|
+
timestamp: Date.now() - 72e5
|
|
593
|
+
}
|
|
594
|
+
]);
|
|
595
|
+
mockSessionHistories.set("3", [
|
|
596
|
+
{
|
|
597
|
+
type: "user",
|
|
598
|
+
content: "API 接口响应太慢了,需要添加缓存和错误重试机制",
|
|
599
|
+
timestamp: Date.now() - 144e5 - 18e4
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
type: "assistant",
|
|
603
|
+
content: "好的,我来优化 API 接口。我会实现:\n1. Redis 缓存层\n2. 指数退避重试策略\n3. 请求去重",
|
|
604
|
+
timestamp: Date.now() - 144e5 - 15e4
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
type: "assistant",
|
|
608
|
+
content: "已添加缓存和错误重试机制。性能提升了约 60%。",
|
|
609
|
+
timestamp: Date.now() - 144e5
|
|
610
|
+
}
|
|
611
|
+
]);
|
|
612
|
+
mockSessionHistories.set("4", [
|
|
613
|
+
{
|
|
614
|
+
type: "user",
|
|
615
|
+
content: "帮我为核心模块添加单元测试,覆盖率要达到 80% 以上",
|
|
616
|
+
timestamp: Date.now() - 864e5 - 3e5
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
type: "assistant",
|
|
620
|
+
content: "好的,我会使用 Jest 来编写单元测试。让我先看看核心模块的代码结构...",
|
|
621
|
+
timestamp: Date.now() - 864e5 - 25e4
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
type: "assistant",
|
|
625
|
+
content: "测试覆盖率已达到 85%,超过了目标。主要测试了:\n- 用户认证逻辑\n- 数据验证\n- 错误处理",
|
|
626
|
+
timestamp: Date.now() - 864e5
|
|
627
|
+
}
|
|
628
|
+
]);
|
|
629
|
+
|
|
630
|
+
//#endregion
|
|
8
631
|
//#region ../agent-client-protocol/src/common/types.ts
|
|
9
632
|
/**
|
|
10
633
|
* Protocol Extension Types for Agent Client Protocol
|
|
@@ -19,7 +642,8 @@ const ExtensionMethod = {
|
|
|
19
642
|
ARTIFACT: "_codebuddy.ai/artifact",
|
|
20
643
|
QUESTION: "_codebuddy.ai/question",
|
|
21
644
|
CHECKPOINT: "_codebuddy.ai/checkpoint",
|
|
22
|
-
USAGE: "_codebuddy.ai/usage"
|
|
645
|
+
USAGE: "_codebuddy.ai/usage",
|
|
646
|
+
COMMAND: "_codebuddy.ai/command"
|
|
23
647
|
};
|
|
24
648
|
/**
|
|
25
649
|
* All known extension methods
|
|
@@ -28,7 +652,8 @@ const KNOWN_EXTENSIONS = [
|
|
|
28
652
|
ExtensionMethod.ARTIFACT,
|
|
29
653
|
ExtensionMethod.QUESTION,
|
|
30
654
|
ExtensionMethod.CHECKPOINT,
|
|
31
|
-
ExtensionMethod.USAGE
|
|
655
|
+
ExtensionMethod.USAGE,
|
|
656
|
+
ExtensionMethod.COMMAND
|
|
32
657
|
];
|
|
33
658
|
|
|
34
659
|
//#endregion
|
|
@@ -81,7 +706,7 @@ function parseSSELine(line, currentEvent) {
|
|
|
81
706
|
function streamableHttp(options) {
|
|
82
707
|
const { endpoint, authToken, headers: customHeaders = {}, reconnect = {}, signal: externalSignal, fetch: customFetch = globalThis.fetch, onConnect, onDisconnect, onError, heartbeatTimeout = 6e4, postTimeout = 3e4, backpressure = {} } = options;
|
|
83
708
|
const { enabled: reconnectEnabled = true, initialDelay = 1e3, maxDelay = 3e4, maxRetries = Infinity, jitter: jitterEnabled = true } = reconnect;
|
|
84
|
-
const { highWaterMark = 100, lowWaterMark = 50 } = backpressure;
|
|
709
|
+
const { highWaterMark = 100, lowWaterMark = 50, pauseTimeout = 5e3 } = backpressure;
|
|
85
710
|
let connectionId;
|
|
86
711
|
let lastEventId;
|
|
87
712
|
let reconnectAttempts = 0;
|
|
@@ -110,6 +735,7 @@ function streamableHttp(options) {
|
|
|
110
735
|
let streamError = null;
|
|
111
736
|
let isPaused = false;
|
|
112
737
|
let resumeReading = null;
|
|
738
|
+
let backgroundSSEProcessors = /* @__PURE__ */ new Set();
|
|
113
739
|
let lastActivity = Date.now();
|
|
114
740
|
let heartbeatCheckTimer;
|
|
115
741
|
function enqueueMessage(message) {
|
|
@@ -132,7 +758,8 @@ function streamableHttp(options) {
|
|
|
132
758
|
const message = messageQueue.shift();
|
|
133
759
|
if (isPaused && messageQueue.length <= lowWaterMark) {
|
|
134
760
|
isPaused = false;
|
|
135
|
-
resumeReading
|
|
761
|
+
const resume = resumeReading;
|
|
762
|
+
if (resume) queueMicrotask(() => resume());
|
|
136
763
|
}
|
|
137
764
|
return Promise.resolve(message);
|
|
138
765
|
}
|
|
@@ -186,6 +813,7 @@ function streamableHttp(options) {
|
|
|
186
813
|
resumeReading();
|
|
187
814
|
resumeReading = null;
|
|
188
815
|
}
|
|
816
|
+
backgroundSSEProcessors.clear();
|
|
189
817
|
while (messageResolvers.length > 0) messageResolvers.shift()(null);
|
|
190
818
|
}
|
|
191
819
|
async function sendDelete() {
|
|
@@ -218,7 +846,21 @@ function streamableHttp(options) {
|
|
|
218
846
|
while (true) {
|
|
219
847
|
if (isPaused) {
|
|
220
848
|
await new Promise((resolve) => {
|
|
221
|
-
|
|
849
|
+
let resolved = false;
|
|
850
|
+
const timeoutId = setTimeout(() => {
|
|
851
|
+
if (!resolved) {
|
|
852
|
+
resolved = true;
|
|
853
|
+
console.warn("[StreamableHTTP] Backpressure pause timeout, forcing resume");
|
|
854
|
+
resolve();
|
|
855
|
+
}
|
|
856
|
+
}, pauseTimeout);
|
|
857
|
+
resumeReading = () => {
|
|
858
|
+
if (!resolved) {
|
|
859
|
+
resolved = true;
|
|
860
|
+
clearTimeout(timeoutId);
|
|
861
|
+
resolve();
|
|
862
|
+
}
|
|
863
|
+
};
|
|
222
864
|
});
|
|
223
865
|
resumeReading = null;
|
|
224
866
|
}
|
|
@@ -251,6 +893,19 @@ function streamableHttp(options) {
|
|
|
251
893
|
reader.releaseLock();
|
|
252
894
|
}
|
|
253
895
|
}
|
|
896
|
+
/**
|
|
897
|
+
* Process SSE stream in background without blocking the caller.
|
|
898
|
+
* This prevents deadlock when POST responses return SSE streams.
|
|
899
|
+
*/
|
|
900
|
+
function processSSEStreamBackground(reader) {
|
|
901
|
+
const promise = processSSEStream(reader).catch((error) => {
|
|
902
|
+
console.error("[StreamableHTTP] Background SSE processing error:", error);
|
|
903
|
+
onError?.(error instanceof Error ? error : new Error(String(error)));
|
|
904
|
+
}).finally(() => {
|
|
905
|
+
backgroundSSEProcessors.delete(promise);
|
|
906
|
+
});
|
|
907
|
+
backgroundSSEProcessors.add(promise);
|
|
908
|
+
}
|
|
254
909
|
async function startSSEConnection() {
|
|
255
910
|
let currentReader = null;
|
|
256
911
|
const triggerReconnect = () => {
|
|
@@ -286,14 +941,14 @@ function streamableHttp(options) {
|
|
|
286
941
|
stopHeartbeatCheck();
|
|
287
942
|
const endedConnectionId = connectionId;
|
|
288
943
|
connectionId = void 0;
|
|
289
|
-
if (
|
|
290
|
-
|
|
291
|
-
break;
|
|
292
|
-
}
|
|
944
|
+
if (endedConnectionId) onDisconnect?.(endedConnectionId);
|
|
945
|
+
if (!reconnectEnabled || closed) break;
|
|
293
946
|
connectionReady = new Promise((resolve, reject) => {
|
|
294
947
|
resolveConnection = resolve;
|
|
295
948
|
rejectConnection = reject;
|
|
296
949
|
});
|
|
950
|
+
const reconnectDelay = calculateDelay(1);
|
|
951
|
+
await new Promise((resolve) => setTimeout(resolve, reconnectDelay));
|
|
297
952
|
} catch (error) {
|
|
298
953
|
stopHeartbeatCheck();
|
|
299
954
|
currentReader = null;
|
|
@@ -310,14 +965,21 @@ function streamableHttp(options) {
|
|
|
310
965
|
}
|
|
311
966
|
async function sendMessage(message) {
|
|
312
967
|
if (closed) throw new Error("Connection is closed");
|
|
313
|
-
const
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
968
|
+
const maxWaitAttempts = 5;
|
|
969
|
+
let currentConnectionId;
|
|
970
|
+
for (let attempt = 0; attempt < maxWaitAttempts; attempt++) {
|
|
971
|
+
const versionBeforeWait = connectionVersion;
|
|
972
|
+
await connectionReady;
|
|
973
|
+
if (versionBeforeWait !== connectionVersion && versionBeforeWait > 0) await connectionReady;
|
|
974
|
+
currentConnectionId = connectionId;
|
|
975
|
+
if (currentConnectionId) break;
|
|
976
|
+
if (attempt < maxWaitAttempts - 1) await new Promise((resolve) => setTimeout(resolve, 100));
|
|
977
|
+
}
|
|
978
|
+
if (!currentConnectionId) throw new Error("No connection ID available after multiple attempts");
|
|
317
979
|
const headers = buildHeaders();
|
|
318
980
|
headers["Content-Type"] = "application/json";
|
|
319
981
|
headers["Accept"] = "application/json, text/event-stream";
|
|
320
|
-
headers["Acp-Connection-Id"] =
|
|
982
|
+
headers["Acp-Connection-Id"] = currentConnectionId;
|
|
321
983
|
const postController = new AbortController();
|
|
322
984
|
let timeoutId;
|
|
323
985
|
const postSignal = postTimeout > 0 ? postController.signal : combinedSignal;
|
|
@@ -340,7 +1002,7 @@ function streamableHttp(options) {
|
|
|
340
1002
|
const contentType = response.headers.get("Content-Type") || "";
|
|
341
1003
|
if (contentType.includes("text/event-stream")) {
|
|
342
1004
|
const reader = response.body?.getReader();
|
|
343
|
-
if (reader)
|
|
1005
|
+
if (reader) processSSEStreamBackground(reader);
|
|
344
1006
|
} else if (contentType.includes("application/json")) {
|
|
345
1007
|
const data = await response.json();
|
|
346
1008
|
if (data && typeof data === "object" && "jsonrpc" in data) enqueueMessage(data);
|
|
@@ -2155,12 +2817,13 @@ var AccountService = class {
|
|
|
2155
2817
|
*/
|
|
2156
2818
|
setAccount(account) {
|
|
2157
2819
|
const prev = this.account;
|
|
2820
|
+
const wasInitialized = this.initialized;
|
|
2158
2821
|
this.account = account;
|
|
2159
2822
|
if (!this.initialized) {
|
|
2160
2823
|
this.initialized = true;
|
|
2161
2824
|
this.initResolve?.(account);
|
|
2162
2825
|
}
|
|
2163
|
-
if (prev?.uid !== account?.uid) this.notifyListeners();
|
|
2826
|
+
if (!wasInitialized || prev?.uid !== account?.uid) this.notifyListeners();
|
|
2164
2827
|
}
|
|
2165
2828
|
/**
|
|
2166
2829
|
* 清除账号(登出)
|
|
@@ -2467,7 +3130,6 @@ var CloudAgentProvider = class CloudAgentProvider {
|
|
|
2467
3130
|
*/
|
|
2468
3131
|
async list(options) {
|
|
2469
3132
|
try {
|
|
2470
|
-
console.log("[CloudAgentProvider] list called with options:", JSON.stringify(options, null, 2));
|
|
2471
3133
|
const params = {
|
|
2472
3134
|
page: 1,
|
|
2473
3135
|
size: 30,
|
|
@@ -2484,7 +3146,6 @@ var CloudAgentProvider = class CloudAgentProvider {
|
|
|
2484
3146
|
...options.title !== void 0 && { title: options.title }
|
|
2485
3147
|
}
|
|
2486
3148
|
};
|
|
2487
|
-
console.log("[CloudAgentProvider] API request params:", JSON.stringify(params, null, 2));
|
|
2488
3149
|
const response = await this.request("GET", "/console/cloudagent/agentmgmt/agents", params);
|
|
2489
3150
|
if (!response.ok) throw new Error(`Failed to list agents: ${response.statusText}`);
|
|
2490
3151
|
const apiResponse = await response.json();
|
|
@@ -3359,6 +4020,9 @@ var ActiveSessionImpl = class {
|
|
|
3359
4020
|
connection.on("questionRequest", (request) => {
|
|
3360
4021
|
this.emit("questionRequest", request);
|
|
3361
4022
|
});
|
|
4023
|
+
connection.on("questionCancelled", () => {
|
|
4024
|
+
this.prompts.cancel();
|
|
4025
|
+
});
|
|
3362
4026
|
connection.on("usageUpdate", (usage) => {
|
|
3363
4027
|
this.emit("usageUpdate", usage);
|
|
3364
4028
|
});
|
|
@@ -3368,6 +4032,13 @@ var ActiveSessionImpl = class {
|
|
|
3368
4032
|
connection.on("checkpointUpdated", (checkpoint) => {
|
|
3369
4033
|
this.emit("checkpointUpdated", checkpoint);
|
|
3370
4034
|
});
|
|
4035
|
+
connection.on("command", (command) => {
|
|
4036
|
+
console.log("[Session] Forwarding command:", {
|
|
4037
|
+
action: command.action,
|
|
4038
|
+
paramsKeys: command.params ? Object.keys(command.params) : []
|
|
4039
|
+
});
|
|
4040
|
+
this.emit("command", command);
|
|
4041
|
+
});
|
|
3371
4042
|
}
|
|
3372
4043
|
mapPromptResponse(response) {
|
|
3373
4044
|
return {
|
|
@@ -3420,12 +4091,7 @@ var SessionManager = class {
|
|
|
3420
4091
|
* @param options - Optional query parameters for filtering, sorting, and pagination
|
|
3421
4092
|
*/
|
|
3422
4093
|
async listSessions(options) {
|
|
3423
|
-
console.log("[SessionManager] listSessions called with options:", JSON.stringify(options, null, 2));
|
|
3424
4094
|
const result = await this.provider.list(options);
|
|
3425
|
-
console.log("[SessionManager] provider.list returned:", {
|
|
3426
|
-
agentsCount: result.agents.length,
|
|
3427
|
-
pagination: result.pagination
|
|
3428
|
-
});
|
|
3429
4095
|
const sessions = result.agents.map((agent) => ({
|
|
3430
4096
|
id: agent.id,
|
|
3431
4097
|
agentId: agent.id,
|
|
@@ -3464,6 +4130,7 @@ var SessionManager = class {
|
|
|
3464
4130
|
const connection = await this.provider.connect(agentId);
|
|
3465
4131
|
this.logger?.debug(`Connected to agent: ${agentId}`);
|
|
3466
4132
|
const response = await connection.createSession({
|
|
4133
|
+
_meta: params._meta,
|
|
3467
4134
|
cwd: params.cwd,
|
|
3468
4135
|
mcpServers: params.mcpServers
|
|
3469
4136
|
});
|
|
@@ -3623,6 +4290,20 @@ var AgentClient = class {
|
|
|
3623
4290
|
throw error;
|
|
3624
4291
|
}
|
|
3625
4292
|
},
|
|
4293
|
+
move: async (sessionId) => {
|
|
4294
|
+
this.logger?.debug("AgentClient.sessions.move called", { sessionId });
|
|
4295
|
+
try {
|
|
4296
|
+
if (this.provider.move) {
|
|
4297
|
+
const result = await this.provider.move(sessionId);
|
|
4298
|
+
this.logger?.info("Session moved successfully", { sessionId });
|
|
4299
|
+
return result;
|
|
4300
|
+
}
|
|
4301
|
+
throw new Error("Provider does not support move method");
|
|
4302
|
+
} catch (error) {
|
|
4303
|
+
this.logger?.error("Failed to move session", error);
|
|
4304
|
+
throw error;
|
|
4305
|
+
}
|
|
4306
|
+
},
|
|
3626
4307
|
initializeWorkspace: async (params) => {
|
|
3627
4308
|
this.logger?.debug("AgentClient.sessions.initializeWorkspace called", params);
|
|
3628
4309
|
try {
|
|
@@ -3855,12 +4536,33 @@ const getSelectAccountUrl = () => `${window.location.origin}/login/select`;
|
|
|
3855
4536
|
/** localStorage 中存储选中账号 ID 的 key */
|
|
3856
4537
|
const SELECTED_ACCOUNT_KEY = "CODEBUDDY_IDE_SELECTED_ACCOUNT_ID";
|
|
3857
4538
|
/**
|
|
4539
|
+
* 套餐代码对应的 i18n key 映射
|
|
4540
|
+
*/
|
|
4541
|
+
const CommodityCodeText = {
|
|
4542
|
+
[CommodityCode.free]: "plan.codebuddyFreePlan",
|
|
4543
|
+
[CommodityCode.proMon]: "plan.codebuddyProPlanMonthly",
|
|
4544
|
+
[CommodityCode.proMonPlus]: "plan.codebuddyProPlanMonthly",
|
|
4545
|
+
[CommodityCode.gift]: "plan.codebuddyProPlanTrial",
|
|
4546
|
+
[CommodityCode.activity]: "plan.codebuddyGrowthPlan",
|
|
4547
|
+
[CommodityCode.proYear]: "plan.codebuddyProPlanYearly",
|
|
4548
|
+
[CommodityCode.freeMon]: "plan.codebuddyProPlanDaily",
|
|
4549
|
+
[CommodityCode.extra]: "plan.codebuddyCreditPackage"
|
|
4550
|
+
};
|
|
4551
|
+
/**
|
|
4552
|
+
* 获取套餐名称的 i18n key
|
|
4553
|
+
*/
|
|
4554
|
+
const getPackageName = (packageCode) => {
|
|
4555
|
+
return CommodityCodeText[packageCode] || "";
|
|
4556
|
+
};
|
|
4557
|
+
/**
|
|
3858
4558
|
* Backend Provider 实现类
|
|
3859
4559
|
*
|
|
3860
4560
|
* 职责:
|
|
3861
|
-
* - 与后端 API 通信(getAgents, getModels, getAccount 等)
|
|
3862
4561
|
* - 触发登录/登出流程
|
|
3863
4562
|
* - 获取 account 后自动同步到 accountService
|
|
4563
|
+
*
|
|
4564
|
+
* 注意:getAgents 和 getModels 方法已废弃并移除,
|
|
4565
|
+
* 请使用 IAgentAdapter 中的对应方法
|
|
3864
4566
|
*/
|
|
3865
4567
|
var BackendProvider = class {
|
|
3866
4568
|
constructor(config) {
|
|
@@ -3868,98 +4570,6 @@ var BackendProvider = class {
|
|
|
3868
4570
|
this.authToken = config.authToken;
|
|
3869
4571
|
}
|
|
3870
4572
|
/**
|
|
3871
|
-
* 获取 Agent 列表
|
|
3872
|
-
* API 端点: GET /v2/cloudagent/agentmgmt/agents
|
|
3873
|
-
*/
|
|
3874
|
-
async getAgents(request = {}) {
|
|
3875
|
-
const { MockAgentProvider } = await Promise.resolve().then(() => require("./MockAgentProvider-4e4oOusg.cjs"));
|
|
3876
|
-
const sessions = new MockAgentProvider().getAllSessions();
|
|
3877
|
-
const mockTitles = {
|
|
3878
|
-
"1": "开发五子棋游戏",
|
|
3879
|
-
"2": "修复登录页面样式",
|
|
3880
|
-
"3": "API 接口优化"
|
|
3881
|
-
};
|
|
3882
|
-
const agents = sessions.map((session, index) => ({
|
|
3883
|
-
id: session.sessionId,
|
|
3884
|
-
name: mockTitles[session.sessionId] || `Agent ${session.sessionId}`,
|
|
3885
|
-
status: "RUNNING",
|
|
3886
|
-
visibility: "PRIVATE",
|
|
3887
|
-
createdAt: new Date(session.createdAt).toISOString(),
|
|
3888
|
-
summary: `Session created at ${new Date(session.createdAt).toLocaleString()}`,
|
|
3889
|
-
source: {
|
|
3890
|
-
provider: "github",
|
|
3891
|
-
ref: "refs/heads/main",
|
|
3892
|
-
repository: session.cwd
|
|
3893
|
-
},
|
|
3894
|
-
target: {
|
|
3895
|
-
autoCreatePr: false,
|
|
3896
|
-
branchName: "feature/mock",
|
|
3897
|
-
prUrl: void 0,
|
|
3898
|
-
url: void 0
|
|
3899
|
-
}
|
|
3900
|
-
}));
|
|
3901
|
-
return {
|
|
3902
|
-
agents,
|
|
3903
|
-
pagination: {
|
|
3904
|
-
hasNext: false,
|
|
3905
|
-
hasPrev: false,
|
|
3906
|
-
page: 1,
|
|
3907
|
-
size: agents.length,
|
|
3908
|
-
total: agents.length,
|
|
3909
|
-
totalPages: 1
|
|
3910
|
-
}
|
|
3911
|
-
};
|
|
3912
|
-
}
|
|
3913
|
-
/**
|
|
3914
|
-
* 获取可用模型列表
|
|
3915
|
-
* API 端点: GET /v2/cloudagent/models (假设)
|
|
3916
|
-
*
|
|
3917
|
-
* 当前实现: 返回 Mock 数据
|
|
3918
|
-
*/
|
|
3919
|
-
async getModels(request) {
|
|
3920
|
-
const mockModels = [{
|
|
3921
|
-
id: "glm-4.7",
|
|
3922
|
-
name: "GLM-4.7",
|
|
3923
|
-
vendor: "f",
|
|
3924
|
-
maxOutputTokens: 48e3,
|
|
3925
|
-
maxInputTokens: 2e5,
|
|
3926
|
-
supportsToolCall: true,
|
|
3927
|
-
supportsImages: false,
|
|
3928
|
-
disabledMultimodal: true,
|
|
3929
|
-
maxAllowedSize: 2e5,
|
|
3930
|
-
supportsReasoning: true,
|
|
3931
|
-
onlyReasoning: true,
|
|
3932
|
-
temperature: 1,
|
|
3933
|
-
reasoning: {
|
|
3934
|
-
effort: "medium",
|
|
3935
|
-
summary: "auto"
|
|
3936
|
-
},
|
|
3937
|
-
descriptionEn: "GLM-4.7 model, Well-rounded model for everyday use",
|
|
3938
|
-
descriptionZh: "GLM-4.7 大模型,能力均衡,适合日常使用"
|
|
3939
|
-
}, {
|
|
3940
|
-
id: "glm-4.7-flash",
|
|
3941
|
-
name: "GLM-4.7 Flash",
|
|
3942
|
-
vendor: "f",
|
|
3943
|
-
maxOutputTokens: 4e4,
|
|
3944
|
-
maxInputTokens: 128e3,
|
|
3945
|
-
supportsToolCall: true,
|
|
3946
|
-
supportsImages: false,
|
|
3947
|
-
disabledMultimodal: false,
|
|
3948
|
-
maxAllowedSize: 128e3,
|
|
3949
|
-
supportsReasoning: false,
|
|
3950
|
-
onlyReasoning: false,
|
|
3951
|
-
temperature: .7,
|
|
3952
|
-
reasoning: {
|
|
3953
|
-
effort: "low",
|
|
3954
|
-
summary: "never"
|
|
3955
|
-
},
|
|
3956
|
-
descriptionEn: "GLM-4.7 Flash, Fast and efficient model",
|
|
3957
|
-
descriptionZh: "GLM-4.7 Flash,快速高效的模型"
|
|
3958
|
-
}];
|
|
3959
|
-
console.log("[BackendProvider] getModels called for repository:", request.repository);
|
|
3960
|
-
return { models: mockModels };
|
|
3961
|
-
}
|
|
3962
|
-
/**
|
|
3963
4573
|
* 获取当前账号信息
|
|
3964
4574
|
* API 端点: GET /console/accounts (返回账号列表)
|
|
3965
4575
|
*
|
|
@@ -4010,53 +4620,335 @@ var BackendProvider = class {
|
|
|
4010
4620
|
if (account.type === "personal") return account.uid === selectedAccountId;
|
|
4011
4621
|
return account.enterpriseId === selectedAccountId;
|
|
4012
4622
|
});
|
|
4013
|
-
if (selectedAccount)
|
|
4014
|
-
const
|
|
4015
|
-
const editionType = this.getEditionDisplayType(selectedAccount.type, plan.isPro);
|
|
4016
|
-
console.log("account", {
|
|
4017
|
-
...selectedAccount,
|
|
4018
|
-
...plan,
|
|
4019
|
-
editionType
|
|
4020
|
-
});
|
|
4021
|
-
const account = {
|
|
4022
|
-
...selectedAccount,
|
|
4023
|
-
...plan,
|
|
4024
|
-
editionType
|
|
4025
|
-
};
|
|
4623
|
+
if (selectedAccount) {
|
|
4624
|
+
const account = await this.enrichAccountWithUsage(selectedAccount);
|
|
4026
4625
|
accountService.setAccount(account);
|
|
4027
4626
|
return account;
|
|
4028
|
-
} catch (error) {
|
|
4029
|
-
accountService.setAccount(selectedAccount);
|
|
4030
|
-
return { ...selectedAccount };
|
|
4031
4627
|
}
|
|
4032
4628
|
}
|
|
4033
4629
|
if (accounts.length === 1) {
|
|
4034
4630
|
selectedAccount = accounts[0];
|
|
4035
4631
|
const accountId = selectedAccount.type === "personal" ? selectedAccount.uid : selectedAccount.enterpriseId;
|
|
4036
4632
|
if (accountId) localStorage.setItem(SELECTED_ACCOUNT_KEY, accountId);
|
|
4633
|
+
const account = await this.enrichAccountWithUsage(selectedAccount);
|
|
4634
|
+
console.log("account (auto-selected)", account);
|
|
4635
|
+
accountService.setAccount(account);
|
|
4636
|
+
return account;
|
|
4637
|
+
}
|
|
4638
|
+
const redirectUrl = encodeURIComponent(window.location.href);
|
|
4639
|
+
window.location.href = `${getSelectAccountUrl()}?platform=website&state=0&redirect_uri=${redirectUrl}`;
|
|
4640
|
+
accountService.setAccount(null);
|
|
4641
|
+
return null;
|
|
4642
|
+
} catch (error) {
|
|
4643
|
+
console.error("[BackendProvider] getAccount failed:", error);
|
|
4644
|
+
accountService.setAccount(null);
|
|
4645
|
+
return null;
|
|
4646
|
+
}
|
|
4647
|
+
}
|
|
4648
|
+
/**
|
|
4649
|
+
* 获取用户连接器列表
|
|
4650
|
+
* API 端点: GET /console/as/connector/user/
|
|
4651
|
+
*/
|
|
4652
|
+
async getUserConnector() {
|
|
4653
|
+
const url = `${this.baseUrl}/console/as/connector/user/`;
|
|
4654
|
+
const headers = {
|
|
4655
|
+
"Content-Type": "application/json",
|
|
4656
|
+
"Accept": "application/json"
|
|
4657
|
+
};
|
|
4658
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4659
|
+
try {
|
|
4660
|
+
const result = await (await fetch(url, {
|
|
4661
|
+
method: "GET",
|
|
4662
|
+
headers,
|
|
4663
|
+
credentials: "include"
|
|
4664
|
+
})).json();
|
|
4665
|
+
if (result.code === 0) {
|
|
4666
|
+
const { connectors } = result.data;
|
|
4667
|
+
return { connectors: connectors.map((connector) => ({
|
|
4668
|
+
...connector,
|
|
4669
|
+
connectStatus: connector.connect_status,
|
|
4670
|
+
activeStatus: connector.active_status,
|
|
4671
|
+
displayName: connector.display_name,
|
|
4672
|
+
oauthClientId: connector.oauth_client_id,
|
|
4673
|
+
oauthRedirectUrl: connector.oauth_redirect_url
|
|
4674
|
+
})) };
|
|
4675
|
+
}
|
|
4676
|
+
throw result;
|
|
4677
|
+
} catch (error) {
|
|
4678
|
+
throw error;
|
|
4679
|
+
}
|
|
4680
|
+
}
|
|
4681
|
+
/**
|
|
4682
|
+
* 修改用户连接器连接状态
|
|
4683
|
+
* API 端点: PATCH /console/as/connector/user/:name/connect_status
|
|
4684
|
+
*/
|
|
4685
|
+
async modifyUserConnectorConnectStatus(request) {
|
|
4686
|
+
const url = `${this.baseUrl}/console/as/connector/user/${request.name}/connect_status`;
|
|
4687
|
+
const headers = {
|
|
4688
|
+
"Content-Type": "application/json",
|
|
4689
|
+
"Accept": "application/json"
|
|
4690
|
+
};
|
|
4691
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4692
|
+
const body = {
|
|
4693
|
+
name: request.name,
|
|
4694
|
+
connect_status: request.connectStatus
|
|
4695
|
+
};
|
|
4696
|
+
if (request.activeStatus !== void 0) body.active_status = request.activeStatus;
|
|
4697
|
+
if (request.repos !== void 0) body.repos = request.repos;
|
|
4698
|
+
try {
|
|
4699
|
+
const result = await (await fetch(url, {
|
|
4700
|
+
method: "PATCH",
|
|
4701
|
+
headers,
|
|
4702
|
+
credentials: "include",
|
|
4703
|
+
body: JSON.stringify(body)
|
|
4704
|
+
})).json();
|
|
4705
|
+
if (result.code === 0) return;
|
|
4706
|
+
throw result;
|
|
4707
|
+
} catch (error) {
|
|
4708
|
+
throw error;
|
|
4709
|
+
}
|
|
4710
|
+
}
|
|
4711
|
+
/**
|
|
4712
|
+
* 修改用户连接器仓库
|
|
4713
|
+
* API 端点: PATCH /console/as/connector/user/:name/repo/
|
|
4714
|
+
*/
|
|
4715
|
+
async modifyUserConnectorRepo(request) {
|
|
4716
|
+
const url = `${this.baseUrl}/console/as/connector/user/${request.name}/repo`;
|
|
4717
|
+
const headers = {
|
|
4718
|
+
"Content-Type": "application/json",
|
|
4719
|
+
"Accept": "application/json"
|
|
4720
|
+
};
|
|
4721
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4722
|
+
const body = { name: request.name };
|
|
4723
|
+
if (request.repo !== void 0) body.repo = request.repo;
|
|
4724
|
+
try {
|
|
4725
|
+
const result = await (await fetch(url, {
|
|
4726
|
+
method: "PATCH",
|
|
4727
|
+
headers,
|
|
4728
|
+
credentials: "include",
|
|
4729
|
+
body: JSON.stringify(body)
|
|
4730
|
+
})).json();
|
|
4731
|
+
if (result.code === 0) return;
|
|
4732
|
+
throw result;
|
|
4733
|
+
} catch (error) {
|
|
4734
|
+
throw error;
|
|
4735
|
+
}
|
|
4736
|
+
}
|
|
4737
|
+
/**
|
|
4738
|
+
* 修改用户连接器激活状态
|
|
4739
|
+
* API 端点: PATCH /console/as/connector/user/:name/active_status
|
|
4740
|
+
*/
|
|
4741
|
+
async modifyUserConnectorActiveStatus(request) {
|
|
4742
|
+
const url = `${this.baseUrl}/console/as/connector/user/${request.name}/active_status`;
|
|
4743
|
+
const headers = {
|
|
4744
|
+
"Content-Type": "application/json",
|
|
4745
|
+
"Accept": "application/json"
|
|
4746
|
+
};
|
|
4747
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4748
|
+
const body = {
|
|
4749
|
+
name: request.name,
|
|
4750
|
+
active_status: request.activeStatus
|
|
4751
|
+
};
|
|
4752
|
+
try {
|
|
4753
|
+
const result = await (await fetch(url, {
|
|
4754
|
+
method: "PATCH",
|
|
4755
|
+
headers,
|
|
4756
|
+
credentials: "include",
|
|
4757
|
+
body: JSON.stringify(body)
|
|
4758
|
+
})).json();
|
|
4759
|
+
if (result.code === 0) return;
|
|
4760
|
+
throw result;
|
|
4761
|
+
} catch (error) {
|
|
4762
|
+
throw error;
|
|
4763
|
+
}
|
|
4764
|
+
}
|
|
4765
|
+
/**
|
|
4766
|
+
* 删除用户连接器
|
|
4767
|
+
* API 端点: DELETE /console/as/connector/user/:name/
|
|
4768
|
+
*/
|
|
4769
|
+
async deleteUserConnector(name) {
|
|
4770
|
+
const url = `${this.baseUrl}/console/as/connector/user/${name}/`;
|
|
4771
|
+
const headers = {
|
|
4772
|
+
"Content-Type": "application/json",
|
|
4773
|
+
"Accept": "application/json"
|
|
4774
|
+
};
|
|
4775
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4776
|
+
try {
|
|
4777
|
+
const result = await (await fetch(url, {
|
|
4778
|
+
method: "DELETE",
|
|
4779
|
+
headers,
|
|
4780
|
+
credentials: "include"
|
|
4781
|
+
})).json();
|
|
4782
|
+
if (result.code === 0) return;
|
|
4783
|
+
throw result;
|
|
4784
|
+
} catch (error) {
|
|
4785
|
+
throw error;
|
|
4786
|
+
}
|
|
4787
|
+
}
|
|
4788
|
+
/**
|
|
4789
|
+
* 添加任务
|
|
4790
|
+
* API 端点: POST /console/as/connector/task/
|
|
4791
|
+
*/
|
|
4792
|
+
async addConnectorTask(request) {
|
|
4793
|
+
const url = `${this.baseUrl}/console/as/connector/task/`;
|
|
4794
|
+
const headers = {
|
|
4795
|
+
"Content-Type": "application/json",
|
|
4796
|
+
"Accept": "application/json"
|
|
4797
|
+
};
|
|
4798
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4799
|
+
const body = { task_id: request.taskId };
|
|
4800
|
+
if (request.connectors !== void 0) body.connectors = request.connectors.map((c) => ({
|
|
4801
|
+
name: c.name,
|
|
4802
|
+
repos: c.repos,
|
|
4803
|
+
active_status: c.activeStatus
|
|
4804
|
+
}));
|
|
4805
|
+
try {
|
|
4806
|
+
const result = await (await fetch(url, {
|
|
4807
|
+
method: "POST",
|
|
4808
|
+
headers,
|
|
4809
|
+
credentials: "include",
|
|
4810
|
+
body: JSON.stringify(body)
|
|
4811
|
+
})).json();
|
|
4812
|
+
if (result.code === 0) return { taskId: result.data?.task_id || request.taskId };
|
|
4813
|
+
throw result;
|
|
4814
|
+
} catch (error) {
|
|
4815
|
+
throw error;
|
|
4816
|
+
}
|
|
4817
|
+
}
|
|
4818
|
+
/**
|
|
4819
|
+
* 获取任务连接器列表
|
|
4820
|
+
* API 端点: GET /console/as/connector/task/:taskid
|
|
4821
|
+
*/
|
|
4822
|
+
async getTaskConnector(taskId) {
|
|
4823
|
+
const url = `${this.baseUrl}/console/as/connector/task/${taskId}`;
|
|
4824
|
+
const headers = {
|
|
4825
|
+
"Content-Type": "application/json",
|
|
4826
|
+
"Accept": "application/json"
|
|
4827
|
+
};
|
|
4828
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4829
|
+
try {
|
|
4830
|
+
const result = await (await fetch(url, {
|
|
4831
|
+
method: "GET",
|
|
4832
|
+
headers,
|
|
4833
|
+
credentials: "include"
|
|
4834
|
+
})).json();
|
|
4835
|
+
if (result.code === 0) {
|
|
4836
|
+
const { connectors } = result.data;
|
|
4837
|
+
return { connectors: (connectors || []).map((connector) => ({
|
|
4838
|
+
...connector,
|
|
4839
|
+
activeStatus: connector.active_status,
|
|
4840
|
+
connectStatus: connector.connect_status,
|
|
4841
|
+
displayName: connector.display_name,
|
|
4842
|
+
oauthClientId: connector.oauth_client_id,
|
|
4843
|
+
oauthRedirectUrl: connector.oauth_redirect_url
|
|
4844
|
+
})) };
|
|
4845
|
+
}
|
|
4846
|
+
throw result;
|
|
4847
|
+
} catch (error) {
|
|
4848
|
+
throw error;
|
|
4849
|
+
}
|
|
4850
|
+
}
|
|
4851
|
+
/**
|
|
4852
|
+
* 修改任务连接器激活状态
|
|
4853
|
+
* API 端点: PATCH /console/as/connector/task/:taskid/active_status
|
|
4854
|
+
*/
|
|
4855
|
+
async modifyTaskConnectorActiveStatus(request) {
|
|
4856
|
+
const url = `${this.baseUrl}/console/as/connector/task/${request.taskId}/active_status`;
|
|
4857
|
+
const headers = {
|
|
4858
|
+
"Content-Type": "application/json",
|
|
4859
|
+
"Accept": "application/json"
|
|
4860
|
+
};
|
|
4861
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4862
|
+
const body = {
|
|
4863
|
+
task_id: request.taskId,
|
|
4864
|
+
name: request.name,
|
|
4865
|
+
active_status: request.activeStatus
|
|
4866
|
+
};
|
|
4867
|
+
try {
|
|
4868
|
+
const result = await (await fetch(url, {
|
|
4869
|
+
method: "PATCH",
|
|
4870
|
+
headers,
|
|
4871
|
+
credentials: "include",
|
|
4872
|
+
body: JSON.stringify(body)
|
|
4873
|
+
})).json();
|
|
4874
|
+
if (result.code === 0) return { taskId: result.data?.task_id || request.taskId };
|
|
4875
|
+
throw result;
|
|
4876
|
+
} catch (error) {
|
|
4877
|
+
throw error;
|
|
4878
|
+
}
|
|
4879
|
+
}
|
|
4880
|
+
/**
|
|
4881
|
+
* 修改任务连接器仓库
|
|
4882
|
+
* API 端点: PATCH /console/as/connector/task/:taskid/repo
|
|
4883
|
+
*/
|
|
4884
|
+
async modifyTaskConnectorRepo(request) {
|
|
4885
|
+
const url = `${this.baseUrl}/console/as/connector/task/${request.taskId}/repo`;
|
|
4886
|
+
const headers = {
|
|
4887
|
+
"Content-Type": "application/json",
|
|
4888
|
+
"Accept": "application/json"
|
|
4889
|
+
};
|
|
4890
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4891
|
+
const body = {
|
|
4892
|
+
task_id: request.taskId,
|
|
4893
|
+
name: request.name,
|
|
4894
|
+
repo: request.repo
|
|
4895
|
+
};
|
|
4896
|
+
try {
|
|
4897
|
+
const result = await (await fetch(url, {
|
|
4898
|
+
method: "PATCH",
|
|
4899
|
+
headers,
|
|
4900
|
+
credentials: "include",
|
|
4901
|
+
body: JSON.stringify(body)
|
|
4902
|
+
})).json();
|
|
4903
|
+
if (result.code === 0) return { taskId: result.data?.task_id || request.taskId };
|
|
4904
|
+
throw result;
|
|
4905
|
+
} catch (error) {
|
|
4906
|
+
throw error;
|
|
4907
|
+
}
|
|
4908
|
+
}
|
|
4909
|
+
/**
|
|
4910
|
+
* 根据账号类型获取用量信息并合并到账号中
|
|
4911
|
+
* - 企业用户:调用 getEnterpriseUsage 获取月度限额
|
|
4912
|
+
* - 个人用户:调用 getCurrentPlan 获取套餐信息
|
|
4913
|
+
*/
|
|
4914
|
+
async enrichAccountWithUsage(selectedAccount) {
|
|
4915
|
+
const isEnterpriseUser = !!(selectedAccount.enterpriseId && selectedAccount.enterpriseId !== "");
|
|
4916
|
+
try {
|
|
4917
|
+
if (isEnterpriseUser) {
|
|
4918
|
+
const enterpriseUsage = await this.getEnterpriseUsage(selectedAccount.enterpriseId);
|
|
4919
|
+
const editionType = this.getEditionDisplayType(selectedAccount.type, false);
|
|
4920
|
+
if (enterpriseUsage) {
|
|
4921
|
+
const usageLeft = (enterpriseUsage.limitNum - enterpriseUsage.credit).toString();
|
|
4922
|
+
const usageTotal = enterpriseUsage.limitNum.toString();
|
|
4923
|
+
return {
|
|
4924
|
+
...selectedAccount,
|
|
4925
|
+
editionType,
|
|
4926
|
+
usageLeft,
|
|
4927
|
+
usageTotal,
|
|
4928
|
+
refreshAt: enterpriseUsage.cycleResetTime ? new Date(enterpriseUsage.cycleResetTime).getTime() : void 0
|
|
4929
|
+
};
|
|
4930
|
+
}
|
|
4931
|
+
return {
|
|
4932
|
+
...selectedAccount,
|
|
4933
|
+
editionType
|
|
4934
|
+
};
|
|
4935
|
+
} else {
|
|
4037
4936
|
const plan = await this.getCurrentPlan();
|
|
4038
4937
|
const editionType = this.getEditionDisplayType(selectedAccount.type, plan.isPro);
|
|
4039
|
-
console.log("account
|
|
4938
|
+
console.log("account", {
|
|
4040
4939
|
...selectedAccount,
|
|
4041
4940
|
...plan,
|
|
4042
4941
|
editionType
|
|
4043
4942
|
});
|
|
4044
|
-
|
|
4943
|
+
return {
|
|
4045
4944
|
...selectedAccount,
|
|
4046
4945
|
...plan,
|
|
4047
4946
|
editionType
|
|
4048
4947
|
};
|
|
4049
|
-
accountService.setAccount(account);
|
|
4050
|
-
return account;
|
|
4051
4948
|
}
|
|
4052
|
-
const redirectUrl = encodeURIComponent(window.location.href);
|
|
4053
|
-
window.location.href = `${getSelectAccountUrl()}?platform=website&state=0&redirect_uri=${redirectUrl}`;
|
|
4054
|
-
accountService.setAccount(null);
|
|
4055
|
-
return null;
|
|
4056
4949
|
} catch (error) {
|
|
4057
|
-
console.error("[BackendProvider]
|
|
4058
|
-
|
|
4059
|
-
return null;
|
|
4950
|
+
console.error("[BackendProvider] enrichAccountWithUsage failed:", error);
|
|
4951
|
+
return { ...selectedAccount };
|
|
4060
4952
|
}
|
|
4061
4953
|
}
|
|
4062
4954
|
/**
|
|
@@ -4078,7 +4970,6 @@ var BackendProvider = class {
|
|
|
4078
4970
|
"Content-Type": "application/json",
|
|
4079
4971
|
"Accept": "application/json"
|
|
4080
4972
|
};
|
|
4081
|
-
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
4082
4973
|
const now = /* @__PURE__ */ new Date();
|
|
4083
4974
|
const futureDate = new Date(now.getTime() + 101 * 365 * 24 * 60 * 60 * 1e3);
|
|
4084
4975
|
const formatDate = (d) => {
|
|
@@ -4105,34 +4996,174 @@ var BackendProvider = class {
|
|
|
4105
4996
|
}
|
|
4106
4997
|
const resources = (await response.json())?.data?.Response?.Data?.Accounts || [];
|
|
4107
4998
|
if (!resources || resources.length === 0) return defaultPlan;
|
|
4999
|
+
const parseTime = (time) => {
|
|
5000
|
+
if (!time) return 0;
|
|
5001
|
+
return new Date(time).getTime();
|
|
5002
|
+
};
|
|
5003
|
+
const dailyCredits = [CommodityCode.free, CommodityCode.freeMon];
|
|
5004
|
+
const planResources = resources.map((r) => {
|
|
5005
|
+
const isDaily = dailyCredits.includes(r.PackageCode);
|
|
5006
|
+
const endTime = isDaily ? r.CycleEndTime : r.DeductionEndTime;
|
|
5007
|
+
return {
|
|
5008
|
+
id: r.ResourceId,
|
|
5009
|
+
name: isDaily ? "plan.addonCredits" : getPackageName(r.PackageCode),
|
|
5010
|
+
packageCode: r.PackageCode,
|
|
5011
|
+
isDaily,
|
|
5012
|
+
total: Number(r.CycleCapacitySizePrecise) || 0,
|
|
5013
|
+
used: Math.max(0, Number(r.CycleCapacitySizePrecise) - Number(r.CycleCapacityRemainPrecise)) || 0,
|
|
5014
|
+
left: Number(r.CycleCapacityRemainPrecise) || 0,
|
|
5015
|
+
expireAt: parseTime(endTime),
|
|
5016
|
+
refreshAt: isDaily ? void 0 : parseTime(r.CycleEndTime)
|
|
5017
|
+
};
|
|
5018
|
+
}).sort((a, b) => {
|
|
5019
|
+
const getPriority = (code) => {
|
|
5020
|
+
if ([
|
|
5021
|
+
CommodityCode.proMon,
|
|
5022
|
+
CommodityCode.proMonPlus,
|
|
5023
|
+
CommodityCode.proYear,
|
|
5024
|
+
CommodityCode.extra
|
|
5025
|
+
].includes(code)) return 1;
|
|
5026
|
+
if ([CommodityCode.gift, CommodityCode.activity].includes(code)) return 2;
|
|
5027
|
+
if ([CommodityCode.free, CommodityCode.freeMon].includes(code)) return 3;
|
|
5028
|
+
return 4;
|
|
5029
|
+
};
|
|
5030
|
+
return getPriority(a.packageCode) - getPriority(b.packageCode);
|
|
5031
|
+
});
|
|
4108
5032
|
const proPlan = resources.find((r) => r.PackageCode === CommodityCode.proYear || r.PackageCode === CommodityCode.proMon || r.PackageCode === CommodityCode.proMonPlus);
|
|
4109
5033
|
const trialPlan = resources.find((r) => r.PackageCode === CommodityCode.gift || r.PackageCode === CommodityCode.freeMon);
|
|
4110
5034
|
const activePlan = proPlan || trialPlan;
|
|
4111
|
-
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
5035
|
+
const totalUsageLeft = planResources.reduce((sum, r) => sum + r.left, 0);
|
|
5036
|
+
const totalUsageTotal = planResources.reduce((sum, r) => sum + r.total, 0);
|
|
5037
|
+
const totalUsageUsed = planResources.reduce((sum, r) => sum + r.used, 0);
|
|
5038
|
+
if (activePlan) return {
|
|
5039
|
+
isPro: !!proPlan,
|
|
5040
|
+
isTria: trialPlan ? [AccountStatus.valid, AccountStatus.usedUp].includes(trialPlan.Status) : false,
|
|
5041
|
+
expireAt: parseTime(activePlan.DeductionEndTime || activePlan.ExpiredTime || activePlan.CycleEndTime),
|
|
5042
|
+
refreshAt: parseTime(activePlan.CycleEndTime),
|
|
5043
|
+
renewFlag: Number(activePlan.AutoRenewFlag) === 1 ? 1 : 0,
|
|
5044
|
+
PackageCode: activePlan.PackageCode,
|
|
5045
|
+
name: getPackageName(activePlan.PackageCode),
|
|
5046
|
+
usageTotal: String(totalUsageTotal),
|
|
5047
|
+
usageUsed: String(totalUsageUsed),
|
|
5048
|
+
usageLeft: String(totalUsageLeft),
|
|
5049
|
+
resources: planResources
|
|
5050
|
+
};
|
|
5051
|
+
return {
|
|
5052
|
+
...defaultPlan,
|
|
5053
|
+
usageTotal: String(totalUsageTotal),
|
|
5054
|
+
usageUsed: String(totalUsageUsed),
|
|
5055
|
+
usageLeft: String(totalUsageLeft),
|
|
5056
|
+
resources: planResources
|
|
5057
|
+
};
|
|
4130
5058
|
} catch (error) {
|
|
4131
5059
|
console.error("[BackendProvider] getCurrentPlan error:", error);
|
|
4132
5060
|
return defaultPlan;
|
|
4133
5061
|
}
|
|
4134
5062
|
}
|
|
4135
5063
|
/**
|
|
5064
|
+
* 通过回调code,换token
|
|
5065
|
+
* @param request
|
|
5066
|
+
* @returns
|
|
5067
|
+
*/
|
|
5068
|
+
async saveOauthToken(request) {
|
|
5069
|
+
const url = `${this.baseUrl}/console/as/connector/oauth/${request.name}/connect`;
|
|
5070
|
+
const headers = {
|
|
5071
|
+
"Content-Type": "application/json",
|
|
5072
|
+
"Accept": "application/json"
|
|
5073
|
+
};
|
|
5074
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
5075
|
+
const body = { authorization_code: request.authorizationCode };
|
|
5076
|
+
try {
|
|
5077
|
+
const result = await (await fetch(url, {
|
|
5078
|
+
method: "POST",
|
|
5079
|
+
headers,
|
|
5080
|
+
credentials: "include",
|
|
5081
|
+
body: JSON.stringify(body)
|
|
5082
|
+
})).json();
|
|
5083
|
+
if (result.code === 0) return;
|
|
5084
|
+
throw result;
|
|
5085
|
+
} catch (error) {
|
|
5086
|
+
throw error;
|
|
5087
|
+
}
|
|
5088
|
+
}
|
|
5089
|
+
/**
|
|
5090
|
+
* 获取OAuth连接器的仓库列表
|
|
5091
|
+
*/
|
|
5092
|
+
async getRepoList(request) {
|
|
5093
|
+
const url = `${this.baseUrl}/console/as/connector/oauth/${request.name}/repos`;
|
|
5094
|
+
const headers = {
|
|
5095
|
+
"Content-Type": "application/json",
|
|
5096
|
+
"Accept": "application/json"
|
|
5097
|
+
};
|
|
5098
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
5099
|
+
try {
|
|
5100
|
+
const result = await (await fetch(url, {
|
|
5101
|
+
method: "GET",
|
|
5102
|
+
headers,
|
|
5103
|
+
credentials: "include"
|
|
5104
|
+
})).json();
|
|
5105
|
+
if (result.code === 0) return result.data;
|
|
5106
|
+
throw result;
|
|
5107
|
+
} catch (error) {
|
|
5108
|
+
throw error;
|
|
5109
|
+
}
|
|
5110
|
+
}
|
|
5111
|
+
/**
|
|
5112
|
+
* 撤销OAuth连接器的所有连接
|
|
5113
|
+
*/
|
|
5114
|
+
async revokeAll(request) {
|
|
5115
|
+
const url = `${this.baseUrl}/console/as/connector/oauth/${request.name}/revokeall`;
|
|
5116
|
+
const installationIds = request?.installationIds ?? [];
|
|
5117
|
+
const headers = {
|
|
5118
|
+
"Content-Type": "application/json",
|
|
5119
|
+
"Accept": "application/json"
|
|
5120
|
+
};
|
|
5121
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
5122
|
+
const body = { name: request.name };
|
|
5123
|
+
if (installationIds) body.installation_ids = installationIds;
|
|
5124
|
+
try {
|
|
5125
|
+
const result = await (await fetch(url, {
|
|
5126
|
+
method: "POST",
|
|
5127
|
+
headers,
|
|
5128
|
+
credentials: "include",
|
|
5129
|
+
body: JSON.stringify(body)
|
|
5130
|
+
})).json();
|
|
5131
|
+
if (result.code === 0) return;
|
|
5132
|
+
throw result;
|
|
5133
|
+
} catch (error) {
|
|
5134
|
+
throw error;
|
|
5135
|
+
}
|
|
5136
|
+
}
|
|
5137
|
+
/**
|
|
5138
|
+
* 获取 OAuth 用户信息
|
|
5139
|
+
* API 端点: GET /console/as/connector/oauth/:name/oauthuser
|
|
5140
|
+
*/
|
|
5141
|
+
async getOauthUser(request) {
|
|
5142
|
+
const url = `${this.baseUrl}/console/as/connector/oauth/${request.name}/oauthuser`;
|
|
5143
|
+
const headers = {
|
|
5144
|
+
"Content-Type": "application/json",
|
|
5145
|
+
"Accept": "application/json"
|
|
5146
|
+
};
|
|
5147
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
5148
|
+
try {
|
|
5149
|
+
const result = await (await fetch(url, {
|
|
5150
|
+
method: "GET",
|
|
5151
|
+
headers,
|
|
5152
|
+
credentials: "include"
|
|
5153
|
+
})).json();
|
|
5154
|
+
if (result.code === 0) {
|
|
5155
|
+
const data = result.data || {};
|
|
5156
|
+
return { user: {
|
|
5157
|
+
avatarUrl: data.user?.avatar_url || "",
|
|
5158
|
+
name: data.user?.name || ""
|
|
5159
|
+
} };
|
|
5160
|
+
}
|
|
5161
|
+
throw result;
|
|
5162
|
+
} catch (error) {
|
|
5163
|
+
throw error;
|
|
5164
|
+
}
|
|
5165
|
+
}
|
|
5166
|
+
/**
|
|
4136
5167
|
* 根据账号类型和 Pro 状态计算版本展示类型
|
|
4137
5168
|
* - personal + isPro = 'pro'
|
|
4138
5169
|
* - personal + !isPro = 'free'
|
|
@@ -4155,14 +5186,28 @@ var BackendProvider = class {
|
|
|
4155
5186
|
}
|
|
4156
5187
|
/**
|
|
4157
5188
|
* 登出账号
|
|
4158
|
-
* Web 环境:
|
|
5189
|
+
* Web 环境: 通过 iframe 访问登出 URL 清除 cookie
|
|
4159
5190
|
*/
|
|
4160
5191
|
async logout() {
|
|
4161
5192
|
const url = `${this.baseUrl}/console/logout`;
|
|
4162
5193
|
try {
|
|
4163
|
-
await
|
|
4164
|
-
|
|
4165
|
-
|
|
5194
|
+
await new Promise((resolve) => {
|
|
5195
|
+
const iframe = document.createElement("iframe");
|
|
5196
|
+
iframe.style.cssText = "position:fixed;top:-9999px;left:-9999px;width:1px;height:1px;border:none;";
|
|
5197
|
+
iframe.src = url;
|
|
5198
|
+
const timeout = setTimeout(() => {
|
|
5199
|
+
cleanup();
|
|
5200
|
+
resolve();
|
|
5201
|
+
}, 5e3);
|
|
5202
|
+
const cleanup = () => {
|
|
5203
|
+
clearTimeout(timeout);
|
|
5204
|
+
if (iframe.parentNode) iframe.parentNode.removeChild(iframe);
|
|
5205
|
+
};
|
|
5206
|
+
iframe.onerror = () => {
|
|
5207
|
+
cleanup();
|
|
5208
|
+
resolve();
|
|
5209
|
+
};
|
|
5210
|
+
document.body.appendChild(iframe);
|
|
4166
5211
|
});
|
|
4167
5212
|
} catch (error) {
|
|
4168
5213
|
console.error("[BackendProvider] logout failed:", error);
|
|
@@ -4170,6 +5215,38 @@ var BackendProvider = class {
|
|
|
4170
5215
|
localStorage.removeItem(SELECTED_ACCOUNT_KEY);
|
|
4171
5216
|
accountService.clearAccount();
|
|
4172
5217
|
}
|
|
5218
|
+
/**
|
|
5219
|
+
* 获取企业用户用量信息
|
|
5220
|
+
* API: POST /billing/meter/get-enterprise-user-usage
|
|
5221
|
+
*/
|
|
5222
|
+
async getEnterpriseUsage(enterpriseId) {
|
|
5223
|
+
try {
|
|
5224
|
+
const url = `${this.baseUrl}/billing/meter/get-enterprise-user-usage`;
|
|
5225
|
+
const headers = {
|
|
5226
|
+
"Content-Type": "application/json",
|
|
5227
|
+
"Accept": "application/json",
|
|
5228
|
+
"X-Enterprise-Id": enterpriseId
|
|
5229
|
+
};
|
|
5230
|
+
if (this.authToken) headers["Authorization"] = `Bearer ${this.authToken}`;
|
|
5231
|
+
const response = await fetch(url, {
|
|
5232
|
+
method: "POST",
|
|
5233
|
+
headers,
|
|
5234
|
+
credentials: "include",
|
|
5235
|
+
body: JSON.stringify({})
|
|
5236
|
+
});
|
|
5237
|
+
if (!response.ok) {
|
|
5238
|
+
console.warn("[BackendProvider] getEnterpriseUsage failed:", response.status);
|
|
5239
|
+
return null;
|
|
5240
|
+
}
|
|
5241
|
+
const result = await response.json();
|
|
5242
|
+
const usageData = result?.data?.data || result?.data || result;
|
|
5243
|
+
if (usageData && typeof usageData.limitNum === "number") return usageData;
|
|
5244
|
+
return null;
|
|
5245
|
+
} catch (error) {
|
|
5246
|
+
console.error("[BackendProvider] getEnterpriseUsage error:", error);
|
|
5247
|
+
return null;
|
|
5248
|
+
}
|
|
5249
|
+
}
|
|
4173
5250
|
};
|
|
4174
5251
|
/**
|
|
4175
5252
|
* 创建 BackendProvider 实例
|
|
@@ -4184,11 +5261,23 @@ function createBackendProvider(config) {
|
|
|
4184
5261
|
* Backend 请求类型常量
|
|
4185
5262
|
*/
|
|
4186
5263
|
const BACKEND_REQUEST_TYPES = {
|
|
4187
|
-
GET_AGENTS: "backend:get-agents-request",
|
|
4188
|
-
GET_MODELS: "backend:get-models",
|
|
4189
5264
|
LOGIN: "backend:login",
|
|
4190
5265
|
LOGOUT: "backend:logout",
|
|
4191
|
-
GET_ACCOUNT: "backend:get-account"
|
|
5266
|
+
GET_ACCOUNT: "backend:get-account",
|
|
5267
|
+
GET_USER_CONNECTOR: "backend:get-user-connector",
|
|
5268
|
+
MODIFY_USER_CONNECTOR_CONNECT_STATUS: "backend:modify-user-connector-connect-status",
|
|
5269
|
+
MODIFY_USER_CONNECTOR_REPO: "backend:modify-user-connector-repo",
|
|
5270
|
+
MODIFY_USER_CONNECTOR_ACTIVE_STATUS: "backend:modify-user-connector-active-status",
|
|
5271
|
+
DELETE_USER_CONNECTOR: "backend:delete-user-connector",
|
|
5272
|
+
ADD_CONNECTOR_TASK: "backend:add-connector-task",
|
|
5273
|
+
GET_TASK_CONNECTOR: "backend:get-task-connector",
|
|
5274
|
+
MODIFY_TASK_CONNECTOR_ACTIVE_STATUS: "backend:modify-task-connector-active-status",
|
|
5275
|
+
MODIFY_TASK_CONNECTOR_REPO: "backend:modify-task-connector-repo",
|
|
5276
|
+
GET_OAUTH_USER: "backend:get-oauth-user",
|
|
5277
|
+
SAVE_OAUTH_TOKEN: "backend:save-oauth-token",
|
|
5278
|
+
GET_REPO_LIST: "backend:get-repo-list",
|
|
5279
|
+
REVOKE_ALL: "backend:revoke-all",
|
|
5280
|
+
RELOAD_WINDOW: "backend:reload-window"
|
|
4192
5281
|
};
|
|
4193
5282
|
/**
|
|
4194
5283
|
* 生成唯一请求 ID
|
|
@@ -4199,7 +5288,7 @@ function generateRequestId() {
|
|
|
4199
5288
|
/**
|
|
4200
5289
|
* IPC Backend Provider 实现类
|
|
4201
5290
|
*
|
|
4202
|
-
* 通过 IWidgetChannel
|
|
5291
|
+
* 通过 IWidgetChannel 与后端通信
|
|
4203
5292
|
*/
|
|
4204
5293
|
var IPCBackendProvider = class {
|
|
4205
5294
|
constructor(config) {
|
|
@@ -4230,45 +5319,188 @@ var IPCBackendProvider = class {
|
|
|
4230
5319
|
return response?.data !== void 0 ? response.data : response;
|
|
4231
5320
|
}
|
|
4232
5321
|
/**
|
|
4233
|
-
*
|
|
4234
|
-
* 通过
|
|
5322
|
+
* 获取当前账号信息
|
|
5323
|
+
* IDE 环境: 通过 IPC 获取账号信息,并同步到 accountService
|
|
5324
|
+
*/
|
|
5325
|
+
async getAccount() {
|
|
5326
|
+
this.log("Getting account via IPC");
|
|
5327
|
+
try {
|
|
5328
|
+
const account = await this.sendBackendRequest(BACKEND_REQUEST_TYPES.GET_ACCOUNT);
|
|
5329
|
+
accountService.setAccount(account);
|
|
5330
|
+
return account;
|
|
5331
|
+
} catch (error) {
|
|
5332
|
+
this.log("Get account failed:", error);
|
|
5333
|
+
accountService.setAccount(null);
|
|
5334
|
+
return null;
|
|
5335
|
+
}
|
|
5336
|
+
}
|
|
5337
|
+
/**
|
|
5338
|
+
* 获取用户连接器列表
|
|
5339
|
+
* IDE 环境: 通过 IPC 获取用户连接器列表
|
|
4235
5340
|
*/
|
|
4236
|
-
async
|
|
4237
|
-
this.log("Getting
|
|
5341
|
+
async getUserConnector() {
|
|
5342
|
+
this.log("Getting user connector via IPC");
|
|
4238
5343
|
try {
|
|
4239
|
-
return await this.sendBackendRequest(BACKEND_REQUEST_TYPES.
|
|
5344
|
+
return await this.sendBackendRequest(BACKEND_REQUEST_TYPES.GET_USER_CONNECTOR);
|
|
4240
5345
|
} catch (error) {
|
|
4241
|
-
this.log("Get
|
|
5346
|
+
this.log("Get user connector failed:", error);
|
|
4242
5347
|
throw error;
|
|
4243
5348
|
}
|
|
4244
5349
|
}
|
|
4245
5350
|
/**
|
|
4246
|
-
*
|
|
4247
|
-
* 通过
|
|
5351
|
+
* 修改用户连接器连接状态
|
|
5352
|
+
* IDE 环境: 通过 IPC 修改用户连接器连接状态
|
|
4248
5353
|
*/
|
|
4249
|
-
async
|
|
4250
|
-
this.log("
|
|
5354
|
+
async modifyUserConnectorConnectStatus(request) {
|
|
5355
|
+
this.log("Modifying user connector connect status via IPC:", request);
|
|
4251
5356
|
try {
|
|
4252
|
-
|
|
5357
|
+
await this.sendBackendRequest(BACKEND_REQUEST_TYPES.MODIFY_USER_CONNECTOR_CONNECT_STATUS, request);
|
|
4253
5358
|
} catch (error) {
|
|
4254
|
-
this.log("
|
|
5359
|
+
this.log("Modify user connector connect status failed:", error);
|
|
4255
5360
|
throw error;
|
|
4256
5361
|
}
|
|
4257
5362
|
}
|
|
4258
5363
|
/**
|
|
4259
|
-
*
|
|
4260
|
-
* IDE 环境: 通过 IPC
|
|
5364
|
+
* 修改用户连接器仓库
|
|
5365
|
+
* IDE 环境: 通过 IPC 修改用户连接器仓库
|
|
4261
5366
|
*/
|
|
4262
|
-
async
|
|
4263
|
-
this.log("
|
|
5367
|
+
async modifyUserConnectorRepo(request) {
|
|
5368
|
+
this.log("Modifying user connector repo via IPC:", request);
|
|
4264
5369
|
try {
|
|
4265
|
-
|
|
4266
|
-
accountService.setAccount(account);
|
|
4267
|
-
return account;
|
|
5370
|
+
await this.sendBackendRequest(BACKEND_REQUEST_TYPES.MODIFY_USER_CONNECTOR_REPO, request);
|
|
4268
5371
|
} catch (error) {
|
|
4269
|
-
this.log("
|
|
4270
|
-
|
|
4271
|
-
|
|
5372
|
+
this.log("Modify user connector repo failed:", error);
|
|
5373
|
+
throw error;
|
|
5374
|
+
}
|
|
5375
|
+
}
|
|
5376
|
+
/**
|
|
5377
|
+
* 修改用户连接器激活状态
|
|
5378
|
+
* IDE 环境: 通过 IPC 修改用户连接器激活状态
|
|
5379
|
+
*/
|
|
5380
|
+
async modifyUserConnectorActiveStatus(request) {
|
|
5381
|
+
this.log("Modifying user connector active status via IPC:", request);
|
|
5382
|
+
try {
|
|
5383
|
+
await this.sendBackendRequest(BACKEND_REQUEST_TYPES.MODIFY_USER_CONNECTOR_ACTIVE_STATUS, request);
|
|
5384
|
+
} catch (error) {
|
|
5385
|
+
this.log("Modify user connector active status failed:", error);
|
|
5386
|
+
throw error;
|
|
5387
|
+
}
|
|
5388
|
+
}
|
|
5389
|
+
/**
|
|
5390
|
+
* 删除用户连接器
|
|
5391
|
+
* IDE 环境: 通过 IPC 删除用户连接器
|
|
5392
|
+
*/
|
|
5393
|
+
async deleteUserConnector(name) {
|
|
5394
|
+
this.log("Deleting user connector via IPC:", name);
|
|
5395
|
+
try {
|
|
5396
|
+
await this.sendBackendRequest(BACKEND_REQUEST_TYPES.DELETE_USER_CONNECTOR, { name });
|
|
5397
|
+
} catch (error) {
|
|
5398
|
+
this.log("Delete user connector failed:", error);
|
|
5399
|
+
throw error;
|
|
5400
|
+
}
|
|
5401
|
+
}
|
|
5402
|
+
/**
|
|
5403
|
+
* 添加任务
|
|
5404
|
+
* IDE 环境: 通过 IPC 添加任务
|
|
5405
|
+
*/
|
|
5406
|
+
async addConnectorTask(request) {
|
|
5407
|
+
this.log("Adding connector task via IPC:", request);
|
|
5408
|
+
try {
|
|
5409
|
+
return await this.sendBackendRequest(BACKEND_REQUEST_TYPES.ADD_CONNECTOR_TASK, request);
|
|
5410
|
+
} catch (error) {
|
|
5411
|
+
this.log("Add task failed:", error);
|
|
5412
|
+
throw error;
|
|
5413
|
+
}
|
|
5414
|
+
}
|
|
5415
|
+
/**
|
|
5416
|
+
* 获取任务连接器列表
|
|
5417
|
+
* IDE 环境: 通过 IPC 获取任务连接器列表
|
|
5418
|
+
*/
|
|
5419
|
+
async getTaskConnector(taskId) {
|
|
5420
|
+
this.log("Getting task connector via IPC:", taskId);
|
|
5421
|
+
try {
|
|
5422
|
+
return await this.sendBackendRequest(BACKEND_REQUEST_TYPES.GET_TASK_CONNECTOR, { taskId });
|
|
5423
|
+
} catch (error) {
|
|
5424
|
+
this.log("Get task connector failed:", error);
|
|
5425
|
+
throw error;
|
|
5426
|
+
}
|
|
5427
|
+
}
|
|
5428
|
+
/**
|
|
5429
|
+
* 修改任务连接器激活状态
|
|
5430
|
+
* IDE 环境: 通过 IPC 修改任务连接器激活状态
|
|
5431
|
+
*/
|
|
5432
|
+
async modifyTaskConnectorActiveStatus(request) {
|
|
5433
|
+
this.log("Modifying task connector active status via IPC:", request);
|
|
5434
|
+
try {
|
|
5435
|
+
return await this.sendBackendRequest(BACKEND_REQUEST_TYPES.MODIFY_TASK_CONNECTOR_ACTIVE_STATUS, request);
|
|
5436
|
+
} catch (error) {
|
|
5437
|
+
this.log("Modify task connector active status failed:", error);
|
|
5438
|
+
throw error;
|
|
5439
|
+
}
|
|
5440
|
+
}
|
|
5441
|
+
/**
|
|
5442
|
+
* 修改任务连接器仓库
|
|
5443
|
+
* IDE 环境: 通过 IPC 修改任务连接器仓库
|
|
5444
|
+
*/
|
|
5445
|
+
async modifyTaskConnectorRepo(request) {
|
|
5446
|
+
this.log("Modifying task connector repo via IPC:", request);
|
|
5447
|
+
try {
|
|
5448
|
+
return await this.sendBackendRequest(BACKEND_REQUEST_TYPES.MODIFY_TASK_CONNECTOR_REPO, request);
|
|
5449
|
+
} catch (error) {
|
|
5450
|
+
this.log("Modify task connector repo failed:", error);
|
|
5451
|
+
throw error;
|
|
5452
|
+
}
|
|
5453
|
+
}
|
|
5454
|
+
/**
|
|
5455
|
+
* 获取 OAuth 用户信息
|
|
5456
|
+
* IDE 环境: 通过 IPC 获取 OAuth 用户信息
|
|
5457
|
+
*/
|
|
5458
|
+
async getOauthUser(request) {
|
|
5459
|
+
this.log("Getting OAuth user via IPC:", request);
|
|
5460
|
+
try {
|
|
5461
|
+
return await this.sendBackendRequest(BACKEND_REQUEST_TYPES.GET_OAUTH_USER, request);
|
|
5462
|
+
} catch (error) {
|
|
5463
|
+
this.log("Get OAuth user failed:", error);
|
|
5464
|
+
throw error;
|
|
5465
|
+
}
|
|
5466
|
+
}
|
|
5467
|
+
/**
|
|
5468
|
+
* 通过回调code,换token
|
|
5469
|
+
* IDE 环境: 通过 IPC 保存 OAuth Token
|
|
5470
|
+
*/
|
|
5471
|
+
async saveOauthToken(request) {
|
|
5472
|
+
this.log("Saving OAuth token via IPC:", request);
|
|
5473
|
+
try {
|
|
5474
|
+
await this.sendBackendRequest(BACKEND_REQUEST_TYPES.SAVE_OAUTH_TOKEN, request);
|
|
5475
|
+
} catch (error) {
|
|
5476
|
+
this.log("Save OAuth token failed:", error);
|
|
5477
|
+
throw error;
|
|
5478
|
+
}
|
|
5479
|
+
}
|
|
5480
|
+
/**
|
|
5481
|
+
* 获取OAuth连接器的仓库列表
|
|
5482
|
+
* IDE 环境: 通过 IPC 获取仓库列表
|
|
5483
|
+
*/
|
|
5484
|
+
async getRepoList(request) {
|
|
5485
|
+
this.log("Getting repo list via IPC:", request);
|
|
5486
|
+
try {
|
|
5487
|
+
return await this.sendBackendRequest(BACKEND_REQUEST_TYPES.GET_REPO_LIST, request);
|
|
5488
|
+
} catch (error) {
|
|
5489
|
+
this.log("Get repo list failed:", error);
|
|
5490
|
+
throw error;
|
|
5491
|
+
}
|
|
5492
|
+
}
|
|
5493
|
+
/**
|
|
5494
|
+
* 撤销OAuth连接器的所有连接
|
|
5495
|
+
* IDE 环境: 通过 IPC 撤销所有连接
|
|
5496
|
+
*/
|
|
5497
|
+
async revokeAll(request) {
|
|
5498
|
+
this.log("Revoking all connections via IPC:", request);
|
|
5499
|
+
try {
|
|
5500
|
+
await this.sendBackendRequest(BACKEND_REQUEST_TYPES.REVOKE_ALL, request);
|
|
5501
|
+
} catch (error) {
|
|
5502
|
+
this.log("Revoke all connections failed:", error);
|
|
5503
|
+
throw error;
|
|
4272
5504
|
}
|
|
4273
5505
|
}
|
|
4274
5506
|
/**
|
|
@@ -4299,6 +5531,20 @@ var IPCBackendProvider = class {
|
|
|
4299
5531
|
}
|
|
4300
5532
|
}
|
|
4301
5533
|
/**
|
|
5534
|
+
* 重新加载窗口
|
|
5535
|
+
* IDE 环境: 通过 IPC 通知 IDE 重新加载窗口(用于应用语言设置等)
|
|
5536
|
+
* @param params 可选参数,如 locale
|
|
5537
|
+
*/
|
|
5538
|
+
async reloadWindow(params) {
|
|
5539
|
+
this.log("Triggering reload window via IPC", params);
|
|
5540
|
+
try {
|
|
5541
|
+
await this.sendBackendRequest(BACKEND_REQUEST_TYPES.RELOAD_WINDOW, params);
|
|
5542
|
+
} catch (error) {
|
|
5543
|
+
this.log("Reload window request failed:", error);
|
|
5544
|
+
throw error;
|
|
5545
|
+
}
|
|
5546
|
+
}
|
|
5547
|
+
/**
|
|
4302
5548
|
* 调试日志
|
|
4303
5549
|
*/
|
|
4304
5550
|
log(...args) {
|