-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.ts
31 lines (30 loc) · 936 Bytes
/
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
import NextAuth from "next-auth";
import { PrismaAdapter } from "@auth/prisma-adapter";
import { db } from "./lib/db";
import authConfig from "@/auth.config";
import { getUserById } from "./data/user";
export const { auth, handlers, signIn, signOut } = NextAuth({
adapter: PrismaAdapter(db),
session: { strategy: "jwt" },
callbacks: {
async jwt({ token }) {
if (!token.sub) return token;
const existingUser = await getUserById(token.sub);
if (!existingUser) return token;
token.username = existingUser.username;
token.saldo = existingUser.saldo;
return token;
},
async session({ session, token }) {
session.user.id = token.sub!;
if (session.user && token.username) {
session.user.username = token.username;
}
if (session.user && token.saldo) {
session.user.saldo = token.saldo;
}
return session;
},
},
...authConfig,
});