mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
import { ClientCapabilities } from "~/prisma/client";
|
|
import { defineClientEventHandler } from "~/server/internal/clients/event-handler";
|
|
import prisma from "~/server/internal/db/database";
|
|
|
|
export default defineClientEventHandler(
|
|
async (h3, { fetchClient, fetchUser }) => {
|
|
const client = await fetchClient();
|
|
if (!client.capabilities.includes(ClientCapabilities.CloudSaves))
|
|
throw createError({
|
|
statusCode: 403,
|
|
statusMessage: "Capability not allowed.",
|
|
});
|
|
const user = await fetchUser();
|
|
const gameId = getRouterParam(h3, "gameid");
|
|
if (!gameId)
|
|
throw createError({
|
|
statusCode: 400,
|
|
statusMessage: "No gameID in route params",
|
|
});
|
|
|
|
const slotIndexString = getRouterParam(h3, "slotindex");
|
|
if (!slotIndexString)
|
|
throw createError({
|
|
statusCode: 400,
|
|
statusMessage: "No slotIndex in route params",
|
|
});
|
|
const slotIndex = parseInt(slotIndexString);
|
|
if (Number.isNaN(slotIndex))
|
|
throw createError({
|
|
statusCode: 400,
|
|
statusMessage: "Invalid slotIndex",
|
|
});
|
|
|
|
const game = await prisma.game.findUnique({
|
|
where: { id: gameId },
|
|
select: { id: true },
|
|
});
|
|
if (!game)
|
|
throw createError({ statusCode: 400, statusMessage: "Invalid game ID" });
|
|
|
|
const save = await prisma.saveSlot.delete({
|
|
where: {
|
|
id: {
|
|
userId: user.id,
|
|
gameId: gameId,
|
|
index: slotIndex,
|
|
},
|
|
},
|
|
});
|
|
if (!save)
|
|
throw createError({ statusCode: 404, statusMessage: "Save not found" });
|
|
},
|
|
);
|