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>
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
import { MembershipRole } from "@prisma/client";
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { closeComUpsertTeamUser } from "@calcom/lib/sync/SyncServiceManager";
|
|
import prisma from "@calcom/prisma";
|
|
|
|
import { getSession } from "@lib/auth";
|
|
import slugify from "@lib/slugify";
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const session = await getSession({ req: req });
|
|
|
|
if (!session?.user?.id) {
|
|
res.status(401).json({ message: "Not authenticated" });
|
|
return;
|
|
}
|
|
|
|
const ownerUser = await prisma.user.findFirst({
|
|
where: {
|
|
id: session.user.id,
|
|
},
|
|
select: {
|
|
id: true,
|
|
username: true,
|
|
createdDate: true,
|
|
name: true,
|
|
plan: true,
|
|
email: true,
|
|
},
|
|
});
|
|
|
|
if (req.method === "POST") {
|
|
const slug = slugify(req.body.name);
|
|
|
|
const nameCollisions = await prisma.team.count({
|
|
where: {
|
|
OR: [{ name: req.body.name }, { slug: slug }],
|
|
},
|
|
});
|
|
|
|
if (nameCollisions > 0) {
|
|
return res.status(409).json({ errorCode: "TeamNameCollision", message: "Team name already taken." });
|
|
}
|
|
|
|
const createTeam = await prisma.team.create({
|
|
data: {
|
|
name: req.body.name,
|
|
slug: slug,
|
|
},
|
|
});
|
|
|
|
await prisma.membership.create({
|
|
data: {
|
|
teamId: createTeam.id,
|
|
userId: session.user.id,
|
|
role: MembershipRole.OWNER,
|
|
accepted: true,
|
|
},
|
|
});
|
|
|
|
// Sync Services: Close.com
|
|
closeComUpsertTeamUser(createTeam, ownerUser, MembershipRole.OWNER);
|
|
|
|
return res.status(201).json({ message: "Team created" });
|
|
}
|
|
|
|
res.status(404).json({ message: "Team not found" });
|
|
}
|