first commit

This commit is contained in:
skidoodle 2024-12-30 11:52:59 +01:00
commit fc0e75383f
Signed by: albert
GPG key ID: A06E3070D7D55BF2
37 changed files with 11250 additions and 0 deletions

View file

@ -0,0 +1,94 @@
import pb from "@/app/lib/pocketbase";
const { EMAIL, PASSWORD } = process.env;
async function authenticateSuperuser() {
if (!pb.authStore.isValid) {
await pb.collection("_superusers").authWithPassword(EMAIL!, PASSWORD!);
}
}
export async function GET(req: Request, context: { params: Promise<{ id: string }> }) {
try {
await authenticateSuperuser();
const id = (await context.params)?.id;
if (!id) {
return new Response(
JSON.stringify({ error: { message: "Missing ID in request" } }),
{ status: 400, headers: { "Content-Type": "application/json" } }
);
}
const record = await pb.collection("budgetable").getOne(id);
return new Response(JSON.stringify(record), {
headers: { "Content-Type": "application/json" },
});
} catch (error) {
console.error("Error fetching data:", error);
return new Response(
JSON.stringify({ error: { message: "Failed to fetch data" } }),
{ status: 500, headers: { "Content-Type": "application/json" } }
);
}
}
export async function DELETE(req: Request, context: { params: Promise<{ id: string }> }) {
try {
await authenticateSuperuser();
const id = (await context.params)?.id;
if (!id) {
return new Response(
JSON.stringify({ error: { message: "Missing ID in request" } }),
{ status: 400, headers: { "Content-Type": "application/json" } }
);
}
await pb.collection("budgetable").delete(id);
return new Response(
JSON.stringify({ success: true }),
{ headers: { "Content-Type": "application/json" } }
);
} catch (error) {
console.error("Error deleting data:", error);
return new Response(
JSON.stringify({ error: { message: "Failed to delete data" } }),
{ status: 500, headers: { "Content-Type": "application/json" } }
);
}
}
export async function PUT(req: Request, context: { params: Promise<{ id: string }> }) {
try {
await authenticateSuperuser();
const id = (await context.params)?.id; // Use `context.params?.id`
if (!id) {
return new Response(
JSON.stringify({ error: { message: "Missing ID in request" } }),
{ status: 400, headers: { "Content-Type": "application/json" } }
);
}
const body = await req.json();
if (!body.title || typeof body.price !== "number") {
return new Response(
JSON.stringify({ error: { message: "Invalid data provided" } }),
{ status: 400, headers: { "Content-Type": "application/json" } }
);
}
const updatedRecord = await pb.collection("budgetable").update(id, body);
return new Response(
JSON.stringify(updatedRecord),
{ headers: { "Content-Type": "application/json" } }
);
} catch (error) {
console.error("Error updating data:", error);
return new Response(
JSON.stringify({ error: { message: "Failed to update data" } }),
{ status: 500, headers: { "Content-Type": "application/json" } }
);
}
}