1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-27 07:39:49 +01:00

[PM-12600] prevent verified user from deleting their account (#11665)

This commit is contained in:
Brandon Treston 2024-10-25 12:46:02 -04:00 committed by GitHub
parent 10a662cc35
commit 85194fd1b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 44 additions and 2 deletions

View File

@ -10,7 +10,17 @@ import {
} from "@angular/core";
import { takeUntilDestroyed } from "@angular/core/rxjs-interop";
import { Router } from "@angular/router";
import { catchError, filter, firstValueFrom, map, of, Subject, takeUntil, timeout } from "rxjs";
import {
catchError,
filter,
firstValueFrom,
map,
of,
Subject,
takeUntil,
timeout,
withLatestFrom,
} from "rxjs";
import { CollectionService } from "@bitwarden/admin-console/common";
import { ModalRef } from "@bitwarden/angular/components/modal/modal.ref";
@ -22,6 +32,7 @@ import { NotificationsService } from "@bitwarden/common/abstractions/notificatio
import { SearchService } from "@bitwarden/common/abstractions/search.service";
import { VaultTimeoutSettingsService } from "@bitwarden/common/abstractions/vault-timeout/vault-timeout-settings.service";
import { VaultTimeoutService } from "@bitwarden/common/abstractions/vault-timeout/vault-timeout.service";
import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction";
import { InternalPolicyService } from "@bitwarden/common/admin-console/abstractions/policy/policy.service.abstraction";
import { AccountService } from "@bitwarden/common/auth/abstractions/account.service";
import { AuthService } from "@bitwarden/common/auth/abstractions/auth.service";
@ -155,6 +166,7 @@ export class AppComponent implements OnInit, OnDestroy {
private stateEventRunnerService: StateEventRunnerService,
private accountService: AccountService,
private sdkService: SdkService,
private organizationService: OrganizationService,
) {
if (flagEnabled("sdk")) {
// Warn if the SDK for some reason can't be initialized
@ -309,7 +321,7 @@ export class AppComponent implements OnInit, OnDestroy {
break;
}
case "deleteAccount":
DeleteAccountComponent.open(this.dialogService);
await this.deleteAccount();
break;
case "openPasswordHistory":
await this.openModal<PasswordGeneratorHistoryComponent>(
@ -863,4 +875,28 @@ export class AppComponent implements OnInit, OnDestroy {
this.messagingService.send(message, { code: code, state: receivedState });
}
private async deleteAccount() {
await firstValueFrom(
this.configService.getFeatureFlag$(FeatureFlag.AccountDeprovisioning).pipe(
withLatestFrom(this.organizationService.organizations$),
map(async ([accountDeprovisioningEnabled, organization]) => {
if (
accountDeprovisioningEnabled &&
organization.some((o) => o.userIsManagedByOrganization === true)
) {
await this.dialogService.openSimpleDialog({
title: { key: "cannotDeleteAccount" },
content: { key: "cannotDeleteAccountDesc" },
cancelButtonText: null,
acceptButtonText: { key: "close" },
type: "danger",
});
} else {
DeleteAccountComponent.open(this.dialogService);
}
}),
),
);
}
}

View File

@ -1683,6 +1683,12 @@
"deleteAccountWarning": {
"message": "Deleting your account is permanent. It cannot be undone."
},
"cannotDeleteAccount":{
"message": "Cannot delete account"
},
"cannotDeleteAccountDesc":{
"message": "This action cannot be completed because your account is owned by an organization. Contact your organization administrator for additional details."
},
"accountDeleted": {
"message": "Account deleted"
},