Spaces:
Sleeping
Sleeping
File size: 1,930 Bytes
ea8dde3 2aaeb25 ea8dde3 | 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | import NextAuth from "next-auth";
import Credentials from "next-auth/providers/credentials";
import { compareSync } from "bcryptjs";
import { db } from "./db";
import { eq } from "drizzle-orm";
import { users } from "./db/schema";
export const { handlers, signIn, signOut, auth } = NextAuth({
cookies: {
sessionToken: {
name: "__Secure-authjs.session-token",
options: {
httpOnly: true,
sameSite: "none",
path: "/",
secure: true,
},
},
csrfToken: {
name: "__Host-authjs.csrf-token",
options: {
httpOnly: true,
sameSite: "none",
path: "/",
secure: true,
},
},
callbackUrl: {
name: "__Secure-authjs.callback-url",
options: {
httpOnly: true,
sameSite: "none",
path: "/",
secure: true,
},
},
},
providers: [
Credentials({
credentials: {
email: { label: "Email", type: "email" },
password: { label: "Password", type: "password" },
},
async authorize(credentials) {
const email = credentials?.email as string;
const password = credentials?.password as string;
if (!email || !password) return null;
const user = db
.select()
.from(users)
.where(eq(users.email, email))
.get();
if (!user) return null;
if (!compareSync(password, user.passwordHash)) return null;
return { id: String(user.id), email: user.email, name: user.name };
},
}),
],
pages: {
signIn: "/login",
},
session: { strategy: "jwt" },
callbacks: {
async jwt({ token, user }) {
if (user) {
token.id = user.id;
}
return token;
},
async session({ session, token }) {
if (session.user && token.id) {
session.user.id = token.id as string;
}
return session;
},
},
});
|