2021-07-15 01:19:30 +00:00
|
|
|
import { CalendarEvent, createEvent, updateEvent } from "@lib/calendarClient";
|
|
|
|
import { Credential } from "@prisma/client";
|
|
|
|
import async from "async";
|
|
|
|
import { createMeeting, updateMeeting } from "@lib/videoClient";
|
|
|
|
|
|
|
|
export interface EventResult {
|
|
|
|
type: string;
|
|
|
|
success: boolean;
|
|
|
|
uid: string;
|
|
|
|
createdEvent?: unknown;
|
|
|
|
updatedEvent?: unknown;
|
|
|
|
originalEvent: CalendarEvent;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface PartialBooking {
|
|
|
|
id: number;
|
|
|
|
references: Array<PartialReference>;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface PartialReference {
|
|
|
|
id: number;
|
|
|
|
type: string;
|
|
|
|
uid: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class EventManager {
|
|
|
|
calendarCredentials: Array<Credential>;
|
|
|
|
videoCredentials: Array<Credential>;
|
|
|
|
|
|
|
|
constructor(credentials: Array<Credential>) {
|
|
|
|
this.calendarCredentials = credentials.filter((cred) => cred.type.endsWith("_calendar"));
|
|
|
|
this.videoCredentials = credentials.filter((cred) => cred.type.endsWith("_video"));
|
|
|
|
}
|
|
|
|
|
|
|
|
public async create(event: CalendarEvent): Promise<Array<EventResult>> {
|
2021-07-20 18:07:59 +00:00
|
|
|
const isVideo = EventManager.isIntegration(event.location);
|
|
|
|
|
|
|
|
// First, create all calendar events. If this is a video event, don't send a mail right here.
|
|
|
|
const results: Array<EventResult> = await this.createAllCalendarEvents(event, isVideo);
|
2021-07-15 01:19:30 +00:00
|
|
|
|
|
|
|
// If and only if event type is a video meeting, create a video meeting as well.
|
2021-07-20 18:07:59 +00:00
|
|
|
if (isVideo) {
|
2021-07-15 01:19:30 +00:00
|
|
|
results.push(await this.createVideoEvent(event));
|
|
|
|
}
|
|
|
|
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async update(event: CalendarEvent, booking: PartialBooking): Promise<Array<EventResult>> {
|
2021-07-20 18:07:59 +00:00
|
|
|
const isVideo = EventManager.isIntegration(event.location);
|
|
|
|
|
|
|
|
// First, update all calendar events. If this is a video event, don't send a mail right here.
|
|
|
|
const results: Array<EventResult> = await this.updateAllCalendarEvents(event, booking, isVideo);
|
2021-07-15 01:19:30 +00:00
|
|
|
|
|
|
|
// If and only if event type is a video meeting, update the video meeting as well.
|
2021-07-20 18:07:59 +00:00
|
|
|
if (isVideo) {
|
2021-07-15 01:19:30 +00:00
|
|
|
results.push(await this.updateVideoEvent(event, booking));
|
|
|
|
}
|
|
|
|
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates event entries for all calendar integrations given in the credentials.
|
2021-07-20 18:07:59 +00:00
|
|
|
* When noMail is true, no mails will be sent. This is used when the event is
|
|
|
|
* a video meeting because then the mail containing the video credentials will be
|
|
|
|
* more important than the mails created for these bare calendar events.
|
2021-07-15 01:19:30 +00:00
|
|
|
*
|
|
|
|
* @param event
|
2021-07-20 18:07:59 +00:00
|
|
|
* @param noMail
|
2021-07-15 01:19:30 +00:00
|
|
|
* @private
|
|
|
|
*/
|
2021-07-20 18:07:59 +00:00
|
|
|
private createAllCalendarEvents(event: CalendarEvent, noMail: boolean): Promise<Array<EventResult>> {
|
2021-07-15 01:19:30 +00:00
|
|
|
return async.mapLimit(this.calendarCredentials, 5, async (credential: Credential) => {
|
2021-07-20 18:07:59 +00:00
|
|
|
return createEvent(credential, event, noMail);
|
2021-07-15 01:19:30 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private getVideoCredential(event: CalendarEvent): Credential | undefined {
|
|
|
|
const integrationName = event.location.replace("integrations:", "");
|
|
|
|
return this.videoCredentials.find((credential: Credential) => credential.type.includes(integrationName));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a video event entry for the selected integration location.
|
|
|
|
*
|
|
|
|
* @param event
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
private createVideoEvent(event: CalendarEvent): Promise<EventResult> {
|
|
|
|
const credential = this.getVideoCredential(event);
|
|
|
|
|
|
|
|
if (credential) {
|
|
|
|
return createMeeting(credential, event);
|
|
|
|
} else {
|
|
|
|
return Promise.reject("No suitable credentials given for the requested integration name.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-20 18:07:59 +00:00
|
|
|
/**
|
|
|
|
* Updates the event entries for all calendar integrations given in the credentials.
|
|
|
|
* When noMail is true, no mails will be sent. This is used when the event is
|
|
|
|
* a video meeting because then the mail containing the video credentials will be
|
|
|
|
* more important than the mails created for these bare calendar events.
|
|
|
|
*
|
|
|
|
* @param event
|
|
|
|
* @param booking
|
|
|
|
* @param noMail
|
|
|
|
* @private
|
|
|
|
*/
|
2021-07-15 01:19:30 +00:00
|
|
|
private updateAllCalendarEvents(
|
|
|
|
event: CalendarEvent,
|
2021-07-20 18:07:59 +00:00
|
|
|
booking: PartialBooking,
|
|
|
|
noMail: boolean
|
2021-07-15 01:19:30 +00:00
|
|
|
): Promise<Array<EventResult>> {
|
|
|
|
return async.mapLimit(this.calendarCredentials, 5, async (credential) => {
|
2021-07-18 20:17:18 +00:00
|
|
|
const bookingRefUid = booking.references.filter((ref) => ref.type === credential.type)[0]?.uid;
|
2021-07-20 18:07:59 +00:00
|
|
|
return updateEvent(credential, bookingRefUid, event, noMail);
|
2021-07-15 01:19:30 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-20 18:07:59 +00:00
|
|
|
/**
|
|
|
|
* Updates a single video event.
|
|
|
|
*
|
|
|
|
* @param event
|
|
|
|
* @param booking
|
|
|
|
* @private
|
|
|
|
*/
|
2021-07-15 01:19:30 +00:00
|
|
|
private updateVideoEvent(event: CalendarEvent, booking: PartialBooking) {
|
|
|
|
const credential = this.getVideoCredential(event);
|
|
|
|
|
|
|
|
if (credential) {
|
|
|
|
const bookingRefUid = booking.references.filter((ref) => ref.type === credential.type)[0].uid;
|
|
|
|
return updateMeeting(credential, bookingRefUid, event);
|
|
|
|
} else {
|
|
|
|
return Promise.reject("No suitable credentials given for the requested integration name.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the given location describes an integration that delivers meeting credentials.
|
|
|
|
*
|
|
|
|
* @param location
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
private static isIntegration(location: string): boolean {
|
|
|
|
return location.includes("integrations:");
|
|
|
|
}
|
|
|
|
}
|