daveycodez
daveycodez
Explore posts from servers
BABetter Auth
Created by daveycodez on 3/12/2025 in #bug-reports
Drizzle adapter usePlural not working with passkey & JWT plugins
I'm having an issue with usePlural for Drizzle where passkey is being entered as passkey but jwks is being entered as jwkss. For passkey, I got it to properly generate the correct plural but I had to add the following to plugins:
passkey({
schema: {
passkey: {
fields: {}
}
}
}),
passkey({
schema: {
passkey: {
fields: {}
}
}
}),
It should automatically detect plurals. For JWKS, well tbh I don't even want to store my JWKS in the database at all, I want to provide it directly to auth to avoid queries. But I do not want to store it as "jwkss". This is how I had to configure jwks to store as jwks even with usePlural for Drizzle. modelName: jwk
jwt({
jwks: {
keyPairConfig: { alg: "ES256" }
},
schema: {
jwks: {
modelName: "jwk",
fields: {}
}
}
}),
jwt({
jwks: {
keyPairConfig: { alg: "ES256" }
},
schema: {
jwks: {
modelName: "jwk",
fields: {}
}
}
}),
This doesn't feel ideal, I think definitely passkeys should detect usePlural on its own without needing to pass schema
7 replies
BABetter Auth
Created by daveycodez on 3/11/2025 in #bug-reports
getSessionCookie is broken in Next.js middleware
I have to manually check my cookies in middleware, which works just fine. But getSessionCookie never returns.
import { type NextRequest, NextResponse } from "next/server"

export async function middleware(request: NextRequest) {
// const sessionCookie = getSessionCookie(request) // Broken

if (!request.cookies.has("better-auth.session_token")) {
const redirectTo = request.nextUrl.pathname + request.nextUrl.search
return NextResponse.redirect(new URL(`/auth/sign-in?redirectTo=${redirectTo}`, request.url))
}

return NextResponse.next()
}

export const config = {
matcher: ["/auth/settings"]
}
import { type NextRequest, NextResponse } from "next/server"

export async function middleware(request: NextRequest) {
// const sessionCookie = getSessionCookie(request) // Broken

if (!request.cookies.has("better-auth.session_token")) {
const redirectTo = request.nextUrl.pathname + request.nextUrl.search
return NextResponse.redirect(new URL(`/auth/sign-in?redirectTo=${redirectTo}`, request.url))
}

return NextResponse.next()
}

export const config = {
matcher: ["/auth/settings"]
}
133 replies
BABetter Auth
Created by daveycodez on 1/27/2025 in #bug-reports
api.auth.getSession calls SELECT session and SELECT user separately
Calling getSession, if it doesn't find a cookie, it sends 2 DB queries to select the session and then the user. It would be a lot more performant to send a single query with a join, avoiding waterfall latency
1 replies
DTDrizzle Team
Created by daveycodez on 1/13/2025 in #help
Inferring Types from Schema?
No description
5 replies