2023-08-25 01:33:46 -07:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import Modal from './Modal.vue';
|
|
|
|
import { EXTERNAL_SECRETS_PROVIDER_MODAL_KEY, MODAL_CONFIRM } from '@/constants';
|
|
|
|
import { computed, onMounted, ref } from 'vue';
|
2024-05-17 04:16:00 -07:00
|
|
|
import type { PropType } from 'vue';
|
2023-08-25 01:33:46 -07:00
|
|
|
import type { EventBus } from 'n8n-design-system/utils';
|
2023-11-28 03:15:08 -08:00
|
|
|
import { useExternalSecretsProvider } from '@/composables/useExternalSecretsProvider';
|
|
|
|
import { useI18n } from '@/composables/useI18n';
|
|
|
|
import { useMessage } from '@/composables/useMessage';
|
|
|
|
import { useToast } from '@/composables/useToast';
|
2023-08-25 01:33:46 -07:00
|
|
|
import { useExternalSecretsStore } from '@/stores/externalSecrets.ee.store';
|
2023-11-28 03:15:08 -08:00
|
|
|
import { useUIStore } from '@/stores/ui.store';
|
2023-08-25 01:33:46 -07:00
|
|
|
import ParameterInputExpanded from '@/components/ParameterInputExpanded.vue';
|
|
|
|
import type {
|
|
|
|
IUpdateInformation,
|
|
|
|
ExternalSecretsProviderData,
|
|
|
|
ExternalSecretsProvider,
|
|
|
|
} from '@/Interface';
|
|
|
|
import type { IParameterLabel } from 'n8n-workflow';
|
|
|
|
import ExternalSecretsProviderImage from '@/components/ExternalSecretsProviderImage.ee.vue';
|
|
|
|
import ExternalSecretsProviderConnectionSwitch from '@/components/ExternalSecretsProviderConnectionSwitch.ee.vue';
|
|
|
|
import { createEventBus } from 'n8n-design-system/utils';
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
data: {
|
|
|
|
type: Object as PropType<{ eventBus: EventBus; name: string }>,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2024-05-17 04:16:00 -07:00
|
|
|
const defaultProviderData: Record<string, Partial<ExternalSecretsProviderData>> = {
|
2023-08-25 01:33:46 -07:00
|
|
|
infisical: {
|
|
|
|
siteURL: 'https://app.infisical.com',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const externalSecretsStore = useExternalSecretsStore();
|
|
|
|
const uiStore = useUIStore();
|
|
|
|
const toast = useToast();
|
|
|
|
const i18n = useI18n();
|
|
|
|
const { confirm } = useMessage();
|
|
|
|
|
|
|
|
const saving = ref(false);
|
|
|
|
|
|
|
|
const eventBus = createEventBus();
|
|
|
|
|
|
|
|
const labelSize: IParameterLabel = { size: 'medium' };
|
|
|
|
|
|
|
|
const provider = computed<ExternalSecretsProvider | undefined>(() =>
|
|
|
|
externalSecretsStore.providers.find((p) => p.name === props.data.name),
|
2024-05-17 04:16:00 -07:00
|
|
|
);
|
2023-08-25 01:33:46 -07:00
|
|
|
const providerData = ref<ExternalSecretsProviderData>({});
|
|
|
|
const {
|
|
|
|
connectionState,
|
|
|
|
initialConnectionState,
|
|
|
|
normalizedProviderData,
|
|
|
|
shouldDisplayProperty,
|
|
|
|
setConnectionState,
|
|
|
|
testConnection,
|
|
|
|
} = useExternalSecretsProvider(provider, providerData);
|
|
|
|
|
|
|
|
const providerDataUpdated = computed(() => {
|
|
|
|
return Object.keys(providerData.value).find((key) => {
|
|
|
|
const value = providerData.value[key];
|
2024-05-17 04:16:00 -07:00
|
|
|
const originalValue = provider.value?.data?.[key];
|
2023-08-25 01:33:46 -07:00
|
|
|
|
|
|
|
return value !== originalValue;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
const canSave = computed(
|
|
|
|
() =>
|
2024-05-17 04:16:00 -07:00
|
|
|
provider.value?.properties
|
2023-08-25 01:33:46 -07:00
|
|
|
?.filter((property) => property.required && shouldDisplayProperty(property))
|
|
|
|
.every((property) => {
|
|
|
|
const value = providerData.value[property.name];
|
|
|
|
return !!value;
|
|
|
|
}) && providerDataUpdated.value,
|
|
|
|
);
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
try {
|
2024-05-17 04:16:00 -07:00
|
|
|
const fetchedProvider = await externalSecretsStore.getProvider(props.data.name);
|
|
|
|
|
2023-08-25 01:33:46 -07:00
|
|
|
providerData.value = {
|
|
|
|
...(defaultProviderData[props.data.name] || {}),
|
2024-05-17 04:16:00 -07:00
|
|
|
...fetchedProvider.data,
|
2023-08-25 01:33:46 -07:00
|
|
|
};
|
|
|
|
|
2024-05-17 04:16:00 -07:00
|
|
|
setConnectionState(fetchedProvider.state);
|
2023-08-25 01:33:46 -07:00
|
|
|
|
2024-05-17 04:16:00 -07:00
|
|
|
if (fetchedProvider.connected) {
|
|
|
|
initialConnectionState.value = fetchedProvider.state;
|
|
|
|
} else if (Object.keys(fetchedProvider.data ?? {}).length) {
|
2023-08-25 01:33:46 -07:00
|
|
|
await testConnection();
|
|
|
|
}
|
|
|
|
|
2024-05-17 04:16:00 -07:00
|
|
|
if (fetchedProvider.state === 'connected') {
|
2023-08-25 01:33:46 -07:00
|
|
|
void externalSecretsStore.reloadProvider(props.data.name);
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
toast.showError(error, 'Error');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
uiStore.closeModal(EXTERNAL_SECRETS_PROVIDER_MODAL_KEY);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onValueChange(updateInformation: IUpdateInformation) {
|
|
|
|
providerData.value = {
|
|
|
|
...providerData.value,
|
|
|
|
[updateInformation.name]: updateInformation.value,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async function save() {
|
2024-05-17 04:16:00 -07:00
|
|
|
if (!provider.value) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-25 01:33:46 -07:00
|
|
|
try {
|
|
|
|
saving.value = true;
|
|
|
|
await externalSecretsStore.updateProvider(provider.value.name, {
|
|
|
|
data: normalizedProviderData.value,
|
|
|
|
});
|
|
|
|
|
|
|
|
setConnectionState(provider.value.state);
|
|
|
|
} catch (error) {
|
|
|
|
toast.showError(error, 'Error');
|
|
|
|
}
|
|
|
|
|
|
|
|
await testConnection();
|
|
|
|
|
|
|
|
if (initialConnectionState.value === 'initializing' && connectionState.value === 'tested') {
|
|
|
|
setTimeout(() => {
|
|
|
|
eventBus.emit('connect', true);
|
|
|
|
}, 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
saving.value = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function onBeforeClose() {
|
|
|
|
if (providerDataUpdated.value) {
|
|
|
|
const confirmModal = await confirm(
|
|
|
|
i18n.baseText('settings.externalSecrets.provider.closeWithoutSaving.description', {
|
|
|
|
interpolate: {
|
2024-05-17 04:16:00 -07:00
|
|
|
provider: provider.value?.displayName ?? '',
|
2023-08-25 01:33:46 -07:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
{
|
|
|
|
title: i18n.baseText('settings.externalSecrets.provider.closeWithoutSaving.title'),
|
|
|
|
confirmButtonText: i18n.baseText(
|
|
|
|
'settings.externalSecrets.provider.closeWithoutSaving.confirm',
|
|
|
|
),
|
|
|
|
cancelButtonText: i18n.baseText(
|
|
|
|
'settings.externalSecrets.provider.closeWithoutSaving.cancel',
|
|
|
|
),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
return confirmModal !== MODAL_CONFIRM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2024-05-17 04:16:00 -07:00
|
|
|
|
|
|
|
async function onConnectionStateChange() {
|
|
|
|
await testConnection();
|
|
|
|
}
|
2023-08-25 01:33:46 -07:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<Modal
|
|
|
|
id="external-secrets-provider-modal"
|
|
|
|
width="812px"
|
2024-05-17 04:16:00 -07:00
|
|
|
:title="provider?.displayName"
|
2023-12-28 00:49:58 -08:00
|
|
|
:event-bus="data.eventBus"
|
2023-08-25 01:33:46 -07:00
|
|
|
:name="EXTERNAL_SECRETS_PROVIDER_MODAL_KEY"
|
|
|
|
:before-close="onBeforeClose"
|
|
|
|
>
|
|
|
|
<template #header>
|
2024-05-17 04:16:00 -07:00
|
|
|
<div v-if="provider" :class="$style.header">
|
2023-08-25 01:33:46 -07:00
|
|
|
<div :class="$style.providerTitle">
|
|
|
|
<ExternalSecretsProviderImage :provider="provider" class="mr-xs" />
|
|
|
|
<span>{{ provider.displayName }}</span>
|
|
|
|
</div>
|
|
|
|
<div :class="$style.providerActions">
|
|
|
|
<ExternalSecretsProviderConnectionSwitch
|
|
|
|
class="mr-s"
|
|
|
|
:disabled="
|
|
|
|
(connectionState === 'initializing' || connectionState === 'error') &&
|
|
|
|
!provider.connected
|
|
|
|
"
|
|
|
|
:event-bus="eventBus"
|
|
|
|
:provider="provider"
|
2024-05-17 04:16:00 -07:00
|
|
|
@change="onConnectionStateChange"
|
2023-08-25 01:33:46 -07:00
|
|
|
/>
|
|
|
|
<n8n-button
|
|
|
|
type="primary"
|
|
|
|
:loading="saving"
|
|
|
|
:disabled="!canSave && !saving"
|
|
|
|
@click="save"
|
|
|
|
>
|
|
|
|
{{
|
|
|
|
i18n.baseText(
|
|
|
|
`settings.externalSecrets.provider.buttons.${saving ? 'saving' : 'save'}`,
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
</n8n-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #content>
|
2024-05-17 04:16:00 -07:00
|
|
|
<div v-if="provider" :class="$style.container">
|
2023-08-25 01:33:46 -07:00
|
|
|
<hr class="mb-l" />
|
2023-12-28 00:49:58 -08:00
|
|
|
<div v-if="connectionState !== 'initializing'" class="mb-l">
|
2023-08-25 01:33:46 -07:00
|
|
|
<n8n-callout
|
|
|
|
v-if="connectionState === 'connected' || connectionState === 'tested'"
|
|
|
|
theme="success"
|
|
|
|
>
|
|
|
|
{{
|
|
|
|
i18n.baseText(
|
|
|
|
`settings.externalSecrets.provider.testConnection.success${
|
|
|
|
provider.connected ? '.connected' : ''
|
|
|
|
}`,
|
|
|
|
{
|
|
|
|
interpolate: {
|
|
|
|
count: `${externalSecretsStore.secrets[provider.name]?.length}`,
|
|
|
|
provider: provider.displayName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
<span v-if="provider.connected">
|
|
|
|
<br />
|
|
|
|
<i18n-t
|
|
|
|
keypath="settings.externalSecrets.provider.testConnection.success.connected.usage"
|
|
|
|
>
|
|
|
|
<template #code>
|
|
|
|
<code>{{ `\{\{ \$secrets\.${provider.name}\.secret_name \}\}` }}</code>
|
|
|
|
</template>
|
|
|
|
</i18n-t>
|
|
|
|
<n8n-link :href="i18n.baseText('settings.externalSecrets.docs.use')" size="small">
|
|
|
|
{{
|
|
|
|
i18n.baseText(
|
|
|
|
'settings.externalSecrets.provider.testConnection.success.connected.docs',
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
</n8n-link>
|
|
|
|
</span>
|
|
|
|
</n8n-callout>
|
|
|
|
<n8n-callout v-else-if="connectionState === 'error'" theme="danger">
|
|
|
|
{{
|
|
|
|
i18n.baseText(
|
|
|
|
`settings.externalSecrets.provider.testConnection.error${
|
|
|
|
provider.connected ? '.connected' : ''
|
|
|
|
}`,
|
|
|
|
{
|
|
|
|
interpolate: { provider: provider.displayName },
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
</n8n-callout>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<form
|
|
|
|
v-for="property in provider.properties"
|
|
|
|
v-show="shouldDisplayProperty(property)"
|
|
|
|
:key="property.name"
|
|
|
|
autocomplete="off"
|
|
|
|
data-test-id="external-secrets-provider-properties-form"
|
|
|
|
@submit.prevent
|
|
|
|
>
|
|
|
|
<n8n-notice v-if="property.type === 'notice'" :content="property.displayName" />
|
2023-12-28 00:49:58 -08:00
|
|
|
<ParameterInputExpanded
|
2023-08-25 01:33:46 -07:00
|
|
|
v-else
|
|
|
|
class="mb-l"
|
|
|
|
:parameter="property"
|
|
|
|
:value="providerData[property.name]"
|
|
|
|
:label="labelSize"
|
2023-12-28 00:49:58 -08:00
|
|
|
event-source="external-secrets-provider"
|
2023-08-25 01:33:46 -07:00
|
|
|
@update="onValueChange"
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</Modal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style module lang="scss">
|
|
|
|
.container {
|
|
|
|
> * {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.providerTitle {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.providerActions {
|
|
|
|
flex: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
#external-secrets-provider-modal {
|
|
|
|
.el-dialog__header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-dialog__headerbtn {
|
|
|
|
position: relative;
|
|
|
|
top: unset;
|
|
|
|
right: unset;
|
|
|
|
margin-left: var(--spacing-xs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|