* use booking.uid instead of booking.id for url param * show timezone on calendar * fix type * restore horizontal tab and remove header and subtitle * clean up sidebar items * fix event propagation from attendees * fetch all statuses except for cancelled on calendar view * clean up styles of the badges on BookingListItem * fix useMediaQuery * add close button to the header * add assignment reason to the details sheet * use separator row * use ToggleGroup for the top bookings tab * move ViewToggleButton * resize the action button * remove wrong prop * fix type error * fix type error * hide view toggle button on mobile (and fix the breakpoint) * remove unused e2e tests * fix e2e tests * hide toggle button when feature flag is off * update skeleton * improve attendees on booking list item and slide over * improve attendee dropdown * fix type error * move query to containers * select attendee email * infinite fetching for calendar view * update styles * fix compatibility * fix: add backward compatibility for status field in getAllUserBookings * increase calendar height * fix type error * support Member filter only for admin / owners * add debug log (TEMP) * add event border color * show Reject / Accept buttons on BookingDetailsSheet * move description section to the top * update When section * update style of Who section * add CancelBookingDialog WIP * fix CancelBookingDialog * increase clickable area * add schedule info section WIP * fix flaky reject button * fixing reschedule info WIP * add fromReschedule index to Booking * improve rescheduled information * improve reassignment * fix type error * fix unit test * respect user's weekStart value on the booking calendar view * update debug log * improve payment section * clean up * fix log message * reposition filters on list view * fix bookings controller api2 e2e test * clean up file by extracting logic into custom hooks * rename files * merge BookingCalendar into its container * extract logic into separate hook files * remove redundant logic * rearrange items on calendar view * add WeekPicker * extract filter button * responsive header on list view * horizontal scroll for ToggleGroup WIP * fix type error * fix cancelling recurring event * address feedback * fix e2e tests * fix unit test * fix e2e tests * make hover style more visible for ToggleGroup * fix margin on CancelBookingDialog * update styles on the slide over (mostly font weight) * update style of CancelBookingDialog * update styles * update margin top for the header * refactor getBookingDetails handler * fix gap in who section * auto-filter the current user on the calendar view * calculate calendar height considering top banners * improve booking details sheet interaction without overlay * update calendar event styles * update reject dialog style * put uid first in the query params * fix class name * memoize functions in useMediaQuery * query attendee with id instead of email * update margins * replace TRPCError with ErrorWithCode * move calculation outside loop * remove dead code
193 lines
6.3 KiB
TypeScript
193 lines
6.3 KiB
TypeScript
import { PermissionCheckService } from "@calcom/features/pbac/services/permission-check.service";
|
|
import { UserRepository } from "@calcom/features/users/repositories/UserRepository";
|
|
import type { PrismaClient } from "@calcom/prisma";
|
|
import { MembershipRole } from "@calcom/prisma/enums";
|
|
|
|
import { BookingRepository } from "../repositories/BookingRepository";
|
|
|
|
type BookingForAccessCheck = NonNullable<Awaited<ReturnType<BookingRepository["findByUidIncludeEventType"]>>>;
|
|
|
|
export class BookingAccessService {
|
|
private permissionCheckService: PermissionCheckService;
|
|
|
|
constructor(private prismaClient: PrismaClient) {
|
|
this.permissionCheckService = new PermissionCheckService();
|
|
}
|
|
|
|
private isUserAHost(userId: number, booking: BookingForAccessCheck): boolean {
|
|
const hostMap = new Map<number, { id: number; email: string }>();
|
|
|
|
const addHost = (id: number, email: string) => {
|
|
if (!hostMap.has(id)) {
|
|
hostMap.set(id, { id, email });
|
|
}
|
|
};
|
|
|
|
booking?.eventType?.hosts?.forEach((host: { userId: number; user: { email: string } }) =>
|
|
addHost(host.userId, host.user.email)
|
|
);
|
|
booking?.eventType?.users?.forEach((user: { id: number; email: string }) => addHost(user.id, user.email));
|
|
|
|
if (booking?.user?.id && booking?.user?.email) {
|
|
addHost(booking.user.id, booking.user.email);
|
|
}
|
|
|
|
const attendeeEmails = new Set(booking.attendees?.map((attendee: { email: string }) => attendee.email));
|
|
const filteredHosts = Array.from(hostMap.values()).filter(
|
|
(host) => attendeeEmails.has(host.email) || host.id === booking.user?.id
|
|
);
|
|
|
|
return filteredHosts.some((host) => host.id === userId);
|
|
}
|
|
|
|
/**
|
|
* Determines if a user has access to a booking based on:
|
|
* 1. Being the booking organizer
|
|
* 2. Being one of the hosts in a multi-host booking
|
|
* 3. Being a team/org admin where the event type belongs (uses PBAC if enabled)
|
|
* 4. Being an org admin where the booking organizer belongs (uses PBAC if enabled, for personal bookings)
|
|
* 5. Being a team admin of any team the booking organizer belongs to (uses PBAC if enabled, for personal bookings)
|
|
*/
|
|
async doesUserIdHaveAccessToBooking({
|
|
userId,
|
|
bookingUid,
|
|
bookingId,
|
|
}: {
|
|
userId: number;
|
|
bookingUid?: string;
|
|
bookingId?: number;
|
|
}): Promise<boolean> {
|
|
const bookingRepo = new BookingRepository(this.prismaClient);
|
|
const userRepo = new UserRepository(this.prismaClient);
|
|
|
|
// Fetch booking by UID or ID
|
|
const booking = bookingUid
|
|
? await bookingRepo.findByUidIncludeEventType({ bookingUid })
|
|
: bookingId
|
|
? await bookingRepo.findByIdIncludeEventType({ bookingId })
|
|
: null;
|
|
|
|
if (!booking) return false;
|
|
|
|
// Case 1: User is the booking organizer
|
|
if (userId === booking.userId) return true;
|
|
|
|
// Case 2: User is one of the hosts
|
|
if (this.isUserAHost(userId, booking)) return true;
|
|
|
|
// Case 3: If booking has a teamId, check if user has access to team bookings
|
|
if (booking.eventType?.teamId) {
|
|
const teamId = booking.eventType.teamId;
|
|
|
|
const hasAccess = await this.permissionCheckService.checkPermission({
|
|
userId,
|
|
teamId,
|
|
permission: "booking.readTeamBookings",
|
|
fallbackRoles: [MembershipRole.OWNER, MembershipRole.ADMIN],
|
|
});
|
|
return hasAccess;
|
|
}
|
|
|
|
// For managed events (child event types), check the parent's teamId
|
|
if (booking.eventType?.parent?.teamId) {
|
|
const isAdminOrUser = await userRepo.isAdminOfTeamOrParentOrg({
|
|
userId,
|
|
teamId: booking.eventType.parent.teamId,
|
|
});
|
|
return isAdminOrUser;
|
|
}
|
|
|
|
if (!booking.userId) return false;
|
|
|
|
const bookingOwner = await userRepo.getUserOrganizationAndTeams({ userId: booking.userId });
|
|
|
|
if (!bookingOwner) return false;
|
|
|
|
// Case 4: Check if user is admin of booking organizer's organization
|
|
if (bookingOwner.organizationId) {
|
|
const orgId = bookingOwner.organizationId;
|
|
|
|
const hasAccess = await this.permissionCheckService.checkPermission({
|
|
userId,
|
|
teamId: orgId,
|
|
permission: "booking.readOrgBookings",
|
|
fallbackRoles: [MembershipRole.OWNER, MembershipRole.ADMIN],
|
|
});
|
|
if (hasAccess) return true;
|
|
}
|
|
|
|
// Case 5: Check if user is admin of any team the booking organizer belongs to
|
|
for (const membership of bookingOwner.teams) {
|
|
const teamId = membership.teamId;
|
|
|
|
const hasAccess = await this.permissionCheckService.checkPermission({
|
|
userId,
|
|
teamId,
|
|
permission: "booking.readTeamBookings",
|
|
fallbackRoles: [MembershipRole.OWNER, MembershipRole.ADMIN],
|
|
});
|
|
if (hasAccess) return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks if a user has access to view booking details using:
|
|
* 1. Owner/host check
|
|
* 2. PBAC permission check for team bookings
|
|
*/
|
|
async checkBookingAccessWithPBAC({
|
|
userId,
|
|
bookingUid,
|
|
}: {
|
|
userId: number;
|
|
bookingUid: string;
|
|
}): Promise<boolean> {
|
|
const bookingRepo = new BookingRepository(this.prismaClient);
|
|
|
|
const booking = await bookingRepo.findByUidForAuthorizationCheck({ bookingUid });
|
|
|
|
if (!booking) {
|
|
return false;
|
|
}
|
|
|
|
// Check 1: User is the owner of the booking
|
|
const isOwner = booking.userId === userId;
|
|
if (isOwner) {
|
|
return true;
|
|
}
|
|
|
|
// Check 2: User is a host (checking eventType.users and eventType.hosts)
|
|
const attendeeEmails = new Set(booking.attendees?.map((attendee) => attendee.email) || []);
|
|
|
|
const isHostViaEventTypeUsers = booking.eventType?.users?.some(
|
|
(user) => user.id === userId && attendeeEmails.has(user.email)
|
|
);
|
|
|
|
const isHostViaEventTypeHosts = booking.eventType?.hosts?.some(
|
|
(host) => host.user?.id === userId && attendeeEmails.has(host.user.email)
|
|
);
|
|
|
|
if (isHostViaEventTypeUsers || isHostViaEventTypeHosts) {
|
|
return true;
|
|
}
|
|
|
|
// Check 3: PBAC permission check for team bookings
|
|
if (!booking.eventType?.teamId) {
|
|
// No team associated with booking and user is not owner/host
|
|
return false;
|
|
}
|
|
|
|
const permissionCheckService = new PermissionCheckService();
|
|
const hasPermission = await permissionCheckService.checkPermission({
|
|
userId,
|
|
teamId: booking.eventType.teamId,
|
|
permission: "booking.read",
|
|
fallbackRoles: [MembershipRole.ADMIN, MembershipRole.OWNER],
|
|
});
|
|
|
|
return hasPermission;
|
|
}
|
|
}
|