mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-01 12:21:25 +00:00
117 lines
3.3 KiB
TypeScript
117 lines
3.3 KiB
TypeScript
import type { OpenClawConfig } from "../config/config.js";
|
|
import { resolveGatewayCredentialsWithSecretInputs } from "./call.js";
|
|
import {
|
|
type ExplicitGatewayAuth,
|
|
isGatewaySecretRefUnavailableError,
|
|
resolveGatewayProbeCredentialsFromConfig,
|
|
} from "./credentials.js";
|
|
|
|
function buildGatewayProbeCredentialPolicy(params: {
|
|
cfg: OpenClawConfig;
|
|
mode: "local" | "remote";
|
|
env?: NodeJS.ProcessEnv;
|
|
explicitAuth?: ExplicitGatewayAuth;
|
|
}) {
|
|
return {
|
|
config: params.cfg,
|
|
cfg: params.cfg,
|
|
env: params.env,
|
|
explicitAuth: params.explicitAuth,
|
|
modeOverride: params.mode,
|
|
mode: params.mode,
|
|
remoteTokenFallback: "remote-only" as const,
|
|
};
|
|
}
|
|
|
|
export function resolveGatewayProbeAuth(params: {
|
|
cfg: OpenClawConfig;
|
|
mode: "local" | "remote";
|
|
env?: NodeJS.ProcessEnv;
|
|
}): { token?: string; password?: string } {
|
|
const policy = buildGatewayProbeCredentialPolicy(params);
|
|
return resolveGatewayProbeCredentialsFromConfig(policy);
|
|
}
|
|
|
|
export async function resolveGatewayProbeAuthWithSecretInputs(params: {
|
|
cfg: OpenClawConfig;
|
|
mode: "local" | "remote";
|
|
env?: NodeJS.ProcessEnv;
|
|
explicitAuth?: ExplicitGatewayAuth;
|
|
}): Promise<{ token?: string; password?: string }> {
|
|
const policy = buildGatewayProbeCredentialPolicy(params);
|
|
return await resolveGatewayCredentialsWithSecretInputs({
|
|
config: policy.config,
|
|
env: policy.env,
|
|
explicitAuth: policy.explicitAuth,
|
|
modeOverride: policy.modeOverride,
|
|
remoteTokenFallback: policy.remoteTokenFallback,
|
|
});
|
|
}
|
|
|
|
export async function resolveGatewayProbeAuthSafeWithSecretInputs(params: {
|
|
cfg: OpenClawConfig;
|
|
mode: "local" | "remote";
|
|
env?: NodeJS.ProcessEnv;
|
|
explicitAuth?: ExplicitGatewayAuth;
|
|
}): Promise<{
|
|
auth: { token?: string; password?: string };
|
|
warning?: string;
|
|
}> {
|
|
const explicitToken = params.explicitAuth?.token?.trim();
|
|
const explicitPassword = params.explicitAuth?.password?.trim();
|
|
if (explicitToken || explicitPassword) {
|
|
return {
|
|
auth: {
|
|
...(explicitToken ? { token: explicitToken } : {}),
|
|
...(explicitPassword ? { password: explicitPassword } : {}),
|
|
},
|
|
};
|
|
}
|
|
|
|
try {
|
|
const auth = await resolveGatewayProbeAuthWithSecretInputs(params);
|
|
return { auth };
|
|
} catch (error) {
|
|
if (!isGatewaySecretRefUnavailableError(error)) {
|
|
throw error;
|
|
}
|
|
return {
|
|
auth: {},
|
|
warning: `${error.path} SecretRef is unresolved in this command path; probing without configured auth credentials.`,
|
|
};
|
|
}
|
|
}
|
|
|
|
export function resolveGatewayProbeAuthSafe(params: {
|
|
cfg: OpenClawConfig;
|
|
mode: "local" | "remote";
|
|
env?: NodeJS.ProcessEnv;
|
|
explicitAuth?: ExplicitGatewayAuth;
|
|
}): {
|
|
auth: { token?: string; password?: string };
|
|
warning?: string;
|
|
} {
|
|
const explicitToken = params.explicitAuth?.token?.trim();
|
|
const explicitPassword = params.explicitAuth?.password?.trim();
|
|
if (explicitToken || explicitPassword) {
|
|
return {
|
|
auth: {
|
|
...(explicitToken ? { token: explicitToken } : {}),
|
|
...(explicitPassword ? { password: explicitPassword } : {}),
|
|
},
|
|
};
|
|
}
|
|
|
|
try {
|
|
return { auth: resolveGatewayProbeAuth(params) };
|
|
} catch (error) {
|
|
if (!isGatewaySecretRefUnavailableError(error)) {
|
|
throw error;
|
|
}
|
|
return {
|
|
auth: {},
|
|
warning: `${error.path} SecretRef is unresolved in this command path; probing without configured auth credentials.`,
|
|
};
|
|
}
|
|
}
|