2023-02-24 11:37:19 -08:00
|
|
|
import config from '@/config';
|
2023-03-23 07:13:05 -07:00
|
|
|
import * as Db from '@/Db';
|
2023-03-06 00:44:25 -08:00
|
|
|
import type { AuthProviderType } from '@/databases/entities/AuthIdentity';
|
2023-02-24 11:37:19 -08:00
|
|
|
|
|
|
|
export function isSamlCurrentAuthenticationMethod(): boolean {
|
|
|
|
return config.getEnv('userManagement.authenticationMethod') === 'saml';
|
|
|
|
}
|
|
|
|
|
2023-03-10 10:19:52 -08:00
|
|
|
export function isEmailCurrentAuthenticationMethod(): boolean {
|
|
|
|
return config.getEnv('userManagement.authenticationMethod') === 'email';
|
|
|
|
}
|
|
|
|
|
2023-02-24 11:37:19 -08:00
|
|
|
export function isSsoJustInTimeProvisioningEnabled(): boolean {
|
|
|
|
return config.getEnv('sso.justInTimeProvisioning');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function doRedirectUsersFromLoginToSsoFlow(): boolean {
|
|
|
|
return config.getEnv('sso.redirectLoginToSso');
|
|
|
|
}
|
2023-03-03 01:05:30 -08:00
|
|
|
|
2023-03-23 07:13:05 -07:00
|
|
|
export async function setCurrentAuthenticationMethod(
|
|
|
|
authenticationMethod: AuthProviderType,
|
|
|
|
): Promise<void> {
|
2023-03-03 01:05:30 -08:00
|
|
|
config.set('userManagement.authenticationMethod', authenticationMethod);
|
2023-03-23 07:13:05 -07:00
|
|
|
await Db.collections.Settings.save({
|
|
|
|
key: 'userManagement.authenticationMethod',
|
|
|
|
value: authenticationMethod,
|
2023-03-23 08:54:35 -07:00
|
|
|
loadOnStartup: true,
|
2023-03-23 07:13:05 -07:00
|
|
|
});
|
2023-03-03 01:05:30 -08:00
|
|
|
}
|