discord-clone/lib/initial-profile.ts

32 lines
700 B
TypeScript
Raw Normal View History

import { currentUser, redirectToSignIn } from "@clerk/nextjs";
import { db } from "@/lib/db";
export const initialProfile = async () => {
const user = await currentUser();
if (!user) {
return redirectToSignIn();
}
const profile = await db.profile.findUnique({
where: {
userId: user.id,
},
});
if (profile) {
return profile;
}
const newProfile = await db.profile.create({
data: {
userId: user.id,
name: `${user.firstName} ${user.lastName}`,
imageUrl : user.imageUrl,
email: user.emailAddresses[0].emailAddress,
},
});
return newProfile;
}