* Remove unused code in InstalledAppsLayout * Add new app categories "crm", "conferencing" and "messaging" * Sort getAppCategories entries alphabetically * Fix 404s on new category pages (and remove hardcoded category lists) * Fix admin apps list not showing "no available apps" for new categories * Recategorise apps * Sync seed-app-store categories with config files * Replace unnecessary seed-app-store.config.json with appStoreMetadata * Copy video.svg to conferencing.svg * Add messaging.svg * Remove web3 from getAppCategories (used by installed apps, admin apps) * Fix app-store-cli categories - Add conferencing - Add CRM - Remove video - Remove web3 * Remove outdated web3 comment in seed-app-store * Update apps/web/public/static/locales/en/common.json * Add cron script to keep db apps in sync with app metadata * Add redirect for app category "video" to "conferencing" * Fix up "video" category overrides to apply to conferencing * Fix conferencing apps not showing as a location for non-team users * Restore "installed_app" string for conferencing apps * Make linter happier * Remove my "installed_app_conferencing_description" as this was fixed upstream * Quick tidy up * Add dry-run to syncAppMeta via CRON_ENABLE_APP_SYNC env * Replace console.log with logger in syncAppMeta --------- Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: alannnc <alannnc@gmail.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Omar López <zomars@me.com>
187 lines
5.4 KiB
TypeScript
187 lines
5.4 KiB
TypeScript
import { Prisma } from "@prisma/client";
|
|
import type { TFunction } from "next-i18next";
|
|
|
|
// If you import this file on any app it should produce circular dependency
|
|
// import appStore from "./index";
|
|
import { appStoreMetadata } from "@calcom/app-store/appStoreMetaData";
|
|
import type { EventLocationType } from "@calcom/app-store/locations";
|
|
import { defaultLocations } from "@calcom/app-store/locations";
|
|
import { AppCategories } from "@calcom/prisma/enums";
|
|
import type { App, AppMeta } from "@calcom/types/App";
|
|
|
|
export * from "./_utils/getEventTypeAppData";
|
|
|
|
type LocationOption = {
|
|
label: string;
|
|
value: EventLocationType["type"];
|
|
icon?: string;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
const ALL_APPS_MAP = Object.keys(appStoreMetadata).reduce((store, key) => {
|
|
const metadata = appStoreMetadata[key as keyof typeof appStoreMetadata] as AppMeta;
|
|
|
|
store[key] = metadata;
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
//@ts-ignore
|
|
delete store[key]["/*"];
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
//@ts-ignore
|
|
delete store[key]["__createdUsingCli"];
|
|
return store;
|
|
}, {} as Record<string, AppMeta>);
|
|
|
|
const credentialData = Prisma.validator<Prisma.CredentialArgs>()({
|
|
select: { id: true, type: true, key: true, userId: true, appId: true, invalid: true },
|
|
});
|
|
|
|
export type CredentialData = Prisma.CredentialGetPayload<typeof credentialData>;
|
|
|
|
export const ALL_APPS = Object.values(ALL_APPS_MAP);
|
|
|
|
export function getLocationGroupedOptions(integrations: ReturnType<typeof getApps>, t: TFunction) {
|
|
const apps: Record<
|
|
string,
|
|
{ label: string; value: string; disabled?: boolean; icon?: string; slug?: string }[]
|
|
> = {};
|
|
integrations.forEach((app) => {
|
|
if (app.locationOption) {
|
|
// All apps that are labeled as a locationOption are video apps. Extract the secondary category if available
|
|
let category =
|
|
app.categories.length >= 2
|
|
? app.categories.find(
|
|
(category) =>
|
|
!([AppCategories.video, AppCategories.conferencing] as string[]).includes(category)
|
|
)
|
|
: app.category;
|
|
if (!category) category = AppCategories.conferencing;
|
|
const option = { ...app.locationOption, icon: app.logo, slug: app.slug };
|
|
if (apps[category]) {
|
|
apps[category] = [...apps[category], option];
|
|
} else {
|
|
apps[category] = [option];
|
|
}
|
|
}
|
|
});
|
|
|
|
defaultLocations.forEach((l) => {
|
|
const category = l.category;
|
|
if (apps[category]) {
|
|
apps[category] = [
|
|
...apps[category],
|
|
{
|
|
label: l.label,
|
|
value: l.type,
|
|
icon: l.iconUrl,
|
|
},
|
|
];
|
|
} else {
|
|
apps[category] = [
|
|
{
|
|
label: l.label,
|
|
value: l.type,
|
|
icon: l.iconUrl,
|
|
},
|
|
];
|
|
}
|
|
});
|
|
const locations = [];
|
|
|
|
// Translating labels and pushing into array
|
|
for (const category in apps) {
|
|
const tmp = {
|
|
label: t(category),
|
|
options: apps[category].map((l) => ({
|
|
...l,
|
|
label: t(l.label),
|
|
})),
|
|
};
|
|
|
|
locations.push(tmp);
|
|
}
|
|
|
|
return locations;
|
|
}
|
|
|
|
/**
|
|
* This should get all available apps to the user based on his saved
|
|
* credentials, this should also get globally available apps.
|
|
*/
|
|
function getApps(userCredentials: CredentialData[]) {
|
|
const apps = ALL_APPS.map((appMeta) => {
|
|
const credentials = userCredentials.filter((credential) => credential.type === appMeta.type);
|
|
let locationOption: LocationOption | null = null;
|
|
|
|
/** If the app is a globally installed one, let's inject it's key */
|
|
if (appMeta.isGlobal) {
|
|
credentials.push({
|
|
id: +new Date().getTime(),
|
|
type: appMeta.type,
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
key: appMeta.key!,
|
|
userId: +new Date().getTime(),
|
|
appId: appMeta.slug,
|
|
invalid: false,
|
|
});
|
|
}
|
|
|
|
/** Check if app has location option AND add it if user has credentials for it */
|
|
if (credentials.length > 0 && appMeta?.appData?.location) {
|
|
locationOption = {
|
|
value: appMeta.appData.location.type,
|
|
label: appMeta.appData.location.label || "No label set",
|
|
disabled: false,
|
|
};
|
|
}
|
|
|
|
const credential: (typeof credentials)[number] | null = credentials[0] || null;
|
|
return {
|
|
...appMeta,
|
|
/**
|
|
* @deprecated use `credentials`
|
|
*/
|
|
credential,
|
|
credentials,
|
|
/** Option to display in `location` field while editing event types */
|
|
locationOption,
|
|
};
|
|
});
|
|
|
|
return apps;
|
|
}
|
|
|
|
export function getLocalAppMetadata() {
|
|
return ALL_APPS;
|
|
}
|
|
|
|
export function hasIntegrationInstalled(type: App["type"]): boolean {
|
|
return ALL_APPS.some((app) => app.type === type && !!app.installed);
|
|
}
|
|
|
|
export function getAppName(name: string): string | null {
|
|
return ALL_APPS_MAP[name as keyof typeof ALL_APPS_MAP]?.name ?? null;
|
|
}
|
|
|
|
export function getAppType(name: string): string {
|
|
const type = ALL_APPS_MAP[name as keyof typeof ALL_APPS_MAP].type;
|
|
|
|
if (type.endsWith("_calendar")) {
|
|
return "Calendar";
|
|
}
|
|
if (type.endsWith("_payment")) {
|
|
return "Payment";
|
|
}
|
|
return "Unknown";
|
|
}
|
|
|
|
export function getAppFromSlug(slug: string | undefined): AppMeta | undefined {
|
|
return ALL_APPS.find((app) => app.slug === slug);
|
|
}
|
|
|
|
export function getAppFromLocationValue(type: string): AppMeta | undefined {
|
|
return ALL_APPS.find((app) => app?.appData?.location?.type === type);
|
|
}
|
|
|
|
export default getApps;
|