feat(api): add log on authentication error
Some checks failed
Build and Push Docker Image / tests (push) Successful in 49s
Build and Push Docker Image / build (push) Failing after 1m6s

This commit is contained in:
Lars Hampe 2024-11-12 21:56:49 +01:00
parent 6c5f7c08b5
commit 32e5d3bb8d

View File

@ -1,4 +1,5 @@
import { access_token, db, user } from '@boring.tools/database'
import { logger } from '@boring.tools/logger'
import { clerkMiddleware, getAuth } from '@hono/clerk-auth'
import { eq } from 'drizzle-orm'
import type { Context, Next } from 'hono'
@ -52,6 +53,7 @@ export const verifyAuthentication = async (c: Context) => {
.where(eq(user.providerId, auth.userId))
if (!userEntry) {
logger.error('User not found - Unauthorized', { providerId: auth.userId })
throw new HTTPException(401, { message: 'Unauthorized' })
}