59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import type { Context, MiddlewareHandler } from 'hono'
|
|
import { Toucan } from 'toucan-js'
|
|
import type { Options as ToucanOptions } from 'toucan-js'
|
|
|
|
declare module 'hono' {
|
|
interface ContextVariableMap {
|
|
sentry: Toucan
|
|
}
|
|
}
|
|
|
|
class MockContext implements ExecutionContext {
|
|
passThroughOnException(): void {
|
|
throw new Error('Method not implemented.')
|
|
}
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
async waitUntil(promise: Promise<any>): Promise<void> {
|
|
await promise
|
|
}
|
|
}
|
|
|
|
export type Options = Omit<ToucanOptions, 'request' | 'context'>
|
|
|
|
export const sentry = (
|
|
options?: Options,
|
|
callback?: (sentry: Toucan) => void
|
|
): MiddlewareHandler => {
|
|
return async (c, next) => {
|
|
let hasExecutionContext = true
|
|
try {
|
|
c.executionCtx
|
|
} catch {
|
|
hasExecutionContext = false
|
|
}
|
|
const sentry = new Toucan({
|
|
dsn: c.env?.SENTRY_DSN ?? c.env?.NEXT_PUBLIC_SENTRY_DSN,
|
|
requestDataOptions: {
|
|
allowedHeaders: ['user-agent'],
|
|
allowedSearchParams: /(.*)/,
|
|
},
|
|
request: c.req.raw,
|
|
context: hasExecutionContext ? c.executionCtx : new MockContext(),
|
|
...options,
|
|
})
|
|
c.set('sentry', sentry)
|
|
if (callback) {
|
|
callback(sentry)
|
|
}
|
|
|
|
await next()
|
|
if (c.error) {
|
|
sentry.captureException(c.error)
|
|
}
|
|
}
|
|
}
|
|
|
|
export const getSentry = (c: Context) => {
|
|
return c.get('sentry')
|
|
}
|