mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
89 lines
2.6 KiB
TypeScript
89 lines
2.6 KiB
TypeScript
import { computed, reactive } from 'vue';
|
|
import { defineStore } from 'pinia';
|
|
import { EnterpriseEditionFeature } from '@/constants';
|
|
import { useRootStore } from '@/stores/n8nRootStore';
|
|
import { useSettingsStore } from '@/stores/settings';
|
|
import * as ssoApi from '@/api/sso';
|
|
import type { SamlPreferences } from '@/Interface';
|
|
import { updateCurrentUser } from '@/api/users';
|
|
import { useUsersStore } from '@/stores/users';
|
|
|
|
export const useSSOStore = defineStore('sso', () => {
|
|
const rootStore = useRootStore();
|
|
const settingsStore = useSettingsStore();
|
|
const usersStore = useUsersStore();
|
|
|
|
const state = reactive({
|
|
loading: false,
|
|
});
|
|
|
|
const isLoading = computed(() => state.loading);
|
|
|
|
const setLoading = (loading: boolean) => {
|
|
state.loading = loading;
|
|
};
|
|
|
|
const isSamlLoginEnabled = computed({
|
|
get: () => settingsStore.isSamlLoginEnabled,
|
|
set: (value: boolean) => {
|
|
settingsStore.setSettings({
|
|
...settingsStore.settings,
|
|
sso: {
|
|
...settingsStore.settings.sso,
|
|
saml: {
|
|
...settingsStore.settings.sso.saml,
|
|
loginEnabled: value,
|
|
},
|
|
},
|
|
});
|
|
toggleLoginEnabled(value);
|
|
},
|
|
});
|
|
const isEnterpriseSamlEnabled = computed(() =>
|
|
settingsStore.isEnterpriseFeatureEnabled(EnterpriseEditionFeature.Saml),
|
|
);
|
|
const isDefaultAuthenticationSaml = computed(() => settingsStore.isDefaultAuthenticationSaml);
|
|
const showSsoLoginButton = computed(
|
|
() =>
|
|
isSamlLoginEnabled.value &&
|
|
isEnterpriseSamlEnabled.value &&
|
|
isDefaultAuthenticationSaml.value,
|
|
);
|
|
|
|
const getSSORedirectUrl = () => ssoApi.initSSO(rootStore.getRestApiContext);
|
|
|
|
const toggleLoginEnabled = (enabled: boolean) =>
|
|
ssoApi.toggleSamlConfig(rootStore.getRestApiContext, { loginEnabled: enabled });
|
|
|
|
const getSamlMetadata = () => ssoApi.getSamlMetadata(rootStore.getRestApiContext);
|
|
const getSamlConfig = () => ssoApi.getSamlConfig(rootStore.getRestApiContext);
|
|
const saveSamlConfig = (config: SamlPreferences) =>
|
|
ssoApi.saveSamlConfig(rootStore.getRestApiContext, config);
|
|
const testSamlConfig = () => ssoApi.testSamlConfig(rootStore.getRestApiContext);
|
|
|
|
const updateUser = async (params: { firstName: string; lastName: string }) =>
|
|
updateCurrentUser(rootStore.getRestApiContext, {
|
|
id: usersStore.currentUser!.id,
|
|
email: usersStore.currentUser!.email!,
|
|
...params,
|
|
});
|
|
|
|
const userData = computed(() => usersStore.currentUser);
|
|
|
|
return {
|
|
isLoading,
|
|
setLoading,
|
|
isSamlLoginEnabled,
|
|
isEnterpriseSamlEnabled,
|
|
isDefaultAuthenticationSaml,
|
|
showSsoLoginButton,
|
|
getSSORedirectUrl,
|
|
getSamlMetadata,
|
|
getSamlConfig,
|
|
saveSamlConfig,
|
|
testSamlConfig,
|
|
updateUser,
|
|
userData,
|
|
};
|
|
});
|