-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.ts
More file actions
84 lines (78 loc) · 1.88 KB
/
auth.ts
File metadata and controls
84 lines (78 loc) · 1.88 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
79
80
81
82
83
84
import NextAuth from "next-auth";
import CredentialsProvider from "next-auth/providers/credentials";
// Demo users for testing
const DEMO_USERS = [
{
id: "user-1",
name: "Free User",
email: "free@example.com",
password: "password123",
subscriptionTier: "free",
},
{
id: "user-2",
name: "Pro User",
email: "pro@example.com",
password: "password123",
subscriptionTier: "pro",
},
{
id: "user-3",
name: "Team User",
email: "team@example.com",
password: "password123",
subscriptionTier: "team",
},
];
export const config = {
providers: [
CredentialsProvider({
name: "Credentials",
credentials: {
email: { label: "Email", type: "email" },
password: { label: "Password", type: "password" },
},
async authorize(credentials) {
if (!credentials?.email || !credentials?.password) {
return null;
}
// Find user in demo users
const user = DEMO_USERS.find(
(user) =>
user.email === credentials.email &&
user.password === credentials.password
);
if (user) {
return {
id: user.id,
name: user.name,
email: user.email,
subscriptionTier: user.subscriptionTier,
};
}
return null;
},
}),
],
callbacks: {
async jwt({ token, user }) {
if (user) {
token.subscriptionTier = user.subscriptionTier || "free";
token.userId = user.id;
}
return token;
},
async session({ session, token }) {
if (session.user) {
session.user.subscriptionTier = token.subscriptionTier as string;
session.user.id = token.userId as string;
}
return session;
},
},
pages: {
signIn: "/login",
},
debug: true,
};
export const { auth, signIn, signOut } = NextAuth(config);