187 lines
6.3 KiB
TypeScript
187 lines
6.3 KiB
TypeScript
"use client";
|
|
|
|
import { useState, useEffect } from 'react';
|
|
import { usePolicyStore } from '@/stores/policy-store';
|
|
|
|
interface ConfigData {
|
|
appName: string;
|
|
jmapServerUrl: string;
|
|
oauthEnabled: boolean;
|
|
oauthOnly: boolean;
|
|
oauthClientId: string;
|
|
oauthIssuerUrl: string;
|
|
rememberMeEnabled: boolean;
|
|
settingsSyncEnabled: boolean;
|
|
stalwartFeaturesEnabled: boolean;
|
|
devMode: boolean;
|
|
faviconUrl: string;
|
|
appLogoLightUrl: string;
|
|
appLogoDarkUrl: string;
|
|
loginLogoLightUrl: string;
|
|
loginLogoDarkUrl: string;
|
|
loginCompanyName: string;
|
|
loginImprintUrl: string;
|
|
loginPrivacyPolicyUrl: string;
|
|
loginWebsiteUrl: string;
|
|
demoMode: boolean;
|
|
autoSsoEnabled: boolean;
|
|
allowCustomJmapEndpoint: boolean;
|
|
embeddedMode: boolean;
|
|
parentOrigin: string;
|
|
}
|
|
|
|
interface AppConfig extends ConfigData {
|
|
isLoading: boolean;
|
|
error: string | null;
|
|
}
|
|
|
|
let configCache: ConfigData | null = null;
|
|
let configPromise: Promise<ConfigData> | null = null;
|
|
|
|
export async function fetchConfig(): Promise<ConfigData> {
|
|
// Return cached config if available
|
|
if (configCache) {
|
|
return configCache;
|
|
}
|
|
|
|
// If a fetch is already in progress, wait for it
|
|
if (configPromise) {
|
|
return configPromise;
|
|
}
|
|
|
|
// Start a new fetch
|
|
configPromise = fetch('/api/config')
|
|
.then((res) => {
|
|
if (!res.ok) {
|
|
throw new Error('Failed to fetch config');
|
|
}
|
|
return res.json();
|
|
})
|
|
.then((data) => {
|
|
configCache = data;
|
|
// Fetch admin policy alongside config (non-blocking)
|
|
usePolicyStore.getState().fetchPolicy();
|
|
return data;
|
|
})
|
|
.finally(() => {
|
|
configPromise = null;
|
|
});
|
|
|
|
return configPromise;
|
|
}
|
|
|
|
/**
|
|
* Hook to fetch runtime configuration
|
|
*
|
|
* Fetches app configuration from /api/config endpoint, which reads
|
|
* environment variables at runtime (not build time).
|
|
*
|
|
* The config is cached after first fetch to avoid unnecessary requests.
|
|
*/
|
|
export function useConfig(): AppConfig {
|
|
const [config, setConfig] = useState<AppConfig>({
|
|
appName: configCache?.appName || 'Webmail',
|
|
jmapServerUrl: configCache?.jmapServerUrl || '',
|
|
oauthEnabled: configCache?.oauthEnabled || false,
|
|
oauthOnly: configCache?.oauthOnly || false,
|
|
oauthClientId: configCache?.oauthClientId || '',
|
|
oauthIssuerUrl: configCache?.oauthIssuerUrl || '',
|
|
rememberMeEnabled: configCache?.rememberMeEnabled || false,
|
|
settingsSyncEnabled: configCache?.settingsSyncEnabled || false,
|
|
stalwartFeaturesEnabled: configCache?.stalwartFeaturesEnabled ?? true,
|
|
devMode: configCache?.devMode || false,
|
|
faviconUrl: configCache?.faviconUrl || '/branding/Bulwark_Favicon.svg',
|
|
appLogoLightUrl: configCache?.appLogoLightUrl || '',
|
|
appLogoDarkUrl: configCache?.appLogoDarkUrl || '',
|
|
loginLogoLightUrl: configCache?.loginLogoLightUrl || '/branding/Bulwark_Logo_Color.svg',
|
|
loginLogoDarkUrl: configCache?.loginLogoDarkUrl || '/branding/Bulwark_Logo_White.svg',
|
|
loginCompanyName: configCache?.loginCompanyName || '',
|
|
loginImprintUrl: configCache?.loginImprintUrl || '',
|
|
loginPrivacyPolicyUrl: configCache?.loginPrivacyPolicyUrl || '',
|
|
loginWebsiteUrl: configCache?.loginWebsiteUrl || '',
|
|
demoMode: configCache?.demoMode || false,
|
|
autoSsoEnabled: configCache?.autoSsoEnabled || false,
|
|
allowCustomJmapEndpoint: configCache?.allowCustomJmapEndpoint || false,
|
|
embeddedMode: configCache?.embeddedMode || false,
|
|
parentOrigin: configCache?.parentOrigin || '',
|
|
isLoading: !configCache,
|
|
error: null,
|
|
});
|
|
|
|
useEffect(() => {
|
|
// If already cached, no need to fetch
|
|
if (configCache) {
|
|
setConfig({
|
|
appName: configCache.appName,
|
|
jmapServerUrl: configCache.jmapServerUrl,
|
|
oauthEnabled: configCache.oauthEnabled,
|
|
oauthOnly: configCache.oauthOnly,
|
|
oauthClientId: configCache.oauthClientId,
|
|
oauthIssuerUrl: configCache.oauthIssuerUrl,
|
|
rememberMeEnabled: configCache.rememberMeEnabled,
|
|
settingsSyncEnabled: configCache.settingsSyncEnabled,
|
|
stalwartFeaturesEnabled: configCache.stalwartFeaturesEnabled,
|
|
devMode: configCache.devMode,
|
|
faviconUrl: configCache.faviconUrl,
|
|
appLogoLightUrl: configCache.appLogoLightUrl,
|
|
appLogoDarkUrl: configCache.appLogoDarkUrl,
|
|
loginLogoLightUrl: configCache.loginLogoLightUrl,
|
|
loginLogoDarkUrl: configCache.loginLogoDarkUrl,
|
|
loginCompanyName: configCache.loginCompanyName,
|
|
loginImprintUrl: configCache.loginImprintUrl,
|
|
loginPrivacyPolicyUrl: configCache.loginPrivacyPolicyUrl,
|
|
loginWebsiteUrl: configCache.loginWebsiteUrl,
|
|
demoMode: configCache.demoMode,
|
|
autoSsoEnabled: configCache.autoSsoEnabled,
|
|
allowCustomJmapEndpoint: configCache.allowCustomJmapEndpoint,
|
|
embeddedMode: configCache.embeddedMode,
|
|
parentOrigin: configCache.parentOrigin,
|
|
isLoading: false,
|
|
error: null,
|
|
});
|
|
return;
|
|
}
|
|
|
|
fetchConfig()
|
|
.then((data) => {
|
|
setConfig({
|
|
appName: data.appName,
|
|
jmapServerUrl: data.jmapServerUrl,
|
|
oauthEnabled: data.oauthEnabled,
|
|
oauthOnly: data.oauthOnly,
|
|
oauthClientId: data.oauthClientId,
|
|
oauthIssuerUrl: data.oauthIssuerUrl,
|
|
rememberMeEnabled: data.rememberMeEnabled,
|
|
settingsSyncEnabled: data.settingsSyncEnabled,
|
|
stalwartFeaturesEnabled: data.stalwartFeaturesEnabled,
|
|
devMode: data.devMode,
|
|
faviconUrl: data.faviconUrl,
|
|
appLogoLightUrl: data.appLogoLightUrl,
|
|
appLogoDarkUrl: data.appLogoDarkUrl,
|
|
loginLogoLightUrl: data.loginLogoLightUrl,
|
|
loginLogoDarkUrl: data.loginLogoDarkUrl,
|
|
loginCompanyName: data.loginCompanyName,
|
|
loginImprintUrl: data.loginImprintUrl,
|
|
loginPrivacyPolicyUrl: data.loginPrivacyPolicyUrl,
|
|
loginWebsiteUrl: data.loginWebsiteUrl,
|
|
demoMode: data.demoMode,
|
|
autoSsoEnabled: data.autoSsoEnabled,
|
|
allowCustomJmapEndpoint: data.allowCustomJmapEndpoint,
|
|
embeddedMode: data.embeddedMode,
|
|
parentOrigin: data.parentOrigin,
|
|
isLoading: false,
|
|
error: null,
|
|
});
|
|
})
|
|
.catch((err) => {
|
|
setConfig((prev) => ({
|
|
...prev,
|
|
isLoading: false,
|
|
error: err.message,
|
|
}));
|
|
});
|
|
}, []);
|
|
|
|
return config;
|
|
}
|