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

推荐订阅源

月光博客
月光博客
小众软件
小众软件
爱范儿
爱范儿
Y
Y Combinator Blog
博客园 - Franky
美团技术团队
博客园 - 【当耐特】
The Cloudflare Blog
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
IT之家
IT之家
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
WordPress大学
WordPress大学
V
Visual Studio Blog
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
有赞技术团队
有赞技术团队

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat(qa): lease telegram user credentials · openclaw/open...
obviyus · 2026-05-10 · via Recent Commits to openclaw:main

@@ -17,6 +17,7 @@ const DEFAULT_HTTP_TIMEOUT_MS = 15_000;

1717

const DEFAULT_LEASE_TTL_MS = 20 * 60 * 1_000;

1818

const RETRY_BACKOFF_MS = [500, 1_000, 2_000, 4_000, 5_000] as const;

1919

const RETRYABLE_ACQUIRE_CODES = new Set(["POOL_EXHAUSTED", "NO_CREDENTIAL_AVAILABLE"]);

20+

const CHUNKED_PAYLOAD_MARKER = "__openclawQaCredentialPayloadChunksV1";

20212122

const convexAcquireSuccessSchema = z.object({

2223

status: z.literal("ok"),

@@ -38,6 +39,11 @@ const convexOkSchema = z.object({

3839

status: z.literal("ok"),

3940

});

404142+

const convexPayloadChunkSuccessSchema = z.object({

43+

status: z.literal("ok"),

44+

data: z.string(),

45+

});

46+4147

type ConvexCredentialBrokerConfig = {

4248

acquireTimeoutMs: number;

4349

acquireUrl: string;

@@ -47,6 +53,7 @@ type ConvexCredentialBrokerConfig = {

4753

httpTimeoutMs: number;

4854

leaseTtlMs: number;

4955

ownerId: string;

56+

payloadChunkUrl: string;

5057

releaseUrl: string;

5158

role: QaCredentialRole;

5259

};

@@ -196,10 +203,39 @@ function resolveConvexCredentialBrokerConfig(params: {

196203

),

197204

acquireUrl: joinQaCredentialEndpoint(baseUrl, endpointPrefix, "acquire"),

198205

heartbeatUrl: joinQaCredentialEndpoint(baseUrl, endpointPrefix, "heartbeat"),

206+

payloadChunkUrl: joinQaCredentialEndpoint(baseUrl, endpointPrefix, "payload-chunk"),

199207

releaseUrl: joinQaCredentialEndpoint(baseUrl, endpointPrefix, "release"),

200208

};

201209

}

202210211+

function parseChunkedPayloadMarker(payload: unknown) {

212+

if (!payload || typeof payload !== "object" || Array.isArray(payload)) {

213+

return null;

214+

}

215+

const record = payload as Record<string, unknown>;

216+

if (record[CHUNKED_PAYLOAD_MARKER] !== true) {

217+

return null;

218+

}

219+

if (

220+

typeof record.chunkCount !== "number" ||

221+

!Number.isInteger(record.chunkCount) ||

222+

record.chunkCount < 1

223+

) {

224+

throw new Error("Chunked credential payload marker has an invalid chunkCount.");

225+

}

226+

if (

227+

typeof record.byteLength !== "number" ||

228+

!Number.isInteger(record.byteLength) ||

229+

record.byteLength < 0

230+

) {

231+

throw new Error("Chunked credential payload marker has an invalid byteLength.");

232+

}

233+

return {

234+

chunkCount: record.chunkCount,

235+

byteLength: record.byteLength,

236+

};

237+

}

238+203239

function toBrokerError(params: {

204240

payload: unknown;

205241

fallback: string;

@@ -259,6 +295,42 @@ async function postConvexBroker(params: {

259295

return payload;

260296

}

261297298+

async function resolveConvexCredentialPayload(params: {

299+

acquired: z.infer<typeof convexAcquireSuccessSchema>;

300+

config: ConvexCredentialBrokerConfig;

301+

fetchImpl: typeof fetch;

302+

kind: string;

303+

}) {

304+

const marker = parseChunkedPayloadMarker(params.acquired.payload);

305+

if (!marker) {

306+

return params.acquired.payload;

307+

}

308+

const chunks: string[] = [];

309+

for (let index = 0; index < marker.chunkCount; index += 1) {

310+

const payload = await postConvexBroker({

311+

fetchImpl: params.fetchImpl,

312+

timeoutMs: params.config.httpTimeoutMs,

313+

authToken: params.config.authToken,

314+

url: params.config.payloadChunkUrl,

315+

body: {

316+

kind: params.kind,

317+

ownerId: params.config.ownerId,

318+

actorRole: params.config.role,

319+

credentialId: params.acquired.credentialId,

320+

leaseToken: params.acquired.leaseToken,

321+

index,

322+

},

323+

});

324+

const parsed = convexPayloadChunkSuccessSchema.parse(payload);

325+

chunks.push(parsed.data);

326+

}

327+

const serialized = chunks.join("");

328+

if (serialized.length !== marker.byteLength) {

329+

throw new Error("Chunked credential payload length mismatch.");

330+

}

331+

return JSON.parse(serialized) as unknown;

332+

}

333+262334

function computeAcquireBackoffMs(params: {

263335

attempt: number;

264336

randomImpl: () => number;

@@ -355,7 +427,13 @@ export async function acquireQaCredentialLease<TPayload>(

355427

};

356428

let parsedPayload: TPayload;

357429

try {

358-

parsedPayload = opts.parsePayload(acquired.payload);

430+

const resolvedPayload = await resolveConvexCredentialPayload({

431+

acquired,

432+

config,

433+

fetchImpl,

434+

kind: opts.kind,

435+

});

436+

parsedPayload = opts.parsePayload(resolvedPayload);

359437

} catch (error) {

360438

try {

361439

await releaseLease();