feat(api): add clerk webhook logging
This commit is contained in:
parent
30b0a1c584
commit
3535b97cfa
@ -8,6 +8,7 @@
|
||||
"dependencies": {
|
||||
"@boring.tools/database": "workspace:*",
|
||||
"@boring.tools/schema": "workspace:*",
|
||||
"@boring.tools/logger": "workspace:*",
|
||||
"@hono/clerk-auth": "^2.0.0",
|
||||
"@hono/zod-openapi": "^0.16.2",
|
||||
"@scalar/hono-api-reference": "^0.5.149",
|
||||
|
@ -1,3 +1,4 @@
|
||||
import { logger } from '@boring.tools/logger'
|
||||
import { OpenAPIHono } from '@hono/zod-openapi'
|
||||
import { HTTPException } from 'hono/http-exception'
|
||||
import { Webhook } from 'svix'
|
||||
@ -27,8 +28,10 @@ app.openapi(webhook.route, async (c) => {
|
||||
const headers = c.req.header()
|
||||
const verifiedPayload = wh.verify(JSON.stringify(payload), headers)
|
||||
const result = await webhook.func({ payload: verifiedPayload })
|
||||
logger.info('Clerk Webhook', result)
|
||||
return c.json(result, 200)
|
||||
} catch (error) {
|
||||
logger.error('Clert Webhook', error)
|
||||
if (error instanceof HTTPException) {
|
||||
return c.json({ message: error.message }, error.status)
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { migrateDatabase } from '@boring.tools/database'
|
||||
import { logger } from '@boring.tools/logger'
|
||||
|
||||
declare module 'bun' {
|
||||
interface Env {
|
||||
@ -12,7 +13,7 @@ declare module 'bun' {
|
||||
export const startup = async () => {
|
||||
if (import.meta.env.NODE_ENV === 'test') {
|
||||
if (!import.meta.env.POSTGRES_URL) {
|
||||
console.error('Env Var POSTGRES_URL is missing!')
|
||||
logger.error('Env Var POSTGRES_URL is missing!')
|
||||
process.exit(0)
|
||||
}
|
||||
return
|
||||
@ -25,7 +26,7 @@ export const startup = async () => {
|
||||
]
|
||||
keys.map((key) => {
|
||||
if (!import.meta.env[key]) {
|
||||
console.error(`Env Var ${key} is missing!`)
|
||||
logger.error(`Env Var ${key} is missing!`)
|
||||
process.exit(0)
|
||||
}
|
||||
})
|
||||
@ -33,4 +34,6 @@ export const startup = async () => {
|
||||
if (import.meta.env.NODE_ENV === 'production') {
|
||||
await migrateDatabase('migrations')
|
||||
}
|
||||
|
||||
logger.info('API started')
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user