2018-06-13 06:03:48 +02:00
|
|
|
import {
|
|
|
|
Component,
|
|
|
|
EventEmitter,
|
|
|
|
Input,
|
|
|
|
OnInit,
|
|
|
|
Output,
|
|
|
|
} from '@angular/core';
|
|
|
|
|
2021-06-07 20:13:58 +02:00
|
|
|
import { CipherService } from 'jslib-common/abstractions/cipher.service';
|
|
|
|
import { CollectionService } from 'jslib-common/abstractions/collection.service';
|
|
|
|
import { I18nService } from 'jslib-common/abstractions/i18n.service';
|
2021-10-20 18:30:04 +02:00
|
|
|
import { LogService } from 'jslib-common/abstractions/log.service';
|
2021-12-14 17:10:26 +01:00
|
|
|
import { OrganizationService } from 'jslib-common/abstractions/organization.service';
|
2021-12-07 20:41:45 +01:00
|
|
|
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
|
2018-06-13 06:03:48 +02:00
|
|
|
|
2021-09-17 15:44:34 +02:00
|
|
|
import { CipherView } from 'jslib-common/models/view/cipherView';
|
2021-06-07 20:13:58 +02:00
|
|
|
import { CollectionView } from 'jslib-common/models/view/collectionView';
|
2018-06-13 06:03:48 +02:00
|
|
|
|
2021-06-07 20:13:58 +02:00
|
|
|
import { Organization } from 'jslib-common/models/domain/organization';
|
2018-06-13 06:03:48 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-vault-bulk-share',
|
|
|
|
templateUrl: 'bulk-share.component.html',
|
|
|
|
})
|
|
|
|
export class BulkShareComponent implements OnInit {
|
|
|
|
@Input() ciphers: CipherView[] = [];
|
|
|
|
@Input() organizationId: string;
|
|
|
|
@Output() onShared = new EventEmitter();
|
|
|
|
|
|
|
|
nonShareableCount = 0;
|
|
|
|
collections: CollectionView[] = [];
|
|
|
|
organizations: Organization[] = [];
|
2018-07-09 22:56:09 +02:00
|
|
|
shareableCiphers: CipherView[] = [];
|
2018-06-13 06:03:48 +02:00
|
|
|
formPromise: Promise<any>;
|
|
|
|
|
|
|
|
private writeableCollections: CollectionView[] = [];
|
|
|
|
|
2021-12-07 20:41:45 +01:00
|
|
|
constructor(private cipherService: CipherService, private platformUtilsService: PlatformUtilsService,
|
2021-04-14 23:43:40 +02:00
|
|
|
private i18nService: I18nService, private collectionService: CollectionService,
|
2021-12-14 17:10:26 +01:00
|
|
|
private organizationService: OrganizationService, private logService: LogService) { }
|
2018-06-13 06:03:48 +02:00
|
|
|
|
|
|
|
async ngOnInit() {
|
2021-02-03 18:41:33 +01:00
|
|
|
this.shareableCiphers = this.ciphers.filter(c => !c.hasOldAttachments && c.organizationId == null);
|
2018-06-13 06:03:48 +02:00
|
|
|
this.nonShareableCount = this.ciphers.length - this.shareableCiphers.length;
|
|
|
|
const allCollections = await this.collectionService.getAllDecrypted();
|
2021-02-03 18:41:33 +01:00
|
|
|
this.writeableCollections = allCollections.filter(c => !c.readOnly);
|
2021-12-14 17:10:26 +01:00
|
|
|
this.organizations = await this.organizationService.getAll();
|
2018-06-13 06:03:48 +02:00
|
|
|
if (this.organizationId == null && this.organizations.length > 0) {
|
|
|
|
this.organizationId = this.organizations[0].id;
|
|
|
|
}
|
|
|
|
this.filterCollections();
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnDestroy() {
|
|
|
|
this.selectAll(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
filterCollections() {
|
|
|
|
this.selectAll(false);
|
|
|
|
if (this.organizationId == null || this.writeableCollections.length === 0) {
|
|
|
|
this.collections = [];
|
|
|
|
} else {
|
2021-02-03 18:41:33 +01:00
|
|
|
this.collections = this.writeableCollections.filter(c => c.organizationId === this.organizationId);
|
2018-06-13 06:03:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async submit() {
|
2021-02-03 18:41:33 +01:00
|
|
|
const checkedCollectionIds = this.collections.filter(c => (c as any).checked).map(c => c.id);
|
2018-08-08 05:46:31 +02:00
|
|
|
try {
|
|
|
|
this.formPromise = this.cipherService.shareManyWithServer(this.shareableCiphers, this.organizationId,
|
|
|
|
checkedCollectionIds);
|
|
|
|
await this.formPromise;
|
|
|
|
this.onShared.emit();
|
2021-06-22 01:27:27 +02:00
|
|
|
const orgName = this.organizations.find(o => o.id === this.organizationId)?.name ?? this.i18nService.t('organization');
|
2021-12-07 20:41:45 +01:00
|
|
|
this.platformUtilsService.showToast('success', null, this.i18nService.t('movedItemsToOrg', orgName));
|
2021-10-20 18:30:04 +02:00
|
|
|
} catch (e) {
|
|
|
|
this.logService.error(e);
|
|
|
|
}
|
2018-06-13 06:03:48 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 22:27:54 +02:00
|
|
|
check(c: CollectionView, select?: boolean) {
|
|
|
|
(c as any).checked = select == null ? !(c as any).checked : select;
|
2018-06-13 06:03:48 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 22:27:54 +02:00
|
|
|
selectAll(select: boolean) {
|
2018-06-13 06:03:48 +02:00
|
|
|
const collections = select ? this.collections : this.writeableCollections;
|
2021-02-03 18:41:33 +01:00
|
|
|
collections.forEach(c => this.check(c, select));
|
2018-06-13 06:03:48 +02:00
|
|
|
}
|
2018-08-08 05:46:31 +02:00
|
|
|
|
|
|
|
get canSave() {
|
|
|
|
if (this.shareableCiphers != null && this.shareableCiphers.length > 0 && this.collections != null) {
|
|
|
|
for (let i = 0; i < this.collections.length; i++) {
|
|
|
|
if ((this.collections[i] as any).checked) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2018-06-13 06:03:48 +02:00
|
|
|
}
|