1d927a8b33
* WIP close.com app * Removing leaked dev key (now invalid) * Misspelled env variable * Making progress still WIP * Progress + tests * Final touches * More unit tests * Finished up tests * Merge main * Removing unneeded stuff + submodules * Removing static props, fields fix * Removing unneeded stuff p2 * Commenting * Refactoring Close.com Calendar Service + initial structure * Progress con CloseComService * Standarizing APIs * Zodifying * Expanding sync services * Sendgrid Sync Service * using own request for sendgrid + debug logs * Making get last booking work for console * Helpscout dynamic app API * Standarizing calls + adding call from booking creation * Strategy change for last booking * Strategy change for last booking on help scout api * Fixing failing build * Implementing user deletion * Fix linting + slight cleaning * Undoing eslint disable * Removing more unsupported eslint properties * Closecom as non-standard sync service * Finishing closecom lead operations * Fixing lint * Guarding app from sync services * Reverting submodules * Applying PR feedback * Reverting API to be plain handler * Cleaning notes Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: zomars <zomars@me.com>
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { deleteStripeCustomer } from "@calcom/app-store/stripepayment/lib/customer";
|
|
import { deleteWebUser as syncServicesDeleteWebUser } from "@calcom/lib/sync/SyncServiceManager";
|
|
import prisma from "@calcom/prisma";
|
|
|
|
import { getSession } from "@lib/auth";
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const session = await getSession({ req });
|
|
|
|
if (!session?.user.id) {
|
|
return res.status(401).json({ message: "Not authenticated" });
|
|
}
|
|
|
|
if (req.method !== "DELETE") {
|
|
return res.status(405).json({ message: "Method Not Allowed" });
|
|
}
|
|
|
|
if (req.method === "DELETE") {
|
|
// Get user
|
|
const user = await prisma.user.findUnique({
|
|
rejectOnNotFound: true,
|
|
where: {
|
|
id: session.user?.id,
|
|
},
|
|
select: {
|
|
id: true,
|
|
email: true,
|
|
metadata: true,
|
|
username: true,
|
|
createdDate: true,
|
|
name: true,
|
|
plan: true,
|
|
},
|
|
});
|
|
// Delete from stripe
|
|
await deleteStripeCustomer(user).catch(console.warn);
|
|
// Delete from Cal
|
|
await prisma.user.delete({
|
|
where: {
|
|
id: session?.user.id,
|
|
},
|
|
});
|
|
|
|
// Sync Services
|
|
syncServicesDeleteWebUser(user);
|
|
|
|
return res.status(204).end();
|
|
}
|
|
}
|