From 53247d382d7083ffcd9f3da95a90df0bd616a59e Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Thu, 4 Apr 2024 00:49:52 +0200 Subject: [PATCH] N-FIN-79: remove unused auth.ts --- src/auth.ts | 67 ----------------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 src/auth.ts diff --git a/src/auth.ts b/src/auth.ts deleted file mode 100644 index ae752a6..0000000 --- a/src/auth.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { Lucia } from 'lucia'; -import { PrismaAdapter } from '@lucia-auth/adapter-prisma'; -import { cookies } from 'next/headers'; -import prisma from '@/prisma'; - -const adapter = new PrismaAdapter(prisma.session, prisma.user); - -export const lucia = new Lucia(adapter, { - sessionCookie: { - expires: false, - attributes: { - sameSite: 'strict', - domain: process.env.NODE_ENV === 'production' ? process.env.COOKIE_DOMAIN : undefined, - secure: process.env.NODE_ENV === 'production', - }, - }, - getUserAttributes: (attributes) => { - return { - username: attributes.username, - }; - }, -}); - -declare module 'lucia' { - interface Register { - Lucia: typeof lucia; - DatabaseUserAttributes: DatabaseUserAttributes; - } -} - -interface DatabaseUserAttributes { - username: string; -} - -export function getSessionId() { - return cookies().get(lucia.sessionCookieName)?.value ?? null; -} - -export async function getSession() { - const sessionId = getSessionId(); - if (!sessionId) { - return null; - } - const {session} = await lucia.validateSession(sessionId); - return session; -} - -export async function getUser() { - const sessionId = getSessionId(); - if (!sessionId) { - return null; - } - const {user, session} = await lucia.validateSession(sessionId); - try { - if (session && session.fresh) { - const sessionCookie = lucia.createSessionCookie(session.id); - cookies().set(sessionCookie.name, sessionCookie.value, sessionCookie.attributes); - } - if (!session) { - const sessionCookie = lucia.createBlankSessionCookie(); - cookies().set(sessionCookie.name, sessionCookie.value, sessionCookie.attributes); - } - } catch { - // Next.js throws error when attempting to set cookies when rendering page - } - return user; -}