mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
* [PM-15506] Wire up vNextOrganizationService for libs/common and libs/angular (#12683) * Wire up vNextOrganizationService in PolicyService * Wire vNextOrganizationService in SyncService * wire vNextOrganizationService for EventCollectionService * wire vNextOrganizationService for KeyConnectorService * wire up vNextOrganizationService for CipherAuthorizationService * Wire up vNextOrganizationService in PolicyService * Wire vNextOrganizationService in SyncService * wire vNextOrganizationService for EventCollectionService * wire vNextOrganizationService for KeyConnectorService * wire up vNextOrganizationService for CipherAuthorizationService * wire vNextOrganizationService for share.component * wire vNextOrganizationService for collections.component * wire vNextOrganizationServcie for add-account-credit-dialog * wire vNextOrganizationService for vault-filter.service * fix browser errors for vNextOrganizationService implementation in libs * fix desktop errors for vNextOrganizationService implementation for libs * fix linter errors * fix CLI errors on vNextOrganizationServcie implementations for libs * [PM-15506] Wire up vNextOrganizationService for web client (#12810) PR to a feature branch, no need to review until this goes to main. * implement vNextOrganization service for browser client (#12844) PR to feature branch, no need for review yet. * wire vNextOrganizationService for licence and some web router guards * wire vNextOrganizationService in tests * remove vNext notation for OrganizationService and related * Merge branch 'main' into ac/pm-15506-vNextOrganizationService * fix tsstrict error * fix test, fix ts strict error
148 lines
5.3 KiB
TypeScript
148 lines
5.3 KiB
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
import { Directive, EventEmitter, Input, OnDestroy, OnInit, Output } from "@angular/core";
|
|
import { firstValueFrom, map, Observable, Subject, takeUntil } from "rxjs";
|
|
|
|
import { CollectionService, CollectionView } from "@bitwarden/admin-console/common";
|
|
import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction";
|
|
import { OrganizationUserStatusType } from "@bitwarden/common/admin-console/enums";
|
|
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
|
|
import { AccountService } from "@bitwarden/common/auth/abstractions/account.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 { Utils } from "@bitwarden/common/platform/misc/utils";
|
|
import { Checkable, isChecked } from "@bitwarden/common/types/checkable";
|
|
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
|
|
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
|
|
|
|
@Directive()
|
|
export class ShareComponent implements OnInit, OnDestroy {
|
|
@Input() cipherId: string;
|
|
@Input() organizationId: string;
|
|
@Output() onSharedCipher = new EventEmitter();
|
|
|
|
formPromise: Promise<void>;
|
|
cipher: CipherView;
|
|
collections: Checkable<CollectionView>[] = [];
|
|
organizations$: Observable<Organization[]>;
|
|
|
|
protected writeableCollections: Checkable<CollectionView>[] = [];
|
|
|
|
private _destroy = new Subject<void>();
|
|
|
|
constructor(
|
|
protected collectionService: CollectionService,
|
|
protected platformUtilsService: PlatformUtilsService,
|
|
protected i18nService: I18nService,
|
|
protected cipherService: CipherService,
|
|
private logService: LogService,
|
|
protected organizationService: OrganizationService,
|
|
protected accountService: AccountService,
|
|
) {}
|
|
|
|
async ngOnInit() {
|
|
await this.load();
|
|
}
|
|
|
|
ngOnDestroy(): void {
|
|
this._destroy.next();
|
|
this._destroy.complete();
|
|
}
|
|
|
|
async load() {
|
|
const allCollections = await this.collectionService.getAllDecrypted();
|
|
this.writeableCollections = allCollections.map((c) => c).filter((c) => !c.readOnly);
|
|
|
|
const userId = await firstValueFrom(
|
|
this.accountService.activeAccount$.pipe(map((account) => account?.id)),
|
|
);
|
|
|
|
this.organizations$ = this.organizationService.memberOrganizations$(userId).pipe(
|
|
map((orgs) => {
|
|
return orgs
|
|
.filter((o) => o.enabled && o.status === OrganizationUserStatusType.Confirmed)
|
|
.sort(Utils.getSortFunction(this.i18nService, "name"));
|
|
}),
|
|
);
|
|
|
|
this.organizations$.pipe(takeUntil(this._destroy)).subscribe((orgs) => {
|
|
if (this.organizationId == null && orgs.length > 0) {
|
|
this.organizationId = orgs[0].id;
|
|
this.filterCollections();
|
|
}
|
|
});
|
|
|
|
const cipherDomain = await this.cipherService.get(this.cipherId);
|
|
const activeUserId = await firstValueFrom(
|
|
this.accountService.activeAccount$.pipe(map((a) => a?.id)),
|
|
);
|
|
this.cipher = await cipherDomain.decrypt(
|
|
await this.cipherService.getKeyForCipherKeyDecryption(cipherDomain, activeUserId),
|
|
);
|
|
}
|
|
|
|
filterCollections() {
|
|
this.writeableCollections.forEach((c) => (c.checked = false));
|
|
if (this.organizationId == null || this.writeableCollections.length === 0) {
|
|
this.collections = [];
|
|
} else {
|
|
this.collections = this.writeableCollections.filter(
|
|
(c) => c.organizationId === this.organizationId,
|
|
);
|
|
}
|
|
}
|
|
|
|
async submit(): Promise<boolean> {
|
|
const selectedCollectionIds = this.collections.filter(isChecked).map((c) => c.id);
|
|
if (selectedCollectionIds.length === 0) {
|
|
this.platformUtilsService.showToast(
|
|
"error",
|
|
this.i18nService.t("errorOccurred"),
|
|
this.i18nService.t("selectOneCollection"),
|
|
);
|
|
return;
|
|
}
|
|
|
|
const cipherDomain = await this.cipherService.get(this.cipherId);
|
|
const activeUserId = await firstValueFrom(
|
|
this.accountService.activeAccount$.pipe(map((a) => a?.id)),
|
|
);
|
|
const cipherView = await cipherDomain.decrypt(
|
|
await this.cipherService.getKeyForCipherKeyDecryption(cipherDomain, activeUserId),
|
|
);
|
|
const orgs = await firstValueFrom(this.organizations$);
|
|
const orgName =
|
|
orgs.find((o) => o.id === this.organizationId)?.name ?? this.i18nService.t("organization");
|
|
|
|
try {
|
|
this.formPromise = this.cipherService
|
|
.shareWithServer(cipherView, this.organizationId, selectedCollectionIds, activeUserId)
|
|
.then(async () => {
|
|
this.onSharedCipher.emit();
|
|
this.platformUtilsService.showToast(
|
|
"success",
|
|
null,
|
|
this.i18nService.t("movedItemToOrg", cipherView.name, orgName),
|
|
);
|
|
});
|
|
await this.formPromise;
|
|
return true;
|
|
} catch (e) {
|
|
this.logService.error(e);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
get canSave() {
|
|
if (this.collections != null) {
|
|
for (let i = 0; i < this.collections.length; i++) {
|
|
if (this.collections[i].checked) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|