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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
Y
Y Combinator Blog
V
V2EX
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
博客园 - 叶小钗
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
B
Blog
G
Google Developers Blog
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
N
Netflix TechBlog - Medium
腾讯CDC

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(infra): share dotenv file parsing · openclaw/ope...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -29,7 +29,7 @@ type GlobalRuntimeDotEnvOptions = {

2929

stateEnvPath?: string;

3030

};

3131
32-

function readGlobalRuntimeDotEnvFile(params: {

32+

export function readDotEnvFile(params: {

3333

entryFilter?: (key: string, value: string) => boolean;

3434

filePath: string;

3535

quiet?: boolean;

@@ -137,12 +137,12 @@ export function loadGlobalRuntimeDotEnvFiles(opts?: GlobalRuntimeDotEnvOptions)

137137

process.env.OPENCLAW_STATE_DIR?.trim() !== undefined &&

138138

path.resolve(stateEnvPath) !== path.resolve(defaultStateEnvPath);

139139

const globalEnvs = globalEnvPaths.map((filePath) =>

140-

readGlobalRuntimeDotEnvFile({ entryFilter: opts?.entryFilter, filePath, quiet }),

140+

readDotEnvFile({ entryFilter: opts?.entryFilter, filePath, quiet }),

141141

);

142142

const parsedFiles = [...globalEnvs];

143143

let gatewayEnv: LoadedDotEnvFile | null = null;

144144

if (!hasExplicitNonDefaultStateDir) {

145-

gatewayEnv = readGlobalRuntimeDotEnvFile({

145+

gatewayEnv = readDotEnvFile({

146146

entryFilter: opts?.entryFilter,

147147

filePath: path.join(

148148

resolveRequiredHomeDir(process.env, os.homedir),

Original file line numberDiff line numberDiff line change

@@ -1,18 +1,13 @@

11

// Loads dotenv files while blocking unsafe workspace env keys.

2-

import fs from "node:fs";

32

import path from "node:path";

4-

import dotenv from "dotenv";

5-

import { createSubsystemLogger } from "../logging/subsystem.js";

63

import { listKnownProviderAuthEnvVarNames } from "../secrets/provider-env-vars.js";

7-

import { loadGlobalRuntimeDotEnvFiles } from "./dotenv-global.js";

4+

import { loadGlobalRuntimeDotEnvFiles, readDotEnvFile } from "./dotenv-global.js";

85

import {

96

isDangerousHostEnvOverrideVarName,

107

isDangerousHostEnvVarName,

118

normalizeEnvVarKey,

129

} from "./host-env-security.js";

1310
14-

const logger = createSubsystemLogger("infra:dotenv");

15-
1611

const BLOCKED_PROVIDER_AUTH_WORKSPACE_DOTENV_KEYS = [

1712

"AI_GATEWAY_API_KEY",

1813

"ANTHROPIC_API_KEY",

@@ -222,55 +217,6 @@ function shouldBlockWorkspaceDotEnvKey(

222217

);

223218

}

224219
225-

type DotEnvEntry = {

226-

key: string;

227-

value: string;

228-

};

229-
230-

type LoadedDotEnvFile = {

231-

filePath: string;

232-

entries: DotEnvEntry[];

233-

};

234-
235-

function readDotEnvFile(params: {

236-

filePath: string;

237-

shouldBlockKey: (key: string) => boolean;

238-

quiet?: boolean;

239-

}): LoadedDotEnvFile | null {

240-

let content: string;

241-

try {

242-

content = fs.readFileSync(params.filePath, "utf8");

243-

} catch (error) {

244-

if (!params.quiet) {

245-

const code =

246-

error && typeof error === "object" && "code" in error ? String(error.code) : undefined;

247-

if (code !== "ENOENT") {

248-

logger.warn(`Failed to read ${params.filePath}: ${String(error)}`, { error });

249-

}

250-

}

251-

return null;

252-

}

253-
254-

let parsed: Record<string, string>;

255-

try {

256-

parsed = dotenv.parse(content);

257-

} catch (error) {

258-

if (!params.quiet) {

259-

logger.warn(`Failed to parse ${params.filePath}: ${String(error)}`, { error });

260-

}

261-

return null;

262-

}

263-

const entries: DotEnvEntry[] = [];

264-

for (const [rawKey, value] of Object.entries(parsed)) {

265-

const key = normalizeEnvVarKey(rawKey, { portable: true });

266-

if (!key || params.shouldBlockKey(key)) {

267-

continue;

268-

}

269-

entries.push({ key, value });

270-

}

271-

return { filePath: params.filePath, entries };

272-

}

273-
274220

export function loadWorkspaceDotEnvFile(filePath: string, opts?: { quiet?: boolean }) {

275221

let providerAuthBlockedKeys: ReadonlySet<string> | undefined;

276222

const getProviderAuthBlockedKeys = () => {

@@ -279,7 +225,7 @@ export function loadWorkspaceDotEnvFile(filePath: string, opts?: { quiet?: boole

279225

};

280226

const parsed = readDotEnvFile({

281227

filePath,

282-

shouldBlockKey: (key) => shouldBlockWorkspaceDotEnvKey(key, getProviderAuthBlockedKeys),

228+

entryFilter: (key) => !shouldBlockWorkspaceDotEnvKey(key, getProviderAuthBlockedKeys),

283229

quiet: opts?.quiet ?? true,

284230

});

285231

if (!parsed) {