* added layouts for moving teams step * added admin section for org creation step * extended org creation to also move existing teams * wip * wip * wip * further changes * Add checkout for org in onboarding * Fix ts errors * Self review feedback * Self review addressed * Fix unit tests * Fix ts error * Seans feedback addressed * feat: fix correct accounts pending * fix: unit tests for new invite member permissions * tests: org admin onboarding tests for existing user * tests: Inital user self serve flow * chore: update teamAndUserFixture to create X amount of teams * chore: add testId to card actionButton * test: add test-Id to continue or checkout button * tests: add tests for migrating existing teams * feat: match new designs * fix: isAdminCheck * chore: fix pricing copy * fix: flacky tests * Fix tests? * More test fixes * Check all checkboxes * Fix type error * Fix failing test and typescript issues * Fix unpaid org allowing auto-add users * Add self-serve flag * Skip tests --------- Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Hariom <hariombalhara@gmail.com> Co-authored-by: sean-brydon <sean@cal.com> Co-authored-by: Joe Au-Yeung <j.auyeung419@gmail.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: Omar López <zomars@me.com>
88 lines
2.5 KiB
TypeScript
88 lines
2.5 KiB
TypeScript
import { getOrgFullOrigin } from "@calcom/ee/organizations/lib/orgDomains";
|
|
import { ProfileRepository } from "@calcom/lib/server/repository/profile";
|
|
import { TeamRepository } from "@calcom/lib/server/repository/team";
|
|
import { UserRepository } from "@calcom/lib/server/repository/user";
|
|
import prisma from "@calcom/prisma";
|
|
import { RedirectType } from "@calcom/prisma/enums";
|
|
|
|
import { getOrgUsernameFromEmail } from "../features/auth/signup/utils/getOrgUsernameFromEmail";
|
|
import logger from "./logger";
|
|
import { safeStringify } from "./safeStringify";
|
|
|
|
const log = logger.getSubLogger({ prefix: ["lib", "createAProfileForAnExistingUser"] });
|
|
export const createAProfileForAnExistingUser = async ({
|
|
user,
|
|
organizationId,
|
|
}: {
|
|
user: {
|
|
email: string;
|
|
id: number;
|
|
currentUsername: string | null;
|
|
};
|
|
organizationId: number;
|
|
}) => {
|
|
const org = await TeamRepository.findById({ id: organizationId });
|
|
if (!org) {
|
|
throw new Error(`Organization with id ${organizationId} not found`);
|
|
}
|
|
const usernameInOrg = getOrgUsernameFromEmail(
|
|
user.email,
|
|
org.organizationSettings?.orgAutoAcceptEmail ?? null
|
|
);
|
|
const profile = await ProfileRepository.createForExistingUser({
|
|
userId: user.id,
|
|
organizationId,
|
|
username: usernameInOrg,
|
|
email: user.email,
|
|
movedFromUserId: user.id,
|
|
});
|
|
|
|
await UserRepository.updateWhereId({
|
|
whereId: user.id,
|
|
data: {
|
|
movedToProfileId: profile.id,
|
|
},
|
|
});
|
|
|
|
log.debug(
|
|
"Created profile for user",
|
|
safeStringify({ userId: user.id, profileId: profile.id, usernameInOrg, username: user.currentUsername })
|
|
);
|
|
|
|
const orgSlug = org.slug || org.requestedSlug;
|
|
|
|
if (!orgSlug) {
|
|
throw new Error(`Organization with id ${organizationId} doesn't have a slug`);
|
|
}
|
|
|
|
const orgUrl = getOrgFullOrigin(orgSlug);
|
|
|
|
if (user.currentUsername) {
|
|
log.debug(`Creating redirect for user ${user.currentUsername} to ${orgUrl}/${usernameInOrg}`);
|
|
await prisma.tempOrgRedirect.upsert({
|
|
where: {
|
|
from_type_fromOrgId: {
|
|
from: user.currentUsername,
|
|
type: RedirectType.User,
|
|
fromOrgId: 0,
|
|
},
|
|
},
|
|
update: {
|
|
type: RedirectType.User,
|
|
from: user.currentUsername,
|
|
fromOrgId: 0,
|
|
toUrl: `${orgUrl}/${usernameInOrg}`,
|
|
},
|
|
create: {
|
|
type: RedirectType.User,
|
|
from: user.currentUsername,
|
|
fromOrgId: 0,
|
|
toUrl: `${orgUrl}/${usernameInOrg}`,
|
|
},
|
|
});
|
|
} else {
|
|
log.debug(`Skipping redirect setup as ${user.id} doesn't have a username`);
|
|
}
|
|
return profile;
|
|
};
|