38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
|
import NextAuth from 'next-auth';
|
||
|
import Providers from 'next-auth/providers';
|
||
|
import prisma from '../../../lib/prisma';
|
||
|
import {verifyPassword} from "../../../lib/auth";
|
||
|
|
||
|
export default NextAuth({
|
||
|
session: {
|
||
|
jwt: true
|
||
|
},
|
||
|
providers: [
|
||
|
Providers.Credentials({
|
||
|
name: 'Calendso',
|
||
|
credentials: {
|
||
|
email: { label: "Email Address", type: "email", placeholder: "john.doe@example.com" },
|
||
|
password: { label: "Password", type: "password", placeholder: "Your super secure password" }
|
||
|
},
|
||
|
async authorize(credentials) {
|
||
|
const user = await prisma.user.findFirst({
|
||
|
where: {
|
||
|
email: credentials.email
|
||
|
}
|
||
|
});
|
||
|
|
||
|
if (!user) {
|
||
|
throw new Error('No user found');
|
||
|
}
|
||
|
|
||
|
const isValid = await verifyPassword(credentials.password, user.password);
|
||
|
|
||
|
if (!isValid) {
|
||
|
throw new Error('Incorrect password');
|
||
|
}
|
||
|
|
||
|
return {id: user.id, username: user.username, email: user.email, name: user.name};
|
||
|
}
|
||
|
})
|
||
|
],
|
||
|
});
|