* fix timezone display on booking page to reflect event availability timezone * migrate fetching event owner's schedule to server side * migrate fetching event owner's schedule to server side * fix e2e test errors * Add WEBAPP_URL_FOR_OAUTH to salesforce auth * In event manager constructor include "_crm" credentials as calendar creds * Change crm apps to type to end with `_crm` * Move sendgrid out of CRM * Add zoho bigin to CRM apps * When getting apps, use slug * Add `crm` variants * Hubspot Oauth use `WEBAPP_URL_FOR_OAUTH` * Refactor creating credentials * Fix empty CRM page * Use credentials with `_crm` * Abstract getAppCategoryTitle * Add integration.handler changes * Fix tests * Type fix --------- Co-authored-by: Shaik-Sirajuddin <sirajuddinshaik30gmail.com> Co-authored-by: Shaik-Sirajuddin <sirajudddinshaik30@gmail.com> Co-authored-by: Shaik-Sirajuddin <89742297+Shaik-Sirajuddin@users.noreply.github.com> Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { symmetricEncrypt } from "@calcom/lib/crypto";
|
|
import { HttpError } from "@calcom/lib/http-error";
|
|
import logger from "@calcom/lib/logger";
|
|
import { defaultResponder } from "@calcom/lib/server";
|
|
import prisma from "@calcom/prisma";
|
|
|
|
import checkSession from "../../_utils/auth";
|
|
import getInstalledAppPath from "../../_utils/getInstalledAppPath";
|
|
import appConfig from "../config.json";
|
|
|
|
export async function getHandler(req: NextApiRequest, res: NextApiResponse) {
|
|
const session = checkSession(req);
|
|
|
|
const { api_key } = req.body;
|
|
if (!api_key) throw new HttpError({ statusCode: 400, message: "No Api Key provoided to check" });
|
|
|
|
const encrypted = symmetricEncrypt(JSON.stringify({ api_key }), process.env.CALENDSO_ENCRYPTION_KEY || "");
|
|
|
|
const data = {
|
|
type: appConfig.type,
|
|
key: { encrypted },
|
|
userId: session.user?.id,
|
|
appId: appConfig.slug,
|
|
};
|
|
|
|
try {
|
|
await prisma.credential.create({
|
|
data,
|
|
});
|
|
} catch (reason) {
|
|
logger.error("Could not add Close.com app", reason);
|
|
return res.status(500).json({ message: "Could not add Close.com app" });
|
|
}
|
|
|
|
return res.status(200).json({ url: getInstalledAppPath({ variant: "other", slug: "closecom" }) });
|
|
}
|
|
|
|
export default defaultResponder(getHandler);
|