51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import jackson from "@boxyhq/saml-jackson";
|
|
import type {
|
|
IConnectionAPIController,
|
|
IOAuthController,
|
|
JacksonOption,
|
|
ISPSAMLConfig,
|
|
} from "@boxyhq/saml-jackson";
|
|
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
|
|
import { samlDatabaseUrl, samlAudience, samlPath, oidcPath, clientSecretVerifier } from "./saml";
|
|
|
|
// Set the required options. Refer to https://github.com/boxyhq/jackson#configuration for the full list
|
|
const opts: JacksonOption = {
|
|
externalUrl: WEBAPP_URL,
|
|
samlPath,
|
|
samlAudience,
|
|
oidcPath,
|
|
db: {
|
|
engine: "sql",
|
|
type: "postgres",
|
|
url: samlDatabaseUrl,
|
|
encryptionKey: process.env.CALENDSO_ENCRYPTION_KEY,
|
|
},
|
|
idpEnabled: true,
|
|
clientSecretVerifier,
|
|
};
|
|
|
|
declare global {
|
|
/* eslint-disable no-var */
|
|
var connectionController: IConnectionAPIController | undefined;
|
|
var oauthController: IOAuthController | undefined;
|
|
var samlSPConfig: ISPSAMLConfig | undefined;
|
|
/* eslint-enable no-var */
|
|
}
|
|
|
|
export default async function init() {
|
|
if (!globalThis.connectionController || !globalThis.oauthController || !globalThis.samlSPConfig) {
|
|
const ret = await jackson(opts);
|
|
globalThis.connectionController = ret.connectionAPIController;
|
|
globalThis.oauthController = ret.oauthController;
|
|
globalThis.samlSPConfig = ret.spConfig;
|
|
}
|
|
|
|
return {
|
|
connectionController: globalThis.connectionController,
|
|
oauthController: globalThis.oauthController,
|
|
samlSPConfig: globalThis.samlSPConfig,
|
|
};
|
|
}
|