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
58 lines
2.0 KiB
TypeScript
58 lines
2.0 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { NextResponse } from 'next/server'
|
|
import type {
|
|
AuthContext,
|
|
EventMatchContext,
|
|
WebhookProviderHandler,
|
|
} from '@/lib/webhooks/providers/types'
|
|
import { verifyTokenAuth } from '@/lib/webhooks/providers/utils'
|
|
|
|
const logger = createLogger('WebhookProvider:ServiceNow')
|
|
|
|
function asRecord(body: unknown): Record<string, unknown> {
|
|
return body && typeof body === 'object' && !Array.isArray(body)
|
|
? (body as Record<string, unknown>)
|
|
: {}
|
|
}
|
|
|
|
export const servicenowHandler: WebhookProviderHandler = {
|
|
verifyAuth({ request, requestId, providerConfig }: AuthContext): NextResponse | null {
|
|
const secret = providerConfig.webhookSecret as string | undefined
|
|
if (!secret?.trim()) {
|
|
logger.warn(`[${requestId}] ServiceNow webhook missing webhookSecret — rejecting`)
|
|
return new NextResponse('Unauthorized - Webhook secret not configured', { status: 401 })
|
|
}
|
|
|
|
if (
|
|
!verifyTokenAuth(request, secret.trim(), 'x-sim-webhook-secret') &&
|
|
!verifyTokenAuth(request, secret.trim())
|
|
) {
|
|
logger.warn(`[${requestId}] ServiceNow webhook secret verification failed`)
|
|
return new NextResponse('Unauthorized - Invalid webhook secret', { status: 401 })
|
|
}
|
|
|
|
return null
|
|
},
|
|
|
|
async matchEvent({ webhook, workflow, body, requestId, providerConfig }: EventMatchContext) {
|
|
const triggerId = providerConfig.triggerId as string | undefined
|
|
if (!triggerId) {
|
|
return true
|
|
}
|
|
|
|
const { isServiceNowEventMatch } = await import('@/triggers/servicenow/utils')
|
|
const configuredTableName = providerConfig.tableName as string | undefined
|
|
const obj = asRecord(body)
|
|
|
|
if (!isServiceNowEventMatch(triggerId, obj, configuredTableName)) {
|
|
logger.debug(
|
|
`[${requestId}] ServiceNow event mismatch for trigger ${triggerId}. Skipping execution.`,
|
|
{ webhookId: webhook.id, workflowId: workflow.id, triggerId }
|
|
)
|
|
return false
|
|
}
|
|
|
|
return true
|
|
},
|
|
}
|