* feat: Cal.diy — community-driven MIT-licensed fork of Cal.com This squashed commit contains all Cal.diy changes applied on top of calcom/cal.com main: - Rebrand Cal.com to Cal.diy across the entire codebase - Remove Enterprise Edition (EE) features, license checks, and AGPL restrictions - Switch license from AGPL-3.0 to MIT - Remove docs/ directory (migrated to Nextra at cal.diy) - Remove dead code: org tests, EE tips, platform nav, premium username, SAML/SSO, etc. - Clean up .env.example for self-hosted Cal.diy - Update Docker image references to calcom/cal.diy - Update README, CONTRIBUTING.md, and issue templates for Cal.diy community fork - Add PR welcome bot for Cal.diy contributors - Fix API v2 breaking changes oasdiff ignore entries - Replace Blacksmith CI runners with default GitHub Actions 3893 files changed, 20789 insertions(+), 411020 deletions(-) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * refactor: remove org-specific /organizations/:orgId endpoints from API v2 atoms controllers (#1701) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * fix: revert Cal.diy Inc to Cal.com, Inc. in license files, copyright notices, and package metadata (#1702) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * rip out org related comments in api v2 --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
103 lines
2.9 KiB
TypeScript
103 lines
2.9 KiB
TypeScript
import { getOrgUsernameFromEmail } from "@calcom/features/auth/signup/utils/getOrgUsernameFromEmail";
|
|
import { ProfileRepository } from "@calcom/features/profile/repositories/ProfileRepository";
|
|
import { UserRepository } from "@calcom/features/users/repositories/UserRepository";
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import logger from "@calcom/lib/logger";
|
|
import { safeStringify } from "@calcom/lib/safeStringify";
|
|
import prisma from "@calcom/prisma";
|
|
import { RedirectType } from "@calcom/prisma/enums";
|
|
|
|
const log = logger.getSubLogger({ prefix: ["lib", "createAProfileForAnExistingUser"] });
|
|
export const createAProfileForAnExistingUser = async ({
|
|
user,
|
|
organizationId,
|
|
}: {
|
|
user: {
|
|
email: string;
|
|
id: number;
|
|
currentUsername: string | null;
|
|
};
|
|
organizationId: number;
|
|
}) => {
|
|
const teamRepo = new TeamRepository(prisma);
|
|
const org = await teamRepo.findById({ id: organizationId });
|
|
if (!org) {
|
|
throw new Error(`Organization with id ${organizationId} not found`);
|
|
}
|
|
|
|
const existingProfile = await ProfileRepository.findByUserIdAndOrgId({
|
|
userId: user.id,
|
|
organizationId,
|
|
});
|
|
|
|
if (existingProfile) {
|
|
return existingProfile;
|
|
}
|
|
|
|
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,
|
|
});
|
|
|
|
const userRepo = new UserRepository(prisma);
|
|
await userRepo.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 = WEBAPP_URL;
|
|
|
|
if (org.isPlatform) {
|
|
// We don't want redirects for Platform Organizations
|
|
return profile;
|
|
}
|
|
|
|
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;
|
|
};
|