mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-17 02:01:11 +10:00
31 lines
807 B
TypeScript
31 lines
807 B
TypeScript
import { defineClientEventHandler } from "~/server/internal/clients/event-handler";
|
|
import userLibraryManager from "~/server/internal/userlibrary";
|
|
|
|
export default defineClientEventHandler(async (h3, { fetchUser }) => {
|
|
const user = await fetchUser();
|
|
|
|
const id = getRouterParam(h3, "id");
|
|
if (!id)
|
|
throw createError({
|
|
statusCode: 400,
|
|
statusMessage: "ID required in route params",
|
|
});
|
|
|
|
const body = await readBody(h3);
|
|
const gameId = body.id;
|
|
if (!gameId)
|
|
throw createError({ statusCode: 400, statusMessage: "Game ID required" });
|
|
|
|
const successful = await userLibraryManager.collectionRemove(
|
|
gameId,
|
|
id,
|
|
user.id,
|
|
);
|
|
if (!successful)
|
|
throw createError({
|
|
statusCode: 404,
|
|
statusMessage: "Collection not found",
|
|
});
|
|
return {};
|
|
});
|