-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathauth.js
71 lines (66 loc) · 2.22 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
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 User from "./models/userModels"; // Ensure this import is correct
import bcrypt from "bcrypt";
export const authOptions = {
session: {
strategy: 'jwt',
},
providers: [
CredentialsProvider({
credentials: {
email: {},
password: {},
},
async authorize(credentials) {
if (!credentials) 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 incorrect");
}
} else {
throw new Error("User not found");
}
} catch (error) {
throw new Error(error.message);
}
},
}),
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",
},
},
}),
],
};
export default NextAuth(authOptions);