-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.ts
32 lines (30 loc) · 867 Bytes
/
auth.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import NextAuth from "next-auth";
import { PrismaAdapter } from "@auth/prisma-adapter";
import { PrismaClient } from "@prisma/client";
import authConfig from "./auth.config";
import { getUserById } from "./data/user";
const prisma = new PrismaClient();
export const { auth, handlers, signIn, signOut } = NextAuth({
pages: {
signIn: "/",
},
callbacks: {
async session({ session, token }) {
if (session.user && token.sub) {
session.user.id = token.sub;
}
return session;
},
async jwt({ token }) {
if (!token.sub) return token;
const existingUser = await getUserById(token.sub);
if (!existingUser) return null;
token.name = existingUser.name;
token.id = existingUser.id;
return token;
},
},
adapter: PrismaAdapter(prisma),
session: { strategy: "jwt" },
...authConfig,
});