2022-03-23 22:00:30 +00:00
import { Prisma } from "@prisma/client" ;
2022-03-31 21:29:03 +00:00
import { TFunction } from "next-i18next" ;
2022-10-14 16:24:43 +00:00
import { z } from "zod" ;
2022-03-23 22:00:30 +00:00
2023-01-18 22:30:25 +00:00
// If you import this file on any app it should produce circular dependency
// import appStore from "./index";
import { appStoreMetadata } from "@calcom/app-store/appStoreMetaData" ;
2022-10-14 16:24:43 +00:00
import { defaultLocations , EventLocationType } from "@calcom/app-store/locations" ;
import { EventTypeModel } from "@calcom/prisma/zod" ;
import { EventTypeMetaDataSchema } from "@calcom/prisma/zod-utils" ;
2022-08-26 00:48:50 +00:00
import type { App , AppMeta } from "@calcom/types/App" ;
2022-03-23 22:00:30 +00:00
2023-01-21 16:52:21 +00:00
type LocationOption = {
label : string ;
value : EventLocationType [ "type" ] ;
icon? : string ;
disabled? : boolean ;
} ;
2022-10-14 16:24:43 +00:00
export type EventTypeApps = NonNullable < NonNullable < z.infer < typeof EventTypeMetaDataSchema > > [ "apps" ] > ;
export type EventTypeAppsList = keyof EventTypeApps ;
2022-04-15 02:04:21 +00:00
const ALL_APPS_MAP = Object . keys ( appStoreMetadata ) . reduce ( ( store , key ) = > {
2023-01-18 22:30:25 +00:00
const metadata = appStoreMetadata [ key as keyof typeof appStoreMetadata ] as AppMeta ;
if ( metadata . logo && ! metadata . logo . includes ( "/" ) ) {
const appDirName = ` ${ metadata . isTemplate ? "templates" : "" } / ${ metadata . slug } ` ;
metadata . logo = ` /api/app-store/ ${ appDirName } / ${ metadata . logo } ` ;
}
store [ key ] = metadata ;
2022-09-02 19:00:41 +00:00
// 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" ] ;
2022-03-23 22:00:30 +00:00
return store ;
2022-08-26 00:48:50 +00:00
} , { } as Record < string , AppMeta > ) ;
2022-03-23 22:00:30 +00:00
const credentialData = Prisma . validator < Prisma.CredentialArgs > ( ) ( {
2022-12-07 21:47:02 +00:00
select : { id : true , type : true , key : true , userId : true , appId : true , invalid : true } ,
2022-03-23 22:00:30 +00:00
} ) ;
2022-12-07 21:47:02 +00:00
export type CredentialData = Prisma . CredentialGetPayload < typeof credentialData > ;
2022-03-23 22:00:30 +00:00
2023-01-13 14:12:43 +00:00
export const InstalledAppVariants = [
"conferencing" ,
"calendar" ,
"payment" ,
"analytics" ,
"automation" ,
"other" ,
"web3" ,
] as const ;
2022-09-15 19:53:09 +00:00
2022-03-23 22:00:30 +00:00
export const ALL_APPS = Object . values ( ALL_APPS_MAP ) ;
2022-11-24 11:53:29 +00:00
export function getLocationGroupedOptions ( integrations : ReturnType < typeof getApps > , t : TFunction ) {
const apps : Record < string , { label : string ; value : string ; disabled ? : boolean ; icon ? : string } [ ] > = { } ;
integrations . forEach ( ( app ) = > {
if ( app . locationOption ) {
2022-12-20 22:15:06 +00:00
// 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 ) = > category !== "video" ) : app . category ;
if ( ! category ) category = "video" ;
2022-11-24 11:53:29 +00:00
const option = { . . . app . locationOption , icon : app.imageSrc } ;
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 : category , options : apps [ category ] } ;
if ( tmp . label === "in person" ) {
2023-01-12 05:22:55 +00:00
tmp . options = tmp . options . map ( ( l ) = > ( {
. . . l ,
label : t ( l . label ) ,
} ) ) ;
2022-11-24 11:53:29 +00:00
} else {
tmp . options . map ( ( l ) = > ( {
. . . l ,
label : t ( l . label . toLowerCase ( ) . split ( " " ) . join ( "_" ) ) ,
} ) ) ;
}
tmp . label = t ( tmp . label ) ;
locations . push ( tmp ) ;
}
return locations ;
}
2022-03-23 22:00:30 +00:00
/ * *
2022-04-15 02:24:27 +00:00
* This should get all available apps to the user based on his saved
2022-03-23 22:00:30 +00:00
* 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 ) ;
2023-01-21 16:52:21 +00:00
let locationOption : LocationOption | null = null ;
2022-03-23 22:00:30 +00:00
/** 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 ,
2022-10-14 16:24:43 +00:00
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2022-03-23 22:00:30 +00:00
key : appMeta.key ! ,
userId : + new Date ( ) . getTime ( ) ,
2022-05-02 20:39:35 +00:00
appId : appMeta.slug ,
2022-12-07 21:47:02 +00:00
invalid : false ,
2022-03-23 22:00:30 +00:00
} ) ;
}
/** Check if app has location option AND add it if user has credentials for it */
2022-08-26 00:48:50 +00:00
if ( credentials . length > 0 && appMeta ? . appData ? . location ) {
2022-03-23 22:00:30 +00:00
locationOption = {
2022-08-26 00:48:50 +00:00
value : appMeta.appData.location.type ,
label : appMeta.appData.location.label || "No label set" ,
2022-03-23 22:00:30 +00:00
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 ;
}
2022-12-07 21:47:02 +00:00
export function getLocalAppMetadata() {
return ALL_APPS ;
}
2022-03-23 22:00:30 +00:00
export function hasIntegrationInstalled ( type : App [ "type" ] ) : boolean {
return ALL_APPS . some ( ( app ) = > app . type === type && ! ! app . installed ) ;
}
2022-04-26 04:20:13 +00:00
export function getAppName ( name : string ) : string | null {
return ALL_APPS_MAP [ name as keyof typeof ALL_APPS_MAP ] ? . name ? ? null ;
2022-03-23 22:00:30 +00:00
}
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" ;
}
2022-10-14 16:24:43 +00:00
export const getEventTypeAppData = < T extends EventTypeAppsList > (
eventType : Pick < z.infer < typeof EventTypeModel > , "price" | "currency" | "metadata" > ,
appId : T ,
forcedGet? : boolean
) : EventTypeApps [ T ] = > {
const metadata = eventType . metadata ;
const appMetadata = metadata ? . apps && metadata . apps [ appId ] ;
if ( appMetadata ) {
const allowDataGet = forcedGet ? true : appMetadata . enabled ;
return allowDataGet ? appMetadata : null ;
}
// Backward compatibility for existing event types.
// TODO: After the new AppStore EventType App flow is stable, write a migration to migrate metadata to new format which will let us remove this compatibility code
// Migration isn't being done right now, to allow a revert if needed
const legacyAppsData = {
stripe : {
enabled : eventType.price > 0 ,
// Price default is 0 in DB. So, it would always be non nullish.
price : eventType.price ,
// Currency default is "usd" in DB.So, it would also be available always
currency : eventType.currency ,
} ,
rainbow : {
enabled : ! ! ( eventType . metadata ? . smartContractAddress && eventType . metadata ? . blockchainId ) ,
smartContractAddress : eventType.metadata?.smartContractAddress || "" ,
blockchainId : eventType.metadata?.blockchainId || 0 ,
} ,
giphy : {
enabled : ! ! eventType . metadata ? . giphyThankYouPage ,
thankYouPage : eventType.metadata?.giphyThankYouPage || "" ,
} ,
} as const ;
// TODO: This assertion helps typescript hint that only one of the app's data can be returned
const legacyAppData = legacyAppsData [ appId as Extract < T , keyof typeof legacyAppsData > ] ;
const allowDataGet = forcedGet ? true : legacyAppData ? . enabled ;
return allowDataGet ? legacyAppData : null ;
} ;
2022-03-23 22:00:30 +00:00
export default getApps ;