-
Notifications
You must be signed in to change notification settings - Fork 1
/
auth.ts
46 lines (39 loc) · 1.14 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import NextAuth from "next-auth";
import { PrismaAdapter } from "@auth/prisma-adapter";
import { db } from "./lib/db";
import authConfig from "./auth.config";
import { getUserById } from "./data/user";
export const {
handlers: { GET, POST },
auth,
signIn,
signOut
} = NextAuth({
callbacks: {
async signIn({ user, account }) {
// Allow OAuth accounts to sign in without email verification
if (account?.provider !== "credentials") {
return true;
}
// Ensure the user has verified their email
const existingUser = await getUserById(user.id as string);
if (!existingUser?.emailVerified) {
return false;
}
// TODO: Add 2FA check here
return true;
},
async session({token, session}) {
if (token.sub && session.user) {
session.user.id = token.sub;
}
return session;
},
async jwt({token}) {
return token;
}
},
adapter: PrismaAdapter(db),
session: { strategy: "jwt" },
...authConfig,
})