62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
import { currentProfile } from "@/lib/current-profile";
|
|
import { redirectToSignIn } from "@clerk/nextjs";
|
|
import { redirect } from "next/navigation";
|
|
import { db } from "@/lib/db";
|
|
|
|
interface InviteCodePageProps {
|
|
params: {
|
|
inviteCode: string;
|
|
};
|
|
};
|
|
|
|
const InviteCodePage = async ({
|
|
params
|
|
}: InviteCodePageProps) => {
|
|
const profile = await currentProfile();
|
|
|
|
if (!profile) {
|
|
return redirectToSignIn();
|
|
}
|
|
|
|
if (!params?.inviteCode) {
|
|
return redirect("/");
|
|
}
|
|
|
|
const existingServer = await db.server.findFirst({
|
|
where: {
|
|
inviteCode: params.inviteCode,
|
|
members: {
|
|
some: {
|
|
profileId: profile.id,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (existingServer) {
|
|
return redirect(`/servers/${existingServer.id}`);
|
|
}
|
|
|
|
const server= await db.server.update({
|
|
where: {
|
|
inviteCode: params.inviteCode,
|
|
},
|
|
data: {
|
|
members: {
|
|
create: [
|
|
{
|
|
profileId: profile.id,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|
|
|
|
if(server) {
|
|
return redirect(`/servers/${server.id}`);
|
|
}
|
|
|
|
return null
|
|
}
|
|
|
|
export default InviteCodePage; |