mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import type { loadConfig } from "../config/config.js";
|
|
export { pickGatewaySelfPresence } from "./gateway-presence.js";
|
|
|
|
export function resolveGatewayProbeAuth(cfg: ReturnType<typeof loadConfig>): {
|
|
token?: string;
|
|
password?: string;
|
|
} {
|
|
const isRemoteMode = cfg.gateway?.mode === "remote";
|
|
const remote = isRemoteMode ? cfg.gateway?.remote : undefined;
|
|
const authToken = cfg.gateway?.auth?.token;
|
|
const authPassword = cfg.gateway?.auth?.password;
|
|
const token = isRemoteMode
|
|
? typeof remote?.token === "string" && remote.token.trim().length > 0
|
|
? remote.token.trim()
|
|
: undefined
|
|
: process.env.OPENCLAW_GATEWAY_TOKEN?.trim() ||
|
|
(typeof authToken === "string" && authToken.trim().length > 0 ? authToken.trim() : undefined);
|
|
const password =
|
|
process.env.OPENCLAW_GATEWAY_PASSWORD?.trim() ||
|
|
(isRemoteMode
|
|
? typeof remote?.password === "string" && remote.password.trim().length > 0
|
|
? remote.password.trim()
|
|
: undefined
|
|
: typeof authPassword === "string" && authPassword.trim().length > 0
|
|
? authPassword.trim()
|
|
: undefined);
|
|
return { token, password };
|
|
}
|