feat(core): Add MFA (#4767)
https://linear.app/n8n/issue/ADO-947/sync-branch-with-master-and-fix-fe-e2e-tets --------- Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
249
packages/editor-ui/src/views/MfaView.vue
Normal file
249
packages/editor-ui/src/views/MfaView.vue
Normal file
@@ -0,0 +1,249 @@
|
||||
<template>
|
||||
<div :class="$style.container">
|
||||
<div :class="$style.logoContainer">
|
||||
<Logo />
|
||||
</div>
|
||||
<n8n-card>
|
||||
<div :class="$style.headerContainer">
|
||||
<n8n-heading size="xlarge" color="text-dark">{{
|
||||
showRecoveryCodeForm
|
||||
? $locale.baseText('mfa.recovery.modal.title')
|
||||
: $locale.baseText('mfa.code.modal.title')
|
||||
}}</n8n-heading>
|
||||
</div>
|
||||
<div :class="[$style.formContainer, reportError ? $style.formError : '']">
|
||||
<n8n-form-inputs
|
||||
data-test-id="mfa-login-form"
|
||||
v-if="formInputs"
|
||||
:inputs="formInputs"
|
||||
:eventBus="formBus"
|
||||
@input="onInput"
|
||||
@submit="onSubmit"
|
||||
/>
|
||||
<div :class="$style.infoBox">
|
||||
<n8n-text
|
||||
size="small"
|
||||
color="text-base"
|
||||
:bold="false"
|
||||
v-if="!showRecoveryCodeForm && !reportError"
|
||||
>{{ $locale.baseText('mfa.code.input.info') }}
|
||||
<a data-test-id="mfa-enter-recovery-code-button" @click="onRecoveryCodeClick">{{
|
||||
$locale.baseText('mfa.code.input.info.action')
|
||||
}}</a></n8n-text
|
||||
>
|
||||
<n8n-text color="danger" v-if="reportError" size="small"
|
||||
>{{ formError }}
|
||||
<a
|
||||
v-if="!showRecoveryCodeForm"
|
||||
@click="onRecoveryCodeClick"
|
||||
:class="$style.recoveryCodeLink"
|
||||
>
|
||||
{{ $locale.baseText('mfa.recovery.input.info.action') }}</a
|
||||
>
|
||||
</n8n-text>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<n8n-button
|
||||
float="right"
|
||||
:loading="verifyingMfaToken"
|
||||
:label="
|
||||
showRecoveryCodeForm
|
||||
? $locale.baseText('mfa.recovery.button.verify')
|
||||
: $locale.baseText('mfa.code.button.continue')
|
||||
"
|
||||
size="large"
|
||||
:disabled="!hasAnyChanges"
|
||||
@click="onSaveClick"
|
||||
/>
|
||||
<n8n-button
|
||||
float="left"
|
||||
:label="$locale.baseText('mfa.button.back')"
|
||||
size="large"
|
||||
type="tertiary"
|
||||
@click="onBackClick"
|
||||
/>
|
||||
</div>
|
||||
</n8n-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { genericHelpers } from '@/mixins/genericHelpers';
|
||||
import type { IFormInputs } from '@/Interface';
|
||||
import Logo from '../components/Logo.vue';
|
||||
import {
|
||||
MFA_AUTHENTICATION_RECOVERY_CODE_INPUT_MAX_LENGTH,
|
||||
MFA_AUTHENTICATION_TOKEN_INPUT_MAX_LENGTH,
|
||||
} from '@/constants';
|
||||
import { useUsersStore } from '@/stores/users.store';
|
||||
import { mapStores } from 'pinia';
|
||||
import { mfaEventBus } from '@/event-bus';
|
||||
import { defineComponent } from 'vue';
|
||||
import { useToast } from '@/composables/useToast';
|
||||
|
||||
export const FORM = {
|
||||
MFA_TOKEN: 'MFA_TOKEN',
|
||||
MFA_RECOVERY_CODE: 'MFA_RECOVERY_CODE',
|
||||
} as const;
|
||||
|
||||
export default defineComponent({
|
||||
name: 'MfaView',
|
||||
mixins: [genericHelpers],
|
||||
components: {
|
||||
Logo,
|
||||
},
|
||||
props: {
|
||||
reportError: Boolean,
|
||||
},
|
||||
async mounted() {
|
||||
this.formInputs = [this.mfaTokenFieldWithDefaults()];
|
||||
},
|
||||
setup() {
|
||||
return {
|
||||
...useToast(),
|
||||
};
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
hasAnyChanges: false,
|
||||
formBus: mfaEventBus,
|
||||
formInputs: null as null | IFormInputs,
|
||||
showRecoveryCodeForm: false,
|
||||
verifyingMfaToken: false,
|
||||
formError: '',
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
...mapStores(useUsersStore),
|
||||
},
|
||||
methods: {
|
||||
onRecoveryCodeClick() {
|
||||
this.formError = '';
|
||||
this.showRecoveryCodeForm = true;
|
||||
this.hasAnyChanges = false;
|
||||
this.formInputs = [this.mfaRecoveryCodeFieldWithDefaults()];
|
||||
this.$emit('onFormChanged', FORM.MFA_RECOVERY_CODE);
|
||||
},
|
||||
onBackClick() {
|
||||
if (!this.showRecoveryCodeForm) {
|
||||
this.$emit('onBackClick', FORM.MFA_TOKEN);
|
||||
return;
|
||||
}
|
||||
|
||||
this.showRecoveryCodeForm = false;
|
||||
this.hasAnyChanges = true;
|
||||
this.formInputs = [this.mfaTokenFieldWithDefaults()];
|
||||
this.$emit('onBackClick', FORM.MFA_RECOVERY_CODE);
|
||||
},
|
||||
onInput({ target: { value, name } }: { target: { value: string; name: string } }) {
|
||||
const isSubmittingMfaToken = name === 'token';
|
||||
const inputValidLength = isSubmittingMfaToken
|
||||
? MFA_AUTHENTICATION_TOKEN_INPUT_MAX_LENGTH
|
||||
: MFA_AUTHENTICATION_RECOVERY_CODE_INPUT_MAX_LENGTH;
|
||||
|
||||
if (value.length !== inputValidLength) {
|
||||
this.hasAnyChanges = false;
|
||||
return;
|
||||
}
|
||||
|
||||
this.verifyingMfaToken = true;
|
||||
this.hasAnyChanges = true;
|
||||
|
||||
this.onSubmit({ token: value, recoveryCode: value })
|
||||
.catch(() => {})
|
||||
.finally(() => (this.verifyingMfaToken = false));
|
||||
},
|
||||
async onSubmit(form: { token: string; recoveryCode: string }) {
|
||||
this.formError = !this.showRecoveryCodeForm
|
||||
? this.$locale.baseText('mfa.code.invalid')
|
||||
: this.$locale.baseText('mfa.recovery.invalid');
|
||||
this.$emit('submit', form);
|
||||
},
|
||||
onSaveClick() {
|
||||
this.formBus.emit('submit');
|
||||
},
|
||||
mfaTokenFieldWithDefaults() {
|
||||
return this.formField(
|
||||
'token',
|
||||
this.$locale.baseText('mfa.code.input.label'),
|
||||
this.$locale.baseText('mfa.code.input.placeholder'),
|
||||
MFA_AUTHENTICATION_TOKEN_INPUT_MAX_LENGTH,
|
||||
);
|
||||
},
|
||||
mfaRecoveryCodeFieldWithDefaults() {
|
||||
return this.formField(
|
||||
'recoveryCode',
|
||||
this.$locale.baseText('mfa.recovery.input.label'),
|
||||
this.$locale.baseText('mfa.recovery.input.placeholder'),
|
||||
MFA_AUTHENTICATION_RECOVERY_CODE_INPUT_MAX_LENGTH,
|
||||
);
|
||||
},
|
||||
formField(name: string, label: string, placeholder: string, maxlength: number) {
|
||||
return {
|
||||
name,
|
||||
initialValue: '',
|
||||
properties: {
|
||||
label,
|
||||
placeholder,
|
||||
maxlength,
|
||||
capitalize: true,
|
||||
validateOnBlur: false,
|
||||
},
|
||||
};
|
||||
},
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="scss" module>
|
||||
body {
|
||||
background-color: var(--color-background-light);
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
padding-top: var(--spacing-2xl);
|
||||
|
||||
> * {
|
||||
margin-bottom: var(--spacing-l);
|
||||
width: 352px;
|
||||
}
|
||||
}
|
||||
|
||||
.logoContainer {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.textContainer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.formContainer {
|
||||
padding-bottom: var(--spacing-xl);
|
||||
}
|
||||
|
||||
.qrContainer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.headerContainer {
|
||||
text-align: center;
|
||||
margin-bottom: var(--spacing-xl);
|
||||
}
|
||||
|
||||
.formError input {
|
||||
border-color: var(--color-danger);
|
||||
}
|
||||
|
||||
.recoveryCodeLink {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.infoBox {
|
||||
padding-top: var(--spacing-4xs);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user