mirror of https://github.com/openclaw/openclaw.git
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import type { ApplyAuthChoiceParams, ApplyAuthChoiceResult } from "./auth-choice.apply.js";
|
|
import { applyAuthChoicePluginProvider } from "./auth-choice.apply.plugin-provider.js";
|
|
|
|
export async function applyAuthChoiceGoogleGeminiCli(
|
|
params: ApplyAuthChoiceParams,
|
|
): Promise<ApplyAuthChoiceResult | null> {
|
|
if (params.authChoice !== "google-gemini-cli") {
|
|
return null;
|
|
}
|
|
|
|
await params.prompter.note(
|
|
[
|
|
"This is an unofficial integration and is not endorsed by Google.",
|
|
"Some users have reported account restrictions or suspensions after using third-party Gemini CLI and Antigravity OAuth clients.",
|
|
"Proceed only if you understand and accept this risk.",
|
|
].join("\n"),
|
|
"Google Gemini CLI caution",
|
|
);
|
|
|
|
const proceed = await params.prompter.confirm({
|
|
message: "Continue with Google Gemini CLI OAuth?",
|
|
initialValue: false,
|
|
});
|
|
|
|
if (!proceed) {
|
|
await params.prompter.note("Skipped Google Gemini CLI OAuth setup.", "Setup skipped");
|
|
return { config: params.config };
|
|
}
|
|
|
|
return await applyAuthChoicePluginProvider(params, {
|
|
authChoice: "google-gemini-cli",
|
|
pluginId: "google-gemini-cli-auth",
|
|
providerId: "google-gemini-cli",
|
|
methodId: "oauth",
|
|
label: "Google Gemini CLI",
|
|
});
|
|
}
|