File size: 13,329 Bytes
6111b2b | 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 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | "use server";
import { NextResponse } from "next/server";
import fs from "fs/promises";
import path from "path";
import { requireCliToolsAuth } from "@/lib/api/requireCliToolsAuth";
import {
ensureCliConfigWriteAllowed,
getCliConfigPaths,
getCliRuntimeStatus,
} from "@/shared/services/cliRuntime";
import { createMultiBackup } 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 { getApiKeyById } from "@/lib/localDb";
import { normalizeCodexBaseUrl } from "@/shared/utils/codexBaseUrl";
const getCodexConfigPath = () => getCliConfigPaths("codex").config;
const getCodexAuthPath = () => getCliConfigPaths("codex").auth;
const getCodexDir = () => path.dirname(getCodexConfigPath());
// Parse TOML config to object (simple parser for codex config)
const parseToml = (content: string) => {
const result: Record<string, any> = { _root: {}, _sections: {} };
let currentSection = "_root";
content.split("\n").forEach((line) => {
const trimmed = line.trim();
if (!trimmed || trimmed.startsWith("#")) return;
// Section header like [model_providers.omniroute]
const sectionMatch = trimmed.match(/^\[(.+)\]$/);
if (sectionMatch) {
currentSection = sectionMatch[1];
result._sections[currentSection] = {};
return;
}
// Key = value
const kvMatch = trimmed.match(/^([^=]+)\s*=\s*(.+)$/);
if (kvMatch) {
let key = kvMatch[1].trim();
const rawValue = kvMatch[2].trim();
// Strip quotes from key (TOML quoted keys like "gpt-5.3-codex")
if (
(key.startsWith('"') && key.endsWith('"')) ||
(key.startsWith("'") && key.endsWith("'"))
) {
key = key.slice(1, -1);
}
// Parse value preserving TOML types (integers, floats, booleans)
let parsedValue: string | number | boolean = rawValue;
if (rawValue === "true") {
parsedValue = true;
} else if (rawValue === "false") {
parsedValue = false;
} else if (
(rawValue.startsWith('"') && rawValue.endsWith('"')) ||
(rawValue.startsWith("'") && rawValue.endsWith("'"))
) {
// Quoted string — strip quotes, keep as string
parsedValue = rawValue.slice(1, -1);
} else if (/^-?\d+$/.test(rawValue)) {
// Integer literal (unquoted)
parsedValue = parseInt(rawValue, 10);
} else if (/^-?\d+\.\d+$/.test(rawValue)) {
// Float literal (unquoted)
parsedValue = parseFloat(rawValue);
}
// Arrays and other complex values stay as raw strings
if (currentSection === "_root") {
result._root[key] = parsedValue;
} else {
result._sections[currentSection][key] = parsedValue;
}
}
});
return result;
};
// Format a TOML value: arrays and booleans stay unquoted, strings get quoted
const formatTomlValue = (value: unknown): string => {
if (typeof value === "boolean") return value ? "true" : "false";
if (typeof value === "number") return String(value);
// Preserve pre-formatted TOML arrays (e.g. ["a", "b"])
if (typeof value === "string" && value.startsWith("[") && value.endsWith("]")) return value;
if (typeof value === "string") return `"${value}"`;
return `"${value}"`;
};
// Convert parsed object back to TOML string
const toToml = (parsed: Record<string, any>) => {
let lines: string[] = [];
// Root level keys
Object.entries(parsed._root).forEach(([key, value]) => {
lines.push(`${key} = ${formatTomlValue(value)}`);
});
// Sections
Object.entries(parsed._sections).forEach(([section, values]) => {
lines.push("");
lines.push(`[${section}]`);
Object.entries(values).forEach(([key, value]) => {
const formattedKey = key.includes(".") ? `"${key}"` : key;
lines.push(`${formattedKey} = ${formatTomlValue(value)}`);
});
});
return lines.join("\n") + "\n";
};
// Read current config.toml
const readConfig = async () => {
try {
const configPath = getCodexConfigPath();
const content = await fs.readFile(configPath, "utf-8");
return content;
} catch (error: any) {
if (error.code === "ENOENT") return null;
throw error;
}
};
// Check if config has OmniRoute settings
const hasOmniRouteConfig = (config: string | null) => {
if (!config) return false;
return (
config.includes("openai_base_url") ||
config.includes('model_provider = "omniroute"') ||
config.includes("[model_providers.omniroute]")
);
};
// GET - Check codex 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("codex");
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,
config: null,
message:
runtime.installed && !runtime.runnable
? "Codex CLI is installed but not runnable"
: "Codex CLI is not installed",
});
}
const config = await readConfig();
return NextResponse.json({
installed: runtime.installed,
runnable: runtime.runnable,
command: runtime.command,
commandPath: runtime.commandPath,
runtimeMode: runtime.runtimeMode,
reason: runtime.reason,
config,
hasOmniRoute: hasOmniRouteConfig(config),
configPath: getCodexConfigPath(),
});
} catch (error) {
console.log("Error checking codex settings:", error);
return NextResponse.json({ error: "Failed to check codex settings" }, { status: 500 });
}
}
// POST - Update OmniRoute settings (merge with existing config)
export async function POST(request: 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!
// The dashboard sends masked key strings — resolving by ID guarantees
// we always write the full key value to the config file.
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, reasoningEffort, wireApi, modelMappings } = validation.data;
let { apiKey } = validation.data;
if (!apiKey) {
return NextResponse.json(
{ error: "baseUrl, apiKey and model are required" },
{ status: 400 }
);
}
// Resolve real key from DB by ID
if (keyId) {
try {
const keyRecord = await getApiKeyById(keyId);
if (keyRecord?.key) {
apiKey = keyRecord.key as string;
}
} catch {
// Non-critical: fall back to whatever value was in apiKey
}
}
const codexDir = getCodexDir();
const configPath = getCodexConfigPath();
const authPath = getCodexAuthPath();
// Ensure directory exists
await fs.mkdir(codexDir, { recursive: true });
// Backup current configs before modifying
await createMultiBackup("codex", [configPath, authPath]);
// Read and parse existing config
let parsed: Record<string, any> = { _root: {}, _sections: {} };
try {
const existingConfig = await fs.readFile(configPath, "utf-8");
parsed = parseToml(existingConfig);
} catch {
/* No existing config */
}
// Update only OmniRoute related fields (api_key goes to auth.json, not config.toml)
parsed._root.model = model;
if (reasoningEffort && reasoningEffort !== "none") {
// Optional: low, medium, high
parsed._root.model_reasoning_effort = reasoningEffort;
} else {
delete parsed._root.model_reasoning_effort;
}
const normalizedBaseUrl = normalizeCodexBaseUrl(baseUrl, wireApi || "chat");
// Always create a custom provider to reliably pass wire_api and use OMNIROUTE_API_KEY
parsed._root.model_provider = "omniroute";
parsed._sections["model_providers.omniroute"] = {
name: "OmniRoute",
base_url: normalizedBaseUrl,
wire_api: wireApi || "chat",
env_key: "OPENAI_API_KEY",
};
delete parsed._root.openai_base_url;
// Process model aliases into notice.model_migrations
if (modelMappings && Object.keys(modelMappings).length > 0) {
if (!parsed._sections["notice.model_migrations"]) {
parsed._sections["notice.model_migrations"] = {};
}
for (const [from, to] of Object.entries(modelMappings)) {
parsed._sections["notice.model_migrations"][from] = to;
}
} else {
delete parsed._sections["notice.model_migrations"];
}
// Write merged config
const configContent = toToml(parsed);
await fs.writeFile(configPath, configContent);
// Update auth.json with OPENAI_API_KEY (Codex reads this first)
let authData: Record<string, any> = {};
try {
const existingAuth = await fs.readFile(authPath, "utf-8");
authData = JSON.parse(existingAuth);
} catch {
/* No existing auth */
}
authData.OPENAI_API_KEY = apiKey;
await fs.writeFile(authPath, JSON.stringify(authData, null, 2));
// Persist last-configured timestamp
try {
saveCliToolLastConfigured("codex");
} catch {
/* non-critical */
}
return NextResponse.json({
success: true,
message: "Codex settings applied successfully!",
configPath,
});
} catch (error) {
console.log("Error updating codex settings:", error);
return NextResponse.json({ error: "Failed to update codex settings" }, { status: 500 });
}
}
// DELETE - Remove OmniRoute settings only (keep other settings)
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 });
}
const configPath = getCodexConfigPath();
// Backup current configs before resetting
await createMultiBackup("codex", [configPath, getCodexAuthPath()]);
// Read and parse existing config
let parsed: Record<string, any> = { _root: {}, _sections: {} };
try {
const existingConfig = await fs.readFile(configPath, "utf-8");
parsed = parseToml(existingConfig);
} catch (error: any) {
if (error.code === "ENOENT") {
return NextResponse.json({
success: true,
message: "No config file to reset",
});
}
throw error;
}
// Remove OmniRoute related root fields
delete parsed._root.openai_base_url;
if (parsed._root.model_provider === "omniroute") {
delete parsed._root.model;
delete parsed._root.model_provider;
}
// Remove omniroute provider section
delete parsed._sections["model_providers.omniroute"];
// Write updated config
const configContent = toToml(parsed);
await fs.writeFile(configPath, configContent);
// Remove OPENAI_API_KEY from auth.json
const authPath = getCodexAuthPath();
try {
const existingAuth = await fs.readFile(authPath, "utf-8");
const authData = JSON.parse(existingAuth);
delete authData.OPENAI_API_KEY;
// Write back or delete if empty
if (Object.keys(authData).length === 0) {
await fs.unlink(authPath);
} else {
await fs.writeFile(authPath, JSON.stringify(authData, null, 2));
}
} catch {
/* No auth file */
}
// Clear last-configured timestamp
try {
deleteCliToolLastConfigured("codex");
} catch {
/* non-critical */
}
return NextResponse.json({
success: true,
message: "OmniRoute settings removed successfully",
});
} catch (error) {
console.log("Error resetting codex settings:", error);
return NextResponse.json({ error: "Failed to reset codex settings" }, { status: 500 });
}
}
|