* feat: Cal.diy — community-driven MIT-licensed fork of Cal.com This squashed commit contains all Cal.diy changes applied on top of calcom/cal.com main: - Rebrand Cal.com to Cal.diy across the entire codebase - Remove Enterprise Edition (EE) features, license checks, and AGPL restrictions - Switch license from AGPL-3.0 to MIT - Remove docs/ directory (migrated to Nextra at cal.diy) - Remove dead code: org tests, EE tips, platform nav, premium username, SAML/SSO, etc. - Clean up .env.example for self-hosted Cal.diy - Update Docker image references to calcom/cal.diy - Update README, CONTRIBUTING.md, and issue templates for Cal.diy community fork - Add PR welcome bot for Cal.diy contributors - Fix API v2 breaking changes oasdiff ignore entries - Replace Blacksmith CI runners with default GitHub Actions 3893 files changed, 20789 insertions(+), 411020 deletions(-) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * refactor: remove org-specific /organizations/:orgId endpoints from API v2 atoms controllers (#1701) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * fix: revert Cal.diy Inc to Cal.com, Inc. in license files, copyright notices, and package metadata (#1702) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * rip out org related comments in api v2 --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
118 lines
3.4 KiB
TypeScript
118 lines
3.4 KiB
TypeScript
import type { TGetTranscriptAccessLink } from "@calcom/app-store/dailyvideo/zod";
|
|
import getWebhooks from "@calcom/features/webhooks/lib/getWebhooks";
|
|
import sendPayload from "@calcom/features/webhooks/lib/sendOrSchedulePayload";
|
|
import type { EventPayloadType } from "@calcom/features/webhooks/lib/sendPayload";
|
|
import getOrgIdFromMemberOrTeamId from "@calcom/lib/getOrgIdFromMemberOrTeamId";
|
|
import logger from "@calcom/lib/logger";
|
|
import { safeStringify } from "@calcom/lib/safeStringify";
|
|
import { WebhookTriggerEvents } from "@calcom/prisma/enums";
|
|
import type { CalendarEvent } from "@calcom/types/Calendar";
|
|
|
|
const log = logger.getSubLogger({ prefix: ["daily-video-webhook-handler:triggerRecordingReadyWebhook"] });
|
|
|
|
type Booking = {
|
|
userId: number | undefined;
|
|
eventTypeId: number | null;
|
|
eventTypeParentId: number | null | undefined;
|
|
teamId?: number | null;
|
|
};
|
|
|
|
const getWebhooksByEventTrigger = async (eventTrigger: WebhookTriggerEvents, booking: Booking) => {
|
|
const isTeamBooking = booking.teamId;
|
|
const isBookingForManagedEventtype = booking.teamId && booking.eventTypeParentId;
|
|
const triggerForUser = !isTeamBooking || isBookingForManagedEventtype;
|
|
const organizerUserId = triggerForUser ? booking.userId : null;
|
|
const orgId = await getOrgIdFromMemberOrTeamId({ memberId: organizerUserId, teamId: booking.teamId });
|
|
|
|
const subscriberOptions = {
|
|
userId: organizerUserId,
|
|
eventTypeId: booking.eventTypeId,
|
|
triggerEvent: eventTrigger,
|
|
teamId: booking.teamId,
|
|
orgId,
|
|
};
|
|
|
|
return getWebhooks(subscriberOptions);
|
|
};
|
|
|
|
export const triggerRecordingReadyWebhook = async ({
|
|
evt,
|
|
downloadLink,
|
|
booking,
|
|
}: {
|
|
evt: CalendarEvent;
|
|
downloadLink: string;
|
|
booking: Booking;
|
|
}) => {
|
|
const eventTrigger: WebhookTriggerEvents = "RECORDING_READY";
|
|
const webhooks = await getWebhooksByEventTrigger(eventTrigger, booking);
|
|
|
|
log.debug(
|
|
"Webhooks:",
|
|
safeStringify({
|
|
webhooks,
|
|
})
|
|
);
|
|
|
|
const payload: EventPayloadType = {
|
|
...evt,
|
|
downloadLink,
|
|
};
|
|
|
|
const promises = webhooks.map((webhook) =>
|
|
sendPayload(webhook.secret, eventTrigger, new Date().toISOString(), webhook, payload).catch((e) => {
|
|
log.error(
|
|
`Error executing webhook for event: ${eventTrigger}, URL: ${webhook.subscriberUrl}, bookingId: ${evt.bookingId}, bookingUid: ${evt.uid}`,
|
|
safeStringify(e)
|
|
);
|
|
})
|
|
);
|
|
await Promise.all(promises);
|
|
};
|
|
|
|
export const triggerTranscriptionGeneratedWebhook = async ({
|
|
evt,
|
|
downloadLinks,
|
|
booking,
|
|
}: {
|
|
evt: CalendarEvent;
|
|
downloadLinks?: {
|
|
transcription: TGetTranscriptAccessLink["transcription"];
|
|
recording: string;
|
|
};
|
|
booking: Booking;
|
|
}) => {
|
|
const webhooks = await getWebhooksByEventTrigger(
|
|
WebhookTriggerEvents.RECORDING_TRANSCRIPTION_GENERATED,
|
|
booking
|
|
);
|
|
|
|
log.debug(
|
|
"Webhooks:",
|
|
safeStringify({
|
|
webhooks,
|
|
})
|
|
);
|
|
|
|
const payload: EventPayloadType = {
|
|
...evt,
|
|
downloadLinks,
|
|
};
|
|
|
|
const promises = webhooks.map((webhook) =>
|
|
sendPayload(
|
|
webhook.secret,
|
|
WebhookTriggerEvents.RECORDING_TRANSCRIPTION_GENERATED,
|
|
new Date().toISOString(),
|
|
webhook,
|
|
payload
|
|
).catch((e) => {
|
|
log.error(
|
|
`Error executing webhook for event: ${WebhookTriggerEvents.RECORDING_TRANSCRIPTION_GENERATED}, URL: ${webhook.subscriberUrl}, bookingId: ${evt.bookingId}, bookingUid: ${evt.uid}`,
|
|
safeStringify(e)
|
|
);
|
|
})
|
|
);
|
|
await Promise.all(promises);
|
|
};
|