| "use server";
|
|
|
| import { NextResponse } from "next/server";
|
| import fs from "fs/promises";
|
| import path from "path";
|
| import os from "os";
|
| import { requireCliToolsAuth } from "@/lib/api/requireCliToolsAuth";
|
| import { ensureCliConfigWriteAllowed, getCliRuntimeStatus } from "@/shared/services/cliRuntime";
|
| import { createBackup } from "@/shared/services/backupService";
|
| import { saveCliToolLastConfigured, deleteCliToolLastConfigured } from "@/lib/db/cliToolState";
|
| import { cliModelConfigSchema } from "@/shared/validation/schemas";
|
| import { isValidationFailure, validateBody } from "@/shared/validation/helpers";
|
| import { resolveApiKey } from "@/shared/services/apiKeyResolver";
|
|
|
| const KILO_DATA_DIR = path.join(os.homedir(), ".local", "share", "kilo");
|
| const AUTH_PATH = path.join(KILO_DATA_DIR, "auth.json");
|
| const KILO_CONFIG_DIR = path.join(os.homedir(), ".config", "kilo");
|
|
|
|
|
| const readAuth = async () => {
|
| try {
|
| const content = await fs.readFile(AUTH_PATH, "utf-8");
|
| return JSON.parse(content);
|
| } catch (error) {
|
| if (error.code === "ENOENT") return null;
|
| throw error;
|
| }
|
| };
|
|
|
|
|
| const hasOmniRouteConfig = (auth) => {
|
| if (!auth) return false;
|
| const routerEntry = auth["openai-compatible"] || auth["omniroute"];
|
| if (!routerEntry) return false;
|
| const baseUrl = routerEntry.baseUrl || routerEntry.baseURL || "";
|
| return (
|
| baseUrl.includes("localhost") || baseUrl.includes("127.0.0.1") || baseUrl.includes("omniroute")
|
| );
|
| };
|
|
|
|
|
| export async function GET(request: Request) {
|
| const authError = await requireCliToolsAuth(request);
|
| if (authError) return authError;
|
|
|
| try {
|
| const runtime = await getCliRuntimeStatus("kilo");
|
|
|
| if (!runtime.installed || !runtime.runnable) {
|
| return NextResponse.json({
|
| installed: runtime.installed,
|
| runnable: runtime.runnable,
|
| command: runtime.command,
|
| commandPath: runtime.commandPath,
|
| runtimeMode: runtime.runtimeMode,
|
| reason: runtime.reason,
|
| settings: null,
|
| message:
|
| runtime.installed && !runtime.runnable
|
| ? "Kilo Code CLI is installed but not runnable"
|
| : "Kilo Code CLI is not installed",
|
| });
|
| }
|
|
|
| const auth = await readAuth();
|
|
|
|
|
| let extensionSettings = null;
|
| try {
|
| const vscodeSettingsPath = path.join(
|
| os.homedir(),
|
| ".config",
|
| "Code",
|
| "User",
|
| "settings.json"
|
| );
|
| const raw = await fs.readFile(vscodeSettingsPath, "utf-8");
|
| const allSettings = JSON.parse(raw);
|
|
|
| extensionSettings = {};
|
| for (const [key, value] of Object.entries(allSettings)) {
|
| if (
|
| key.startsWith("kilocode.") ||
|
| key.startsWith("kilo-code.") ||
|
| key.startsWith("kilo.")
|
| ) {
|
| extensionSettings[key] = value;
|
| }
|
| }
|
| } catch {
|
|
|
| }
|
|
|
| return NextResponse.json({
|
| installed: runtime.installed,
|
| runnable: runtime.runnable,
|
| command: runtime.command,
|
| commandPath: runtime.commandPath,
|
| runtimeMode: runtime.runtimeMode,
|
| reason: runtime.reason,
|
| settings: {
|
| auth: auth ? Object.keys(auth) : [],
|
| extensionSettings,
|
| },
|
| hasOmniRoute: hasOmniRouteConfig(auth),
|
| authPath: AUTH_PATH,
|
| });
|
| } catch (error) {
|
| console.log("Error checking kilo settings:", error);
|
| return NextResponse.json({ error: "Failed to check kilo settings" }, { status: 500 });
|
| }
|
| }
|
|
|
|
|
| export async function POST(request) {
|
| const authError = await requireCliToolsAuth(request);
|
| if (authError) return authError;
|
|
|
| let rawBody;
|
| try {
|
| rawBody = await request.json();
|
| } catch {
|
| return NextResponse.json(
|
| {
|
| error: {
|
| message: "Invalid request",
|
| details: [{ field: "body", message: "Invalid JSON body" }],
|
| },
|
| },
|
| { status: 400 }
|
| );
|
| }
|
|
|
| try {
|
| const writeGuard = ensureCliConfigWriteAllowed();
|
| if (writeGuard) {
|
| return NextResponse.json({ error: writeGuard }, { status: 403 });
|
| }
|
|
|
|
|
| const keyId = typeof rawBody?.keyId === "string" ? rawBody.keyId.trim() : null;
|
|
|
| const validation = validateBody(cliModelConfigSchema, rawBody);
|
| if (isValidationFailure(validation)) {
|
| return NextResponse.json({ error: validation.error }, { status: 400 });
|
| }
|
| const { baseUrl, model } = validation.data;
|
| const apiKey = await resolveApiKey(keyId, validation.data.apiKey);
|
|
|
|
|
| await fs.mkdir(KILO_DATA_DIR, { recursive: true });
|
|
|
|
|
| await createBackup("kilo", AUTH_PATH);
|
|
|
|
|
| let auth = {};
|
| try {
|
| const existing = await fs.readFile(AUTH_PATH, "utf-8");
|
| auth = JSON.parse(existing);
|
| } catch {
|
|
|
| }
|
|
|
|
|
| const normalizedBaseUrl = baseUrl.endsWith("/v1") ? baseUrl : `${baseUrl}/v1`;
|
|
|
|
|
| auth["openai-compatible"] = {
|
| type: "api-key",
|
| apiKey: apiKey || "sk_omniroute",
|
| baseUrl: normalizedBaseUrl,
|
| model: model,
|
| };
|
|
|
| await fs.writeFile(AUTH_PATH, JSON.stringify(auth, null, 2));
|
|
|
|
|
| try {
|
| const vscodeSettingsPath = path.join(
|
| os.homedir(),
|
| ".config",
|
| "Code",
|
| "User",
|
| "settings.json"
|
| );
|
| let vscodeSettings = {};
|
| try {
|
| const raw = await fs.readFile(vscodeSettingsPath, "utf-8");
|
| vscodeSettings = JSON.parse(raw);
|
| } catch {
|
|
|
| }
|
|
|
|
|
| vscodeSettings["kilocode.customProvider"] = {
|
| name: "OmniRoute",
|
| baseURL: normalizedBaseUrl,
|
| apiKey: apiKey || "sk_omniroute",
|
| };
|
| vscodeSettings["kilocode.defaultModel"] = model;
|
|
|
| await fs.writeFile(vscodeSettingsPath, JSON.stringify(vscodeSettings, null, 2));
|
| } catch {
|
|
|
| }
|
|
|
|
|
| try {
|
| saveCliToolLastConfigured("kilo");
|
| } catch {
|
|
|
| }
|
|
|
| return NextResponse.json({
|
| success: true,
|
| message: "Kilo Code settings applied successfully!",
|
| authPath: AUTH_PATH,
|
| });
|
| } catch (error) {
|
| console.log("Error updating kilo settings:", error);
|
| return NextResponse.json({ error: "Failed to update kilo settings" }, { status: 500 });
|
| }
|
| }
|
|
|
|
|
| export async function DELETE(request: Request) {
|
| const authError = await requireCliToolsAuth(request);
|
| if (authError) return authError;
|
|
|
| try {
|
| const writeGuard = ensureCliConfigWriteAllowed();
|
| if (writeGuard) {
|
| return NextResponse.json({ error: writeGuard }, { status: 403 });
|
| }
|
|
|
|
|
| await createBackup("kilo", AUTH_PATH);
|
|
|
|
|
| let auth = {};
|
| try {
|
| const existing = await fs.readFile(AUTH_PATH, "utf-8");
|
| auth = JSON.parse(existing);
|
| } catch (error) {
|
| if (error.code === "ENOENT") {
|
| return NextResponse.json({ success: true, message: "No settings file to reset" });
|
| }
|
| throw error;
|
| }
|
|
|
|
|
| delete auth["openai-compatible"];
|
| delete auth["omniroute"];
|
|
|
| await fs.writeFile(AUTH_PATH, JSON.stringify(auth, null, 2));
|
|
|
|
|
| try {
|
| const vscodeSettingsPath = path.join(
|
| os.homedir(),
|
| ".config",
|
| "Code",
|
| "User",
|
| "settings.json"
|
| );
|
| const raw = await fs.readFile(vscodeSettingsPath, "utf-8");
|
| const vscodeSettings = JSON.parse(raw);
|
| delete vscodeSettings["kilocode.customProvider"];
|
| delete vscodeSettings["kilocode.defaultModel"];
|
| await fs.writeFile(vscodeSettingsPath, JSON.stringify(vscodeSettings, null, 2));
|
| } catch {
|
|
|
| }
|
|
|
|
|
| try {
|
| deleteCliToolLastConfigured("kilo");
|
| } catch {
|
|
|
| }
|
|
|
| return NextResponse.json({
|
| success: true,
|
| message: "OmniRoute settings removed from Kilo Code",
|
| });
|
| } catch (error) {
|
| console.log("Error resetting kilo settings:", error);
|
| return NextResponse.json({ error: "Failed to reset kilo settings" }, { status: 500 });
|
| }
|
| }
|
|
|