mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
35 lines
871 B
TypeScript
35 lines
871 B
TypeScript
import { type } from "arktype";
|
|
import { throwingArktype } from "~/server/arktype";
|
|
import aclManager from "~/server/internal/acls";
|
|
import prisma from "~/server/internal/db/database";
|
|
|
|
const DeleteVersion = type({
|
|
id: "string",
|
|
versionName: "string",
|
|
}).configure(throwingArktype);
|
|
|
|
export default defineEventHandler<{ body: typeof DeleteVersion }>(
|
|
async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, [
|
|
"game:version:delete",
|
|
]);
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
const body = await readValidatedBody(h3, DeleteVersion);
|
|
|
|
const gameId = body.id.toString();
|
|
const version = body.versionName.toString();
|
|
|
|
await prisma.gameVersion.delete({
|
|
where: {
|
|
gameId_versionName: {
|
|
gameId: gameId,
|
|
versionName: version,
|
|
},
|
|
},
|
|
});
|
|
|
|
return {};
|
|
},
|
|
);
|