"use server"; import { NextResponse } from "next/server"; import fs from "fs/promises"; import path from "path"; import { requireCliToolsAuth } from "@/lib/api/requireCliToolsAuth"; import { ensureCliConfigWriteAllowed, getCliPrimaryConfigPath, 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 getOpenClawSettingsPath = () => getCliPrimaryConfigPath("openclaw"); const getOpenClawDir = () => path.dirname(getOpenClawSettingsPath()); // Read current settings.json const readSettings = async () => { try { const settingsPath = getOpenClawSettingsPath(); const content = await fs.readFile(settingsPath, "utf-8"); return JSON.parse(content); } catch (error: any) { if (error.code === "ENOENT") return null; throw error; } }; // Check if settings has OmniRoute config const hasOmniRouteConfig = (settings: any) => { if (!settings || !settings.models || !settings.models.providers) return false; return !!settings.models.providers["omniroute"]; }; // GET - Check openclaw 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("openclaw"); 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 ? "Open Claw CLI is installed but not runnable" : "Open Claw CLI is not installed", }); } const settings = await readSettings(); return NextResponse.json({ installed: runtime.installed, runnable: runtime.runnable, command: runtime.command, commandPath: runtime.commandPath, runtimeMode: runtime.runtimeMode, reason: runtime.reason, settings, hasOmniRoute: hasOmniRouteConfig(settings), settingsPath: getOpenClawSettingsPath(), }); } catch (error) { console.log("Error checking openclaw settings:", error); return NextResponse.json({ error: "Failed to check openclaw settings" }, { status: 500 }); } } // POST - Update OmniRoute settings (merge with existing settings) 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 }); } // (#526) 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 }); } let { baseUrl, model } = validation.data; let apiKey = await resolveApiKey(keyId, validation.data.apiKey); const openclawDir = getOpenClawDir(); const settingsPath = getOpenClawSettingsPath(); // Ensure directory exists await fs.mkdir(openclawDir, { recursive: true }); // Backup current settings before modifying await createBackup("openclaw", settingsPath); // Read existing settings or create new let settings: Record = {}; try { const existingSettings = await fs.readFile(settingsPath, "utf-8"); settings = JSON.parse(existingSettings); } catch { /* No existing settings */ } // Ensure structure exists if (!settings.agents) settings.agents = {}; if (!settings.agents.defaults) settings.agents.defaults = {}; if (!settings.agents.defaults.model) settings.agents.defaults.model = {}; if (!settings.models) settings.models = {}; if (!settings.models.providers) settings.models.providers = {}; // Normalize baseUrl to ensure /v1 suffix const normalizedBaseUrl = baseUrl.endsWith("/v1") ? baseUrl : `${baseUrl}/v1`; // Update agents.defaults.model.primary settings.agents.defaults.model.primary = `omniroute/${model}`; // Update models.providers.omniroute settings.models.providers["omniroute"] = { baseUrl: normalizedBaseUrl, apiKey: apiKey || "your_api_key", api: "openai-completions", models: [ { id: model, name: model.split("/").pop() || model, }, ], }; // Write settings await fs.writeFile(settingsPath, JSON.stringify(settings, null, 2)); // Persist last-configured timestamp try { saveCliToolLastConfigured("openclaw"); } catch { /* non-critical */ } return NextResponse.json({ success: true, message: "Open Claw settings applied successfully!", settingsPath, }); } catch (error) { console.log("Error updating openclaw settings:", error); return NextResponse.json({ error: "Failed to update openclaw 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 settingsPath = getOpenClawSettingsPath(); // Backup current settings before resetting await createBackup("openclaw", settingsPath); // Read existing settings let settings: Record = {}; try { const existingSettings = await fs.readFile(settingsPath, "utf-8"); settings = JSON.parse(existingSettings); } catch (error: any) { if (error.code === "ENOENT") { return NextResponse.json({ success: true, message: "No settings file to reset", }); } throw error; } // Remove OmniRoute from models.providers if (settings.models && settings.models.providers) { delete settings.models.providers["omniroute"]; // Remove providers object if empty if (Object.keys(settings.models.providers).length === 0) { delete settings.models.providers; } } // Reset agents.defaults.model.primary if it uses omniroute if (settings.agents?.defaults?.model?.primary?.startsWith("omniroute/")) { delete settings.agents.defaults.model.primary; } // Write updated settings await fs.writeFile(settingsPath, JSON.stringify(settings, null, 2)); // Clear last-configured timestamp try { deleteCliToolLastConfigured("openclaw"); } catch { /* non-critical */ } return NextResponse.json({ success: true, message: "OmniRoute settings removed successfully", }); } catch (error) { console.log("Error resetting openclaw settings:", error); return NextResponse.json({ error: "Failed to reset openclaw settings" }, { status: 500 }); } }