mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 23:03:32 +00:00
* Added enable encryption * various updates and tests added. * fixing linter errors * updated spec file
92 lines
3.3 KiB
TypeScript
92 lines
3.3 KiB
TypeScript
import { DIALOG_DATA, DialogConfig, DialogRef } from "@angular/cdk/dialog";
|
|
import { Component, Inject, OnDestroy, OnInit } from "@angular/core";
|
|
import { FormBuilder, Validators } from "@angular/forms";
|
|
import { Subject } from "rxjs";
|
|
import { takeUntil } from "rxjs/operators";
|
|
|
|
import { WebAuthnLoginServiceAbstraction } from "@bitwarden/common/auth/abstractions/webauthn/webauthn-login.service.abstraction";
|
|
import { WebAuthnLoginCredentialAssertionOptionsView } from "@bitwarden/common/auth/models/view/webauthn-login/webauthn-login-credential-assertion-options.view";
|
|
import { Verification } from "@bitwarden/common/auth/types/verification";
|
|
import { ErrorResponse } from "@bitwarden/common/models/response/error.response";
|
|
import { DialogService } from "@bitwarden/components/src/dialog/dialog.service";
|
|
|
|
import { WebauthnLoginAdminService } from "../../../core/services/webauthn-login/webauthn-login-admin.service";
|
|
import { WebauthnLoginCredentialView } from "../../../core/views/webauthn-login-credential.view";
|
|
|
|
export interface EnableEncryptionDialogParams {
|
|
credentialId: string;
|
|
}
|
|
|
|
@Component({
|
|
templateUrl: "enable-encryption-dialog.component.html",
|
|
})
|
|
export class EnableEncryptionDialogComponent implements OnInit, OnDestroy {
|
|
private destroy$ = new Subject<void>();
|
|
|
|
protected invalidSecret = false;
|
|
protected formGroup = this.formBuilder.group({
|
|
userVerification: this.formBuilder.group({
|
|
secret: [null as Verification | null, Validators.required],
|
|
}),
|
|
});
|
|
|
|
protected credential?: WebauthnLoginCredentialView;
|
|
protected credentialOptions?: WebAuthnLoginCredentialAssertionOptionsView;
|
|
protected loading$ = this.webauthnService.loading$;
|
|
|
|
constructor(
|
|
@Inject(DIALOG_DATA) private params: EnableEncryptionDialogParams,
|
|
private formBuilder: FormBuilder,
|
|
private dialogRef: DialogRef,
|
|
private webauthnService: WebauthnLoginAdminService,
|
|
private webauthnLoginService: WebAuthnLoginServiceAbstraction,
|
|
) {}
|
|
|
|
ngOnInit(): void {
|
|
this.webauthnService
|
|
.getCredential$(this.params.credentialId)
|
|
.pipe(takeUntil(this.destroy$))
|
|
.subscribe((credential: any) => (this.credential = credential));
|
|
}
|
|
|
|
submit = async () => {
|
|
if (this.credential === undefined) {
|
|
return;
|
|
}
|
|
|
|
this.dialogRef.disableClose = true;
|
|
try {
|
|
this.credentialOptions = await this.webauthnService.getCredentialAssertOptions(
|
|
this.formGroup.value.userVerification.secret,
|
|
);
|
|
await this.webauthnService.enableCredentialEncryption(
|
|
await this.webauthnLoginService.assertCredential(this.credentialOptions),
|
|
);
|
|
} catch (error) {
|
|
if (error instanceof ErrorResponse && error.statusCode === 400) {
|
|
this.invalidSecret = true;
|
|
}
|
|
throw error;
|
|
}
|
|
|
|
this.dialogRef.close();
|
|
};
|
|
|
|
ngOnDestroy(): void {
|
|
this.destroy$.next();
|
|
this.destroy$.complete();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Strongly typed helper to open a EnableEncryptionDialogComponent
|
|
* @param dialogService Instance of the dialog service that will be used to open the dialog
|
|
* @param config Configuration for the dialog
|
|
*/
|
|
export const openEnableCredentialDialogComponent = (
|
|
dialogService: DialogService,
|
|
config: DialogConfig<EnableEncryptionDialogParams>,
|
|
) => {
|
|
return dialogService.open<unknown>(EnableEncryptionDialogComponent, config);
|
|
};
|