mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
* feat: small library tweaks + company page * feat: new store view * fix: ci merge error * feat: add genres to store page * feat: sorting * feat: lock game/version imports while their tasks are running * feat: feature games * feat: tag based filtering * fix: make tags alphabetical * refactor: move a bunch of i18n to common * feat: add localizations for everything * fix: title description on panel * fix: feature carousel text * fix: i18n footer strings * feat: add tag page * fix: develop merge * feat: offline games support (don't error out if provider throws) * feat: tag management * feat: show library next to game import + small fixes * feat: most of the company and tag managers * feat: company text field editing * fix: small fixes + tsgo experiemental * feat: upload icon and banner * feat: store infinite scrolling and bulk import mode * fix: lint * fix: add drop-base to prettier ignore
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import aclManager from "~/server/internal/acls";
|
|
import prisma from "~/server/internal/db/database";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, ["company:read"]);
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
const id = getRouterParam(h3, "id")!;
|
|
|
|
const company = await prisma.company.findUnique({
|
|
where: { id },
|
|
include: {
|
|
published: {
|
|
select: {
|
|
id: true,
|
|
},
|
|
},
|
|
developed: {
|
|
select: {
|
|
id: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
if (!company)
|
|
throw createError({ statusCode: 404, statusMessage: "Company not found" });
|
|
const games = await prisma.game.findMany({
|
|
where: {
|
|
OR: [
|
|
{
|
|
developers: {
|
|
some: {
|
|
id: company.id,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
publishers: {
|
|
some: {
|
|
id: company.id,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
distinct: ["id"],
|
|
});
|
|
const companyFlatten = {
|
|
...company,
|
|
developed: company.developed.map((e) => e.id),
|
|
published: company.published.map((e) => e.id),
|
|
};
|
|
return { company: companyFlatten, games };
|
|
});
|