Files
drop/server/api/v1/admin/library/sources/index.post.ts
DecDuck 251ddb8ff8 Rearchitecture for v0.4.0 (#197)
* 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
2025-11-10 10:36:13 +11:00

72 lines
2.0 KiB
TypeScript

import { type } from "arktype";
import { randomUUID } from "crypto";
import { LibraryBackend } from "~~/prisma/client/enums";
import { readDropValidatedBody, throwingArktype } from "~~/server/arktype";
import aclManager from "~~/server/internal/acls";
import prisma from "~~/server/internal/db/database";
import libraryManager from "~~/server/internal/library";
import { libraryConstructors } from "~~/server/plugins/05.library-init";
import type { WorkingLibrarySource } from "~~/server/api/v1/admin/library/sources/index.get";
const CreateLibrarySource = type({
name: "string",
backend: "string",
options: "object",
}).configure(throwingArktype);
export default defineEventHandler<{ body: typeof CreateLibrarySource.infer }>(
async (h3) => {
const allowed = await aclManager.allowSystemACL(h3, [
"library:sources:new",
"setup",
]);
if (!allowed) throw createError({ statusCode: 403 });
const body = await readDropValidatedBody(h3, CreateLibrarySource);
const backend = Object.values(LibraryBackend).find(
(e) => e == body.backend,
);
if (!backend)
throw createError({
statusCode: 400,
message: "Invalid source backend.",
});
const constructor = libraryConstructors[backend];
try {
const id = randomUUID();
const library = constructor(body.options, id);
// Test we can actually use it
if ((await library.listGames()) === undefined) {
throw "Library failed to fetch games.";
}
const source = await prisma.library.create({
data: {
id,
name: body.name,
backend,
options: body.options,
},
});
libraryManager.addLibrary(library);
const workingSource: WorkingLibrarySource = {
...source,
working: true,
fsStats: library.fsStats(),
};
return workingSource;
} catch (e) {
throw createError({
statusCode: 400,
message: `Failed to create source: ${e}`,
});
}
},
);