-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.ts.bak
More file actions
100 lines (90 loc) · 2.81 KB
/
auth.ts.bak
File metadata and controls
100 lines (90 loc) · 2.81 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import NextAuth from "next-auth"
import type { NextAuthConfig } from "next-auth"
import GoogleProvider from "next-auth/providers/google"
import Credentials from "next-auth/providers/credentials"
import { getSupabaseAdmin } from "./lib/supabase"
const config: NextAuthConfig = {
providers: [
GoogleProvider({
clientId: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID || "",
clientSecret: process.env.GOOGLE_CLIENT_SECRET || "",
allowDangerousEmailAccountLinking: true,
}),
Credentials({
name: "Email & Password",
credentials: {
email: { label: "Email", type: "email", placeholder: "your@email.com" },
password: { label: "Password", type: "password" },
isSignup: { label: "Sign Up", type: "checkbox" },
},
async authorize(credentials) {
if (!credentials?.email || !credentials?.password) {
return null
}
const email = credentials.email as string
const password = credentials.password as string
const isSignup = credentials.isSignup === "true" || credentials.isSignup === true
try {
const supabaseAdmin = getSupabaseAdmin()
if (isSignup) {
const { data, error } = await supabaseAdmin.auth.signUpWithPassword({
email,
password,
})
if (error || !data.user) {
console.error(" Signup error:", error?.message)
return null
}
await supabaseAdmin.from("users").insert({
id: data.user.id,
email: data.user.email,
display_name: email.split("@")[0],
plan_type: "free",
})
return {
id: data.user.id,
email: data.user.email,
name: email.split("@")[0],
}
} else {
const { data, error } = await supabaseAdmin.auth.signInWithPassword({
email,
password,
})
if (error || !data.user) {
console.error(" Sign in error:", error?.message)
return null
}
return {
id: data.user.id,
email: data.user.email,
name: data.user.user_metadata?.name || email.split("@")[0],
}
}
} catch (error) {
console.error(" Auth error:", error)
return null
}
},
}),
],
pages: {
signIn: "/login",
error: "/login",
},
callbacks: {
async jwt({ token, user }) {
if (user) {
token.id = user.id
}
return token
},
async session({ session, token }) {
if (session.user) {
session.user.id = token.id as string
}
return session
},
},
}
export const { handlers, auth, signIn, signOut } = NextAuth(config)