bitwarden-estensione-browser/src/app/vault/vault.component.ts

497 lines
19 KiB
TypeScript
Raw Normal View History

2018-06-05 05:10:41 +02:00
import {
2018-08-21 04:21:13 +02:00
ChangeDetectorRef,
2018-06-05 05:10:41 +02:00
Component,
2018-06-06 23:25:57 +02:00
ComponentFactoryResolver,
2018-08-21 04:21:13 +02:00
NgZone,
OnDestroy,
2018-06-06 23:25:57 +02:00
OnInit,
ViewChild,
ViewContainerRef,
2018-06-05 05:10:41 +02:00
} from '@angular/core';
2018-06-06 23:25:57 +02:00
import {
ActivatedRoute,
Router,
} from '@angular/router';
2018-06-05 05:10:41 +02:00
2018-07-22 03:58:24 +02:00
import { ToasterService } from 'angular2-toaster';
2018-06-05 19:31:25 +02:00
import { CipherType } from 'jslib/enums/cipherType';
2018-06-06 23:25:57 +02:00
import { CipherView } from 'jslib/models/view/cipherView';
import { ModalComponent } from '../modal.component';
2018-07-11 17:39:48 +02:00
import { OrganizationsComponent } from '../settings/organizations.component';
2018-07-17 23:22:51 +02:00
import { UpdateKeyComponent } from '../settings/update-key.component';
2018-06-07 05:23:14 +02:00
import { AddEditComponent } from './add-edit.component';
2018-06-06 23:25:57 +02:00
import { AttachmentsComponent } from './attachments.component';
import { BulkDeleteComponent } from './bulk-delete.component';
2018-07-11 17:39:48 +02:00
import { BulkMoveComponent } from './bulk-move.component';
import { BulkShareComponent } from './bulk-share.component';
2018-06-06 23:25:57 +02:00
import { CiphersComponent } from './ciphers.component';
2018-06-12 19:08:47 +02:00
import { CollectionsComponent } from './collections.component';
2018-06-06 23:25:57 +02:00
import { FolderAddEditComponent } from './folder-add-edit.component';
import { GroupingsComponent } from './groupings.component';
2018-06-12 19:08:47 +02:00
import { ShareComponent } from './share.component';
2018-06-06 23:25:57 +02:00
2018-07-12 23:09:09 +02:00
import { CryptoService } from 'jslib/abstractions/crypto.service';
2018-06-06 23:25:57 +02:00
import { I18nService } from 'jslib/abstractions/i18n.service';
2018-07-18 15:21:23 +02:00
import { MessagingService } from 'jslib/abstractions/messaging.service';
2018-07-20 16:44:17 +02:00
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2018-06-06 23:25:57 +02:00
import { SyncService } from 'jslib/abstractions/sync.service';
import { TokenService } from 'jslib/abstractions/token.service';
2018-07-18 15:21:23 +02:00
import { UserService } from 'jslib/abstractions/user.service';
2018-06-06 23:25:57 +02:00
2018-08-21 04:21:13 +02:00
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
const BroadcasterSubscriptionId = 'VaultComponent';
2018-06-05 05:10:41 +02:00
@Component({
selector: 'app-vault',
templateUrl: 'vault.component.html',
})
2018-08-21 04:21:13 +02:00
export class VaultComponent implements OnInit, OnDestroy {
2018-06-06 23:25:57 +02:00
@ViewChild(GroupingsComponent) groupingsComponent: GroupingsComponent;
@ViewChild(CiphersComponent) ciphersComponent: CiphersComponent;
2018-07-11 17:39:48 +02:00
@ViewChild(OrganizationsComponent) organizationsComponent: OrganizationsComponent;
2018-06-06 23:25:57 +02:00
@ViewChild('attachments', { read: ViewContainerRef }) attachmentsModalRef: ViewContainerRef;
@ViewChild('folderAddEdit', { read: ViewContainerRef }) folderAddEditModalRef: ViewContainerRef;
2018-06-12 17:46:11 +02:00
@ViewChild('cipherAddEdit', { read: ViewContainerRef }) cipherAddEditModalRef: ViewContainerRef;
@ViewChild('share', { read: ViewContainerRef }) shareModalRef: ViewContainerRef;
@ViewChild('collections', { read: ViewContainerRef }) collectionsModalRef: ViewContainerRef;
@ViewChild('bulkDeleteTemplate', { read: ViewContainerRef }) bulkDeleteModalRef: ViewContainerRef;
2018-06-12 23:33:08 +02:00
@ViewChild('bulkMoveTemplate', { read: ViewContainerRef }) bulkMoveModalRef: ViewContainerRef;
2018-06-13 06:03:48 +02:00
@ViewChild('bulkShareTemplate', { read: ViewContainerRef }) bulkShareModalRef: ViewContainerRef;
2018-07-17 23:22:51 +02:00
@ViewChild('updateKeyTemplate', { read: ViewContainerRef }) updateKeyModalRef: ViewContainerRef;
2018-06-06 23:25:57 +02:00
favorites: boolean = false;
type: CipherType = null;
folderId: string = null;
collectionId: string = null;
showVerifyEmail = false;
showBrowserOutdated = false;
showUpdateKey = false;
2018-07-20 16:44:17 +02:00
showPremiumCallout = false;
2018-06-06 23:25:57 +02:00
private modal: ModalComponent = null;
constructor(private syncService: SyncService, private route: ActivatedRoute,
private router: Router, private changeDetectorRef: ChangeDetectorRef,
private i18nService: I18nService, private componentFactoryResolver: ComponentFactoryResolver,
2018-07-18 15:21:23 +02:00
private tokenService: TokenService, private cryptoService: CryptoService,
2018-07-20 16:44:17 +02:00
private messagingService: MessagingService, private userService: UserService,
2018-08-21 04:21:13 +02:00
private platformUtilsService: PlatformUtilsService, private toasterService: ToasterService,
private broadcasterService: BroadcasterService, private ngZone: NgZone) { }
2018-06-06 23:25:57 +02:00
async ngOnInit() {
this.showVerifyEmail = !(await this.tokenService.getEmailVerified());
this.showBrowserOutdated = window.navigator.userAgent.indexOf('MSIE') !== -1;
const queryParamsSub = this.route.queryParams.subscribe(async (params) => {
2018-06-26 18:03:11 +02:00
await this.syncService.fullSync(false);
2018-08-31 23:23:36 +02:00
this.showUpdateKey = !(await this.cryptoService.hasEncKey());
const canAccessPremium = await this.userService.canAccessPremium();
this.showPremiumCallout = !this.showVerifyEmail && !canAccessPremium &&
!this.platformUtilsService.isSelfHost();
2018-08-21 04:21:13 +02:00
2018-07-11 17:39:48 +02:00
await Promise.all([
this.groupingsComponent.load(),
this.organizationsComponent.load(),
]);
2018-06-06 23:25:57 +02:00
if (params == null) {
this.groupingsComponent.selectedAll = true;
2019-03-19 17:44:22 +01:00
await this.ciphersComponent.reload();
2018-06-06 23:25:57 +02:00
} else {
if (params.favorites) {
this.groupingsComponent.selectedFavorites = true;
await this.filterFavorites();
} else if (params.type) {
const t = parseInt(params.type, null);
this.groupingsComponent.selectedType = t;
await this.filterCipherType(t);
} else if (params.folderId) {
this.groupingsComponent.selectedFolder = true;
this.groupingsComponent.selectedFolderId = params.folderId;
await this.filterFolder(params.folderId);
} else if (params.collectionId) {
this.groupingsComponent.selectedCollectionId = params.collectionId;
await this.filterCollection(params.collectionId);
} else {
this.groupingsComponent.selectedAll = true;
2019-03-19 17:44:22 +01:00
await this.ciphersComponent.reload();
}
2018-06-06 23:25:57 +02:00
}
2018-08-31 23:23:36 +02:00
this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => {
this.ngZone.run(async () => {
switch (message.command) {
case 'syncCompleted':
if (message.successfully) {
await Promise.all([
this.groupingsComponent.load(),
this.organizationsComponent.load(),
this.ciphersComponent.load(this.ciphersComponent.filter),
]);
this.changeDetectorRef.detectChanges();
}
break;
}
});
});
2019-01-17 05:30:32 +01:00
if (queryParamsSub != null) {
queryParamsSub.unsubscribe();
}
2018-06-06 23:25:57 +02:00
});
}
2018-08-21 04:21:13 +02:00
ngOnDestroy() {
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
}
2018-06-06 23:25:57 +02:00
async clearGroupingFilters() {
this.ciphersComponent.showAddNew = true;
2018-06-07 15:05:25 +02:00
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchVault');
2019-03-19 17:44:22 +01:00
await this.ciphersComponent.reload();
2018-06-06 23:25:57 +02:00
this.clearFilters();
this.go();
}
async filterFavorites() {
this.ciphersComponent.showAddNew = true;
2018-06-07 15:05:25 +02:00
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchFavorites');
2019-03-19 17:44:22 +01:00
await this.ciphersComponent.reload((c) => c.favorite);
2018-06-06 23:25:57 +02:00
this.clearFilters();
this.favorites = true;
this.go();
}
async filterCipherType(type: CipherType) {
this.ciphersComponent.showAddNew = true;
2018-06-07 15:05:25 +02:00
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchType');
2019-03-19 17:44:22 +01:00
await this.ciphersComponent.reload((c) => c.type === type);
2018-06-06 23:25:57 +02:00
this.clearFilters();
this.type = type;
this.go();
}
async filterFolder(folderId: string) {
this.ciphersComponent.showAddNew = true;
2018-06-06 23:25:57 +02:00
folderId = folderId === 'none' ? null : folderId;
2018-06-07 15:05:25 +02:00
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchFolder');
2019-03-19 17:44:22 +01:00
await this.ciphersComponent.reload((c) => c.folderId === folderId);
2018-06-06 23:25:57 +02:00
this.clearFilters();
this.folderId = folderId == null ? 'none' : folderId;
this.go();
}
async filterCollection(collectionId: string) {
2018-10-22 22:46:48 +02:00
this.ciphersComponent.showAddNew = true;
2018-06-07 15:05:25 +02:00
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchCollection');
2019-03-19 17:44:22 +01:00
await this.ciphersComponent.reload((c) => c.collectionIds != null &&
c.collectionIds.indexOf(collectionId) > -1);
2018-06-06 23:25:57 +02:00
this.clearFilters();
this.collectionId = collectionId;
this.go();
}
2018-06-07 05:00:57 +02:00
filterSearchText(searchText: string) {
this.ciphersComponent.searchText = searchText;
2018-08-13 22:27:17 +02:00
this.ciphersComponent.search(200);
2018-06-07 05:00:57 +02:00
}
2018-07-18 15:21:23 +02:00
async editCipherAttachments(cipher: CipherView) {
const canAccessPremium = await this.userService.canAccessPremium();
if (cipher.organizationId == null && !canAccessPremium) {
2018-07-18 15:21:23 +02:00
this.messagingService.send('premiumRequired');
return;
} else if (cipher.organizationId != null) {
const org = await this.userService.getOrganization(cipher.organizationId);
if (org != null && (org.maxStorageGb == null || org.maxStorageGb === 0)) {
this.messagingService.send('upgradeOrganization', { organizationId: cipher.organizationId });
return;
}
}
2018-06-06 23:25:57 +02:00
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
this.modal = this.attachmentsModalRef.createComponent(factory).instance;
const childComponent = this.modal.show<AttachmentsComponent>(AttachmentsComponent, this.attachmentsModalRef);
childComponent.cipherId = cipher.id;
2018-06-09 19:29:30 +02:00
let madeAttachmentChanges = false;
childComponent.onUploadedAttachment.subscribe(() => madeAttachmentChanges = true);
childComponent.onDeletedAttachment.subscribe(() => madeAttachmentChanges = true);
childComponent.onReuploadedAttachment.subscribe(() => madeAttachmentChanges = true);
2018-06-06 23:25:57 +02:00
2018-06-09 19:29:30 +02:00
this.modal.onClosed.subscribe(async () => {
2018-06-06 23:25:57 +02:00
this.modal = null;
2018-06-09 19:29:30 +02:00
if (madeAttachmentChanges) {
await this.ciphersComponent.refresh();
}
madeAttachmentChanges = false;
2018-06-06 23:25:57 +02:00
});
}
2018-06-12 17:46:11 +02:00
shareCipher(cipher: CipherView) {
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
this.modal = this.shareModalRef.createComponent(factory).instance;
const childComponent = this.modal.show<ShareComponent>(ShareComponent, this.shareModalRef);
childComponent.cipherId = cipher.id;
childComponent.onSharedCipher.subscribe(async () => {
this.modal.close();
await this.ciphersComponent.refresh();
});
this.modal.onClosed.subscribe(async () => {
this.modal = null;
});
}
2018-06-12 19:08:47 +02:00
editCipherCollections(cipher: CipherView) {
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
2018-06-20 22:28:56 +02:00
this.modal = this.collectionsModalRef.createComponent(factory).instance;
2018-06-12 19:08:47 +02:00
const childComponent = this.modal.show<CollectionsComponent>(CollectionsComponent, this.collectionsModalRef);
childComponent.cipherId = cipher.id;
childComponent.onSavedCollections.subscribe(async () => {
this.modal.close();
await this.ciphersComponent.refresh();
});
this.modal.onClosed.subscribe(async () => {
this.modal = null;
});
}
2018-06-06 23:25:57 +02:00
async addFolder() {
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
this.modal = this.folderAddEditModalRef.createComponent(factory).instance;
const childComponent = this.modal.show<FolderAddEditComponent>(
FolderAddEditComponent, this.folderAddEditModalRef);
childComponent.folderId = null;
childComponent.onSavedFolder.subscribe(async () => {
2018-06-06 23:25:57 +02:00
this.modal.close();
await this.groupingsComponent.loadFolders();
});
this.modal.onClosed.subscribe(() => {
this.modal = null;
});
}
async editFolder(folderId: string) {
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
this.modal = this.folderAddEditModalRef.createComponent(factory).instance;
const childComponent = this.modal.show<FolderAddEditComponent>(
FolderAddEditComponent, this.folderAddEditModalRef);
childComponent.folderId = folderId;
childComponent.onSavedFolder.subscribe(async () => {
2018-06-06 23:25:57 +02:00
this.modal.close();
await this.groupingsComponent.loadFolders();
});
childComponent.onDeletedFolder.subscribe(async () => {
2018-06-06 23:25:57 +02:00
this.modal.close();
await this.groupingsComponent.loadFolders();
await this.filterFolder('none');
this.groupingsComponent.selectedFolderId = null;
2018-06-06 23:25:57 +02:00
});
this.modal.onClosed.subscribe(() => {
this.modal = null;
});
}
2018-06-07 05:23:14 +02:00
addCipher() {
const component = this.editCipher(null);
component.type = this.type;
component.folderId = this.folderId === 'none' ? null : this.folderId;
2018-10-22 22:46:48 +02:00
if (this.collectionId != null) {
const collection = this.groupingsComponent.collections.filter((c) => c.id === this.collectionId);
if (collection.length > 0) {
component.organizationId = collection[0].organizationId;
component.collectionIds = [this.collectionId];
}
}
2018-06-07 05:23:14 +02:00
}
editCipher(cipher: CipherView) {
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
2018-06-12 17:46:11 +02:00
this.modal = this.cipherAddEditModalRef.createComponent(factory).instance;
2018-06-07 05:23:14 +02:00
const childComponent = this.modal.show<AddEditComponent>(
2018-06-12 17:46:11 +02:00
AddEditComponent, this.cipherAddEditModalRef);
2018-06-07 05:23:14 +02:00
childComponent.cipherId = cipher == null ? null : cipher.id;
2018-06-08 18:04:03 +02:00
childComponent.onSavedCipher.subscribe(async (c: CipherView) => {
2018-06-07 05:23:14 +02:00
this.modal.close();
2018-06-08 20:56:26 +02:00
await this.ciphersComponent.refresh();
2018-06-07 05:23:14 +02:00
});
2018-06-08 18:04:03 +02:00
childComponent.onDeletedCipher.subscribe(async (c: CipherView) => {
2018-06-07 05:23:14 +02:00
this.modal.close();
2018-06-08 20:56:26 +02:00
await this.ciphersComponent.refresh();
2018-06-07 05:23:14 +02:00
});
this.modal.onClosed.subscribe(() => {
this.modal = null;
});
return childComponent;
}
cloneCipher(cipher: CipherView) {
const component = this.editCipher(cipher);
component.cloneMode = true;
}
bulkDelete() {
2018-07-22 03:58:24 +02:00
const selectedIds = this.ciphersComponent.getSelectedIds();
if (selectedIds.length === 0) {
this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'),
this.i18nService.t('nothingSelected'));
return;
}
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
this.modal = this.bulkDeleteModalRef.createComponent(factory).instance;
2018-06-12 23:33:08 +02:00
const childComponent = this.modal.show<BulkDeleteComponent>(BulkDeleteComponent, this.bulkDeleteModalRef);
2018-07-22 03:58:24 +02:00
childComponent.cipherIds = selectedIds;
childComponent.onDeleted.subscribe(async () => {
this.modal.close();
await this.ciphersComponent.refresh();
});
this.modal.onClosed.subscribe(() => {
this.modal = null;
});
}
bulkShare() {
2018-07-22 03:58:24 +02:00
const selectedCiphers = this.ciphersComponent.getSelected();
if (selectedCiphers.length === 0) {
this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'),
this.i18nService.t('nothingSelected'));
return;
}
2018-06-13 06:03:48 +02:00
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
this.modal = this.bulkShareModalRef.createComponent(factory).instance;
const childComponent = this.modal.show<BulkShareComponent>(BulkShareComponent, this.bulkShareModalRef);
2018-07-22 03:58:24 +02:00
childComponent.ciphers = selectedCiphers;
2018-06-13 06:03:48 +02:00
childComponent.onShared.subscribe(async () => {
this.modal.close();
await this.ciphersComponent.refresh();
});
this.modal.onClosed.subscribe(async () => {
this.modal = null;
});
}
bulkMove() {
2018-07-22 03:58:24 +02:00
const selectedIds = this.ciphersComponent.getSelectedIds();
if (selectedIds.length === 0) {
this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'),
this.i18nService.t('nothingSelected'));
return;
}
2018-06-12 23:33:08 +02:00
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
this.modal = this.bulkMoveModalRef.createComponent(factory).instance;
const childComponent = this.modal.show<BulkMoveComponent>(BulkMoveComponent, this.bulkMoveModalRef);
2018-07-22 03:58:24 +02:00
childComponent.cipherIds = selectedIds;
2018-06-12 23:33:08 +02:00
childComponent.onMoved.subscribe(async () => {
this.modal.close();
await this.ciphersComponent.refresh();
});
this.modal.onClosed.subscribe(() => {
this.modal = null;
});
}
selectAll(select: boolean) {
this.ciphersComponent.selectAll(select);
}
2018-07-17 23:22:51 +02:00
updateKey() {
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
this.modal = this.updateKeyModalRef.createComponent(factory).instance;
this.modal.show<UpdateKeyComponent>(UpdateKeyComponent, this.updateKeyModalRef);
this.modal.onClosed.subscribe(() => {
this.modal = null;
});
}
2018-06-06 23:25:57 +02:00
private clearFilters() {
this.folderId = null;
this.collectionId = null;
this.favorites = false;
this.type = null;
}
private go(queryParams: any = null) {
if (queryParams == null) {
queryParams = {
favorites: this.favorites ? true : null,
type: this.type,
folderId: this.folderId,
collectionId: this.collectionId,
};
}
2018-06-05 05:10:41 +02:00
this.router.navigate([], {
relativeTo: this.route,
queryParams: queryParams,
replaceUrl: true,
});
2018-06-06 23:25:57 +02:00
}
2018-06-05 05:10:41 +02:00
}