mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-11 16:03:43 +00:00
81 lines
2.1 KiB
TypeScript
81 lines
2.1 KiB
TypeScript
import {
|
|
isDangerousHostEnvOverrideVarName,
|
|
isDangerousHostEnvVarName,
|
|
normalizeEnvVarKey,
|
|
} from "../infra/host-env-security.js";
|
|
import type { OpenClawConfig } from "./types.js";
|
|
|
|
function isBlockedConfigEnvVar(key: string): boolean {
|
|
return isDangerousHostEnvVarName(key) || isDangerousHostEnvOverrideVarName(key);
|
|
}
|
|
|
|
function collectConfigEnvVarsByTarget(cfg?: OpenClawConfig): Record<string, string> {
|
|
const envConfig = cfg?.env;
|
|
if (!envConfig) {
|
|
return {};
|
|
}
|
|
|
|
const entries: Record<string, string> = {};
|
|
|
|
if (envConfig.vars) {
|
|
for (const [rawKey, value] of Object.entries(envConfig.vars)) {
|
|
if (!value) {
|
|
continue;
|
|
}
|
|
const key = normalizeEnvVarKey(rawKey, { portable: true });
|
|
if (!key) {
|
|
continue;
|
|
}
|
|
if (isBlockedConfigEnvVar(key)) {
|
|
continue;
|
|
}
|
|
entries[key] = value;
|
|
}
|
|
}
|
|
|
|
for (const [rawKey, value] of Object.entries(envConfig)) {
|
|
if (rawKey === "shellEnv" || rawKey === "vars") {
|
|
continue;
|
|
}
|
|
if (typeof value !== "string" || !value.trim()) {
|
|
continue;
|
|
}
|
|
const key = normalizeEnvVarKey(rawKey, { portable: true });
|
|
if (!key) {
|
|
continue;
|
|
}
|
|
if (isBlockedConfigEnvVar(key)) {
|
|
continue;
|
|
}
|
|
entries[key] = value;
|
|
}
|
|
|
|
return entries;
|
|
}
|
|
|
|
export function collectConfigRuntimeEnvVars(cfg?: OpenClawConfig): Record<string, string> {
|
|
return collectConfigEnvVarsByTarget(cfg);
|
|
}
|
|
|
|
export function collectConfigServiceEnvVars(cfg?: OpenClawConfig): Record<string, string> {
|
|
return collectConfigEnvVarsByTarget(cfg);
|
|
}
|
|
|
|
/** @deprecated Use `collectConfigRuntimeEnvVars` or `collectConfigServiceEnvVars`. */
|
|
export function collectConfigEnvVars(cfg?: OpenClawConfig): Record<string, string> {
|
|
return collectConfigRuntimeEnvVars(cfg);
|
|
}
|
|
|
|
export function applyConfigEnvVars(
|
|
cfg: OpenClawConfig,
|
|
env: NodeJS.ProcessEnv = process.env,
|
|
): void {
|
|
const entries = collectConfigRuntimeEnvVars(cfg);
|
|
for (const [key, value] of Object.entries(entries)) {
|
|
if (env[key]?.trim()) {
|
|
continue;
|
|
}
|
|
env[key] = value;
|
|
}
|
|
}
|