mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-14 00:31:25 +10:00
* feat: add ui for library source management * fix: lint
This commit is contained in:
25
server/api/v1/admin/library/sources/index.delete.ts
Normal file
25
server/api/v1/admin/library/sources/index.delete.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { type } from "arktype";
|
||||
import { throwingArktype } from "~/server/arktype";
|
||||
import aclManager from "~/server/internal/acls";
|
||||
import prisma from "~/server/internal/db/database";
|
||||
|
||||
const DeleteLibrarySource = type({
|
||||
id: "string",
|
||||
}).configure(throwingArktype);
|
||||
|
||||
export default defineEventHandler<{ body: typeof DeleteLibrarySource.infer }>(
|
||||
async (h3) => {
|
||||
const allowed = await aclManager.allowSystemACL(h3, [
|
||||
"library:sources:delete",
|
||||
]);
|
||||
if (!allowed) throw createError({ statusCode: 403 });
|
||||
|
||||
const body = await readValidatedBody(h3, DeleteLibrarySource);
|
||||
|
||||
return await prisma.library.delete({
|
||||
where: {
|
||||
id: body.id,
|
||||
},
|
||||
});
|
||||
},
|
||||
);
|
||||
16
server/api/v1/admin/library/sources/index.get.ts
Normal file
16
server/api/v1/admin/library/sources/index.get.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import type { Library } from "~/prisma/client";
|
||||
import aclManager from "~/server/internal/acls";
|
||||
import libraryManager from "~/server/internal/library";
|
||||
|
||||
export type WorkingLibrarySource = Library & { working: boolean };
|
||||
|
||||
export default defineEventHandler(async (h3) => {
|
||||
const allowed = await aclManager.allowSystemACL(h3, ["library:sources:read"]);
|
||||
if (!allowed) throw createError({ statusCode: 403 });
|
||||
|
||||
const sources = await libraryManager.fetchLibraries();
|
||||
|
||||
// Fetch other library data here
|
||||
|
||||
return sources;
|
||||
});
|
||||
67
server/api/v1/admin/library/sources/index.patch.ts
Normal file
67
server/api/v1/admin/library/sources/index.patch.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { type } from "arktype";
|
||||
import { 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 "./index.get";
|
||||
|
||||
const UpdateLibrarySource = type({
|
||||
id: "string",
|
||||
name: "string",
|
||||
options: "object",
|
||||
}).configure(throwingArktype);
|
||||
|
||||
export default defineEventHandler<{ body: typeof UpdateLibrarySource.infer }>(
|
||||
async (h3) => {
|
||||
const allowed = await aclManager.allowSystemACL(h3, [
|
||||
"library:sources:update",
|
||||
]);
|
||||
if (!allowed) throw createError({ statusCode: 403 });
|
||||
|
||||
const body = await readValidatedBody(h3, UpdateLibrarySource);
|
||||
|
||||
const source = await prisma.library.findUnique({ where: { id: body.id } });
|
||||
if (!source)
|
||||
throw createError({
|
||||
statusCode: 400,
|
||||
statusMessage: "Library source not found",
|
||||
});
|
||||
|
||||
const constructor = libraryConstructors[source.backend];
|
||||
|
||||
try {
|
||||
const newLibrary = constructor(body.options, source.id);
|
||||
|
||||
// Test we can actually use it
|
||||
if ((await newLibrary.listGames()) === undefined) {
|
||||
throw "Library failed to fetch games.";
|
||||
}
|
||||
|
||||
const updatedSource = await prisma.library.update({
|
||||
where: {
|
||||
id: source.id,
|
||||
},
|
||||
data: {
|
||||
name: body.name,
|
||||
options: body.options,
|
||||
},
|
||||
});
|
||||
|
||||
await libraryManager.removeLibrary(source.id);
|
||||
await libraryManager.addLibrary(newLibrary);
|
||||
|
||||
const workingSource: WorkingLibrarySource = {
|
||||
...updatedSource,
|
||||
working: true,
|
||||
};
|
||||
|
||||
return workingSource;
|
||||
} catch (e) {
|
||||
throw createError({
|
||||
statusCode: 400,
|
||||
statusMessage: `Failed to create source: ${e}`,
|
||||
});
|
||||
}
|
||||
},
|
||||
);
|
||||
69
server/api/v1/admin/library/sources/index.post.ts
Normal file
69
server/api/v1/admin/library/sources/index.post.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { type } from "arktype";
|
||||
import { randomUUID } from "crypto";
|
||||
import { LibraryBackend } from "~/prisma/client";
|
||||
import { 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 "./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",
|
||||
]);
|
||||
if (!allowed) throw createError({ statusCode: 403 });
|
||||
|
||||
const body = await readValidatedBody(h3, CreateLibrarySource);
|
||||
const backend = Object.values(LibraryBackend).find(
|
||||
(e) => e == body.backend,
|
||||
);
|
||||
if (!backend)
|
||||
throw createError({
|
||||
statusCode: 400,
|
||||
statusMessage: "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,
|
||||
},
|
||||
});
|
||||
|
||||
await libraryManager.addLibrary(library);
|
||||
|
||||
const workingSource: WorkingLibrarySource = {
|
||||
...source,
|
||||
working: true,
|
||||
};
|
||||
|
||||
return workingSource;
|
||||
} catch (e) {
|
||||
throw createError({
|
||||
statusCode: 400,
|
||||
statusMessage: `Failed to create source: ${e}`,
|
||||
});
|
||||
}
|
||||
},
|
||||
);
|
||||
Reference in New Issue
Block a user