* 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>
99 lines
3.1 KiB
TypeScript
99 lines
3.1 KiB
TypeScript
import { updateNewTeamMemberEventTypes } from "@calcom/features/ee/teams/lib/queries";
|
|
import { ProfileRepository } from "@calcom/features/profile/repositories/ProfileRepository";
|
|
import { prisma } from "@calcom/prisma";
|
|
import type { Team, User, OrganizationSettings } from "@calcom/prisma/client";
|
|
import { MembershipRole } from "@calcom/prisma/enums";
|
|
|
|
import { getOrgUsernameFromEmail } from "./getOrgUsernameFromEmail";
|
|
|
|
type ParentTeamData = {
|
|
id: number;
|
|
organizationSettings?: Pick<OrganizationSettings, "orgAutoAcceptEmail"> | null;
|
|
};
|
|
|
|
export const createOrUpdateMemberships = async ({
|
|
user,
|
|
team,
|
|
}: {
|
|
user: Pick<User, "id">;
|
|
team: Pick<Team, "id" | "parentId" | "isOrganization"> & {
|
|
organizationSettings?: Pick<OrganizationSettings, "orgAutoAcceptEmail"> | null;
|
|
parent?: ParentTeamData | null;
|
|
};
|
|
}) => {
|
|
return await prisma.$transaction(async (tx) => {
|
|
// Determine the organization context - either the team itself (if it's an org) or its parent
|
|
const organizationId = team.isOrganization ? team.id : (team.parent?.id ?? null);
|
|
const orgSettings = team.isOrganization
|
|
? team.organizationSettings
|
|
: (team.parent?.organizationSettings ?? null);
|
|
|
|
// Create profile if user is joining an organization context (either directly or via sub-team)
|
|
if (organizationId) {
|
|
const dbUser = await tx.user.findUnique({
|
|
where: { id: user.id },
|
|
select: { username: true, email: true },
|
|
});
|
|
|
|
if (dbUser) {
|
|
// Ideally dbUser.username should never be null, but just in case.
|
|
// This method being called only during signup means that dbUser.username should be the correct org username
|
|
const orgUsername =
|
|
dbUser.username || getOrgUsernameFromEmail(dbUser.email, orgSettings?.orgAutoAcceptEmail ?? null);
|
|
|
|
await tx.profile.upsert({
|
|
create: {
|
|
uid: ProfileRepository.generateProfileUid(),
|
|
userId: user.id,
|
|
organizationId: organizationId,
|
|
username: orgUsername,
|
|
},
|
|
update: {
|
|
username: orgUsername,
|
|
},
|
|
where: {
|
|
userId_organizationId: {
|
|
userId: user.id,
|
|
organizationId: organizationId,
|
|
},
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
const membership = await tx.membership.upsert({
|
|
where: {
|
|
userId_teamId: { userId: user.id, teamId: team.id },
|
|
},
|
|
update: {
|
|
accepted: true,
|
|
},
|
|
create: {
|
|
userId: user.id,
|
|
teamId: team.id,
|
|
role: MembershipRole.MEMBER,
|
|
accepted: true,
|
|
},
|
|
});
|
|
const orgMembership = null;
|
|
if (team.parentId) {
|
|
await tx.membership.upsert({
|
|
where: {
|
|
userId_teamId: { userId: user.id, teamId: team.parentId },
|
|
},
|
|
update: {
|
|
accepted: true,
|
|
},
|
|
create: {
|
|
userId: user.id,
|
|
teamId: team.parentId,
|
|
role: MembershipRole.MEMBER,
|
|
accepted: true,
|
|
},
|
|
});
|
|
}
|
|
await updateNewTeamMemberEventTypes(user.id, team.id);
|
|
return { membership, orgMembership };
|
|
});
|
|
};
|