* chore: Make app compatible with Fluid Compute * Removed isCold from me api endpoint * chore: Remove handler caching for Fluid Compute compatibility (#20692) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: keith@cal.com <keith@cal.com> * fix client_id issue * chore: Remove UNSTABLE_HANDLER_CACHE for Fluid Compute compatibility (#20694) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: keith@cal.com <keith@cal.com> * Fixing types * Fixing type issues * chore: Remove importHandler references for Fluid Compute compatibility Co-Authored-By: keith@cal.com <keith@cal.com> * chore: Remove importHandler references from attributes router for Fluid Compute compatibility Co-Authored-By: keith@cal.com <keith@cal.com> --------- Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: keith@cal.com <keith@cal.com>
58 lines
2.2 KiB
TypeScript
58 lines
2.2 KiB
TypeScript
import * as hubspot from "@hubspot/api-client";
|
|
import type { TokenResponseIF } from "@hubspot/api-client/lib/codegen/oauth/models/TokenResponseIF";
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { WEBAPP_URL_FOR_OAUTH } 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 metadata from "../_metadata";
|
|
|
|
const hubspotClient = new hubspot.Client();
|
|
|
|
export interface HubspotToken extends TokenResponseIF {
|
|
expiryDate?: number;
|
|
}
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const { code } = req.query;
|
|
const state = decodeOAuthState(req);
|
|
|
|
if (code && typeof code !== "string") {
|
|
res.status(400).json({ message: "`code` must be a string" });
|
|
return;
|
|
}
|
|
|
|
if (!req.session?.user?.id) {
|
|
return res.status(401).json({ message: "You must be logged in to do this" });
|
|
}
|
|
|
|
let clientId = "";
|
|
let clientSecret = "";
|
|
const appKeys = await getAppKeysFromSlug("hubspot");
|
|
if (typeof appKeys.client_id === "string") clientId = appKeys.client_id;
|
|
if (typeof appKeys.client_secret === "string") clientSecret = appKeys.client_secret;
|
|
if (!clientId) return res.status(400).json({ message: "HubSpot client id missing." });
|
|
if (!clientSecret) return res.status(400).json({ message: "HubSpot client secret missing." });
|
|
|
|
const hubspotToken: HubspotToken = await hubspotClient.oauth.tokensApi.createToken(
|
|
"authorization_code",
|
|
code,
|
|
`${WEBAPP_URL_FOR_OAUTH}/api/integrations/hubspot/callback`,
|
|
clientId,
|
|
clientSecret
|
|
);
|
|
|
|
// set expiry date as offset from current time.
|
|
hubspotToken.expiryDate = Math.round(Date.now() + hubspotToken.expiresIn * 1000);
|
|
|
|
await createOAuthAppCredential({ appId: metadata.slug, type: metadata.type }, hubspotToken, req);
|
|
|
|
res.redirect(
|
|
getSafeRedirectUrl(state?.returnTo) ?? getInstalledAppPath({ variant: "other", slug: "hubspot" })
|
|
);
|
|
}
|