63 lines
2.3 KiB
TypeScript
63 lines
2.3 KiB
TypeScript
import axios from "axios";
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import qs from "qs";
|
|
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { getSafeRedirectUrl } from "@calcom/lib/getSafeRedirectUrl";
|
|
|
|
import getAppKeysFromSlug from "../../_utils/getAppKeysFromSlug";
|
|
import getInstalledAppPath from "../../_utils/getInstalledAppPath";
|
|
import createOAuthAppCredential from "../../_utils/oauth/createOAuthAppCredential";
|
|
import { decodeOAuthState } from "../../_utils/oauth/decodeOAuthState";
|
|
import appConfig from "../config.json";
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const { code, "accounts-server": accountsServer } = req.query;
|
|
|
|
if (code && typeof code !== "string") {
|
|
res.status(400).json({ message: "`code` must be a string" });
|
|
return;
|
|
}
|
|
|
|
if (!req.session?.user?.id) {
|
|
res.status(401).json({ message: "You must be logged in to do this" });
|
|
return;
|
|
}
|
|
|
|
const appKeys = await getAppKeysFromSlug(appConfig.slug);
|
|
|
|
const clientId = typeof appKeys.client_id === "string" ? appKeys.client_id : "";
|
|
const clientSecret = typeof appKeys.client_secret === "string" ? appKeys.client_secret : "";
|
|
|
|
if (!clientId) return res.status(400).json({ message: "Zoho Bigin client_id missing." });
|
|
if (!clientSecret) return res.status(400).json({ message: "Zoho Bigin client_secret missing." });
|
|
|
|
const accountsUrl = `${accountsServer}/oauth/v2/token`;
|
|
const redirectUri = `${WEBAPP_URL}/api/integrations/${appConfig.slug}/callback`;
|
|
|
|
const formData = {
|
|
client_id: clientId,
|
|
client_secret: clientSecret,
|
|
code: code,
|
|
redirect_uri: redirectUri,
|
|
grant_type: "authorization_code",
|
|
};
|
|
|
|
const tokenInfo = await axios.post(accountsUrl, qs.stringify(formData), {
|
|
headers: {
|
|
"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",
|
|
},
|
|
});
|
|
|
|
tokenInfo.data.expiryDate = Math.round(Date.now() + tokenInfo.data.expires_in);
|
|
tokenInfo.data.accountServer = accountsServer;
|
|
|
|
await createOAuthAppCredential({ appId: appConfig.slug, type: appConfig.type }, tokenInfo.data, req);
|
|
|
|
const state = decodeOAuthState(req);
|
|
res.redirect(
|
|
getSafeRedirectUrl(state?.returnTo) ??
|
|
getInstalledAppPath({ variant: appConfig.variant, slug: appConfig.slug })
|
|
);
|
|
}
|