mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-09 08:11:09 +00:00
72 lines
1.6 KiB
TypeScript
72 lines
1.6 KiB
TypeScript
import { createSubsystemLogger } from "../logging/subsystem.js";
|
|
|
|
let log: ReturnType<typeof createSubsystemLogger> | null = null;
|
|
const loggedEnv = new Set<string>();
|
|
|
|
function getLog(): ReturnType<typeof createSubsystemLogger> {
|
|
if (!log) {
|
|
log = createSubsystemLogger("env");
|
|
}
|
|
return log;
|
|
}
|
|
|
|
type AcceptedEnvOption = {
|
|
key: string;
|
|
description: string;
|
|
value?: string;
|
|
redact?: boolean;
|
|
};
|
|
|
|
function formatEnvValue(value: string, redact?: boolean): string {
|
|
if (redact) {
|
|
return "<redacted>";
|
|
}
|
|
const singleLine = value.replace(/\s+/g, " ").trim();
|
|
if (singleLine.length <= 160) {
|
|
return singleLine;
|
|
}
|
|
return `${singleLine.slice(0, 160)}…`;
|
|
}
|
|
|
|
export function logAcceptedEnvOption(option: AcceptedEnvOption): void {
|
|
if (process.env.VITEST || process.env.NODE_ENV === "test") {
|
|
return;
|
|
}
|
|
if (loggedEnv.has(option.key)) {
|
|
return;
|
|
}
|
|
const rawValue = option.value ?? process.env[option.key];
|
|
if (!rawValue || !rawValue.trim()) {
|
|
return;
|
|
}
|
|
loggedEnv.add(option.key);
|
|
getLog().info(
|
|
`env: ${option.key}=${formatEnvValue(rawValue, option.redact)} (${option.description})`,
|
|
);
|
|
}
|
|
|
|
export function normalizeZaiEnv(): void {
|
|
if (!process.env.ZAI_API_KEY?.trim() && process.env.Z_AI_API_KEY?.trim()) {
|
|
process.env.ZAI_API_KEY = process.env.Z_AI_API_KEY;
|
|
}
|
|
}
|
|
|
|
export function isTruthyEnvValue(value?: string): boolean {
|
|
if (typeof value !== "string") {
|
|
return false;
|
|
}
|
|
switch (value.trim().toLowerCase()) {
|
|
case "1":
|
|
case "on":
|
|
case "true":
|
|
case "yes":
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
export function normalizeEnv(): void {
|
|
normalizeZaiEnv();
|
|
}
|