File size: 24,613 Bytes
ddce7e8 | 1 2 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 43 44 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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 | import { randomUUID } from 'crypto';
import tokenManager from '../auth/token_manager.js';
import config from '../config/config.js';
import fingerprintRequester from '../requester.js';
import { saveBase64Image } from '../utils/imageStorage.js';
import logger from '../utils/logger.js';
import memoryManager from '../utils/memoryManager.js';
import { httpRequest, httpStreamRequest } from '../utils/httpClient.js';
import { generateTrajectorybody } from '../utils/trajectory.js';
import { buildRecordCodeAssistMetricsBody } from '../utils/recordCodeAssistMetrics.js';
import { createTelemetryBatch, serializeTelemetryBatch } from "../utils/createTelemetry.js"
import { createLog1, createLog2 } from "../utils/additionalLogs.js"
import { buildClientRegister, buildFrontEnd, buildClientFeatrueHeaders, buildClientRegisterHeaders, buildFrontEndHeaders } from "../utils/unleash.js"
import { MODEL_LIST_CACHE_TTL, QA_PAIRS } from '../constants/index.js';
import { createApiError } from '../utils/errors.js';
import { generateCheckpointBody } from '../utils/checkPoint.js';
import path from 'path';
import { fileURLToPath } from 'url';
import {
convertToToolCall,
registerStreamMemoryCleanup
} from './stream_parser.js';
import { setSignature, shouldCacheSignature, isImageModel } from '../utils/thoughtSignatureCache.js';
import {
isDebugDumpEnabled,
createDumpId,
createStreamCollector,
collectStreamChunk,
dumpFinalRequest,
dumpStreamResponse,
dumpFinalRawResponse
} from './debugDump.js';
import { getUpstreamStatus, readUpstreamErrorBody, isCallerDoesNotHavePermission } from './upstreamError.js';
import { createStreamLineProcessor } from './streamLineProcessor.js';
import { runAxiosSseStream, runNativeSseStream, postJsonAndParse } from './geminiTransport.js';
import { parseGeminiCandidateParts, toOpenAIUsage } from './geminiResponseParser.js';
import axios from 'axios';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
// ==================== Token 计时器管理 ====================
const tokenTimers = new Map(); // { tokenKey: { lastUsed: timestamp, intervalId: intervalId } }
const TOKEN_TIMEOUT = 3 * 60 * 1000; // 3分钟
const BACKEND_CALL_INTERVAL = 60 * 1000; // 60秒
const checkPointList = new Set([]);
function getTokenKey(token) {
return token.access_token;
}
function startTokenTimer(token) {
const key = getTokenKey(token);
const now = Date.now();
if (tokenTimers.has(key)) {
tokenTimers.get(key).lastUsed = now;
return;
}
sendClientRegister(token).catch(err => logger.warn('定时调用ClientRegister失败:', err.message));
sendClientFeature(token).catch(err => logger.warn('定时调用ClientFeature失败:', err.message));
sendFrontEnd(token).catch(err => logger.warn('定时调用FrontEnd失败:', err.message));
const intervalId = setInterval(() => {
sendClientRegister(token).catch(err => logger.warn('定时调用ClientRegister失败:', err.message));
sendClientFeature(token).catch(err => logger.warn('定时调用ClientFeature失败:', err.message));
sendFrontEnd(token).catch(err => logger.warn('定时调用FrontEnd失败:', err.message));
}, BACKEND_CALL_INTERVAL);
tokenTimers.set(key, { lastUsed: now, intervalId });
}
function checkTokenTimeout() {
const now = Date.now();
for (const [key, data] of tokenTimers.entries()) {
if (now - data.lastUsed > TOKEN_TIMEOUT) {
clearInterval(data.intervalId);
tokenTimers.delete(key);
}
}
}
setInterval(checkTokenTimeout, 30 * 1000); // 每30秒检查一次超时
// 请求客户端:优先使用 FingerprintRequester,失败则自动降级到 axios
let requester = null;
let useAxios = false;
// 初始化请求客户端
if (config.useNativeAxios === true) {
useAxios = true;
logger.info('使用原生 axios 请求');
} else {
try {
// 使用 src/bin/config.json 作为 TLS 指纹配置文件
// 检测是否在 pkg 环境中
const isPkg = typeof process.pkg !== 'undefined';
// 根据环境选择配置文件路径
const configPath = isPkg
? path.join(path.dirname(process.execPath), 'bin', 'tls_config.json') // pkg 打包环境
: path.join(__dirname, '..', 'bin', 'tls_config.json'); // 开发环境
requester = fingerprintRequester.create({
configPath,
timeout: config.timeout ? Math.ceil(config.timeout / 1000) : 30,
proxy: config.proxy || null,
});
logger.info('使用 FingerprintRequester 请求');
} catch (error) {
logger.warn('FingerprintRequester 初始化失败,自动降级使用 axios:', error.message);
useAxios = true;
}
}
// ==================== 调试:最终请求/原始响应完整输出(单文件追加模式) ====================
// ==================== 模型列表缓存(智能管理) ====================
const getModelCacheTTL = () => {
return config.cache?.modelListTTL || MODEL_LIST_CACHE_TTL;
};
let modelListCache = null;
let modelListCacheTime = 0;
// 默认模型列表(当 API 请求失败时使用)
// 使用 Object.freeze 防止意外修改,并帮助 V8 优化
const DEFAULT_MODELS = Object.freeze([
'claude-opus-4-6',
'claude-opus-4-6-thinking',
'claude-sonnet-4-6',
'claude-sonnet-4-6-thinking',
'gemini-3.1-pro-high',
'gemini-2.5-flash-lite',
'gemini-3.1-flash-image',
'gemini-3.1-flash-image-4K',
'gemini-3.1-flash-image-2K',
'gemini-2.5-flash-thinking',
'gemini-2.5-pro',
'gemini-2.5-flash',
'gemini-3.1-pro-low',
'chat_20706',
'rev19-uic3-1p',
'gpt-oss-120b-medium',
'chat_23310'
]);
// 生成默认模型列表响应
function getDefaultModelList() {
const created = Math.floor(Date.now() / 1000);
return {
object: 'list',
data: DEFAULT_MODELS.map(id => ({
id,
object: 'model',
created,
owned_by: 'google'
}))
};
}
// 注册对象池与模型缓存的内存清理回调
function registerMemoryCleanup() {
// 由流式解析模块管理自身对象池大小
registerStreamMemoryCleanup();
// 统一由内存清理器定时触发:仅清理“已过期”的模型列表缓存
memoryManager.registerCleanup(() => {
const ttl = getModelCacheTTL();
const now = Date.now();
if (modelListCache && (now - modelListCacheTime) > ttl) {
modelListCache = null;
modelListCacheTime = 0;
}
});
}
// 初始化时注册清理回调
registerMemoryCleanup();
// ==================== 辅助函数 ====================
function buildHeaders(token) {
return {
'Host': config.api.host,
'User-Agent': config.api.userAgent,
'Authorization': `Bearer ${token.access_token}`,
'Content-Type': 'application/json',
'Accept-Encoding': 'gzip'
};
}
function buildRequesterConfig(headers, body = null, method = "POST") {
const reqConfig = {
method: method,
headers,
timeout_ms: config.timeout,
proxy: config.proxy
};
if (body !== null) {
// 判断是否为二进制数据
if (Buffer.isBuffer(body) || body instanceof Uint8Array) {
reqConfig.body = body; // 直接传递
} else {
reqConfig.body = JSON.stringify(body); // JSON 对象才序列化
}
}
return reqConfig;
}
// 统一错误处理
async function handleApiError(error, token, dumpId = null) {
const status = getUpstreamStatus(error);
const errorBody = await readUpstreamErrorBody(error);
if (dumpId) {
await dumpFinalRawResponse(dumpId, String(errorBody ?? ''));
}
if (status === 403) {
if (isCallerDoesNotHavePermission(errorBody)) {
throw createApiError(`超出模型最大上下文。错误详情: ${errorBody}`, status, errorBody);
}
tokenManager.disableCurrentToken(token);
throw createApiError(`该账号没有使用权限,已自动禁用。错误详情: ${errorBody}`, status, errorBody);
}
throw createApiError(`API请求失败 (${status}): ${errorBody}`, status, errorBody);
}
// ==================== 导出函数 ====================
export async function generateAssistantResponse(requestBody, token, callback) {
startTokenTimer(token);
const trajectoryId = requestBody.requestId.split('/')[2];
const conversationId = randomUUID();
const messageId = randomUUID();
const modelName = requestBody.model;
const headers = buildHeaders(token);
const dumpId = isDebugDumpEnabled() ? createDumpId('stream') : null;
const streamCollector = dumpId ? createStreamCollector() : null;
headers["Content-Length"] = String(Buffer.byteLength(JSON.stringify(requestBody)));
let num = Math.floor(Math.random() * QA_PAIRS.length);
if (dumpId) {
await dumpFinalRequest(dumpId, requestBody);
}
// 在 state 中临时缓存思维链签名,供流式多片段复用,并携带 session 与 model 信息以写入全局缓存
const state = {
toolCalls: [],
reasoningSignature: null,
sessionId: requestBody.request?.sessionId,
model: requestBody.model
};
const processor = createStreamLineProcessor({
state,
onEvent: callback,
onRawChunk: (chunk) => collectStreamChunk(streamCollector, chunk)
});
try {
if (useAxios) {
await runAxiosSseStream({
url: config.api.url,
headers,
data: requestBody,
timeout: config.timeout,
processor
});
} else {
const streamResponse = requester.antigravity_fetchStream(config.api.url, buildRequesterConfig(headers, requestBody));
await runNativeSseStream({
streamResponse,
processor,
onErrorChunk: (chunk) => collectStreamChunk(streamCollector, chunk)
});
}
// 流式响应结束后,以 JSON 格式写入日志
if (dumpId) {
await dumpStreamResponse(dumpId, streamCollector);
}
sendRecordCodeAssistMetrics(token, trajectoryId).catch(err => logger.warn('发送RecordCodeAssistMetrics失败:', err.message));
sendRecordTrajectoryAnalytics(token, num, trajectoryId,messageId,conversationId, modelName).catch(err => logger.warn('发送轨迹分析失败:', err.message));
sendLog(token,num,trajectoryId,conversationId,messageId).catch(err => logger.warn('发送log失败:', err.message));
sendCheckPoint(token).catch(err => logger.warn('发送checkPoint失败:', err.message));;
} catch (error) {
try { processor.close(); } catch { }
await handleApiError(error, token, dumpId);
}
}
// 内部工具:从远端拉取完整模型原始数据
async function fetchRawModels(headers, token) {
try {
if (useAxios) {
const response = await httpRequest({
method: 'POST',
url: config.api.modelsUrl,
headers,
data: {}
});
return response.data;
}
const response = await requester.antigravity_fetch(config.api.modelsUrl, buildRequesterConfig(headers, {}));
if (response.status !== 200) {
const errorBody = await response.text();
throw { status: response.status, message: errorBody };
}
return await response.json();
} catch (error) {
await handleApiError(error, token);
}
}
export async function getAvailableModels() {
// 检查缓存是否有效(动态 TTL)
const now = Date.now();
const ttl = getModelCacheTTL();
if (modelListCache && (now - modelListCacheTime) < ttl) {
return modelListCache;
}
const token = await tokenManager.getToken();
if (!token) {
// 没有 token 时返回默认模型列表
logger.warn('没有可用的 token,返回默认模型列表');
return getDefaultModelList();
}
const headers = buildHeaders(token);
const data = await fetchRawModels(headers, token);
if (!data) {
// fetchRawModels 里已经做了统一错误处理,这里兜底为默认列表
return getDefaultModelList();
}
const created = Math.floor(Date.now() / 1000);
const modelList = Object.keys(data.models || {}).map(id => ({
id,
object: 'model',
created,
owned_by: 'google'
}));
// 添加默认模型(如果 API 返回的列表中没有)
const existingIds = new Set(modelList.map(m => m.id));
for (const defaultModel of DEFAULT_MODELS) {
if (!existingIds.has(defaultModel)) {
modelList.push({
id: defaultModel,
object: 'model',
created,
owned_by: 'google'
});
}
}
const result = {
object: 'list',
data: modelList
};
// 更新缓存
modelListCache = result;
modelListCacheTime = now;
const currentTTL = getModelCacheTTL();
logger.info(`模型列表已缓存 (有效期: ${currentTTL / 1000}秒, 模型数量: ${modelList.length})`);
return result;
}
// 清除模型列表缓存(可用于手动刷新)
export function clearModelListCache() {
modelListCache = null;
modelListCacheTime = 0;
logger.info('模型列表缓存已清除');
}
export async function getModelsWithQuotas(token) {
const headers = buildHeaders(token);
const data = await fetchRawModels(headers, token);
if (!data) return {};
const quotas = {};
Object.entries(data.models || {}).forEach(([modelId, modelData]) => {
if (modelData.quotaInfo) {
quotas[modelId] = {
r: modelData.quotaInfo.remainingFraction,
t: modelData.quotaInfo.resetTime
};
}
});
return quotas;
}
export async function generateAssistantResponseNoStream(requestBody, token) {
startTokenTimer(token);
const trajectoryId = requestBody.requestId.split('/')[2];
const conversationId = randomUUID();
const messageId = randomUUID();
const modelName = requestBody.model;
const headers = buildHeaders(token);
const dumpId = isDebugDumpEnabled() ? createDumpId('no_stream') : null;
let num = Math.floor(Math.random() * QA_PAIRS.length);
headers["Content-Length"] = String(Buffer.byteLength(JSON.stringify(requestBody)));
if (dumpId) await dumpFinalRequest(dumpId, requestBody);
let data;
try {
data = await postJsonAndParse({
useAxios,
requester,
url: config.api.noStreamUrl,
headers,
body: requestBody,
timeout: config.timeout,
requesterConfig: buildRequesterConfig(headers, requestBody),
dumpId,
dumpFinalRawResponse,
rawFormat: 'json'
});
sendRecordCodeAssistMetrics(token, trajectoryId).catch(err => logger.warn('发送RecordCodeAssistMetrics失败:', err.message));
sendRecordTrajectoryAnalytics(token, num, trajectoryId,messageId,conversationId, modelName).catch(err => logger.warn('发送轨迹分析失败:', err.message));
sendLog(token,num,trajectoryId,conversationId,messageId).catch(err => logger.warn('发送log失败:', err.message));
} catch (error) {
await handleApiError(error, token, dumpId);
}
//console.log(JSON.stringify(data));
const parts = data.response?.candidates?.[0]?.content?.parts || [];
const parsed = parseGeminiCandidateParts({
parts,
sessionId: requestBody.request?.sessionId,
model: requestBody.model,
convertToToolCall,
saveBase64Image
});
const usageData = toOpenAIUsage(data.response?.usageMetadata);
// 将新的签名和思考内容写入全局缓存(按 model),供后续请求兜底使用
const sessionId = requestBody.request?.sessionId;
const model = requestBody.model;
const hasTools = parsed.toolCalls.length > 0;
const isImage = isImageModel(model);
// 判断是否应该缓存签名
if (sessionId && model && shouldCacheSignature({ hasTools, isImageModel: isImage })) {
// 获取最终使用的签名(优先使用工具签名,回退到思维签名)
let finalSignature = parsed.reasoningSignature;
// 工具签名:取最后一个带 thoughtSignature 的工具作为缓存源(更接近"最新")
if (hasTools) {
for (let i = parsed.toolCalls.length - 1; i >= 0; i--) {
const sig = parsed.toolCalls[i]?.thoughtSignature;
if (sig) {
finalSignature = sig;
break;
}
}
}
if (finalSignature) {
const cachedContent = parsed.reasoningContent || ' ';
setSignature(sessionId, model, finalSignature, cachedContent, { hasTools, isImageModel: isImage });
}
}
// 生图模型:转换为 markdown 格式
if (parsed.imageUrls.length > 0) {
let markdown = parsed.content ? parsed.content + '\n\n' : '';
markdown += parsed.imageUrls.map(url => ``).join('\n\n');
return { content: markdown, reasoningContent: parsed.reasoningContent, reasoningSignature: parsed.reasoningSignature, toolCalls: parsed.toolCalls, usage: usageData };
}
return { content: parsed.content, reasoningContent: parsed.reasoningContent, reasoningSignature: parsed.reasoningSignature, toolCalls: parsed.toolCalls, usage: usageData };
}
export async function generateImageForSD(requestBody, token) {
startTokenTimer(token);
const trajectoryId = requestBody.requestId.split('/')[2];
const conversationId = randomUUID();
const messageId = randomUUID();
const modelName = requestBody.model;
const headers = buildHeaders(token);
headers["Content-Length"] = String(Buffer.byteLength(JSON.stringify(requestBody),'utf-8'));
let data;
let num = Math.floor(Math.random() * QA_PAIRS.length);
//console.log(JSON.stringify(requestBody,null,2));
try {
if (useAxios) {
data = (await httpRequest({
method: 'POST',
url: config.api.noStreamUrl,
headers,
data: requestBody
})).data;
} else {
const response = await requester.antigravity_fetch(config.api.noStreamUrl, buildRequesterConfig(headers, requestBody));
if (response.status !== 200) {
const errorBody = await response.text();
throw { status: response.status, message: errorBody };
}
data = await response.json();
}
} catch (error) {
await handleApiError(error, token);
}
sendRecordCodeAssistMetrics(token, trajectoryId).catch(err => logger.warn('发送RecordCodeAssistMetrics失败:', err.message));
sendRecordTrajectoryAnalytics(token, num, trajectoryId,messageId,conversationId, modelName).catch(err => logger.warn('发送轨迹分析失败:', err.message));
sendLog(token,num,trajectoryId,conversationId,messageId).catch(err => logger.warn('发送log失败:', err.message));
const parts = data.response?.candidates?.[0]?.content?.parts || [];
const images = parts.filter(p => p.inlineData).map(p => p.inlineData.data);
return images;
}
export async function sendRecordTrajectoryAnalytics(token, num, trajectoryId,executionId,cascadeId, modelName = "claude-opus-4-6-thinking") {
const trajectorybody = generateTrajectorybody(num, trajectoryId,executionId,cascadeId, modelName, token);
const headers = buildHeaders(token);
headers["Content-Length"] = String(Buffer.byteLength(JSON.stringify(trajectorybody)));
try {
if (useAxios) {
await httpRequest({
method: 'POST',
url: config.api.recordTrajectory,
headers,
data: trajectorybody
});
} else {
const response = await requester.antigravity_fetch(config.api.recordTrajectory, buildRequesterConfig(headers, trajectorybody));
if (response.status !== 200) {
const errorBody = await response.text();
throw new Error(`轨迹分析请求失败 (${response.status}): ${errorBody}`);
}
}
} catch (error) {
throw error;
}
}
export async function sendLog(token, num, trajectoryId, conversationId,messageId) {
const sessionId = trajectoryId;
//const conversationId = randomUUID();
const logs = [
createLog2(conversationId, token, sessionId),
createTelemetryBatch(num, sessionId,conversationId,messageId,token.sub),
createLog1(conversationId, token, sessionId)
];
const headers = buildHeaders(token);
headers["Host"] = "play.googleapis.com";
headers["User-Agent"] = "Go-http-client/1.1";
headers["Content-Type"] = "application/octet-stream";
headers["Accept-Encoding"] = "gzip";
try {
for (const log of logs) {
const serializeData = serializeTelemetryBatch(log);
if (!serializeData.success) {
throw new Error(`Telemetry proto 序列化失败: ${serializeData.error}`);
}
const serializeLogBody = serializeData.data;
headers["Content-Length"] = String(serializeLogBody.length);
await axios({
method: 'POST',
url: "https://play.googleapis.com/log",
headers,
data: serializeLogBody
});
}
} catch (error) {
throw error;
}
}
export async function sendRecordCodeAssistMetrics(token, trajectoryId) {
const requestBody = buildRecordCodeAssistMetricsBody(token, trajectoryId);
const headers = buildHeaders(token);
headers["Content-Length"] = String(Buffer.byteLength(JSON.stringify(requestBody),'utf-8'));
try {
if (useAxios) {
await httpRequest({
method: 'POST',
url: config.api.recordCodeAssistMetrics,
headers,
data: requestBody
});
} else {
const response = await requester.antigravity_fetch(config.api.recordCodeAssistMetrics, buildRequesterConfig(headers, requestBody));
if (response.status !== 200) {
const errorBody = await response.text();
throw new Error(`RecordCodeAssistMetrics请求失败 (${response.status}): ${errorBody}`);
}
}
} catch (error) {
throw error;
}
}
export async function sendClientRegister(token) {
const requestBody = buildClientRegister(token);
const headers = buildClientRegisterHeaders(token);
headers["Content-Length"] = String(Buffer.byteLength(JSON.stringify(requestBody),'utf-8'));
try {
if (useAxios) {
await httpRequest({
method: 'POST',
url: config.api.unleash.register,
headers,
data: requestBody
});
} else {
const response = await requester.antigravity_fetch(config.api.unleash.register, buildRequesterConfig(headers, requestBody));
if (response.status !== 200 && response.status !== 202) {
const errorBody = await response.text();
throw new Error(`ClientRegister请求失败 (${response.status}): ${errorBody}`);
}
}
} catch (error) {
throw error;
}
}
export async function sendClientFeature(token) {
const headers = buildClientFeatrueHeaders(token);
//console.log(headers);
try {
if (useAxios) {
await httpRequest({
method: 'GET',
url: config.api.unleash.features,
headers
});
} else {
const response = await requester.antigravity_fetch(config.api.unleash.features, buildRequesterConfig(headers, null, "GET"));
if (response.status !== 200 && response.status !== 202) {
const errorBody = await response.text();
throw new Error(`ClientFeature请求失败 (${response.status}): ${errorBody}`);
}
}
} catch (error) {
throw error;
}
}
export async function sendFrontEnd(token) {
const requestBody = buildFrontEnd(token);
const headers = buildFrontEndHeaders(token);
headers["Content-Length"] = String(Buffer.byteLength(JSON.stringify(requestBody),'utf-8'));
try {
if (useAxios) {
await httpRequest({
method: 'POST',
url: config.api.unleash.frontend,
headers,
data: requestBody
});
} else {
const response = await requester.antigravity_fetch(config.api.unleash.frontend, buildRequesterConfig(headers, requestBody));
if (response.status !== 200 && response.status !== 202) {
const errorBody = await response.text();
throw new Error(`FrontEnd请求失败 (${response.status}): ${errorBody}`);
}
}
} catch (error) {
throw error;
}
}
export async function sendCheckPoint(token) {
const requestBody = generateCheckpointBody(token);
const headers = buildHeaders(token);
headers["Content-Length"] = String(Buffer.byteLength(JSON.stringify(requestBody),'utf-8'));
if (checkPointList.has(token.sessionId)){
return;
}else{
checkPointList.add(token.sessionId);
}
try {
if (useAxios) {
await httpRequest({
method: 'POST',
url: config.api.url,
headers,
data: requestBody
});
} else {
const response = await requester.antigravity_fetch(config.api.url, buildRequesterConfig(headers, requestBody));
if (response.status !== 200 && response.status !== 202) {
const errorBody = await response.text();
throw new Error(`CheckPoint请求失败 (${response.status}): ${errorBody}`);
}
}
} catch (error) {
throw error;
}
}
export function closeRequester() {
if (requester) requester.close();
}
// 导出内存清理注册函数(供外部调用)
export { registerMemoryCleanup };
|