41 lines
1021 B
TypeScript
41 lines
1021 B
TypeScript
import { type LoaderFunctionArgs, redirect } from "@remix-run/server-runtime";
|
|
import { z } from "zod";
|
|
import { prisma } from "~/db.server";
|
|
import { requireUserId } from "~/services/session.server";
|
|
|
|
const ParamsSchema = z.object({
|
|
projectRef: z.string(),
|
|
deploymentParam: z.string(),
|
|
});
|
|
|
|
export async function loader({ params, request }: LoaderFunctionArgs) {
|
|
const userId = await requireUserId(request);
|
|
|
|
const validatedParams = ParamsSchema.parse(params);
|
|
|
|
const project = await prisma.project.findFirst({
|
|
where: {
|
|
externalRef: validatedParams.projectRef,
|
|
organization: {
|
|
members: {
|
|
some: {
|
|
userId,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
include: {
|
|
organization: true,
|
|
},
|
|
});
|
|
|
|
if (!project) {
|
|
return new Response("Not found", { status: 404 });
|
|
}
|
|
|
|
// Redirect to the project's deployments page
|
|
return redirect(
|
|
`/orgs/${project.organization.slug}/projects/${project.slug}/deployments/${validatedParams.deploymentParam}`
|
|
);
|
|
}
|