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
218 lines
7.5 KiB
TypeScript
218 lines
7.5 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { getNotificationUrl, getProviderConfig } from '@/lib/webhooks/provider-subscription-utils'
|
|
import type {
|
|
DeleteSubscriptionContext,
|
|
FormatInputContext,
|
|
FormatInputResult,
|
|
SubscriptionContext,
|
|
SubscriptionResult,
|
|
WebhookProviderHandler,
|
|
} from '@/lib/webhooks/providers/types'
|
|
|
|
const logger = createLogger('WebhookProvider:Calendly')
|
|
|
|
export const calendlyHandler: WebhookProviderHandler = {
|
|
async formatInput({ body }: FormatInputContext): Promise<FormatInputResult> {
|
|
const b = body as Record<string, unknown>
|
|
return {
|
|
input: {
|
|
event: b.event,
|
|
created_at: b.created_at,
|
|
created_by: b.created_by,
|
|
payload: b.payload,
|
|
},
|
|
}
|
|
},
|
|
|
|
async createSubscription(ctx: SubscriptionContext): Promise<SubscriptionResult | undefined> {
|
|
try {
|
|
const providerConfig = getProviderConfig(ctx.webhook)
|
|
const { apiKey, organization, triggerId } = providerConfig as {
|
|
apiKey?: string
|
|
organization?: string
|
|
triggerId?: string
|
|
}
|
|
|
|
if (!apiKey) {
|
|
logger.warn(`[${ctx.requestId}] Missing apiKey for Calendly webhook creation.`, {
|
|
webhookId: ctx.webhook.id,
|
|
})
|
|
throw new Error(
|
|
'Personal Access Token is required to create Calendly webhook. Please provide your Calendly Personal Access Token.'
|
|
)
|
|
}
|
|
|
|
if (!organization) {
|
|
logger.warn(`[${ctx.requestId}] Missing organization URI for Calendly webhook creation.`, {
|
|
webhookId: ctx.webhook.id,
|
|
})
|
|
throw new Error(
|
|
'Organization URI is required to create Calendly webhook. Please provide your Organization URI from the "Get Current User" operation.'
|
|
)
|
|
}
|
|
|
|
if (!triggerId) {
|
|
logger.warn(`[${ctx.requestId}] Missing triggerId for Calendly webhook creation.`, {
|
|
webhookId: ctx.webhook.id,
|
|
})
|
|
throw new Error('Trigger ID is required to create Calendly webhook')
|
|
}
|
|
|
|
const notificationUrl = getNotificationUrl(ctx.webhook)
|
|
|
|
const eventTypeMap: Record<string, string[]> = {
|
|
calendly_invitee_created: ['invitee.created'],
|
|
calendly_invitee_canceled: ['invitee.canceled'],
|
|
calendly_routing_form_submitted: ['routing_form_submission.created'],
|
|
calendly_webhook: [
|
|
'invitee.created',
|
|
'invitee.canceled',
|
|
'routing_form_submission.created',
|
|
],
|
|
}
|
|
|
|
const events = eventTypeMap[triggerId] || ['invitee.created']
|
|
|
|
const calendlyApiUrl = 'https://api.calendly.com/webhook_subscriptions'
|
|
|
|
const requestBody = {
|
|
url: notificationUrl,
|
|
events,
|
|
organization,
|
|
scope: 'organization',
|
|
}
|
|
|
|
const calendlyResponse = await fetch(calendlyApiUrl, {
|
|
method: 'POST',
|
|
headers: {
|
|
Authorization: `Bearer ${apiKey}`,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify(requestBody),
|
|
})
|
|
|
|
if (!calendlyResponse.ok) {
|
|
const errorBody = await calendlyResponse.json().catch(() => ({}))
|
|
const errorMessage =
|
|
(errorBody as Record<string, string>).message ||
|
|
(errorBody as Record<string, string>).title ||
|
|
'Unknown Calendly API error'
|
|
logger.error(
|
|
`[${ctx.requestId}] Failed to create webhook in Calendly for webhook ${ctx.webhook.id}. Status: ${calendlyResponse.status}`,
|
|
{ response: errorBody }
|
|
)
|
|
|
|
let userFriendlyMessage = 'Failed to create webhook subscription in Calendly'
|
|
if (calendlyResponse.status === 401) {
|
|
userFriendlyMessage =
|
|
'Calendly authentication failed. Please verify your Personal Access Token is correct.'
|
|
} else if (calendlyResponse.status === 403) {
|
|
userFriendlyMessage =
|
|
'Calendly access denied. Please ensure you have appropriate permissions and a paid Calendly subscription.'
|
|
} else if (calendlyResponse.status === 404) {
|
|
userFriendlyMessage =
|
|
'Calendly organization not found. Please verify the Organization URI is correct.'
|
|
} else if (errorMessage && errorMessage !== 'Unknown Calendly API error') {
|
|
userFriendlyMessage = `Calendly error: ${errorMessage}`
|
|
}
|
|
|
|
throw new Error(userFriendlyMessage)
|
|
}
|
|
|
|
const responseBody = (await calendlyResponse.json()) as Record<string, unknown>
|
|
const resource = responseBody.resource as Record<string, unknown> | undefined
|
|
const webhookUri = resource?.uri as string | undefined
|
|
|
|
if (!webhookUri) {
|
|
logger.error(
|
|
`[${ctx.requestId}] Calendly webhook created but no webhook URI returned for webhook ${ctx.webhook.id}`,
|
|
{ response: responseBody }
|
|
)
|
|
throw new Error('Calendly webhook creation succeeded but no webhook URI was returned')
|
|
}
|
|
|
|
const webhookId = webhookUri.split('/').pop()
|
|
|
|
if (!webhookId) {
|
|
logger.error(
|
|
`[${ctx.requestId}] Could not extract webhook ID from Calendly URI: ${webhookUri}`,
|
|
{
|
|
response: responseBody,
|
|
}
|
|
)
|
|
throw new Error('Failed to extract webhook ID from Calendly response')
|
|
}
|
|
|
|
logger.info(
|
|
`[${ctx.requestId}] Successfully created webhook in Calendly for webhook ${ctx.webhook.id}.`,
|
|
{
|
|
calendlyWebhookUri: webhookUri,
|
|
calendlyWebhookId: webhookId,
|
|
}
|
|
)
|
|
return { providerConfigUpdates: { externalId: webhookId } }
|
|
} catch (error: unknown) {
|
|
const err = error as Error
|
|
logger.error(
|
|
`[${ctx.requestId}] Exception during Calendly webhook creation for webhook ${ctx.webhook.id}.`,
|
|
{
|
|
message: err.message,
|
|
stack: err.stack,
|
|
}
|
|
)
|
|
throw error
|
|
}
|
|
},
|
|
|
|
async deleteSubscription(ctx: DeleteSubscriptionContext): Promise<void> {
|
|
try {
|
|
const config = getProviderConfig(ctx.webhook)
|
|
const apiKey = config.apiKey as string | undefined
|
|
const externalId = config.externalId as string | undefined
|
|
|
|
if (!apiKey) {
|
|
logger.warn(
|
|
`[${ctx.requestId}] Missing apiKey for Calendly webhook deletion ${ctx.webhook.id}, skipping cleanup`
|
|
)
|
|
if (ctx.strict) throw new Error('Missing Calendly apiKey for webhook deletion')
|
|
return
|
|
}
|
|
|
|
if (!externalId) {
|
|
logger.warn(
|
|
`[${ctx.requestId}] Missing externalId for Calendly webhook deletion ${ctx.webhook.id}, skipping cleanup`
|
|
)
|
|
if (ctx.strict) throw new Error('Missing Calendly externalId for webhook deletion')
|
|
return
|
|
}
|
|
|
|
const calendlyApiUrl = `https://api.calendly.com/webhook_subscriptions/${externalId}`
|
|
|
|
const calendlyResponse = await fetch(calendlyApiUrl, {
|
|
method: 'DELETE',
|
|
headers: {
|
|
Authorization: `Bearer ${apiKey}`,
|
|
},
|
|
})
|
|
|
|
if (!calendlyResponse.ok && calendlyResponse.status !== 404) {
|
|
const responseBody = await calendlyResponse.json().catch(() => ({}))
|
|
logger.warn(
|
|
`[${ctx.requestId}] Failed to delete Calendly webhook (non-fatal): ${calendlyResponse.status}`,
|
|
{ response: responseBody }
|
|
)
|
|
if (ctx.strict) {
|
|
throw new Error(`Failed to delete Calendly webhook: ${calendlyResponse.status}`)
|
|
}
|
|
} else {
|
|
logger.info(
|
|
`[${ctx.requestId}] Successfully deleted Calendly webhook subscription ${externalId}`
|
|
)
|
|
}
|
|
} catch (error) {
|
|
logger.warn(`[${ctx.requestId}] Error deleting Calendly webhook (non-fatal)`, error)
|
|
if (ctx.strict) throw error
|
|
}
|
|
},
|
|
}
|