d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
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
57 lines
2.3 KiB
TypeScript
57 lines
2.3 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import type { NextRequest } from 'next/server'
|
|
import {
|
|
dispatchResolvedWebhookTarget,
|
|
type findWebhooksByRoutingKey,
|
|
} from '@/lib/webhooks/processor'
|
|
import { resolveSlackEventKey } from '@/lib/webhooks/providers/slack'
|
|
|
|
const logger = createLogger('SlackWebhookDispatch')
|
|
|
|
interface DispatchSlackWebhooksOptions {
|
|
body: unknown
|
|
request: NextRequest
|
|
requestId: string
|
|
receivedAt: number
|
|
}
|
|
|
|
/**
|
|
* Shared fan-out tail for the Slack ingest routes (native team-id route and the
|
|
* custom-bot credential route): run each candidate webhook through the common
|
|
* post-auth lifecycle (preprocess, deployment check, trigger filter, enqueue)
|
|
* via {@link dispatchResolvedWebhookTarget}, logging skip diagnostics for
|
|
* filtered events.
|
|
*/
|
|
export async function dispatchSlackWebhooks(
|
|
webhooks: Awaited<ReturnType<typeof findWebhooksByRoutingKey>>,
|
|
{ body, request, requestId, receivedAt }: DispatchSlackWebhooksOptions
|
|
): Promise<void> {
|
|
const payload = body as Record<string, unknown>
|
|
const slackRequestTimestamp = request.headers.get('x-slack-request-timestamp')
|
|
const parsedTimestampMs = slackRequestTimestamp ? Number(slackRequestTimestamp) * 1000 : undefined
|
|
const triggerTimestampMs = Number.isFinite(parsedTimestampMs) ? parsedTimestampMs : undefined
|
|
|
|
for (const { webhook: foundWebhook, workflow: foundWorkflow } of webhooks) {
|
|
const result = await dispatchResolvedWebhookTarget(foundWebhook, foundWorkflow, body, request, {
|
|
requestId,
|
|
receivedAt,
|
|
triggerTimestampMs,
|
|
})
|
|
|
|
if (result.outcome === 'ignored' && result.reason === 'filtered') {
|
|
const rawEvent = payload.event as Record<string, unknown> | undefined
|
|
const providerConfig = (foundWebhook.providerConfig as Record<string, unknown>) || {}
|
|
logger.info(`[${requestId}] Event skipped by trigger filter for webhook ${foundWebhook.id}`, {
|
|
eventKey: resolveSlackEventKey(payload),
|
|
configuredEvent: providerConfig.eventType,
|
|
channelType: rawEvent?.channel_type,
|
|
subtype: rawEvent?.subtype,
|
|
isThreadReply:
|
|
typeof rawEvent?.thread_ts === 'string' && rawEvent.thread_ts !== rawEvent.ts,
|
|
threadsSetting: providerConfig.threads,
|
|
botId: rawEvent?.bot_id,
|
|
})
|
|
}
|
|
}
|
|
}
|