Initial commit

This commit is contained in:
2026-03-05 16:46:38 +07:00
commit 112e8604e2
124 changed files with 14369 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
import { NextAuthOptions } from "next-auth"
import GoogleProvider from "next-auth/providers/google"
import { PrismaAdapter } from "@auth/prisma-adapter"
import { prisma } from "./prisma"
export const authOptions: NextAuthOptions = {
adapter: PrismaAdapter(prisma) as any, // ép kiểu vì type mismatch nhỏ
providers: [
GoogleProvider({
clientId: process.env.GOOGLE_CLIENT_ID || "demo-id",
clientSecret: process.env.GOOGLE_CLIENT_SECRET || "demo-secret",
}),
],
session: {
// Để giữ NextAuth dùng JWT thay vì lưu phiên vào DB nếu thích, nhưng khi dùng PrismaAdapter, mặc định nó dùng DB strategy.
// strategy: "jwt",
},
callbacks: {
async session({ session, user }) {
if (session.user) {
// Lấy role từ DB gán vào session
const dbUser = await prisma.user.findUnique({
where: { email: session.user.email as string },
select: { role: true, id: true },
})
session.user.id = dbUser?.id || user.id
session.user.role = dbUser?.role || "USER"
}
return session
},
},
// Tuân thủ bảo mật NextAuth
secret: process.env.NEXTAUTH_SECRET,
}