45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import type { LoaderFunctionArgs } from "@remix-run/server-runtime";
|
|
import { json } from "@remix-run/server-runtime";
|
|
import type { GetOrgsResponseBody } 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) {
|
|
try {
|
|
const authenticationResult = await authenticateApiRequestWithPersonalAccessToken(request);
|
|
|
|
if (!authenticationResult) {
|
|
return json({ error: "Invalid or Missing Access Token" }, { status: 401 });
|
|
}
|
|
|
|
const orgs = await prisma.organization.findMany({
|
|
where: {
|
|
deletedAt: null,
|
|
members: {
|
|
some: {
|
|
userId: authenticationResult.userId,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!orgs) {
|
|
return json({ error: "Orgs not found" }, { status: 404 });
|
|
}
|
|
|
|
const result: GetOrgsResponseBody = orgs.map((org) => ({
|
|
id: org.id,
|
|
title: org.title,
|
|
slug: org.slug,
|
|
createdAt: org.createdAt,
|
|
}));
|
|
|
|
return json(result);
|
|
} catch (error) {
|
|
if (error instanceof Response) throw error;
|
|
logger.error("Failed to list orgs", { error });
|
|
return json({ error: "Internal Server Error" }, { status: 500 });
|
|
}
|
|
}
|