54 lines
2.0 KiB
TypeScript
54 lines
2.0 KiB
TypeScript
import type { ClawdbotConfig } from "../config/config.js";
|
|
import type { RuntimeEnv } from "../runtime.js";
|
|
import type { WizardPrompter } from "../wizard/prompts.js";
|
|
import { applyAuthChoiceAnthropic } from "./auth-choice.apply.anthropic.js";
|
|
import { applyAuthChoiceApiProviders } from "./auth-choice.apply.api-providers.js";
|
|
import { applyAuthChoiceCopilotProxy } from "./auth-choice.apply.copilot-proxy.js";
|
|
import { applyAuthChoiceGitHubCopilot } from "./auth-choice.apply.github-copilot.js";
|
|
import { applyAuthChoiceGoogleAntigravity } from "./auth-choice.apply.google-antigravity.js";
|
|
import { applyAuthChoiceGoogleGeminiCli } from "./auth-choice.apply.google-gemini-cli.js";
|
|
import { applyAuthChoiceMiniMax } from "./auth-choice.apply.minimax.js";
|
|
import { applyAuthChoiceOAuth } from "./auth-choice.apply.oauth.js";
|
|
import { applyAuthChoiceOpenAI } from "./auth-choice.apply.openai.js";
|
|
import { applyAuthChoiceQwenPortal } from "./auth-choice.apply.qwen-portal.js";
|
|
import type { AuthChoice } from "./onboard-types.js";
|
|
|
|
export type ApplyAuthChoiceParams = {
|
|
authChoice: AuthChoice;
|
|
config: ClawdbotConfig;
|
|
prompter: WizardPrompter;
|
|
runtime: RuntimeEnv;
|
|
agentDir?: string;
|
|
setDefaultModel: boolean;
|
|
agentId?: string;
|
|
};
|
|
|
|
export type ApplyAuthChoiceResult = {
|
|
config: ClawdbotConfig;
|
|
agentModelOverride?: string;
|
|
};
|
|
|
|
export async function applyAuthChoice(
|
|
params: ApplyAuthChoiceParams,
|
|
): Promise<ApplyAuthChoiceResult> {
|
|
const handlers: Array<(p: ApplyAuthChoiceParams) => Promise<ApplyAuthChoiceResult | null>> = [
|
|
applyAuthChoiceAnthropic,
|
|
applyAuthChoiceOpenAI,
|
|
applyAuthChoiceOAuth,
|
|
applyAuthChoiceApiProviders,
|
|
applyAuthChoiceMiniMax,
|
|
applyAuthChoiceGitHubCopilot,
|
|
applyAuthChoiceGoogleAntigravity,
|
|
applyAuthChoiceGoogleGeminiCli,
|
|
applyAuthChoiceCopilotProxy,
|
|
applyAuthChoiceQwenPortal,
|
|
];
|
|
|
|
for (const handler of handlers) {
|
|
const result = await handler(params);
|
|
if (result) return result;
|
|
}
|
|
|
|
return { config: params.config };
|
|
}
|