61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import type { LoaderFunctionArgs } from "@remix-run/server-runtime";
|
|
import { json } from "@remix-run/server-runtime";
|
|
import type { GetProjectsResponseBody } from "@trigger.dev/core/v3";
|
|
import { prisma } from "~/db.server";
|
|
import { logger } from "~/services/logger.server";
|
|
import { authenticateApiRequestWithPersonalAccessToken } from "~/services/personalAccessToken.server";
|
|
|
|
export async function loader({ request }: LoaderFunctionArgs) {
|
|
logger.info("get projects", { url: request.url });
|
|
|
|
try {
|
|
const authenticationResult = await authenticateApiRequestWithPersonalAccessToken(request);
|
|
|
|
if (!authenticationResult) {
|
|
return json({ error: "Invalid or Missing Access Token" }, { status: 401 });
|
|
}
|
|
|
|
const projects = await prisma.project.findMany({
|
|
where: {
|
|
organization: {
|
|
deletedAt: null,
|
|
members: {
|
|
some: {
|
|
userId: authenticationResult.userId,
|
|
},
|
|
},
|
|
},
|
|
version: "V3",
|
|
deletedAt: null,
|
|
},
|
|
include: {
|
|
organization: true,
|
|
},
|
|
});
|
|
|
|
if (!projects) {
|
|
return json({ error: "Projects not found" }, { status: 404 });
|
|
}
|
|
|
|
const result: GetProjectsResponseBody = projects.map((project) => ({
|
|
id: project.id,
|
|
externalRef: project.externalRef,
|
|
name: project.name,
|
|
slug: project.slug,
|
|
createdAt: project.createdAt,
|
|
organization: {
|
|
id: project.organization.id,
|
|
title: project.organization.title,
|
|
slug: project.organization.slug,
|
|
createdAt: project.organization.createdAt,
|
|
},
|
|
}));
|
|
|
|
return json(result);
|
|
} catch (error) {
|
|
if (error instanceof Response) throw error;
|
|
logger.error("Failed to list projects", { error });
|
|
return json({ error: "Internal Server Error" }, { status: 500 });
|
|
}
|
|
}
|