mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 08:12:40 +10:00
22 lines
684 B
TypeScript
22 lines
684 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
import libraryManager from "~/server/internal/library";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, ["library:read"]);
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
const unimportedGames = await libraryManager.fetchUnimportedGames();
|
|
const games = await libraryManager.fetchGamesWithStatus();
|
|
const redists = await libraryManager.fetchRedistsWithStatus();
|
|
const libraries = await libraryManager.fetchLibraries();
|
|
|
|
// Fetch other library data here
|
|
|
|
return {
|
|
unimportedGames,
|
|
games,
|
|
redists,
|
|
hasLibraries: libraries.length > 0,
|
|
};
|
|
});
|