forked from MOHITH-2002/Qr-Tickets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.ts
82 lines (53 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import NextAuth from "next-auth"
import authConfig from "@/auth.config";
import { MongoDBAdapter } from "@auth/mongodb-adapter";
import clientPromise from "./lib/mongodb";
import User from "@/lib/database/model/user";
import { connectToDb } from "./lib/database/db";
export const {
handlers: { GET, POST },
auth,
signIn,
signOut,
} = NextAuth({
pages: {
signIn: "/auth/login",
error: "/auth/error",
},
callbacks:{
async signIn({ user, account}:any) {
// if (account?.provider !== "credentials") return true;
// Prevent sign in without email verification
if (account?.provider === "google") {
await connectToDb();
try {
const existingUser= await User.findOne({ email: user.email});
if(existingUser?.emailVerified === null) return false;
if (!existingUser) {
const newUser = new User({
name: user.name,
email: user.email,
image: user.image || "",
emailVerified: new Date(),
});
await newUser.save();
}
} catch (err) {
console.log(err);
return false;
}
}
return true;
},
async session({ session, user, token }) {
return session
},
async jwt({ token }) {
return token
}
},
secret: process.env.AUTH_SECRET,
adapter: MongoDBAdapter(clientPromise),
session: { strategy: "jwt" },
...authConfig,
});