cal.pub0.org/pages/api/auth/[...nextauth].tsx

58 lines
1.8 KiB
TypeScript
Raw Normal View History

2021-03-24 15:03:04 +00:00
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
},
2021-03-29 21:01:12 +00:00
pages: {
signIn: '/auth/login',
signOut: '/auth/logout',
error: '/auth/error', // Error code passed in query string as ?error=
},
2021-03-24 15:03:04 +00:00
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};
}
})
],
2021-05-05 20:01:56 +00:00
callbacks: {
async jwt(token, user, account, profile, isNewUser) {
// Add username to the token right after signin
if (user?.username) {
token.username = user.username
}
return token;
},
async session(session, token) {
session.user = session.user || {}
session.user.username = token.username;
return session;
},
},
});