mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-16 09:41:13 +10:00
32 lines
855 B
TypeScript
32 lines
855 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
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 {};
|
|
});
|