mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-05 20:36:26 +02:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
import { numberToWord } from 'vault/helpers/number-to-word';
|
|
|
|
import type MfaConstraint from 'vault/resources/mfa/constraint';
|
|
import type { HTMLElementEvent } from 'vault/forms';
|
|
|
|
interface Args {
|
|
codeDelayMessage: string;
|
|
constraints: MfaConstraint[];
|
|
countdown: string;
|
|
error: string;
|
|
isLoading: boolean;
|
|
methodAlreadyEnrolled: CallableFunction;
|
|
onCancel: CallableFunction;
|
|
onSelect: CallableFunction;
|
|
onVerify: CallableFunction;
|
|
}
|
|
|
|
export default class MfaFormVerify extends Component<Args> {
|
|
get description() {
|
|
if (this.args.constraints.length > 1) {
|
|
const num = numberToWord(this.args.constraints.length, true);
|
|
return `${num} methods are required for successful authentication.`;
|
|
}
|
|
if (this.singleConstraint?.selectedMethod?.uses_passcode) {
|
|
return 'Enter your authentication code to log in.';
|
|
}
|
|
// Otherwise it's a single push notification and we do not need a description.
|
|
return '';
|
|
}
|
|
|
|
get singleConstraint() {
|
|
return this.args.constraints.length === 1 ? this.args.constraints[0] : null;
|
|
}
|
|
|
|
@action
|
|
handleSubmit(e: HTMLElementEvent<HTMLFormElement>) {
|
|
e.preventDefault();
|
|
this.args.onVerify();
|
|
}
|
|
|
|
// Template helper
|
|
sortConstraints = (constraints: MfaConstraint[]) => {
|
|
const userInteraction = constraints.filter((c) => !c.selectedMethod);
|
|
const others = constraints.filter((c) => c.selectedMethod);
|
|
return [...userInteraction, ...others];
|
|
};
|
|
|
|
// Even if multiple methods fail, the API seems to only ever return whichever failed first.
|
|
// Sample error message:
|
|
// 'login MFA validation failed for methodID: [9e953c14-9d8e-7443-079e-4b13723e2aef]'
|
|
hasValidationError = (id: string) => this.args.error?.includes(id);
|
|
}
|