* refactor: apply biome formatting to packages/features (batch 1 - small subdirs) Format small subdirectories in packages/features: di, flags, holidays, oauth, settings, users, assignment-reason, selectedCalendar, hashedLink, host, form, form-builder, availability, data-table, pbac, schedules, troubleshooter, eventtypes, calendar-subscription, and root-level files. Also includes straggler apps/web BookEventForm.tsx. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 2 - medium subdirs) Format medium subdirectories in packages/features: auth, credentials, calendars, routing-forms, routing-trace, attributes, watchlist, calAIPhone, tasker, and webhooks. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 3 - bookings + insights) Format bookings and insights subdirectories in packages/features. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 4 - ee) Format packages/features/ee subdirectory covering billing, workflows, organizations, teams, managed-event-types, round-robin, dsync, integration-attribute-sync, and payments. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 5 - booking-audit part 1) Format booking-audit di, actions, common, dto, repository, and types subdirectories in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 6 - booking-audit part 2) Format booking-audit service subdirectory in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
88 lines
2.5 KiB
TypeScript
88 lines
2.5 KiB
TypeScript
import dayjs from "@calcom/dayjs";
|
|
import logger from "@calcom/lib/logger";
|
|
import type { PrismaClient } from "@calcom/prisma";
|
|
|
|
import { DEFAULT_WEBHOOK_VERSION } from "./interface/IWebhookRepository";
|
|
import { createWebhookSignature, jsonParse } from "./sendPayload";
|
|
|
|
export async function handleWebhookScheduledTriggers(prisma: PrismaClient) {
|
|
await prisma.webhookScheduledTriggers.deleteMany({
|
|
where: {
|
|
startAfter: {
|
|
lte: dayjs().subtract(1, "day").toDate(),
|
|
},
|
|
},
|
|
});
|
|
// get jobs that should be run
|
|
const jobsToRun = await prisma.webhookScheduledTriggers.findMany({
|
|
where: {
|
|
startAfter: {
|
|
lte: dayjs().toDate(),
|
|
},
|
|
},
|
|
select: {
|
|
id: true,
|
|
jobName: true,
|
|
payload: true,
|
|
subscriberUrl: true,
|
|
webhook: {
|
|
select: {
|
|
secret: true,
|
|
version: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const fetchPromises: Promise<Response | void>[] = [];
|
|
|
|
// run jobs
|
|
for (const job of jobsToRun) {
|
|
// Fetch the webhook configuration so that we can get the secret.
|
|
let webhook = job.webhook;
|
|
|
|
// only needed to support old jobs that don't have the webhook relationship yet
|
|
if (!webhook && job.jobName) {
|
|
const [appId, subscriberId] = job.jobName.split("_");
|
|
try {
|
|
webhook = await prisma.webhook.findUniqueOrThrow({
|
|
where: { id: subscriberId, appId: appId !== "null" ? appId : null },
|
|
select: { secret: true, version: true },
|
|
});
|
|
} catch {
|
|
logger.error(`Error finding webhook for subscriberId: ${subscriberId}, appId: ${appId}`);
|
|
}
|
|
}
|
|
|
|
const headers: Record<string, string> = {
|
|
"Content-Type":
|
|
!job.payload || jsonParse(job.payload) ? "application/json" : "application/x-www-form-urlencoded",
|
|
"X-Cal-Webhook-Version": webhook?.version ?? DEFAULT_WEBHOOK_VERSION,
|
|
};
|
|
|
|
if (webhook) {
|
|
headers["X-Cal-Signature-256"] = createWebhookSignature({ secret: webhook.secret, body: job.payload });
|
|
}
|
|
fetchPromises.push(
|
|
fetch(job.subscriberUrl, {
|
|
method: "POST",
|
|
body: job.payload,
|
|
headers,
|
|
// Avoid following redirect
|
|
redirect: "manual",
|
|
}).catch((error) => {
|
|
console.error(`Webhook trigger for subscriber url ${job.subscriberUrl} failed with error: ${error}`);
|
|
})
|
|
);
|
|
|
|
// clean finished job
|
|
await prisma.webhookScheduledTriggers.delete({
|
|
where: {
|
|
id: job.id,
|
|
},
|
|
});
|
|
}
|
|
|
|
Promise.allSettled(fetchPromises);
|
|
}
|