-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.js
90 lines (81 loc) · 2.56 KB
/
auth.js
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
83
84
85
import NextAuth from "next-auth";
import GoogleProvider from "next-auth/providers/google";
import GitHubProvider from "next-auth/providers/github";
import CredentialsProvider from "next-auth/providers/credentials";
import bcrypt from "bcryptjs";
import { User } from "./models/user-model";
import { authConfig } from "./auth.config";
export const {
handlers: { GET, POST },
auth,
signIn,
signOut,
} = NextAuth({
...authConfig,
// callbacks: {
// async jwt({ token, user }) {
// if (user) {
// token.id = user.id;
// }
// return token;
// },
// async session({ session, token }) {
// session.user.id = token.id;
// return session;
// },
// },
providers: [
CredentialsProvider({
credentials: {
email: {},
password: {},
},
async authorize(credentials) {
if (credentials === null) return null;
try {
const user = await User.findOne({
email: credentials?.email
})
console.log(user);
if (user) {
const isMatch = await bcrypt.compare(
credentials.password,
user.password
);
if (isMatch) {
return user;
} else {
throw new Error("Email or Password is not correct");
}
} else {
throw new Error("User not found");
}
} catch (error) {
throw new Error(error);
}
},
}),
GoogleProvider({
clientId: process.env.GOOGLE_CLIENT_ID,
clientSecret: process.env.GOOGLE_CLIENT_SECRET,
authorization: {
params: {
prompt: "consent",
access_type: "offline",
response_type: "code",
},
},
}),
GitHubProvider({
clientId: process.env.GITHUB_CLIENT_ID,
clientSecret: process.env.GITHUB_CLIENT_SECRET,
authorization: {
params: {
prompt: "consent",
access_type: "offline",
response_type: "code",
},
},
}),
],
});