mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* fix: small fixes to request util and version update endpoint * feat: api token creation and management * fix: lint * fix: remove unneeded sidebar component
38 lines
942 B
TypeScript
38 lines
942 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
import prisma from "~/server/internal/db/database";
|
|
import libraryManager from "~/server/internal/library";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, ["game:read"]);
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
const gameId = getRouterParam(h3, "id")!;
|
|
|
|
const game = await prisma.game.findUnique({
|
|
where: {
|
|
id: gameId,
|
|
},
|
|
include: {
|
|
versions: {
|
|
orderBy: {
|
|
versionIndex: "asc",
|
|
},
|
|
omit: {
|
|
dropletManifest: true,
|
|
},
|
|
},
|
|
tags: true,
|
|
},
|
|
});
|
|
|
|
if (!game || !game.libraryId)
|
|
throw createError({ statusCode: 404, statusMessage: "Game ID not found" });
|
|
|
|
const unimportedVersions = await libraryManager.fetchUnimportedGameVersions(
|
|
game.libraryId,
|
|
game.libraryPath,
|
|
);
|
|
|
|
return { game, unimportedVersions };
|
|
});
|