Files
voyage/src/routes/api/adventure/+server.ts
2024-05-26 13:49:57 +00:00

61 lines
1.7 KiB
TypeScript

import { db } from "$lib/db/db.server";
import { adventureTable } from "$lib/db/schema";
import type { Adventure } from "$lib/utils/types";
import { json, type RequestEvent, type RequestHandler } from "@sveltejs/kit";
import { and, eq } from "drizzle-orm";
/**
* Handles the GET request for retrieving an adventure by ID.
* @param {Request} request - The request object.
* @param {Response} response - The response object.
* @returns {Promise<void>} - A promise that resolves when the request is handled.
*/
export const GET: RequestHandler = async ({ url, locals }) => {
const id = url.searchParams.get("id");
const user = locals.user;
if (!user) {
return json({ error: "Unauthorized" }, { status: 401 });
}
if (!id) {
return json({ error: "Missing adventure ID" }, { status: 400 });
}
const adventure = await db
.select()
.from(adventureTable)
.where(
and(
eq(adventureTable.id, Number(id)), // Convert id to number
eq(adventureTable.userId, user.id)
// eq(adventureTable.type, "mylog")
)
)
.limit(1)
.execute();
if (adventure.length === 0) {
return json({ error: "Adventure not found" }, { status: 404 });
}
JSON.stringify(
adventure.map((r) => {
const adventure: Adventure = r as Adventure;
if (typeof adventure.activityTypes === "string") {
try {
adventure.activityTypes = JSON.parse(adventure.activityTypes);
} catch (error) {
console.error("Error parsing activityTypes:", error);
adventure.activityTypes = undefined;
}
}
})
);
// console.log("GET /api/adventure?id=", id);
// console.log("User:", user);
return json({ adventure }, { status: 200 });
};