2023-04-25 22:39:47 +00:00
|
|
|
import { deleteStripeCustomer } from "@calcom/app-store/stripepayment/lib/customer";
|
|
|
|
import { ErrorCode } from "@calcom/features/auth/lib/ErrorCode";
|
|
|
|
import { deleteWebUser as syncServicesDeleteWebUser } from "@calcom/lib/sync/SyncServiceManager";
|
|
|
|
import { prisma } from "@calcom/prisma";
|
2023-05-02 11:44:05 +00:00
|
|
|
import { IdentityProvider } from "@calcom/prisma/enums";
|
2023-04-25 22:39:47 +00:00
|
|
|
import type { TrpcSessionUser } from "@calcom/trpc/server/trpc";
|
|
|
|
|
|
|
|
type DeleteMeWithoutPasswordOptions = {
|
|
|
|
ctx: {
|
|
|
|
user: NonNullable<TrpcSessionUser>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export const deleteMeWithoutPasswordHandler = async ({ ctx }: DeleteMeWithoutPasswordOptions) => {
|
|
|
|
const user = await prisma.user.findUnique({
|
|
|
|
where: {
|
|
|
|
email: ctx.user.email.toLowerCase(),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (!user) {
|
|
|
|
throw new Error(ErrorCode.UserNotFound);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user.identityProvider === IdentityProvider.CAL) {
|
|
|
|
throw new Error(ErrorCode.SocialIdentityProviderRequired);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user.twoFactorEnabled) {
|
|
|
|
throw new Error(ErrorCode.SocialIdentityProviderRequired);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove me from Stripe
|
|
|
|
await deleteStripeCustomer(user).catch(console.warn);
|
|
|
|
|
|
|
|
// Remove my account
|
|
|
|
const deletedUser = await prisma.user.delete({
|
|
|
|
where: {
|
|
|
|
id: ctx.user.id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
// Sync Services
|
|
|
|
syncServicesDeleteWebUser(deletedUser);
|
|
|
|
|
|
|
|
return;
|
|
|
|
};
|