60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
import NextAuth from "next-auth";
|
|
import Credentials from "next-auth/providers/credentials";
|
|
import { prisma } from "@/lib/db";
|
|
import bcrypt from "bcryptjs";
|
|
|
|
export const { handlers, auth, signIn, signOut } = NextAuth({
|
|
trustHost: true,
|
|
providers: [
|
|
Credentials({
|
|
name: "credentials",
|
|
credentials: {
|
|
email: { label: "Email", type: "email" },
|
|
password: { label: "Mot de passe", type: "password" },
|
|
},
|
|
async authorize(credentials) {
|
|
if (!credentials?.email || !credentials?.password) return null;
|
|
const user = await prisma.user.findUnique({
|
|
where: { email: String(credentials.email) },
|
|
});
|
|
if (!user?.passwordHash) return null;
|
|
const ok = await bcrypt.compare(String(credentials.password), user.passwordHash);
|
|
if (!ok) return null;
|
|
return {
|
|
id: user.id,
|
|
email: user.email,
|
|
name: user.name,
|
|
role: user.role,
|
|
};
|
|
},
|
|
}),
|
|
],
|
|
pages: {
|
|
signIn: "/auth/login",
|
|
},
|
|
callbacks: {
|
|
async jwt({ token, user }) {
|
|
if (user) {
|
|
token.id = user.id;
|
|
token.email = user.email;
|
|
token.role = (user as { role?: string }).role;
|
|
} else if (token.id && !token.role) {
|
|
const u = await prisma.user.findUnique({
|
|
where: { id: token.id as string },
|
|
select: { role: true },
|
|
});
|
|
token.role = u?.role;
|
|
}
|
|
return token;
|
|
},
|
|
session({ session, token }) {
|
|
if (session.user) {
|
|
session.user.id = token.id as string;
|
|
session.user.role = token.role as string;
|
|
}
|
|
return session;
|
|
},
|
|
},
|
|
session: { strategy: "jwt", maxAge: 30 * 24 * 60 * 60 },
|
|
});
|