File size: 1,831 Bytes
88c4c60 | 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 | import { NextResponse } from "next/server";
import { exportDb, getSettings, importDb } from "@/lib/localDb";
import { applyOutboundProxyEnv } from "@/lib/network/outboundProxy";
import { verifyDashboardPassword } from "@/lib/auth/dashboardSession";
const CLI_TOKEN_HEADER = "x-9r-cli-token";
const PASSWORD_HEADER = "x-9r-password";
// CLI token requests are already trusted (local machine); skip password re-auth.
function isCliRequest(request) {
return Boolean(request.headers.get(CLI_TOKEN_HEADER));
}
export async function GET(request) {
try {
if (!isCliRequest(request) && !(await verifyDashboardPassword(request.headers.get(PASSWORD_HEADER)))) {
return NextResponse.json({ error: "Invalid password" }, { status: 401 });
}
const payload = await exportDb();
return NextResponse.json(payload);
} catch (error) {
console.log("Error exporting database:", error);
return NextResponse.json({ error: "Failed to export database" }, { status: 500 });
}
}
export async function POST(request) {
try {
const { password, ...payload } = await request.json();
if (!isCliRequest(request) && !(await verifyDashboardPassword(password))) {
return NextResponse.json({ error: "Invalid password" }, { status: 401 });
}
await importDb(payload);
// Ensure proxy settings take effect immediately after a DB import.
try {
const settings = await getSettings();
applyOutboundProxyEnv(settings);
} catch (err) {
console.warn("[Settings][DatabaseImport] Failed to re-apply outbound proxy env:", err);
}
return NextResponse.json({ success: true });
} catch (error) {
console.log("Error importing database:", error);
return NextResponse.json(
{ error: error?.message || "Failed to import database" },
{ status: 400 }
);
}
}
|