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

推荐订阅源

J
Java Code Geeks
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
B
Blog
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
月光博客
月光博客
H
Help Net Security
V
Visual Studio Blog
量子位
A
About on SuperTechFans
博客园 - Franky
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog

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
fix: reuse provider auth hook lookup context · openclaw/o...
shakkernerd · 2026-05-02 · via Recent Commits to openclaw:main

@@ -1,3 +1,4 @@

1+

import type { OpenClawConfig } from "../../config/types.openclaw.js";

12

import { formatErrorMessage } from "../../infra/errors.js";

23

import { withFileLock } from "../../infra/file-lock.js";

34

import {

@@ -34,7 +35,11 @@ import {

3435

import type { AuthProfileStore, OAuthCredential, OAuthCredentials } from "./types.js";

35363637

export type OAuthManagerAdapter = {

37-

buildApiKey: (provider: string, credentials: OAuthCredential) => Promise<string>;

38+

buildApiKey: (

39+

provider: string,

40+

credentials: OAuthCredential,

41+

context: { cfg?: OpenClawConfig; agentDir?: string },

42+

) => Promise<string>;

3843

refreshCredential: (credential: OAuthCredential) => Promise<OAuthCredentials | null>;

3944

readBootstrapCredential: (params: {

4045

profileId: string;

@@ -318,6 +323,7 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

318323

profileId: string;

319324

provider: string;

320325

agentDir?: string;

326+

cfg?: OpenClawConfig;

321327

}): Promise<ResolvedOAuthAccess | null> {

322328

const ownerAgentDir = resolvePersistedAuthProfileOwnerAgentDir(params);

323329

const authPath = resolveAuthStorePath(ownerAgentDir);

@@ -336,7 +342,10 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

336342337343

if (hasUsableOAuthCredential(cred)) {

338344

return {

339-

apiKey: await adapter.buildApiKey(cred.provider, cred),

345+

apiKey: await adapter.buildApiKey(cred.provider, cred, {

346+

cfg: params.cfg,

347+

agentDir: params.agentDir,

348+

}),

340349

credential: cred,

341350

};

342351

}

@@ -358,7 +367,10 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

358367

expires: new Date(mainCred.expires).toISOString(),

359368

});

360369

return {

361-

apiKey: await adapter.buildApiKey(mainCred.provider, mainCred),

370+

apiKey: await adapter.buildApiKey(mainCred.provider, mainCred, {

371+

cfg: params.cfg,

372+

agentDir: params.agentDir,

373+

}),

362374

credential: mainCred,

363375

};

364376

} else if (

@@ -409,7 +421,10 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

409421

credentialToRefresh = externallyManaged;

410422

if (hasUsableOAuthCredential(externallyManaged)) {

411423

return {

412-

apiKey: await adapter.buildApiKey(externallyManaged.provider, externallyManaged),

424+

apiKey: await adapter.buildApiKey(externallyManaged.provider, externallyManaged, {

425+

cfg: params.cfg,

426+

agentDir: params.agentDir,

427+

}),

413428

credential: externallyManaged,

414429

};

415430

}

@@ -445,7 +460,10 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

445460

}

446461

}

447462

return {

448-

apiKey: await adapter.buildApiKey(cred.provider, refreshedCredentials),

463+

apiKey: await adapter.buildApiKey(cred.provider, refreshedCredentials, {

464+

cfg: params.cfg,

465+

agentDir: params.agentDir,

466+

}),

449467

credential: refreshedCredentials,

450468

};

451469

}),

@@ -466,6 +484,7 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

466484

profileId: string;

467485

provider: string;

468486

agentDir?: string;

487+

cfg?: OpenClawConfig;

469488

}): Promise<ResolvedOAuthAccess | null> {

470489

const key = refreshQueueKey(params.provider, params.profileId);

471490

const prev = refreshQueues.get(key) ?? Promise.resolve();

@@ -490,6 +509,7 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

490509

profileId: string;

491510

credential: OAuthCredential;

492511

agentDir?: string;

512+

cfg?: OpenClawConfig;

493513

}): Promise<ResolvedOAuthAccess | null> {

494514

const adoptedCredential =

495515

adoptNewerMainOAuthCredential({

@@ -506,7 +526,10 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

506526507527

if (hasUsableOAuthCredential(effectiveCredential)) {

508528

return {

509-

apiKey: await adapter.buildApiKey(effectiveCredential.provider, effectiveCredential),

529+

apiKey: await adapter.buildApiKey(effectiveCredential.provider, effectiveCredential, {

530+

cfg: params.cfg,

531+

agentDir: params.agentDir,

532+

}),

510533

credential: effectiveCredential,

511534

};

512535

}

@@ -516,14 +539,18 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

516539

profileId: params.profileId,

517540

provider: params.credential.provider,

518541

agentDir: params.agentDir,

542+

cfg: params.cfg,

519543

});

520544

return refreshed;

521545

} catch (error) {

522546

const refreshedStore = loadAuthProfileStoreWithoutExternalProfiles(params.agentDir);

523547

const refreshed = refreshedStore.profiles[params.profileId];

524548

if (refreshed?.type === "oauth" && hasUsableOAuthCredential(refreshed)) {

525549

return {

526-

apiKey: await adapter.buildApiKey(refreshed.provider, refreshed),

550+

apiKey: await adapter.buildApiKey(refreshed.provider, refreshed, {

551+

cfg: params.cfg,

552+

agentDir: params.agentDir,

553+

}),

527554

credential: refreshed,

528555

};

529556

}

@@ -542,7 +569,10 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

542569

});

543570

if (recovered) {

544571

return {

545-

apiKey: await adapter.buildApiKey(recovered.provider, recovered),

572+

apiKey: await adapter.buildApiKey(recovered.provider, recovered, {

573+

cfg: params.cfg,

574+

agentDir: params.agentDir,

575+

}),

546576

credential: recovered,

547577

};

548578

}

@@ -551,6 +581,7 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

551581

profileId: params.profileId,

552582

provider: params.credential.provider,

553583

agentDir: params.agentDir,

584+

cfg: params.cfg,

554585

});

555586

if (retried) {

556587

return retried;

@@ -579,7 +610,10 @@ export function createOAuthManager(adapter: OAuthManagerAdapter) {

579610

expires: new Date(mainCred.expires).toISOString(),

580611

});

581612

return {

582-

apiKey: await adapter.buildApiKey(mainCred.provider, mainCred),

613+

apiKey: await adapter.buildApiKey(mainCred.provider, mainCred, {

614+

cfg: params.cfg,

615+

agentDir: params.agentDir,

616+

}),

583617

credential: mainCred,

584618

};

585619

}