2022-08-05 17:56:20 +00:00
|
|
|
import { getLocation, getRichDescription } from "@calcom/lib/CalEventParser";
|
|
|
|
import logger from "@calcom/lib/logger";
|
|
|
|
import prisma from "@calcom/prisma";
|
|
|
|
import type { BufferedBusyTime } from "@calcom/types/BufferedBusyTime";
|
|
|
|
import type {
|
|
|
|
Calendar,
|
|
|
|
CalendarEvent,
|
|
|
|
EventBusyDate,
|
|
|
|
IntegrationCalendar,
|
|
|
|
NewCalendarEventType,
|
|
|
|
} from "@calcom/types/Calendar";
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { CredentialPayload } from "@calcom/types/Credential";
|
2022-08-05 17:56:20 +00:00
|
|
|
|
|
|
|
import { handleLarkError, isExpired, LARK_HOST } from "../common";
|
|
|
|
import type {
|
|
|
|
CreateAttendeesResp,
|
|
|
|
CreateEventResp,
|
|
|
|
FreeBusyResp,
|
|
|
|
GetPrimaryCalendarsResp,
|
|
|
|
LarkAuthCredentials,
|
|
|
|
LarkEvent,
|
|
|
|
LarkEventAttendee,
|
|
|
|
ListCalendarsResp,
|
|
|
|
RefreshTokenResp,
|
|
|
|
} from "../types/LarkCalendar";
|
|
|
|
import { getAppAccessToken } from "./AppAccessToken";
|
|
|
|
|
|
|
|
function parseEventTime2Timestamp(eventTime: string): string {
|
|
|
|
return String(+new Date(eventTime) / 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class LarkCalendarService implements Calendar {
|
|
|
|
private url = `https://${LARK_HOST}/open-apis`;
|
|
|
|
private integrationName = "";
|
|
|
|
private log: typeof logger;
|
|
|
|
auth: { getToken: () => Promise<string> };
|
|
|
|
|
2022-10-31 22:06:03 +00:00
|
|
|
constructor(credential: CredentialPayload) {
|
2022-08-05 17:56:20 +00:00
|
|
|
this.integrationName = "lark_calendar";
|
|
|
|
this.auth = this.larkAuth(credential);
|
|
|
|
this.log = logger.getChildLogger({ prefix: [`[[lib] ${this.integrationName}`] });
|
|
|
|
}
|
|
|
|
|
2022-10-31 22:06:03 +00:00
|
|
|
private larkAuth = (credential: CredentialPayload) => {
|
2022-08-05 17:56:20 +00:00
|
|
|
const larkAuthCredentials = credential.key as LarkAuthCredentials;
|
|
|
|
return {
|
|
|
|
getToken: () =>
|
|
|
|
!isExpired(larkAuthCredentials.expiry_date)
|
|
|
|
? Promise.resolve(larkAuthCredentials.access_token)
|
|
|
|
: this.refreshAccessToken(credential),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-10-31 22:06:03 +00:00
|
|
|
private refreshAccessToken = async (credential: CredentialPayload) => {
|
2022-08-05 17:56:20 +00:00
|
|
|
const larkAuthCredentials = credential.key as LarkAuthCredentials;
|
|
|
|
const refreshExpireDate = larkAuthCredentials.refresh_expires_date;
|
|
|
|
const refreshToken = larkAuthCredentials.refresh_token;
|
|
|
|
if (isExpired(refreshExpireDate) || !refreshToken) {
|
2022-11-11 19:54:44 +00:00
|
|
|
await prisma.credential.delete({ where: { id: credential.id } });
|
|
|
|
throw new Error("Lark Calendar refresh token expired");
|
2022-08-05 17:56:20 +00:00
|
|
|
}
|
|
|
|
try {
|
|
|
|
const appAccessToken = await getAppAccessToken();
|
2022-08-31 19:19:30 +00:00
|
|
|
const resp = await fetch(`${this.url}/authen/v1/refresh_access_token`, {
|
2022-08-05 17:56:20 +00:00
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
Authorization: `Bearer ${appAccessToken}`,
|
|
|
|
"Content-Type": "application/json; charset=utf-8",
|
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
grant_type: "refresh_token",
|
|
|
|
refresh_token: refreshToken,
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
const data = await handleLarkError<RefreshTokenResp>(resp, this.log);
|
2022-08-31 19:19:30 +00:00
|
|
|
this.log.debug(
|
|
|
|
"LarkCalendarService refreshAccessToken data refresh_expires_in",
|
|
|
|
data.data.refresh_expires_in,
|
|
|
|
"and access token expire in",
|
|
|
|
data.data.expires_in
|
|
|
|
);
|
2022-08-05 17:56:20 +00:00
|
|
|
const newLarkAuthCredentials: LarkAuthCredentials = {
|
2022-08-31 19:19:30 +00:00
|
|
|
refresh_token: data.data.refresh_token,
|
|
|
|
refresh_expires_date: Math.round(+new Date() / 1000 + data.data.refresh_expires_in),
|
2022-08-05 17:56:20 +00:00
|
|
|
access_token: data.data.access_token,
|
|
|
|
expiry_date: Math.round(+new Date() / 1000 + data.data.expires_in),
|
|
|
|
};
|
|
|
|
|
|
|
|
await prisma.credential.update({
|
|
|
|
where: {
|
|
|
|
id: credential.id,
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
key: newLarkAuthCredentials,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
return newLarkAuthCredentials.access_token;
|
|
|
|
} catch (error) {
|
|
|
|
this.log.error("LarkCalendarService refreshAccessToken error", error);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private fetcher = async (endpoint: string, init?: RequestInit | undefined) => {
|
2022-08-31 19:19:30 +00:00
|
|
|
let accessToken = "";
|
|
|
|
try {
|
|
|
|
accessToken = await this.auth.getToken();
|
|
|
|
} catch (error) {
|
|
|
|
throw new Error("get access token error");
|
|
|
|
}
|
|
|
|
|
2022-08-05 17:56:20 +00:00
|
|
|
return fetch(`${this.url}${endpoint}`, {
|
|
|
|
method: "GET",
|
|
|
|
headers: {
|
|
|
|
Authorization: "Bearer " + accessToken,
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
...init?.headers,
|
|
|
|
},
|
|
|
|
...init,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
async createEvent(event: CalendarEvent): Promise<NewCalendarEventType> {
|
|
|
|
let eventId = "";
|
|
|
|
let eventRespData;
|
|
|
|
const calendarId = event.destinationCalendar?.externalId;
|
|
|
|
if (!calendarId) {
|
|
|
|
throw new Error("no calendar id");
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
const eventResponse = await this.fetcher(`/calendar/v4/calendars/${calendarId}/events/create_event`, {
|
|
|
|
method: "POST",
|
|
|
|
body: JSON.stringify(this.translateEvent(event)),
|
|
|
|
});
|
|
|
|
eventRespData = await handleLarkError<CreateEventResp>(eventResponse, this.log);
|
|
|
|
eventId = eventRespData.data.event.event_id as string;
|
|
|
|
} catch (error) {
|
|
|
|
this.log.error(error);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
await this.createAttendees(event, eventId);
|
|
|
|
return {
|
|
|
|
...eventRespData,
|
|
|
|
uid: eventRespData.data.event.event_id as string,
|
|
|
|
id: eventRespData.data.event.event_id as string,
|
|
|
|
type: "lark_calendar",
|
|
|
|
password: "",
|
|
|
|
url: "",
|
|
|
|
additionalInfo: {},
|
|
|
|
};
|
|
|
|
} catch (error) {
|
|
|
|
this.log.error(error);
|
|
|
|
await this.deleteEvent(eventId, event, calendarId);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private createAttendees = async (event: CalendarEvent, eventId: string) => {
|
|
|
|
const calendarId = event.destinationCalendar?.externalId;
|
|
|
|
if (!calendarId) {
|
|
|
|
this.log.error("no calendar id provided in createAttendees");
|
|
|
|
throw new Error("no calendar id provided in createAttendees");
|
|
|
|
}
|
|
|
|
const attendeeResponse = await this.fetcher(
|
|
|
|
`/calendar/v4/calendars/${calendarId}/events/${eventId}/attendees/create_attendees`,
|
|
|
|
{
|
|
|
|
method: "POST",
|
|
|
|
body: JSON.stringify({
|
|
|
|
attendees: this.translateAttendees(event),
|
|
|
|
need_notification: false,
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
return handleLarkError<CreateAttendeesResp>(attendeeResponse, this.log);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param uid
|
|
|
|
* @param event
|
|
|
|
* @returns
|
|
|
|
*/
|
|
|
|
async updateEvent(uid: string, event: CalendarEvent, externalCalendarId?: string) {
|
|
|
|
const eventId = uid;
|
|
|
|
let eventRespData;
|
|
|
|
const calendarId = externalCalendarId || event.destinationCalendar?.externalId;
|
|
|
|
if (!calendarId) {
|
|
|
|
this.log.error("no calendar id provided in updateEvent");
|
|
|
|
throw new Error("no calendar id provided in updateEvent");
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
const eventResponse = await this.fetcher(
|
|
|
|
`/calendar/v4/calendars/${calendarId}/events/${eventId}/patch_event`,
|
|
|
|
{
|
|
|
|
method: "PATCH",
|
|
|
|
body: JSON.stringify(this.translateEvent(event)),
|
|
|
|
}
|
|
|
|
);
|
|
|
|
eventRespData = await handleLarkError<CreateEventResp>(eventResponse, this.log);
|
|
|
|
} catch (error) {
|
|
|
|
this.log.error(error);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Since attendees cannot be changed any more, updateAttendees is not needed
|
|
|
|
// await this.updateAttendees(event, eventId);
|
|
|
|
return {
|
|
|
|
...eventRespData,
|
|
|
|
uid: eventRespData.data.event.event_id as string,
|
|
|
|
id: eventRespData.data.event.event_id as string,
|
|
|
|
type: "lark_calendar",
|
|
|
|
password: "",
|
|
|
|
url: "",
|
|
|
|
additionalInfo: {},
|
|
|
|
};
|
|
|
|
} catch (error) {
|
|
|
|
this.log.error(error);
|
|
|
|
await this.deleteEvent(eventId, event);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param uid
|
|
|
|
* @param event
|
|
|
|
* @returns
|
|
|
|
*/
|
|
|
|
async deleteEvent(uid: string, event: CalendarEvent, externalCalendarId?: string) {
|
|
|
|
const calendarId = externalCalendarId || event.destinationCalendar?.externalId;
|
|
|
|
if (!calendarId) {
|
|
|
|
this.log.error("no calendar id provided in deleteEvent");
|
|
|
|
throw new Error("no calendar id provided in deleteEvent");
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
const response = await this.fetcher(`/calendar/v4/calendars/${calendarId}/events/${uid}`, {
|
|
|
|
method: "DELETE",
|
|
|
|
});
|
|
|
|
await handleLarkError(response, this.log);
|
|
|
|
} catch (error) {
|
|
|
|
this.log.error(error);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async getAvailability(
|
|
|
|
dateFrom: string,
|
|
|
|
dateTo: string,
|
|
|
|
selectedCalendars: IntegrationCalendar[]
|
|
|
|
): Promise<EventBusyDate[]> {
|
|
|
|
const selectedCalendarIds = selectedCalendars
|
|
|
|
.filter((e) => e.integration === this.integrationName)
|
|
|
|
.map((e) => e.externalId)
|
|
|
|
.filter(Boolean);
|
|
|
|
if (selectedCalendarIds.length === 0 && selectedCalendars.length > 0) {
|
|
|
|
// Only calendars of other integrations selected
|
|
|
|
return Promise.resolve([]);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
let queryIds = selectedCalendarIds;
|
|
|
|
if (queryIds.length === 0) {
|
|
|
|
queryIds = (await this.listCalendars()).map((e) => e.externalId).filter(Boolean) || [];
|
|
|
|
if (queryIds.length === 0) {
|
|
|
|
return Promise.resolve([]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const response = await this.fetcher(`/calendar/v4/freebusy/batch_get`, {
|
|
|
|
method: "POST",
|
|
|
|
body: JSON.stringify({
|
|
|
|
time_min: dateFrom,
|
|
|
|
time_max: dateTo,
|
|
|
|
calendar_ids: queryIds,
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
const data = await handleLarkError<FreeBusyResp>(response, this.log);
|
|
|
|
|
|
|
|
const busyData =
|
|
|
|
data.data.freebusy_list?.reduce<BufferedBusyTime[]>((acc, cur) => {
|
|
|
|
acc.push({
|
|
|
|
start: cur.start_time,
|
|
|
|
end: cur.end_time,
|
|
|
|
});
|
|
|
|
return acc;
|
|
|
|
}, []) || [];
|
|
|
|
return busyData;
|
|
|
|
} catch (error) {
|
|
|
|
this.log.error(error);
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
listCalendars = async (): Promise<IntegrationCalendar[]> => {
|
|
|
|
try {
|
|
|
|
const resp = await this.fetcher(`/calendar/v4/calendars`);
|
|
|
|
const data = await handleLarkError<ListCalendarsResp>(resp, this.log);
|
|
|
|
const result = data.data.calendar_list
|
|
|
|
.filter((cal) => {
|
|
|
|
if (cal.type !== "primary" && cal.type !== "shared") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (cal.permissions === "private") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (cal.role === "owner" || cal.role === "writer") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
})
|
|
|
|
.map((cal) => {
|
|
|
|
const calendar: IntegrationCalendar = {
|
|
|
|
externalId: cal.calendar_id ?? "No Id",
|
|
|
|
integration: this.integrationName,
|
|
|
|
name: cal.summary_alias || cal.summary || "No calendar name",
|
|
|
|
primary: cal.type === "primary",
|
2022-12-20 21:50:20 +00:00
|
|
|
email: cal.calendar_id ?? "",
|
2022-08-05 17:56:20 +00:00
|
|
|
};
|
|
|
|
return calendar;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (result.some((cal) => !!cal.primary)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// No primary calendar found, get primary calendar directly
|
|
|
|
const respPrimary = await this.fetcher(`/calendar/v4/calendars/primary`, {
|
|
|
|
method: "POST",
|
|
|
|
});
|
|
|
|
const dataPrimary = await handleLarkError<GetPrimaryCalendarsResp>(respPrimary, this.log);
|
|
|
|
return dataPrimary.data.calendars.map((item) => {
|
|
|
|
const cal = item.calendar;
|
|
|
|
const calendar: IntegrationCalendar = {
|
|
|
|
externalId: cal.calendar_id ?? "No Id",
|
|
|
|
integration: this.integrationName,
|
|
|
|
name: cal.summary_alias || cal.summary || "No calendar name",
|
|
|
|
primary: cal.type === "primary",
|
2022-12-20 21:50:20 +00:00
|
|
|
email: cal.calendar_id ?? "",
|
2022-08-05 17:56:20 +00:00
|
|
|
};
|
|
|
|
return calendar;
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
this.log.error("There was an error contacting lark calendar service: ", err);
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private translateEvent = (event: CalendarEvent): LarkEvent => {
|
|
|
|
const larkEvent: LarkEvent = {
|
|
|
|
summary: event.title,
|
|
|
|
description: getRichDescription(event),
|
|
|
|
start_time: {
|
|
|
|
timestamp: parseEventTime2Timestamp(event.startTime),
|
|
|
|
timezone: event.organizer.timeZone,
|
|
|
|
},
|
|
|
|
end_time: {
|
|
|
|
timestamp: parseEventTime2Timestamp(event.endTime),
|
|
|
|
timezone: event.organizer.timeZone,
|
|
|
|
},
|
|
|
|
attendee_ability: "none",
|
|
|
|
free_busy_status: "busy",
|
|
|
|
reminders: [
|
|
|
|
{
|
|
|
|
minutes: 5,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
if (event.location) {
|
|
|
|
larkEvent.location = { name: getLocation(event) };
|
|
|
|
}
|
|
|
|
return larkEvent;
|
|
|
|
};
|
|
|
|
|
|
|
|
private translateAttendees = (event: CalendarEvent): LarkEventAttendee[] => {
|
2023-03-21 03:15:59 +00:00
|
|
|
const attendeeArray: LarkEventAttendee[] = [];
|
|
|
|
event.attendees
|
2022-08-05 17:56:20 +00:00
|
|
|
.filter((att) => att.email)
|
2023-03-21 03:15:59 +00:00
|
|
|
.forEach((att) => {
|
2022-08-05 17:56:20 +00:00
|
|
|
const attendee: LarkEventAttendee = {
|
|
|
|
type: "third_party",
|
|
|
|
is_optional: false,
|
|
|
|
third_party_email: att.email,
|
|
|
|
};
|
2023-03-21 03:15:59 +00:00
|
|
|
attendeeArray.push(attendee);
|
2022-08-05 17:56:20 +00:00
|
|
|
});
|
2023-03-21 03:15:59 +00:00
|
|
|
event.team?.members.forEach((member) => {
|
|
|
|
const attendee: LarkEventAttendee = {
|
|
|
|
type: "third_party",
|
|
|
|
is_optional: false,
|
|
|
|
third_party_email: member.email,
|
|
|
|
};
|
|
|
|
attendeeArray.push(attendee);
|
|
|
|
});
|
|
|
|
return attendeeArray;
|
2022-08-05 17:56:20 +00:00
|
|
|
};
|
|
|
|
}
|