fix(api): user routes
This commit is contained in:
parent
e8d790d799
commit
fc125519b9
@ -4,6 +4,7 @@ import { createRoute } from '@hono/zod-openapi'
|
||||
import { eq } from 'drizzle-orm'
|
||||
|
||||
import type { userApi } from '.'
|
||||
import { verifyAuthentication } from '../utils/authentication'
|
||||
import { openApiErrorResponses, openApiSecurity } from '../utils/openapi'
|
||||
|
||||
const route = createRoute({
|
||||
@ -24,9 +25,9 @@ const route = createRoute({
|
||||
|
||||
export const registerUserGet = (api: typeof userApi) => {
|
||||
return api.openapi(route, async (c) => {
|
||||
const user = c.get('user')
|
||||
const userId = await verifyAuthentication(c)
|
||||
const result = await db.query.user.findFirst({
|
||||
where: eq(userDb.id, user.id),
|
||||
where: eq(userDb.id, userId),
|
||||
})
|
||||
|
||||
if (!result) {
|
||||
|
@ -70,7 +70,11 @@ export const registerUserWebhook = (api: typeof userApi) => {
|
||||
case 'user.created': {
|
||||
const result = await userCreate({ payload: verifiedPayload })
|
||||
logger.info('Clerk Webhook', result)
|
||||
return c.json(UserOutput.parse(result), 200)
|
||||
if (result) {
|
||||
return c.json({}, 204)
|
||||
}
|
||||
|
||||
return c.json({}, 404)
|
||||
}
|
||||
default:
|
||||
throw new HTTPException(404, { message: 'Webhook type not supported' })
|
||||
|
Loading…
Reference in New Issue
Block a user