-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.ts
More file actions
78 lines (72 loc) · 1.98 KB
/
auth.ts
File metadata and controls
78 lines (72 loc) · 1.98 KB
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
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 { getUserByEmail } from "@/lib/sample-data";
import { getUserByEmailNew } from "./lib/functions";
export const {
handlers: { GET, POST },
auth,
signIn,
signOut,
} = NextAuth({
session: {
strategy: "jwt",
},
providers: [
CredentialsProvider({
credentials: {
email: {},
password: {},
},
async authorize(credentials) {
if (!credentials) {
return null;
}
try {
const email = credentials?.email as string;
// const user = getUserByEmail(email);
const user = await getUserByEmailNew(email);
if (!user) {
// Return null if user is not found and pass an error message
throw new Error("User not found.");
}
if (user) {
const isMatch = user?.password === credentials.password;
if (isMatch) {
return user;
} else {
throw new Error("Email or Password is not correct");
}
} else {
throw new Error("User not found");
}
} catch (error: any) {
throw new Error(error.message || "An unexpected error occurred.");
}
},
}),
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",
},
},
}),
],
});