Treat configured Headroom proxy as running when its /health endpoint responds, even if local headroom CLI is not installed. Dashboard Start/Stop stays limited to local loopback proxies while external Docker sidecars can be enabled via HEADROOM_URL. Closes #1948 Co-authored-by: Cursor <cursoragent@cursor.com>
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
import { NextResponse } from "next/server";
|
|
import { getSettings } from "@/lib/localDb";
|
|
import { startHeadroomProxy } from "@/lib/headroom/process";
|
|
import { DEFAULT_HEADROOM_URL, isLoopbackHeadroomUrl } from "@/lib/headroom/detect";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
function parsePortFromUrl(url) {
|
|
try {
|
|
const u = new URL(url);
|
|
const p = parseInt(u.port, 10);
|
|
if (p > 0 && p < 65536) return p;
|
|
} catch { /* ignore, fall through to default */ }
|
|
return null;
|
|
}
|
|
|
|
export async function POST() {
|
|
try {
|
|
const settings = await getSettings();
|
|
const url = settings.headroomUrl || DEFAULT_HEADROOM_URL;
|
|
if (!isLoopbackHeadroomUrl(url)) {
|
|
return NextResponse.json({ error: "External Headroom proxies must be started outside 9Router", code: "EXTERNAL_PROXY" }, { status: 400 });
|
|
}
|
|
const port = parsePortFromUrl(url) || 8787;
|
|
const result = await startHeadroomProxy({ port });
|
|
return NextResponse.json({ success: true, ...result });
|
|
} catch (error) {
|
|
const status = error.code === "NOT_INSTALLED" ? 400 : 500;
|
|
return NextResponse.json({ error: error.message, code: error.code || null }, { status });
|
|
}
|
|
}
|