mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
* Rename service-factory folder * Move cryptographic service factories * Move crypto models * Move crypto services * Move domain base class * Platform code owners * Move desktop log services * Move log files * Establish component library ownership * Move background listeners * Move background background * Move localization to Platform * Move browser alarms to Platform * Move browser state to Platform * Move CLI state to Platform * Move Desktop native concerns to Platform * Move flag and misc to Platform * Lint fixes * Move electron state to platform * Move web state to Platform * Move lib state to Platform * Fix broken tests * Rename interface to idiomatic TS * `npm run prettier` 🤖 * Resolve review feedback * Set platform as owners of web core and shared * Expand moved services * Fix test types --------- Co-authored-by: Hinton <hinton@users.noreply.github.com>
86 lines
2.6 KiB
TypeScript
86 lines
2.6 KiB
TypeScript
import { Directive, OnInit } from "@angular/core";
|
|
import { ControlValueAccessor, FormControl } from "@angular/forms";
|
|
|
|
import { UserVerificationService } from "@bitwarden/common/abstractions/userVerification/userVerification.service.abstraction";
|
|
import { KeyConnectorService } from "@bitwarden/common/auth/abstractions/key-connector.service";
|
|
import { VerificationType } from "@bitwarden/common/auth/enums/verification-type";
|
|
import { Utils } from "@bitwarden/common/platform/misc/utils";
|
|
import { Verification } from "@bitwarden/common/types/verification";
|
|
|
|
/**
|
|
* Used for general-purpose user verification throughout the app.
|
|
* Collects the user's master password, or if they are using Key Connector, prompts for an OTP via email.
|
|
* This is exposed to the parent component via the ControlValueAccessor interface (e.g. bind it to a FormControl).
|
|
* Use UserVerificationService to verify the user's input.
|
|
*/
|
|
@Directive({
|
|
selector: "app-user-verification",
|
|
})
|
|
// eslint-disable-next-line rxjs-angular/prefer-takeuntil
|
|
export class UserVerificationComponent implements ControlValueAccessor, OnInit {
|
|
usesKeyConnector = false;
|
|
disableRequestOTP = false;
|
|
sentCode = false;
|
|
|
|
secret = new FormControl("");
|
|
|
|
private onChange: (value: Verification) => void;
|
|
|
|
constructor(
|
|
private keyConnectorService: KeyConnectorService,
|
|
private userVerificationService: UserVerificationService
|
|
) {}
|
|
|
|
async ngOnInit() {
|
|
this.usesKeyConnector = await this.keyConnectorService.getUsesKeyConnector();
|
|
this.processChanges(this.secret.value);
|
|
|
|
// eslint-disable-next-line rxjs-angular/prefer-takeuntil
|
|
this.secret.valueChanges.subscribe((secret: string) => this.processChanges(secret));
|
|
}
|
|
|
|
async requestOTP() {
|
|
if (this.usesKeyConnector) {
|
|
this.disableRequestOTP = true;
|
|
try {
|
|
await this.userVerificationService.requestOTP();
|
|
this.sentCode = true;
|
|
} finally {
|
|
this.disableRequestOTP = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
writeValue(obj: any): void {
|
|
this.secret.setValue(obj);
|
|
}
|
|
|
|
registerOnChange(fn: any): void {
|
|
this.onChange = fn;
|
|
}
|
|
|
|
registerOnTouched(fn: any): void {
|
|
// Not implemented
|
|
}
|
|
|
|
setDisabledState?(isDisabled: boolean): void {
|
|
this.disableRequestOTP = isDisabled;
|
|
if (isDisabled) {
|
|
this.secret.disable();
|
|
} else {
|
|
this.secret.enable();
|
|
}
|
|
}
|
|
|
|
private processChanges(secret: string) {
|
|
if (this.onChange == null) {
|
|
return;
|
|
}
|
|
|
|
this.onChange({
|
|
type: this.usesKeyConnector ? VerificationType.OTP : VerificationType.MasterPassword,
|
|
secret: Utils.isNullOrWhitespace(secret) ? null : secret,
|
|
});
|
|
}
|
|
}
|