Spaces:
Runtime error
Runtime error
File size: 8,986 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | "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";
import { readJsoncConfig } from "../_lib/jsoncConfig";
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");
// Read auth.json.
// Ported from upstream decolua/9router@6c10edf8: tolerate JSONC (trailing
// commas) and return null on any parse error so the dashboard renders
// "installed but not configured" instead of a 500 misread as "not installed".
const readAuth = async () => readJsoncConfig(AUTH_PATH);
// Check if OmniRoute OpenAI-compatible provider is configured
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")
);
};
// GET - Check kilo CLI and read current settings
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();
// Read kilo VS Code extension settings if available
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);
// Extract kilo-related settings
extensionSettings = {};
for (const [key, value] of Object.entries(allSettings)) {
if (
key.startsWith("kilocode.") ||
key.startsWith("kilo-code.") ||
key.startsWith("kilo.")
) {
extensionSettings[key] = value;
}
}
} catch {
/* VS Code settings not available */
}
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 });
}
}
// POST - Configure Kilo Code to use OmniRoute as OpenAI-compatible provider
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 });
}
// (#549) Extract keyId BEFORE validation — Zod strips unknown fields!
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);
// Ensure directories exist
await fs.mkdir(KILO_DATA_DIR, { recursive: true });
// Backup auth before modifying
await createBackup("kilo", AUTH_PATH);
// Read existing auth
let auth = {};
try {
const existing = await fs.readFile(AUTH_PATH, "utf-8");
auth = JSON.parse(existing);
} catch {
/* No existing auth */
}
// Normalize baseUrl
const normalizedBaseUrl = baseUrl.endsWith("/v1") ? baseUrl : `${baseUrl}/v1`;
// Add/update OmniRoute as openai-compatible provider
auth["openai-compatible"] = {
type: "api-key",
apiKey: apiKey || "sk_omniroute",
baseUrl: normalizedBaseUrl,
model: model,
};
await fs.writeFile(AUTH_PATH, JSON.stringify(auth, null, 2));
// Also try to update VS Code extension settings if available
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 {
/* no existing settings */
}
// Set custom provider config for the extension
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 {
// VS Code settings not writable — not a problem for CLI
}
// Persist last-configured timestamp
try {
saveCliToolLastConfigured("kilo");
} catch {
/* non-critical */
}
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 });
}
}
// DELETE - Remove OmniRoute config from Kilo
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 });
}
// Backup before reset
await createBackup("kilo", AUTH_PATH);
// Read existing auth
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;
}
// Remove OmniRoute provider
delete auth["openai-compatible"];
delete auth["omniroute"];
await fs.writeFile(AUTH_PATH, JSON.stringify(auth, null, 2));
// Also clean up VS Code extension settings
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 {
/* ignore */
}
// Clear last-configured timestamp
try {
deleteCliToolLastConfigured("kilo");
} catch {
/* non-critical */
}
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 });
}
}
|