mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 16:22:39 +10:00
* feat: database redist support * feat: rearchitecture of database schemas, migration reset, and #180 * feat: import redists * fix: giantbomb logging bug * feat: partial user platform support + statusMessage -> message * feat: add user platform filters to store view * fix: sanitize svg uploads ... copilot suggested this I feel dirty. * feat: beginnings of platform & redist management * feat: add server side redist patching * fix: update drop-base commit * feat: import of custom platforms & file extensions * fix: redelete platform * fix: remove platform * feat: uninstall commands, new R UI * checkpoint: before migrating to nuxt v4 * update to nuxt 4 * fix: fixes for Nuxt v4 update * fix: remaining type issues * feat: initial feedback to import other kinds of versions * working commit * fix: lint * feat: redist import
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import { ArkErrors, type } from "arktype";
|
|
import aclManager from "~~/server/internal/acls";
|
|
import prisma from "~~/server/internal/db/database";
|
|
import libraryManager, { VersionImportModes } from "~~/server/internal/library";
|
|
|
|
export const PreloadQuery = type({
|
|
id: "string",
|
|
mode: type.enumerated(...VersionImportModes),
|
|
});
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, ["import:version:read"]);
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
const rawQuery = await getQuery(h3);
|
|
const query = PreloadQuery(rawQuery);
|
|
if (query instanceof ArkErrors)
|
|
throw createError({ statusCode: 400, message: query.summary });
|
|
|
|
const value: { libraryId: string; libraryPath: string } | undefined =
|
|
await // eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
(prisma[query.mode] as any).findUnique({
|
|
where: { id: query.id },
|
|
select: { libraryId: true, libraryPath: true },
|
|
});
|
|
if (!value) throw createError({ statusCode: 404, message: "Not found" });
|
|
|
|
const unimportedVersions = await libraryManager.fetchUnimportedGameVersions(
|
|
value.libraryId,
|
|
value.libraryPath,
|
|
);
|
|
if (!unimportedVersions)
|
|
throw createError({ statusCode: 400, message: "Invalid game ID" });
|
|
|
|
return unimportedVersions;
|
|
});
|