2022-04-16 02:23:38 +00:00
|
|
|
import * as hubspot from "@hubspot/api-client";
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { BatchInputPublicAssociation } from "@hubspot/api-client/lib/codegen/crm/associations";
|
|
|
|
import type { PublicObjectSearchRequest } from "@hubspot/api-client/lib/codegen/crm/contacts";
|
|
|
|
import type { SimplePublicObjectInput } from "@hubspot/api-client/lib/codegen/crm/objects/meetings";
|
2022-04-16 02:23:38 +00:00
|
|
|
|
2022-05-02 22:50:52 +00:00
|
|
|
import { getLocation } from "@calcom/lib/CalEventParser";
|
2022-04-16 02:23:38 +00:00
|
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
2022-05-02 22:50:52 +00:00
|
|
|
import { HttpError } from "@calcom/lib/http-error";
|
2022-04-16 02:23:38 +00:00
|
|
|
import logger from "@calcom/lib/logger";
|
|
|
|
import prisma from "@calcom/prisma";
|
|
|
|
import type {
|
|
|
|
Calendar,
|
|
|
|
CalendarEvent,
|
|
|
|
EventBusyDate,
|
|
|
|
IntegrationCalendar,
|
|
|
|
NewCalendarEventType,
|
2022-07-25 19:13:52 +00:00
|
|
|
Person,
|
2022-04-16 02:23:38 +00:00
|
|
|
} from "@calcom/types/Calendar";
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { CredentialPayload } from "@calcom/types/Credential";
|
2022-04-16 02:23:38 +00:00
|
|
|
|
2022-05-02 22:50:52 +00:00
|
|
|
import getAppKeysFromSlug from "../../_utils/getAppKeysFromSlug";
|
2022-04-16 02:23:38 +00:00
|
|
|
import type { HubspotToken } from "../api/callback";
|
|
|
|
|
|
|
|
const hubspotClient = new hubspot.Client();
|
|
|
|
|
2022-11-22 20:44:08 +00:00
|
|
|
export default class HubspotCalendarService implements Calendar {
|
2022-04-16 02:23:38 +00:00
|
|
|
private url = "";
|
|
|
|
private integrationName = "";
|
2022-05-02 22:50:52 +00:00
|
|
|
private auth: Promise<{ getToken: () => Promise<any> }>;
|
2022-04-16 02:23:38 +00:00
|
|
|
private log: typeof logger;
|
2022-05-02 22:50:52 +00:00
|
|
|
private client_id = "";
|
|
|
|
private client_secret = "";
|
2022-04-16 02:23:38 +00:00
|
|
|
|
2022-10-31 22:06:03 +00:00
|
|
|
constructor(credential: CredentialPayload) {
|
2022-04-16 02:23:38 +00:00
|
|
|
this.integrationName = "hubspot_other_calendar";
|
|
|
|
|
2022-05-02 22:50:52 +00:00
|
|
|
this.auth = this.hubspotAuth(credential).then((r) => r);
|
2022-04-16 02:23:38 +00:00
|
|
|
|
|
|
|
this.log = logger.getChildLogger({ prefix: [`[[lib] ${this.integrationName}`] });
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:13:52 +00:00
|
|
|
private hubspotContactCreate = async (attendees: Person[]) => {
|
|
|
|
const simplePublicObjectInputs: SimplePublicObjectInput[] = attendees.map((attendee) => {
|
|
|
|
const [firstname, lastname] = attendee.name ? attendee.name.split(" ") : [attendee.email, ""];
|
|
|
|
return {
|
|
|
|
properties: {
|
|
|
|
firstname,
|
|
|
|
lastname,
|
|
|
|
email: attendee.email,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
return Promise.all(
|
2022-10-19 16:11:50 +00:00
|
|
|
simplePublicObjectInputs.map((contact) =>
|
|
|
|
hubspotClient.crm.contacts.basicApi.create(contact).catch((error) => {
|
|
|
|
// If multiple events are created, subsequent events may fail due to
|
|
|
|
// contact was created by previous event creation, so we introduce a
|
|
|
|
// fallback taking advantage of the error message providing the contact id
|
|
|
|
if (error.body.message.includes("Contact already exists. Existing ID:")) {
|
|
|
|
const split = error.body.message.split("Contact already exists. Existing ID: ");
|
|
|
|
return { id: split[1] };
|
|
|
|
} else {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
)
|
2022-07-25 19:13:52 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-04-16 02:23:38 +00:00
|
|
|
private hubspotContactSearch = async (event: CalendarEvent) => {
|
|
|
|
const publicObjectSearchRequest: PublicObjectSearchRequest = {
|
|
|
|
filterGroups: event.attendees.map((attendee) => ({
|
|
|
|
filters: [
|
|
|
|
{
|
|
|
|
value: attendee.email,
|
|
|
|
propertyName: "email",
|
|
|
|
operator: "EQ",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
})),
|
|
|
|
sorts: ["hs_object_id"],
|
|
|
|
properties: ["hs_object_id", "email"],
|
|
|
|
limit: 10,
|
|
|
|
after: 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
return await hubspotClient.crm.contacts.searchApi
|
|
|
|
.doSearch(publicObjectSearchRequest)
|
|
|
|
.then((apiResponse) => apiResponse.results);
|
|
|
|
};
|
|
|
|
|
|
|
|
private getHubspotMeetingBody = (event: CalendarEvent): string => {
|
|
|
|
return `<b>${event.organizer.language.translate("invitee_timezone")}:</b> ${
|
|
|
|
event.attendees[0].timeZone
|
|
|
|
}<br><br><b>${event.organizer.language.translate("share_additional_notes")}</b><br>${
|
|
|
|
event.additionalNotes || "-"
|
|
|
|
}`;
|
|
|
|
};
|
|
|
|
|
|
|
|
private hubspotCreateMeeting = async (event: CalendarEvent) => {
|
|
|
|
const simplePublicObjectInput: SimplePublicObjectInput = {
|
|
|
|
properties: {
|
|
|
|
hs_timestamp: Date.now().toString(),
|
|
|
|
hs_meeting_title: event.title,
|
|
|
|
hs_meeting_body: this.getHubspotMeetingBody(event),
|
|
|
|
hs_meeting_location: getLocation(event),
|
|
|
|
hs_meeting_start_time: new Date(event.startTime).toISOString(),
|
|
|
|
hs_meeting_end_time: new Date(event.endTime).toISOString(),
|
|
|
|
hs_meeting_outcome: "SCHEDULED",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return hubspotClient.crm.objects.meetings.basicApi.create(simplePublicObjectInput);
|
|
|
|
};
|
|
|
|
|
|
|
|
private hubspotAssociate = async (meeting: any, contacts: any) => {
|
|
|
|
const batchInputPublicAssociation: BatchInputPublicAssociation = {
|
|
|
|
inputs: contacts.map((contact: any) => ({
|
|
|
|
_from: { id: meeting.id },
|
|
|
|
to: { id: contact.id },
|
|
|
|
type: "meeting_event_to_contact",
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
return hubspotClient.crm.associations.batchApi.create(
|
|
|
|
"meetings",
|
|
|
|
"contacts",
|
|
|
|
batchInputPublicAssociation
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
private hubspotUpdateMeeting = async (uid: string, event: CalendarEvent) => {
|
|
|
|
const simplePublicObjectInput: SimplePublicObjectInput = {
|
|
|
|
properties: {
|
|
|
|
hs_timestamp: Date.now().toString(),
|
|
|
|
hs_meeting_title: event.title,
|
|
|
|
hs_meeting_body: this.getHubspotMeetingBody(event),
|
|
|
|
hs_meeting_location: getLocation(event),
|
|
|
|
hs_meeting_start_time: new Date(event.startTime).toISOString(),
|
|
|
|
hs_meeting_end_time: new Date(event.endTime).toISOString(),
|
|
|
|
hs_meeting_outcome: "RESCHEDULED",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return hubspotClient.crm.objects.meetings.basicApi.update(uid, simplePublicObjectInput);
|
|
|
|
};
|
|
|
|
|
|
|
|
private hubspotDeleteMeeting = async (uid: string) => {
|
|
|
|
return hubspotClient.crm.objects.meetings.basicApi.archive(uid);
|
|
|
|
};
|
|
|
|
|
2022-10-31 22:06:03 +00:00
|
|
|
private hubspotAuth = async (credential: CredentialPayload) => {
|
2022-05-02 22:50:52 +00:00
|
|
|
const appKeys = await getAppKeysFromSlug("hubspot");
|
|
|
|
if (typeof appKeys.client_id === "string") this.client_id = appKeys.client_id;
|
|
|
|
if (typeof appKeys.client_secret === "string") this.client_secret = appKeys.client_secret;
|
|
|
|
if (!this.client_id) throw new HttpError({ statusCode: 400, message: "Hubspot client_id missing." });
|
|
|
|
if (!this.client_secret)
|
|
|
|
throw new HttpError({ statusCode: 400, message: "Hubspot client_secret missing." });
|
2022-04-16 02:23:38 +00:00
|
|
|
const credentialKey = credential.key as unknown as HubspotToken;
|
|
|
|
const isTokenValid = (token: HubspotToken) =>
|
|
|
|
token &&
|
|
|
|
token.tokenType &&
|
|
|
|
token.accessToken &&
|
|
|
|
token.expiryDate &&
|
|
|
|
(token.expiresIn || token.expiryDate) < Date.now();
|
|
|
|
|
|
|
|
const refreshAccessToken = async (refreshToken: string) => {
|
|
|
|
try {
|
|
|
|
const hubspotRefreshToken: HubspotToken = await hubspotClient.oauth.tokensApi.createToken(
|
|
|
|
"refresh_token",
|
|
|
|
undefined,
|
2022-11-22 20:44:08 +00:00
|
|
|
WEBAPP_URL + "/api/integrations/hubspot/callback",
|
2022-05-02 22:50:52 +00:00
|
|
|
this.client_id,
|
|
|
|
this.client_secret,
|
2022-04-16 02:23:38 +00:00
|
|
|
refreshToken
|
|
|
|
);
|
|
|
|
|
|
|
|
// set expiry date as offset from current time.
|
|
|
|
hubspotRefreshToken.expiryDate = Math.round(Date.now() + hubspotRefreshToken.expiresIn * 1000);
|
|
|
|
await prisma.credential.update({
|
|
|
|
where: {
|
|
|
|
id: credential.id,
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
key: hubspotRefreshToken as any,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
hubspotClient.setAccessToken(hubspotRefreshToken.accessToken);
|
|
|
|
} catch (e: unknown) {
|
|
|
|
this.log.error(e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
getToken: () =>
|
|
|
|
!isTokenValid(credentialKey) ? Promise.resolve([]) : refreshAccessToken(credentialKey.refreshToken),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-07-25 19:13:52 +00:00
|
|
|
async handleMeetingCreation(event: CalendarEvent, contacts: SimplePublicObjectInput[]) {
|
|
|
|
const meetingEvent = await this.hubspotCreateMeeting(event);
|
|
|
|
if (meetingEvent) {
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("meeting:creation:ok", { meetingEvent });
|
2022-07-25 19:13:52 +00:00
|
|
|
const associatedMeeting = await this.hubspotAssociate(meetingEvent, contacts);
|
|
|
|
if (associatedMeeting) {
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("association:creation:ok", { associatedMeeting });
|
2022-07-25 19:13:52 +00:00
|
|
|
return Promise.resolve({
|
|
|
|
uid: meetingEvent.id,
|
|
|
|
id: meetingEvent.id,
|
|
|
|
type: "hubspot_other_calendar",
|
|
|
|
password: "",
|
|
|
|
url: "",
|
|
|
|
additionalInfo: { contacts, associatedMeeting },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return Promise.reject("Something went wrong when associating the meeting and attendees in HubSpot");
|
|
|
|
}
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("meeting:creation:notOk", { meetingEvent, event, contacts });
|
2022-07-25 19:13:52 +00:00
|
|
|
return Promise.reject("Something went wrong when creating a meeting in HubSpot");
|
|
|
|
}
|
|
|
|
|
2022-04-16 02:23:38 +00:00
|
|
|
async createEvent(event: CalendarEvent): Promise<NewCalendarEventType> {
|
2022-05-02 22:50:52 +00:00
|
|
|
const auth = await this.auth;
|
|
|
|
await auth.getToken();
|
2022-04-16 02:23:38 +00:00
|
|
|
const contacts = await this.hubspotContactSearch(event);
|
2022-07-25 19:13:52 +00:00
|
|
|
if (contacts.length) {
|
|
|
|
if (contacts.length == event.attendees.length) {
|
|
|
|
// All attendees do exist in HubSpot
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("contact:search:all", { event, contacts });
|
2022-07-25 19:13:52 +00:00
|
|
|
return await this.handleMeetingCreation(event, contacts);
|
|
|
|
} else {
|
|
|
|
// Some attendees don't exist in HubSpot
|
|
|
|
// Get the existing contacts' email to filter out
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("contact:search:notAll", { event, contacts });
|
2022-07-25 19:13:52 +00:00
|
|
|
const existingContacts = contacts.map((contact) => contact.properties.email);
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("contact:filter:existing", { existingContacts });
|
2022-07-25 19:13:52 +00:00
|
|
|
// Get non existing contacts filtering out existing from attendees
|
|
|
|
const nonExistingContacts = event.attendees.filter(
|
|
|
|
(attendee) => !existingContacts.includes(attendee.email)
|
|
|
|
);
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("contact:filter:nonExisting", { nonExistingContacts });
|
2022-07-25 19:13:52 +00:00
|
|
|
// Only create contacts in HubSpot that were not present in the previous contact search
|
|
|
|
const createContacts = await this.hubspotContactCreate(nonExistingContacts);
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("contact:created", { createContacts });
|
2022-07-25 19:13:52 +00:00
|
|
|
// Continue with meeting creation and association only when all contacts are present in HubSpot
|
|
|
|
if (createContacts.length) {
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("contact:creation:ok");
|
2022-10-19 16:11:50 +00:00
|
|
|
return await this.handleMeetingCreation(
|
|
|
|
event,
|
|
|
|
createContacts.concat(contacts) as SimplePublicObjectInput[]
|
|
|
|
);
|
2022-04-16 02:23:38 +00:00
|
|
|
}
|
2022-07-25 19:13:52 +00:00
|
|
|
return Promise.reject("Something went wrong when creating non-existing attendees in HubSpot");
|
|
|
|
}
|
|
|
|
} else {
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("contact:search:none", { event, contacts });
|
2022-07-25 19:13:52 +00:00
|
|
|
const createContacts = await this.hubspotContactCreate(event.attendees);
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("contact:created", { createContacts });
|
2022-07-25 19:13:52 +00:00
|
|
|
if (createContacts.length) {
|
2022-08-04 19:55:20 +00:00
|
|
|
this.log.debug("contact:creation:ok");
|
2022-10-19 16:11:50 +00:00
|
|
|
return await this.handleMeetingCreation(event, createContacts as SimplePublicObjectInput[]);
|
2022-04-16 02:23:38 +00:00
|
|
|
}
|
|
|
|
}
|
2022-07-25 19:13:52 +00:00
|
|
|
return Promise.reject("Something went wrong when searching/creating the attendees in HubSpot");
|
2022-04-16 02:23:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async updateEvent(uid: string, event: CalendarEvent): Promise<any> {
|
2022-05-02 22:50:52 +00:00
|
|
|
const auth = await this.auth;
|
|
|
|
await auth.getToken();
|
2022-04-16 02:23:38 +00:00
|
|
|
return await this.hubspotUpdateMeeting(uid, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
async deleteEvent(uid: string): Promise<void> {
|
2022-05-02 22:50:52 +00:00
|
|
|
const auth = await this.auth;
|
|
|
|
await auth.getToken();
|
2022-04-16 02:23:38 +00:00
|
|
|
return await this.hubspotDeleteMeeting(uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
async getAvailability(
|
|
|
|
dateFrom: string,
|
|
|
|
dateTo: string,
|
|
|
|
selectedCalendars: IntegrationCalendar[]
|
|
|
|
): Promise<EventBusyDate[]> {
|
|
|
|
return Promise.resolve([]);
|
|
|
|
}
|
|
|
|
|
|
|
|
async listCalendars(event?: CalendarEvent): Promise<IntegrationCalendar[]> {
|
|
|
|
return Promise.resolve([]);
|
|
|
|
}
|
|
|
|
}
|