2021-09-22 18:36:13 +00:00
|
|
|
import { Prisma } from "@prisma/client";
|
2021-10-13 11:35:25 +00:00
|
|
|
import _ from "lodash";
|
2021-09-22 18:36:13 +00:00
|
|
|
|
2021-09-22 19:52:38 +00:00
|
|
|
import { validJson } from "@lib/jsonUtils";
|
|
|
|
|
2021-09-22 18:36:13 +00:00
|
|
|
const credentialData = Prisma.validator<Prisma.CredentialArgs>()({
|
2021-10-13 11:35:25 +00:00
|
|
|
select: { id: true, type: true },
|
2021-09-22 18:36:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
type CredentialData = Prisma.CredentialGetPayload<typeof credentialData>;
|
|
|
|
|
2021-10-12 09:35:44 +00:00
|
|
|
export const ALL_INTEGRATIONS = [
|
|
|
|
{
|
|
|
|
installed: !!(process.env.GOOGLE_API_CREDENTIALS && validJson(process.env.GOOGLE_API_CREDENTIALS)),
|
|
|
|
type: "google_calendar",
|
|
|
|
title: "Google Calendar",
|
|
|
|
imageSrc: "integrations/google-calendar.svg",
|
|
|
|
description: "For personal and business calendars",
|
|
|
|
variant: "calendar",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
installed: !!(process.env.MS_GRAPH_CLIENT_ID && process.env.MS_GRAPH_CLIENT_SECRET),
|
|
|
|
type: "office365_calendar",
|
|
|
|
title: "Office 365 / Outlook.com Calendar",
|
|
|
|
imageSrc: "integrations/outlook.svg",
|
|
|
|
description: "For personal and business calendars",
|
|
|
|
variant: "calendar",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
installed: !!(process.env.ZOOM_CLIENT_ID && process.env.ZOOM_CLIENT_SECRET),
|
|
|
|
type: "zoom_video",
|
|
|
|
title: "Zoom",
|
|
|
|
imageSrc: "integrations/zoom.svg",
|
|
|
|
description: "Video Conferencing",
|
|
|
|
variant: "conferencing",
|
|
|
|
},
|
2021-10-13 11:35:25 +00:00
|
|
|
{
|
|
|
|
installed: !!process.env.DAILY_API_KEY,
|
|
|
|
type: "daily_video",
|
|
|
|
title: "Daily.co Video",
|
|
|
|
imageSrc: "integrations/daily.svg",
|
|
|
|
description: "Video Conferencing",
|
|
|
|
variant: "conferencing",
|
|
|
|
},
|
2021-10-12 09:35:44 +00:00
|
|
|
{
|
|
|
|
installed: true,
|
|
|
|
type: "caldav_calendar",
|
|
|
|
title: "CalDav Server",
|
|
|
|
imageSrc: "integrations/caldav.svg",
|
|
|
|
description: "For personal and business calendars",
|
|
|
|
variant: "calendar",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
installed: true,
|
|
|
|
type: "apple_calendar",
|
|
|
|
title: "Apple Calendar",
|
|
|
|
imageSrc: "integrations/apple-calendar.svg",
|
|
|
|
description: "For personal and business calendars",
|
|
|
|
variant: "calendar",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
installed: !!(
|
|
|
|
process.env.STRIPE_CLIENT_ID &&
|
|
|
|
process.env.NEXT_PUBLIC_STRIPE_PUBLIC_KEY &&
|
|
|
|
process.env.STRIPE_PRIVATE_KEY
|
|
|
|
),
|
|
|
|
type: "stripe_payment",
|
|
|
|
title: "Stripe",
|
|
|
|
imageSrc: "integrations/stripe.svg",
|
2021-10-12 12:50:43 +00:00
|
|
|
description: "Collect payments",
|
2021-10-12 09:35:44 +00:00
|
|
|
variant: "payment",
|
|
|
|
},
|
|
|
|
] as const;
|
2021-10-13 11:35:25 +00:00
|
|
|
|
|
|
|
function getIntegrations(userCredentials: CredentialData[]) {
|
|
|
|
const integrations = ALL_INTEGRATIONS.map((integration) => {
|
|
|
|
const credentials = userCredentials
|
|
|
|
.filter((credential) => credential.type === integration.type)
|
|
|
|
.map((credential) => _.pick(credential, ["id", "type"])); // ensure we don't leak `key` to frontend
|
|
|
|
|
|
|
|
const credential: typeof credentials[number] | null = credentials[0] || null;
|
|
|
|
return {
|
|
|
|
...integration,
|
|
|
|
/**
|
|
|
|
* @deprecated use `credentials`
|
|
|
|
*/
|
|
|
|
credential,
|
|
|
|
credentials,
|
|
|
|
};
|
|
|
|
});
|
2021-09-22 18:36:13 +00:00
|
|
|
|
|
|
|
return integrations;
|
|
|
|
}
|
|
|
|
|
2021-10-13 11:35:25 +00:00
|
|
|
export type IntegrationMeta = ReturnType<typeof getIntegrations>;
|
2021-10-12 09:35:44 +00:00
|
|
|
|
2021-10-13 11:35:25 +00:00
|
|
|
export function hasIntegration(integrations: IntegrationMeta, type: string): boolean {
|
|
|
|
return !!integrations.find(
|
|
|
|
(i) => i.type === type && !!i.installed && (type === "daily_video" || i.credentials.length > 0)
|
|
|
|
);
|
2021-09-22 18:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default getIntegrations;
|