53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import prisma from "@calcom/prisma";
|
|
|
|
import getAppKeysFromSlug from "../../_utils/getAppKeysFromSlug";
|
|
|
|
let client_id = "";
|
|
let client_secret = "";
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const { code } = req.query;
|
|
|
|
const appKeys = await getAppKeysFromSlug("zoom");
|
|
if (typeof appKeys.client_id === "string") client_id = appKeys.client_id;
|
|
if (typeof appKeys.client_secret === "string") client_secret = appKeys.client_secret;
|
|
if (!client_id) return res.status(400).json({ message: "Zoom client_id missing." });
|
|
if (!client_secret) return res.status(400).json({ message: "Zoom client_secret missing." });
|
|
|
|
const redirectUri = encodeURI(WEBAPP_URL + "/api/integrations/zoomvideo/callback");
|
|
const authHeader = "Basic " + Buffer.from(client_id + ":" + client_secret).toString("base64");
|
|
const result = await fetch(
|
|
"https://zoom.us/oauth/token?grant_type=authorization_code&code=" + code + "&redirect_uri=" + redirectUri,
|
|
{
|
|
method: "POST",
|
|
headers: {
|
|
Authorization: authHeader,
|
|
},
|
|
}
|
|
);
|
|
|
|
const responseBody = await result.json();
|
|
|
|
responseBody.expiry_date = Math.round(Date.now() + responseBody.expires_in * 1000);
|
|
delete responseBody.expires_in;
|
|
|
|
await prisma.user.update({
|
|
where: {
|
|
id: req.session?.user.id,
|
|
},
|
|
data: {
|
|
credentials: {
|
|
create: {
|
|
type: "zoom_video",
|
|
key: responseBody,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
res.redirect("/apps/installed");
|
|
}
|