d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
144 lines
4.7 KiB
TypeScript
144 lines
4.7 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { safeCompare } from '@sim/security/compare'
|
|
import { hmacSha256Hex } from '@sim/security/hmac'
|
|
import { isRecordLike } from '@sim/utils/object'
|
|
import type {
|
|
EventMatchContext,
|
|
FormatInputContext,
|
|
FormatInputResult,
|
|
WebhookProviderHandler,
|
|
} from '@/lib/webhooks/providers/types'
|
|
import { createHmacVerifier } from '@/lib/webhooks/providers/utils'
|
|
|
|
const logger = createLogger('WebhookProvider:Sentry')
|
|
|
|
/**
|
|
* Sentry signs webhooks with the Internal Integration's Client Secret using
|
|
* HMAC-SHA256 over the raw request body, delivered in the
|
|
* `sentry-hook-signature` header as a hex digest.
|
|
*
|
|
* @see https://docs.sentry.io/organization/integrations/integration-platform/webhooks/
|
|
*/
|
|
function validateSentrySignature(secret: string, signature: string, body: string): boolean {
|
|
try {
|
|
if (!secret || !signature || !body) {
|
|
return false
|
|
}
|
|
const computedHash = hmacSha256Hex(body, secret)
|
|
return safeCompare(computedHash, signature)
|
|
} catch (error) {
|
|
logger.error('Error validating Sentry signature:', error)
|
|
return false
|
|
}
|
|
}
|
|
|
|
/** Header carrying the resource type that triggered the webhook. */
|
|
const SENTRY_RESOURCE_HEADER = 'sentry-hook-resource'
|
|
|
|
/**
|
|
* Exposes the payload's `type` field as `eventType`. `TriggerOutput` reserves
|
|
* the `type` key, so nested `type` fields are surfaced under an alias for the
|
|
* tag dropdown (the original `type` is preserved on the passthrough object).
|
|
*/
|
|
function aliasEventType(entity: unknown): Record<string, unknown> | null {
|
|
if (!isRecordLike(entity)) return null
|
|
return { ...entity, eventType: entity.type ?? null }
|
|
}
|
|
|
|
export const sentryHandler: WebhookProviderHandler = {
|
|
verifyAuth: createHmacVerifier({
|
|
configKey: 'clientSecret',
|
|
headerName: 'Sentry-Hook-Signature',
|
|
validateFn: validateSentrySignature,
|
|
providerLabel: 'Sentry',
|
|
requireSecret: true,
|
|
}),
|
|
|
|
async matchEvent({ body, request, requestId, providerConfig }: EventMatchContext) {
|
|
const triggerId = providerConfig.triggerId as string | undefined
|
|
if (triggerId) {
|
|
const resource = request.headers.get(SENTRY_RESOURCE_HEADER)
|
|
const obj = isRecordLike(body) ? body : {}
|
|
const action = typeof obj.action === 'string' ? obj.action : undefined
|
|
|
|
const { isSentryEventMatch } = await import('@/triggers/sentry/utils')
|
|
if (!isSentryEventMatch(triggerId, resource, action)) {
|
|
logger.debug(
|
|
`[${requestId}] Sentry event mismatch for trigger ${triggerId}. Resource: ${resource}, Action: ${action}. Skipping.`
|
|
)
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
},
|
|
|
|
async formatInput({ body, headers }: FormatInputContext): Promise<FormatInputResult> {
|
|
const b = isRecordLike(body) ? body : {}
|
|
const data = isRecordLike(b.data) ? b.data : {}
|
|
const resource = headers[SENTRY_RESOURCE_HEADER] || ''
|
|
|
|
const envelope = {
|
|
action: (b.action as string) || '',
|
|
installation: b.installation ?? null,
|
|
actor: b.actor ?? null,
|
|
}
|
|
|
|
switch (resource) {
|
|
case 'issue':
|
|
return { input: { ...envelope, issue: aliasEventType(data.issue) } }
|
|
case 'error':
|
|
return { input: { ...envelope, error: aliasEventType(data.error) } }
|
|
case 'event_alert':
|
|
return {
|
|
input: {
|
|
...envelope,
|
|
event: data.event ?? null,
|
|
triggered_rule: (data.triggered_rule as string) ?? '',
|
|
issue_alert: data.issue_alert ?? null,
|
|
},
|
|
}
|
|
case 'metric_alert':
|
|
return {
|
|
input: {
|
|
...envelope,
|
|
metric_alert: data.metric_alert ?? null,
|
|
description_text: (data.description_text as string) ?? '',
|
|
description_title: (data.description_title as string) ?? '',
|
|
web_url: (data.web_url as string) ?? '',
|
|
},
|
|
}
|
|
default:
|
|
return { input: { ...envelope, data } }
|
|
}
|
|
},
|
|
|
|
extractIdempotencyId(body: unknown): string | null {
|
|
if (!isRecordLike(body)) return null
|
|
|
|
const data = isRecordLike(body.data) ? body.data : {}
|
|
const action = typeof body.action === 'string' ? body.action : ''
|
|
|
|
const issue = isRecordLike(data.issue) ? data.issue : undefined
|
|
if (issue?.id) {
|
|
return `sentry:issue:${issue.id}:${action}`
|
|
}
|
|
|
|
const error = isRecordLike(data.error) ? data.error : undefined
|
|
if (error?.event_id) {
|
|
return `sentry:error:${error.event_id}`
|
|
}
|
|
|
|
const event = isRecordLike(data.event) ? data.event : undefined
|
|
if (event?.event_id) {
|
|
return `sentry:event_alert:${event.event_id}`
|
|
}
|
|
|
|
const metricAlert = isRecordLike(data.metric_alert) ? data.metric_alert : undefined
|
|
if (metricAlert?.id) {
|
|
return `sentry:metric_alert:${metricAlert.id}:${action}`
|
|
}
|
|
|
|
return null
|
|
},
|
|
}
|