429 lines
13 KiB
TypeScript
429 lines
13 KiB
TypeScript
import { Prisma } from "@prisma/client";
|
|
|
|
import type { LocationObject } from "@calcom/app-store/locations";
|
|
import { getLocationValueForDB } from "@calcom/app-store/locations";
|
|
import { sendDeclinedEmailsAndSMS } from "@calcom/emails";
|
|
import { getAllCredentials } from "@calcom/features/bookings/lib/getAllCredentialsForUsersOnEvent/getAllCredentials";
|
|
import { getCalEventResponses } from "@calcom/features/bookings/lib/getCalEventResponses";
|
|
import { handleConfirmation } from "@calcom/features/bookings/lib/handleConfirmation";
|
|
import { handleWebhookTrigger } from "@calcom/features/bookings/lib/handleWebhookTrigger";
|
|
import { workflowSelect } from "@calcom/features/ee/workflows/lib/getAllWorkflows";
|
|
import type { GetSubscriberOptions } from "@calcom/features/webhooks/lib/getWebhooks";
|
|
import type { EventPayloadType, EventTypeInfo } from "@calcom/features/webhooks/lib/sendPayload";
|
|
import { isPrismaObjOrUndefined, parseRecurringEvent } from "@calcom/lib";
|
|
import { getBookerBaseUrl } from "@calcom/lib/getBookerUrl/server";
|
|
import getOrgIdFromMemberOrTeamId from "@calcom/lib/getOrgIdFromMemberOrTeamId";
|
|
import { getTeamIdFromEventType } from "@calcom/lib/getTeamIdFromEventType";
|
|
import { processPaymentRefund } from "@calcom/lib/payment/processPaymentRefund";
|
|
import { getTranslation } from "@calcom/lib/server";
|
|
import { getUsersCredentials } from "@calcom/lib/server/getUsersCredentials";
|
|
import { getTimeFormatStringFromUserTimeFormat } from "@calcom/lib/timeFormat";
|
|
import { prisma } from "@calcom/prisma";
|
|
import {
|
|
BookingStatus,
|
|
MembershipRole,
|
|
WebhookTriggerEvents,
|
|
UserPermissionRole,
|
|
} from "@calcom/prisma/enums";
|
|
import type { EventTypeMetadata } from "@calcom/prisma/zod-utils";
|
|
import type { CalendarEvent } from "@calcom/types/Calendar";
|
|
|
|
import { TRPCError } from "@trpc/server";
|
|
|
|
import type { TrpcSessionUser } from "../../../trpc";
|
|
import type { TConfirmInputSchema } from "./confirm.schema";
|
|
|
|
type ConfirmOptions = {
|
|
ctx: {
|
|
user: NonNullable<TrpcSessionUser>;
|
|
};
|
|
input: TConfirmInputSchema;
|
|
};
|
|
|
|
export const confirmHandler = async ({ ctx, input }: ConfirmOptions) => {
|
|
const { user } = ctx;
|
|
const {
|
|
bookingId,
|
|
recurringEventId,
|
|
reason: rejectionReason,
|
|
confirmed,
|
|
emailsEnabled,
|
|
platformClientParams,
|
|
} = input;
|
|
|
|
const tOrganizer = await getTranslation(user.locale ?? "en", "common");
|
|
|
|
const booking = await prisma.booking.findUniqueOrThrow({
|
|
where: {
|
|
id: bookingId,
|
|
},
|
|
select: {
|
|
title: true,
|
|
description: true,
|
|
customInputs: true,
|
|
startTime: true,
|
|
endTime: true,
|
|
attendees: true,
|
|
eventTypeId: true,
|
|
responses: true,
|
|
metadata: true,
|
|
userPrimaryEmail: true,
|
|
eventType: {
|
|
select: {
|
|
id: true,
|
|
owner: true,
|
|
teamId: true,
|
|
recurringEvent: true,
|
|
title: true,
|
|
slug: true,
|
|
requiresConfirmation: true,
|
|
currency: true,
|
|
length: true,
|
|
description: true,
|
|
price: true,
|
|
bookingFields: true,
|
|
disableGuests: true,
|
|
metadata: true,
|
|
locations: true,
|
|
team: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
parentId: true,
|
|
},
|
|
},
|
|
workflows: {
|
|
select: {
|
|
workflow: {
|
|
select: workflowSelect,
|
|
},
|
|
},
|
|
},
|
|
customInputs: true,
|
|
parentId: true,
|
|
parent: {
|
|
select: {
|
|
teamId: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
location: true,
|
|
userId: true,
|
|
id: true,
|
|
uid: true,
|
|
payment: true,
|
|
destinationCalendar: true,
|
|
paid: true,
|
|
recurringEventId: true,
|
|
status: true,
|
|
smsReminderNumber: true,
|
|
},
|
|
});
|
|
|
|
await checkIfUserIsAuthorizedToConfirmBooking({
|
|
eventTypeId: booking.eventTypeId,
|
|
loggedInUserId: user.id,
|
|
teamId: booking.eventType?.teamId,
|
|
bookingUserId: booking.userId,
|
|
userRole: user.role,
|
|
});
|
|
|
|
// Do not move this before authorization check.
|
|
// This is done to avoid exposing extra information to the requester.
|
|
if (booking.status === BookingStatus.ACCEPTED) {
|
|
throw new TRPCError({ code: "BAD_REQUEST", message: "Booking already confirmed" });
|
|
}
|
|
|
|
// If booking requires payment and is not paid, we don't allow confirmation
|
|
if (confirmed && booking.payment.length > 0 && !booking.paid) {
|
|
await prisma.booking.update({
|
|
where: {
|
|
id: bookingId,
|
|
},
|
|
data: {
|
|
status: BookingStatus.ACCEPTED,
|
|
},
|
|
});
|
|
|
|
return { message: "Booking confirmed", status: BookingStatus.ACCEPTED };
|
|
}
|
|
|
|
// Cache translations to avoid requesting multiple times.
|
|
const translations = new Map();
|
|
const attendeesListPromises = booking.attendees.map(async (attendee) => {
|
|
const locale = attendee.locale ?? "en";
|
|
let translate = translations.get(locale);
|
|
if (!translate) {
|
|
translate = await getTranslation(locale, "common");
|
|
translations.set(locale, translate);
|
|
}
|
|
return {
|
|
name: attendee.name,
|
|
email: attendee.email,
|
|
timeZone: attendee.timeZone,
|
|
phoneNumber: attendee.phoneNumber,
|
|
language: {
|
|
translate,
|
|
locale,
|
|
},
|
|
};
|
|
});
|
|
|
|
const organizerOrganizationProfile = await prisma.profile.findFirst({
|
|
where: {
|
|
userId: user.id,
|
|
},
|
|
});
|
|
|
|
const organizerOrganizationId = organizerOrganizationProfile?.organizationId;
|
|
|
|
const bookerUrl = await getBookerBaseUrl(
|
|
booking.eventType?.team?.parentId ?? organizerOrganizationId ?? null
|
|
);
|
|
|
|
const attendeesList = await Promise.all(attendeesListPromises);
|
|
|
|
const evt: CalendarEvent = {
|
|
type: booking?.eventType?.slug as string,
|
|
title: booking.title,
|
|
description: booking.description,
|
|
bookerUrl,
|
|
// TODO: Remove the usage of `bookingFields` in computing responses. We can do that by storing `label` with the response. Also, this would allow us to correctly show the label for a field even after the Event Type has been deleted.
|
|
...getCalEventResponses({
|
|
bookingFields: booking.eventType?.bookingFields ?? null,
|
|
booking,
|
|
}),
|
|
customInputs: isPrismaObjOrUndefined(booking.customInputs),
|
|
startTime: booking.startTime.toISOString(),
|
|
endTime: booking.endTime.toISOString(),
|
|
organizer: {
|
|
email: booking.userPrimaryEmail ?? user.email,
|
|
name: user.name || "Unnamed",
|
|
username: user.username || undefined,
|
|
timeZone: user.timeZone,
|
|
timeFormat: getTimeFormatStringFromUserTimeFormat(user.timeFormat),
|
|
language: { translate: tOrganizer, locale: user.locale ?? "en" },
|
|
},
|
|
attendees: attendeesList,
|
|
location: booking.location ?? "",
|
|
uid: booking.uid,
|
|
destinationCalendar: booking?.destinationCalendar
|
|
? [booking.destinationCalendar]
|
|
: user.destinationCalendar
|
|
? [user.destinationCalendar]
|
|
: [],
|
|
requiresConfirmation: booking?.eventType?.requiresConfirmation ?? false,
|
|
eventTypeId: booking.eventType?.id,
|
|
team: !!booking.eventType?.team
|
|
? {
|
|
name: booking.eventType.team.name,
|
|
id: booking.eventType.team.id,
|
|
members: [],
|
|
}
|
|
: undefined,
|
|
...(platformClientParams ? platformClientParams : {}),
|
|
};
|
|
|
|
const recurringEvent = parseRecurringEvent(booking.eventType?.recurringEvent);
|
|
if (recurringEventId) {
|
|
if (
|
|
!(await prisma.booking.findFirst({
|
|
where: {
|
|
recurringEventId,
|
|
id: booking.id,
|
|
},
|
|
select: {
|
|
id: true,
|
|
},
|
|
}))
|
|
) {
|
|
// FIXME: It might be best to retrieve recurringEventId from the booking itself.
|
|
throw new TRPCError({
|
|
code: "UNAUTHORIZED",
|
|
message: "Recurring event id doesn't belong to the booking",
|
|
});
|
|
}
|
|
}
|
|
if (recurringEventId && recurringEvent) {
|
|
const groupedRecurringBookings = await prisma.booking.groupBy({
|
|
where: {
|
|
recurringEventId: booking.recurringEventId,
|
|
},
|
|
by: [Prisma.BookingScalarFieldEnum.recurringEventId],
|
|
_count: true,
|
|
});
|
|
// Overriding the recurring event configuration count to be the actual number of events booked for
|
|
// the recurring event (equal or less than recurring event configuration count)
|
|
recurringEvent.count = groupedRecurringBookings[0]._count;
|
|
// count changed, parsing again to get the new value in
|
|
evt.recurringEvent = parseRecurringEvent(recurringEvent);
|
|
}
|
|
|
|
if (confirmed) {
|
|
const credentials = await getUsersCredentials(user);
|
|
const userWithCredentials = {
|
|
...user,
|
|
credentials,
|
|
};
|
|
const allCredentials = await getAllCredentials(userWithCredentials, {
|
|
...booking.eventType,
|
|
metadata: booking.eventType?.metadata as EventTypeMetadata,
|
|
});
|
|
const conferenceCredentialId = getLocationValueForDB(
|
|
booking.location ?? "",
|
|
(booking.eventType?.locations as LocationObject[]) || []
|
|
);
|
|
evt.conferenceCredentialId = conferenceCredentialId.conferenceCredentialId;
|
|
await handleConfirmation({
|
|
user: { ...user, credentials: allCredentials },
|
|
evt,
|
|
recurringEventId,
|
|
prisma,
|
|
bookingId,
|
|
booking,
|
|
emailsEnabled,
|
|
platformClientParams,
|
|
});
|
|
} else {
|
|
evt.rejectionReason = rejectionReason;
|
|
if (recurringEventId) {
|
|
// The booking to reject is a recurring event and comes from /booking/upcoming, proceeding to mark all related
|
|
// bookings as rejected.
|
|
await prisma.booking.updateMany({
|
|
where: {
|
|
recurringEventId,
|
|
status: BookingStatus.PENDING,
|
|
},
|
|
data: {
|
|
status: BookingStatus.REJECTED,
|
|
rejectionReason,
|
|
},
|
|
});
|
|
} else {
|
|
// handle refunds
|
|
if (!!booking.payment.length) {
|
|
await processPaymentRefund({
|
|
booking: booking,
|
|
teamId: booking.eventType?.teamId,
|
|
});
|
|
}
|
|
// end handle refunds.
|
|
|
|
await prisma.booking.update({
|
|
where: {
|
|
id: bookingId,
|
|
},
|
|
data: {
|
|
status: BookingStatus.REJECTED,
|
|
rejectionReason,
|
|
},
|
|
});
|
|
}
|
|
|
|
if (emailsEnabled) {
|
|
await sendDeclinedEmailsAndSMS(evt, booking.eventType?.metadata as EventTypeMetadata);
|
|
}
|
|
|
|
const teamId = await getTeamIdFromEventType({
|
|
eventType: {
|
|
team: { id: booking.eventType?.teamId ?? null },
|
|
parentId: booking?.eventType?.parentId ?? null,
|
|
},
|
|
});
|
|
|
|
const orgId = await getOrgIdFromMemberOrTeamId({ memberId: booking.userId, teamId });
|
|
|
|
// send BOOKING_REJECTED webhooks
|
|
const subscriberOptions: GetSubscriberOptions = {
|
|
userId: booking.userId,
|
|
eventTypeId: booking.eventTypeId,
|
|
triggerEvent: WebhookTriggerEvents.BOOKING_REJECTED,
|
|
teamId,
|
|
orgId,
|
|
oAuthClientId: platformClientParams?.platformClientId,
|
|
};
|
|
const eventTrigger: WebhookTriggerEvents = WebhookTriggerEvents.BOOKING_REJECTED;
|
|
const eventTypeInfo: EventTypeInfo = {
|
|
eventTitle: booking.eventType?.title,
|
|
eventDescription: booking.eventType?.description,
|
|
requiresConfirmation: booking.eventType?.requiresConfirmation || null,
|
|
price: booking.eventType?.price,
|
|
currency: booking.eventType?.currency,
|
|
length: booking.eventType?.length,
|
|
};
|
|
const webhookData: EventPayloadType = {
|
|
...evt,
|
|
...eventTypeInfo,
|
|
bookingId,
|
|
eventTypeId: booking.eventType?.id,
|
|
status: BookingStatus.REJECTED,
|
|
smsReminderNumber: booking.smsReminderNumber || undefined,
|
|
};
|
|
await handleWebhookTrigger({ subscriberOptions, eventTrigger, webhookData });
|
|
}
|
|
|
|
const message = `Booking ${confirmed}` ? "confirmed" : "rejected";
|
|
const status = confirmed ? BookingStatus.ACCEPTED : BookingStatus.REJECTED;
|
|
|
|
return { message, status };
|
|
};
|
|
|
|
const checkIfUserIsAuthorizedToConfirmBooking = async ({
|
|
eventTypeId,
|
|
loggedInUserId,
|
|
teamId,
|
|
bookingUserId,
|
|
userRole,
|
|
}: {
|
|
eventTypeId: number | null;
|
|
loggedInUserId: number;
|
|
teamId?: number | null;
|
|
bookingUserId: number | null;
|
|
userRole: string;
|
|
}): Promise<void> => {
|
|
// check system wide admin
|
|
if (userRole === UserPermissionRole.ADMIN) return;
|
|
|
|
// Check if the user is the owner of the event type
|
|
if (bookingUserId === loggedInUserId) return;
|
|
|
|
// Check if user is associated with the event type
|
|
if (eventTypeId) {
|
|
const [loggedInUserAsHostOfEventType, loggedInUserAsUserOfEventType] = await Promise.all([
|
|
prisma.eventType.findUnique({
|
|
where: {
|
|
id: eventTypeId,
|
|
hosts: { some: { userId: loggedInUserId } },
|
|
},
|
|
select: { id: true },
|
|
}),
|
|
prisma.eventType.findUnique({
|
|
where: {
|
|
id: eventTypeId,
|
|
users: { some: { id: loggedInUserId } },
|
|
},
|
|
select: { id: true },
|
|
}),
|
|
]);
|
|
|
|
if (loggedInUserAsHostOfEventType || loggedInUserAsUserOfEventType) return;
|
|
}
|
|
|
|
// Check if the user is an admin/owner of the team the booking belongs to
|
|
if (teamId) {
|
|
const membership = await prisma.membership.findFirst({
|
|
where: {
|
|
userId: loggedInUserId,
|
|
teamId: teamId,
|
|
role: {
|
|
in: [MembershipRole.OWNER, MembershipRole.ADMIN],
|
|
},
|
|
},
|
|
});
|
|
if (membership) return;
|
|
}
|
|
|
|
throw new TRPCError({ code: "UNAUTHORIZED", message: "User is not authorized to confirm this booking" });
|
|
};
|