-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.ts
79 lines (67 loc) · 2.01 KB
/
auth.ts
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
import { neon } from "@neondatabase/serverless";
import NextAuth from "next-auth";
import GoogleProvider from "next-auth/providers/google";
const sql = neon(process.env.DATABASE_URL!);
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [
GoogleProvider({
clientId: process.env.AUTH_GOOGLE_ID!,
clientSecret: process.env.AUTH_GOOGLE_SECRET!,
}),
],
callbacks: {
async signIn({ user }) {
const { email, name, id: googleId } = user; // Google ID
try {
// Check EMAIL
const existingUser = await sql`
SELECT id, google_id FROM users WHERE email = ${email}
`;
let userId;
if (existingUser.length > 0) {
userId = existingUser[0].id;
// If the stored Google ID is different, update it
if (!existingUser[0].google_id || existingUser[0].google_id !== googleId) {
await sql`
UPDATE users SET google_id = ${googleId} WHERE id = ${userId}
`;
}
} else {
// Insert new user if they don’t exist
const newUser = await sql`
INSERT INTO users (id, google_id, email, name)
VALUES (gen_random_uuid(), ${googleId}, ${email}, ${name})
RETURNING id;
`;
userId = newUser[0].id;
}
return true;
} catch (error) {
return false;
}
},
async session({ session}) {
if (session.user) {
const dbUser = await sql`
SELECT id, google_id, name, email FROM users WHERE email = ${session.user.email}
`;
if (dbUser.length > 0) {
const user = dbUser[0];
session.user = {
...session.user,
id: user.id,
google_id: user.google_id,
};
}
}
return session;
},
async jwt({ token, user }) {
if (user) {
token.google_id = user.id as string;
}
return token;
},
},
secret: process.env.NEXTAUTH_SECRET,
});