feat(api): add log on authentication error
This commit is contained in:
parent
6c5f7c08b5
commit
32e5d3bb8d
@ -1,4 +1,5 @@
|
|||||||
import { access_token, db, user } from '@boring.tools/database'
|
import { access_token, db, user } from '@boring.tools/database'
|
||||||
|
import { logger } from '@boring.tools/logger'
|
||||||
import { clerkMiddleware, getAuth } from '@hono/clerk-auth'
|
import { clerkMiddleware, getAuth } from '@hono/clerk-auth'
|
||||||
import { eq } from 'drizzle-orm'
|
import { eq } from 'drizzle-orm'
|
||||||
import type { Context, Next } from 'hono'
|
import type { Context, Next } from 'hono'
|
||||||
@ -52,6 +53,7 @@ export const verifyAuthentication = async (c: Context) => {
|
|||||||
.where(eq(user.providerId, auth.userId))
|
.where(eq(user.providerId, auth.userId))
|
||||||
|
|
||||||
if (!userEntry) {
|
if (!userEntry) {
|
||||||
|
logger.error('User not found - Unauthorized', { providerId: auth.userId })
|
||||||
throw new HTTPException(401, { message: 'Unauthorized' })
|
throw new HTTPException(401, { message: 'Unauthorized' })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user