63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import { deleteDNSRecord } from "@/lib/cloudflare";
|
|
import { deleteUserRecord } from "@/lib/dto/cloudflare-dns-record";
|
|
import { getDomainsByFeature } from "@/lib/dto/domains";
|
|
import { checkUserStatus } from "@/lib/dto/user";
|
|
import { getCurrentUser } from "@/lib/session";
|
|
|
|
export async function POST(req: Request) {
|
|
try {
|
|
const user = checkUserStatus(await getCurrentUser());
|
|
if (user instanceof Response) return user;
|
|
if (user.role !== "ADMIN") {
|
|
return Response.json("Unauthorized", {
|
|
status: 401,
|
|
statusText: "Admin access required",
|
|
});
|
|
}
|
|
|
|
const { record_id, zone_id, userId, active } = await req.json();
|
|
if (!record_id || !userId || !zone_id) {
|
|
return Response.json("record_id, userId, and zone_id are required", {
|
|
status: 400,
|
|
statusText: "Invalid request body",
|
|
});
|
|
}
|
|
|
|
const zones = await getDomainsByFeature("enable_dns", true);
|
|
if (!zones.length) {
|
|
return Response.json("Please add at least one domain", {
|
|
status: 400,
|
|
statusText: "Please add at least one domain",
|
|
});
|
|
}
|
|
|
|
const matchedZone = zones.find((zone) => zone.cf_zone_id === zone_id);
|
|
if (!matchedZone) {
|
|
return Response.json(`Invalid or unsupported zone_id: ${zone_id}`, {
|
|
status: 400,
|
|
statusText: "Invalid zone_id",
|
|
});
|
|
}
|
|
|
|
// force delete
|
|
await deleteUserRecord(userId, record_id, zone_id, active);
|
|
await deleteDNSRecord(
|
|
matchedZone.cf_zone_id!,
|
|
matchedZone.cf_api_key!,
|
|
matchedZone.cf_email!,
|
|
record_id,
|
|
);
|
|
|
|
return Response.json("success", {
|
|
status: 200,
|
|
statusText: "success",
|
|
});
|
|
} catch (error) {
|
|
console.error("[Error]", error);
|
|
return Response.json(error.message || "Server error", {
|
|
status: error?.status || 500,
|
|
statusText: error?.statusText || "Server error",
|
|
});
|
|
}
|
|
}
|