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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
量子位
雷峰网
雷峰网
宝玉的分享
宝玉的分享
V
Visual Studio Blog
博客园_首页
小众软件
小众软件
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
S
SegmentFault 最新的问题
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学

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
refactor: share browser basic route helpers · openclaw/op...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main

@@ -52,6 +52,17 @@ function handleBrowserRouteError(res: BrowserResponse, err: unknown) {

5252

jsonError(res, 500, String(err));

5353

}

545455+

async function sendBasicJsonResponse(params: {

56+

res: BrowserResponse;

57+

run: () => Promise<unknown>;

58+

}) {

59+

try {

60+

params.res.json(await params.run());

61+

} catch (err) {

62+

return handleBrowserRouteError(params.res, err);

63+

}

64+

}

65+5566

async function withBasicProfileRoute(params: {

5667

req: BrowserRequest;

5768

res: BrowserResponse;

@@ -69,6 +80,29 @@ async function withBasicProfileRoute(params: {

6980

}

7081

}

718283+

function registerBasicProfilePost(

84+

app: BrowserRouteRegistrar,

85+

ctx: BrowserRouteContext,

86+

path: string,

87+

run: (params: {

88+

req: BrowserRequest;

89+

res: BrowserResponse;

90+

profileCtx: ProfileContext;

91+

}) => Promise<void>,

92+

) {

93+

app.post(

94+

path,

95+

asyncBrowserRoute(async (req, res) => {

96+

await withBasicProfileRoute({

97+

req,

98+

res,

99+

ctx,

100+

run: async (profileCtx) => await run({ req, res, profileCtx }),

101+

});

102+

}),

103+

);

104+

}

105+72106

async function withProfilesServiceMutation(params: {

73107

res: BrowserResponse;

74108

ctx: BrowserRouteContext;

@@ -290,94 +324,56 @@ export function registerBrowserBasicRoutes(app: BrowserRouteRegistrar, ctx: Brow

290324

app.get(

291325

"/",

292326

asyncBrowserRoute(async (req, res) => {

293-

try {

294-

res.json(await buildBrowserStatus(req, ctx));

295-

} catch (err) {

296-

const mapped = toBrowserErrorResponse(err);

297-

if (mapped) {

298-

return jsonError(res, mapped.status, mapped.message);

299-

}

300-

jsonError(res, 500, String(err));

301-

}

327+

await sendBasicJsonResponse({

328+

res,

329+

run: async () => await buildBrowserStatus(req, ctx),

330+

});

302331

}),

303332

);

304333305334

app.get(

306335

"/doctor",

307336

asyncBrowserRoute(async (req, res) => {

308-

try {

309-

const status = await buildBrowserStatus(req, ctx);

310-

const report = buildBrowserDoctorReport({ status });

311-

if (toBoolean(req.query.deep) === true || toBoolean(req.query.live) === true) {

312-

report.checks.push(await runBrowserLiveProbe(req, ctx));

313-

report.ok = report.checks.every((check) => check.status !== "fail");

314-

}

315-

res.json(report);

316-

} catch (err) {

317-

const mapped = toBrowserErrorResponse(err);

318-

if (mapped) {

319-

return jsonError(res, mapped.status, mapped.message);

320-

}

321-

jsonError(res, 500, String(err));

322-

}

323-

}),

324-

);

325-326-

// Start browser (profile-aware)

327-

app.post(

328-

"/start",

329-

asyncBrowserRoute(async (req, res) => {

330-

await withBasicProfileRoute({

331-

req,

337+

await sendBasicJsonResponse({

332338

res,

333-

ctx,

334-

run: async (profileCtx) => {

335-

const headlessOverride = parseHeadlessStartOverride({ req, res, profileCtx });

336-

if (!headlessOverride.ok) {

337-

return;

339+

run: async () => {

340+

const status = await buildBrowserStatus(req, ctx);

341+

const report = buildBrowserDoctorReport({ status });

342+

if (toBoolean(req.query.deep) === true || toBoolean(req.query.live) === true) {

343+

report.checks.push(await runBrowserLiveProbe(req, ctx));

344+

report.ok = report.checks.every((check) => check.status !== "fail");

338345

}

339-

await profileCtx.ensureBrowserAvailable({ headless: headlessOverride.headless });

340-

res.json({ ok: true, profile: profileCtx.profile.name });

346+

return report;

341347

},

342348

});

343349

}),

344350

);

345351352+

// Start browser (profile-aware)

353+

registerBasicProfilePost(app, ctx, "/start", async ({ req, res, profileCtx }) => {

354+

const headlessOverride = parseHeadlessStartOverride({ req, res, profileCtx });

355+

if (!headlessOverride.ok) {

356+

return;

357+

}

358+

await profileCtx.ensureBrowserAvailable({ headless: headlessOverride.headless });

359+

res.json({ ok: true, profile: profileCtx.profile.name });

360+

});

361+346362

// Stop browser (profile-aware)

347-

app.post(

348-

"/stop",

349-

asyncBrowserRoute(async (req, res) => {

350-

await withBasicProfileRoute({

351-

req,

352-

res,

353-

ctx,

354-

run: async (profileCtx) => {

355-

const result = await profileCtx.stopRunningBrowser();

356-

res.json({

357-

ok: true,

358-

stopped: result.stopped,

359-

profile: profileCtx.profile.name,

360-

});

361-

},

362-

});

363-

}),

364-

);

363+

registerBasicProfilePost(app, ctx, "/stop", async ({ res, profileCtx }) => {

364+

const result = await profileCtx.stopRunningBrowser();

365+

res.json({

366+

ok: true,

367+

stopped: result.stopped,

368+

profile: profileCtx.profile.name,

369+

});

370+

});

365371366372

// Reset profile (profile-aware)

367-

app.post(

368-

"/reset-profile",

369-

asyncBrowserRoute(async (req, res) => {

370-

await withBasicProfileRoute({

371-

req,

372-

res,

373-

ctx,

374-

run: async (profileCtx) => {

375-

const result = await profileCtx.resetProfile();

376-

res.json({ ok: true, profile: profileCtx.profile.name, ...result });

377-

},

378-

});

379-

}),

380-

);

373+

registerBasicProfilePost(app, ctx, "/reset-profile", async ({ res, profileCtx }) => {

374+

const result = await profileCtx.resetProfile();

375+

res.json({ ok: true, profile: profileCtx.profile.name, ...result });

376+

});

381377382378

// Create a new profile

383379

app.post(