mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-07 21:10:55 +08:00
123 lines
4.3 KiB
TypeScript
123 lines
4.3 KiB
TypeScript
import { Component } from "@angular/core";
|
|
import { UntypedFormBuilder } from "@angular/forms";
|
|
|
|
import { UserVerificationDialogComponent } from "@bitwarden/auth/angular";
|
|
import { EventCollectionService } from "@bitwarden/common/abstractions/event/event-collection.service";
|
|
import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction";
|
|
import { PolicyService } from "@bitwarden/common/admin-console/abstractions/policy/policy.service.abstraction";
|
|
import { UserVerificationService } from "@bitwarden/common/auth/abstractions/user-verification/user-verification.service.abstraction";
|
|
import { FileDownloadService } from "@bitwarden/common/platform/abstractions/file-download/file-download.service";
|
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
|
import { LogService } from "@bitwarden/common/platform/abstractions/log.service";
|
|
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
|
|
import { DialogService } from "@bitwarden/components";
|
|
import { VaultExportServiceAbstraction } from "@bitwarden/vault-export-core";
|
|
import { ExportComponent as BaseExportComponent } from "@bitwarden/vault-export-ui";
|
|
|
|
@Component({
|
|
selector: "app-export",
|
|
templateUrl: "export.component.html",
|
|
})
|
|
export class ExportComponent extends BaseExportComponent {
|
|
constructor(
|
|
i18nService: I18nService,
|
|
platformUtilsService: PlatformUtilsService,
|
|
exportService: VaultExportServiceAbstraction,
|
|
eventCollectionService: EventCollectionService,
|
|
policyService: PolicyService,
|
|
logService: LogService,
|
|
userVerificationService: UserVerificationService,
|
|
formBuilder: UntypedFormBuilder,
|
|
fileDownloadService: FileDownloadService,
|
|
dialogService: DialogService,
|
|
organizationService: OrganizationService,
|
|
) {
|
|
super(
|
|
i18nService,
|
|
platformUtilsService,
|
|
exportService,
|
|
eventCollectionService,
|
|
policyService,
|
|
logService,
|
|
userVerificationService,
|
|
formBuilder,
|
|
fileDownloadService,
|
|
dialogService,
|
|
organizationService,
|
|
);
|
|
}
|
|
|
|
submit = async () => {
|
|
if (this.isFileEncryptedExport && this.filePassword != this.confirmFilePassword) {
|
|
this.platformUtilsService.showToast(
|
|
"error",
|
|
this.i18nService.t("errorOccurred"),
|
|
this.i18nService.t("filePasswordAndConfirmFilePasswordDoNotMatch"),
|
|
);
|
|
return;
|
|
}
|
|
|
|
this.exportForm.markAllAsTouched();
|
|
if (this.exportForm.invalid) {
|
|
return;
|
|
}
|
|
|
|
if (this.disabledByPolicy) {
|
|
this.platformUtilsService.showToast(
|
|
"error",
|
|
null,
|
|
this.i18nService.t("personalVaultExportPolicyInEffect"),
|
|
);
|
|
return;
|
|
}
|
|
|
|
const userVerified = await this.verifyUser();
|
|
if (!userVerified) {
|
|
return;
|
|
}
|
|
|
|
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
this.doExport();
|
|
};
|
|
|
|
protected saved() {
|
|
super.saved();
|
|
this.platformUtilsService.showToast("success", null, this.i18nService.t("exportSuccess"));
|
|
}
|
|
|
|
private async verifyUser(): Promise<boolean> {
|
|
let confirmDescription = "exportWarningDesc";
|
|
if (this.isFileEncryptedExport) {
|
|
confirmDescription = "fileEncryptedExportWarningDesc";
|
|
} else if (this.isAccountEncryptedExport) {
|
|
confirmDescription = "encExportKeyWarningDesc";
|
|
}
|
|
|
|
const result = await UserVerificationDialogComponent.open(this.dialogService, {
|
|
title: "confirmVaultExport",
|
|
bodyText: confirmDescription,
|
|
confirmButtonOptions: {
|
|
text: "exportVault",
|
|
type: "primary",
|
|
},
|
|
});
|
|
|
|
// Handle the result of the dialog based on user action and verification success
|
|
if (result.userAction === "cancel") {
|
|
// User cancelled the dialog
|
|
return false;
|
|
}
|
|
|
|
// User confirmed the dialog so check verification success
|
|
if (!result.verificationSuccess) {
|
|
if (result.noAvailableClientVerificationMethods) {
|
|
// No client-side verification methods are available
|
|
// Could send user to configure a verification method like PIN or biometrics
|
|
}
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|