24 lines
1.8 KiB
TypeScript
24 lines
1.8 KiB
TypeScript
import type { APIRoute } from "astro";
|
|
const base = process.env.API_INTERNAL_URL || import.meta.env.API_INTERNAL_URL || "http://localhost:8000";
|
|
export const POST: APIRoute = async ({ request, redirect }) => {
|
|
const form = await request.formData();
|
|
const text = (name: string) => String(form.get(name) || "").trim() || null;
|
|
const number = (name: string) => text(name) ? Number(text(name)) : null;
|
|
const payload = { fish_slug: String(form.get("fish_slug") || ""), waterbody_slug: String(form.get("waterbody_slug") || ""), x: Number(form.get("x")), y: Number(form.get("y")), weight_g: Number(form.get("weight_g")), bait_name: text("bait_name"), fishing_method: text("fishing_method"), retrieve_method: text("retrieve_method"), retrieve_speed: number("retrieve_speed"), player_name: text("player_name"), comment: text("comment"), website: String(form.get("website") || "") };
|
|
let createdId: string | null = null;
|
|
try {
|
|
const response = await fetch(`${base}/api/v1/catch-reports`, { method: "POST", headers: { "content-type": "application/json" }, body: JSON.stringify(payload) });
|
|
if (!response.ok) return redirect("/report?state=create_error", 303);
|
|
const created = await response.json();
|
|
createdId = created.id;
|
|
const screenshot = form.get("screenshot");
|
|
if (screenshot instanceof File && screenshot.size > 0) {
|
|
const upload = new FormData(); upload.set("screenshot", screenshot);
|
|
const uploaded = await fetch(`${base}/api/v1/catch-reports/${created.id}/screenshot`, { method: "POST", body: upload });
|
|
if (!uploaded.ok) return redirect(`/report?state=screenshot_error&report_id=${encodeURIComponent(created.id)}`, 303);
|
|
}
|
|
return redirect("/report?state=sent", 303);
|
|
}
|
|
catch { return redirect(createdId ? `/report?state=screenshot_error&report_id=${encodeURIComponent(createdId)}` : "/report?state=create_error", 303); }
|
|
};
|