75d611c2e8
* Integrate creation/rescheduling booking audit * fix: add missing hostUserUuid to booking audit test data Co-Authored-By: hariom@cal.com <hariombalhara@gmail.com> * fix-ci * feat: enhance booking audit with seat reference - Added support for seat reference in booking audit actions. - Updated localization for booking creation to include seat information. - Modified relevant services to pass attendee seat ID during booking creation. * fix: update test data to match schema requirements - Add seatReferenceUid: null to default mock audit log data - Add seatReferenceUid: null to multiple audit logs test case - Convert SEAT_RESCHEDULED test data to use numeric timestamps instead of ISO strings Co-Authored-By: hariom@cal.com <hariombalhara@gmail.com> * Allow nullish seatReferenceUid * feat: enhance booking audit to support rescheduledBy information - Updated booking audit actions to include rescheduledBy details, allowing tracking of who rescheduled a booking. - Refactored related services to accommodate the new rescheduledBy parameter in booking events. - Adjusted type definitions and function signatures to reflect the changes in the booking audit context. * Avoid possible run time issue * Fix imoport path * fix failing test due to merge from main\ * Pass useruuid --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
64 lines
2.5 KiB
TypeScript
64 lines
2.5 KiB
TypeScript
import type { NextApiRequest } from "next";
|
|
|
|
import { getServerSession } from "@calcom/features/auth/lib/getServerSession";
|
|
import { getRegularBookingService } from "@calcom/features/bookings/di/RegularBookingService.container";
|
|
import { BotDetectionService } from "@calcom/features/bot-detection";
|
|
import { EventTypeRepository } from "@calcom/features/eventtypes/repositories/eventTypeRepository";
|
|
import { FeaturesRepository } from "@calcom/features/flags/features.repository";
|
|
import { checkRateLimitAndThrowError } from "@calcom/lib/checkRateLimitAndThrowError";
|
|
import getIP from "@calcom/lib/getIP";
|
|
import { piiHasher } from "@calcom/lib/server/PiiHasher";
|
|
import { checkCfTurnstileToken } from "@calcom/lib/server/checkCfTurnstileToken";
|
|
import { defaultResponder } from "@calcom/lib/server/defaultResponder";
|
|
import type { TraceContext } from "@calcom/lib/tracing";
|
|
import { prisma } from "@calcom/prisma";
|
|
import { CreationSource } from "@calcom/prisma/enums";
|
|
|
|
async function handler(req: NextApiRequest & { userId?: number; traceContext: TraceContext }) {
|
|
const userIp = getIP(req);
|
|
|
|
if (process.env.NEXT_PUBLIC_CLOUDFLARE_USE_TURNSTILE_IN_BOOKER === "1") {
|
|
await checkCfTurnstileToken({
|
|
token: req.body["cfToken"] as string,
|
|
remoteIp: userIp,
|
|
});
|
|
}
|
|
|
|
// Check for bot detection using feature flag
|
|
const featuresRepository = new FeaturesRepository(prisma);
|
|
const eventTypeRepository = new EventTypeRepository(prisma);
|
|
const botDetectionService = new BotDetectionService(featuresRepository, eventTypeRepository);
|
|
|
|
await botDetectionService.checkBotDetection({
|
|
eventTypeId: req.body.eventTypeId,
|
|
headers: req.headers,
|
|
});
|
|
|
|
await checkRateLimitAndThrowError({
|
|
rateLimitingType: "core",
|
|
identifier: `createBooking:${piiHasher.hash(userIp)}`,
|
|
});
|
|
|
|
const session = await getServerSession({ req });
|
|
/* To mimic API behavior and comply with types */
|
|
req.body = {
|
|
...req.body,
|
|
creationSource: CreationSource.WEBAPP,
|
|
};
|
|
|
|
const regularBookingService = getRegularBookingService();
|
|
const booking = await regularBookingService.createBooking({
|
|
bookingData: req.body,
|
|
bookingMeta: {
|
|
userId: session?.user?.id || -1,
|
|
hostname: req.headers.host || "",
|
|
forcedSlug: req.headers["x-cal-force-slug"] as string | undefined,
|
|
traceContext: req.traceContext,
|
|
impersonatedByUserUuid: session?.user?.impersonatedBy?.uuid,
|
|
},
|
|
});
|
|
|
|
return booking;
|
|
}
|
|
|
|
export default defaultResponder(handler, "/api/book/event"); |