bitwarden-desktop/src/app/app.component.ts

311 lines
13 KiB
TypeScript
Raw Normal View History

import {
BodyOutputType,
Toast,
ToasterConfig,
ToasterContainerComponent,
ToasterService,
} from 'angular2-toaster';
2018-10-03 15:51:12 +02:00
import { Angulartics2 } from 'angulartics2';
2018-01-26 16:50:06 +01:00
import { Angulartics2GoogleAnalytics } from 'angulartics2/ga';
2018-02-08 18:24:17 +01:00
import {
Component,
2018-02-10 05:41:29 +01:00
ComponentFactoryResolver,
2018-02-08 21:58:47 +01:00
NgZone,
2018-02-08 18:24:17 +01:00
OnInit,
SecurityContext,
2018-02-18 04:37:43 +01:00
Type,
2018-02-10 05:41:29 +01:00
ViewChild,
ViewContainerRef,
2018-02-08 18:24:17 +01:00
} from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
2018-02-08 18:24:17 +01:00
import { Router } from '@angular/router';
2018-02-16 21:03:29 +01:00
import { PremiumComponent } from './accounts/premium.component';
2018-02-10 05:41:29 +01:00
import { SettingsComponent } from './accounts/settings.component';
2018-02-18 04:37:43 +01:00
import { PasswordGeneratorHistoryComponent } from './vault/password-generator-history.component';
2018-02-10 05:41:29 +01:00
2018-04-25 05:23:10 +02:00
import { ModalComponent } from 'jslib/angular/components/modal.component';
2018-04-06 21:33:53 +02:00
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
2018-02-08 18:24:17 +01:00
import { AuthService } from 'jslib/abstractions/auth.service';
import { CipherService } from 'jslib/abstractions/cipher.service';
2018-05-16 05:26:53 +02:00
import { CollectionService } from 'jslib/abstractions/collection.service';
2018-02-08 18:24:17 +01:00
import { CryptoService } from 'jslib/abstractions/crypto.service';
import { FolderService } from 'jslib/abstractions/folder.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
2018-02-10 04:47:53 +01:00
import { LockService } from 'jslib/abstractions/lock.service';
2018-02-14 06:26:32 +01:00
import { MessagingService } from 'jslib/abstractions/messaging.service';
2018-08-20 22:23:55 +02:00
import { NotificationsService } from 'jslib/abstractions/notifications.service';
2018-02-08 18:24:17 +01:00
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
2018-11-16 16:34:31 +01:00
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2018-08-13 20:09:22 +02:00
import { SearchService } from 'jslib/abstractions/search.service';
2018-02-08 18:24:17 +01:00
import { SettingsService } from 'jslib/abstractions/settings.service';
2018-02-10 05:25:18 +01:00
import { StorageService } from 'jslib/abstractions/storage.service';
2018-02-08 18:24:17 +01:00
import { SyncService } from 'jslib/abstractions/sync.service';
2019-02-27 17:29:31 +01:00
import { SystemService } from 'jslib/abstractions/system.service';
2018-02-08 18:24:17 +01:00
import { TokenService } from 'jslib/abstractions/token.service';
import { UserService } from 'jslib/abstractions/user.service';
2018-01-16 20:48:34 +01:00
2018-02-10 05:25:18 +01:00
import { ConstantsService } from 'jslib/services/constants.service';
2018-02-10 21:22:07 +01:00
const BroadcasterSubscriptionId = 'AppComponent';
2018-08-24 21:30:26 +02:00
const IdleTimeout = 60000 * 10; // 10 minutes
2018-02-10 21:22:07 +01:00
2018-01-16 20:48:34 +01:00
@Component({
2018-01-16 21:58:17 +01:00
selector: 'app-root',
styles: [],
2018-01-26 20:12:41 +01:00
template: `
<toaster-container [toasterconfig]="toasterConfig" aria-live="polite"></toaster-container>
2018-02-10 05:41:29 +01:00
<ng-template #settings></ng-template>
2018-02-16 21:03:29 +01:00
<ng-template #premium></ng-template>
2018-02-18 04:37:43 +01:00
<ng-template #passwordHistory></ng-template>
2018-01-26 20:12:41 +01:00
<router-outlet></router-outlet>`,
2018-01-16 20:48:34 +01:00
})
2018-02-08 18:24:17 +01:00
export class AppComponent implements OnInit {
2018-02-10 05:41:29 +01:00
@ViewChild('settings', { read: ViewContainerRef }) settingsRef: ViewContainerRef;
2018-02-16 21:03:29 +01:00
@ViewChild('premium', { read: ViewContainerRef }) premiumRef: ViewContainerRef;
2018-02-18 04:37:43 +01:00
@ViewChild('passwordHistory', { read: ViewContainerRef }) passwordHistoryRef: ViewContainerRef;
2018-02-10 05:41:29 +01:00
2018-01-26 20:12:41 +01:00
toasterConfig: ToasterConfig = new ToasterConfig({
showCloseButton: true,
mouseoverTimerStop: true,
animation: 'flyRight',
limit: 5,
});
2018-02-10 05:25:18 +01:00
private lastActivity: number = null;
2018-02-10 05:41:29 +01:00
private modal: ModalComponent = null;
2018-08-24 21:30:26 +02:00
private idleTimer: number = null;
private isIdle = false;
2018-02-10 05:25:18 +01:00
2018-02-08 18:24:17 +01:00
constructor(private angulartics2GoogleAnalytics: Angulartics2GoogleAnalytics,
private broadcasterService: BroadcasterService, private userService: UserService,
2018-02-10 05:25:18 +01:00
private tokenService: TokenService, private folderService: FolderService,
2018-02-08 18:24:17 +01:00
private settingsService: SettingsService, private syncService: SyncService,
private passwordGenerationService: PasswordGenerationService, private cipherService: CipherService,
private authService: AuthService, private router: Router, private analytics: Angulartics2,
2018-02-08 21:58:47 +01:00
private toasterService: ToasterService, private i18nService: I18nService,
private sanitizer: DomSanitizer, private ngZone: NgZone,
2018-02-10 05:25:18 +01:00
private lockService: LockService, private storageService: StorageService,
2018-02-14 06:26:32 +01:00
private cryptoService: CryptoService, private componentFactoryResolver: ComponentFactoryResolver,
2018-08-13 20:09:22 +02:00
private messagingService: MessagingService, private collectionService: CollectionService,
2018-11-16 16:34:31 +01:00
private searchService: SearchService, private notificationsService: NotificationsService,
2019-02-27 17:29:31 +01:00
private platformUtilsService: PlatformUtilsService, private systemService: SystemService) { }
2018-02-08 18:24:17 +01:00
ngOnInit() {
2018-04-12 20:38:41 +02:00
this.ngZone.runOutsideAngular(() => {
setTimeout(async () => {
await this.updateAppMenu();
}, 1000);
2018-02-14 06:26:32 +01:00
2018-04-12 20:38:41 +02:00
window.onmousemove = () => this.recordActivity();
window.onmousedown = () => this.recordActivity();
window.ontouchstart = () => this.recordActivity();
window.onclick = () => this.recordActivity();
window.onscroll = () => this.recordActivity();
window.onkeypress = () => this.recordActivity();
});
2018-02-10 05:25:18 +01:00
2018-02-14 06:26:32 +01:00
this.broadcasterService.subscribe(BroadcasterSubscriptionId, async (message: any) => {
2018-02-08 21:58:47 +01:00
this.ngZone.run(async () => {
switch (message.command) {
case 'loggedIn':
2018-08-20 22:23:55 +02:00
case 'unlocked':
2018-08-24 21:30:26 +02:00
this.notificationsService.updateConnection();
2018-02-14 14:54:27 +01:00
this.updateAppMenu();
2019-02-27 17:29:31 +01:00
this.systemService.cancelProcessReload();
2019-02-25 21:07:44 +01:00
break;
case 'loggedOut':
if (this.modal != null) {
this.modal.close();
}
2019-02-25 21:07:44 +01:00
this.notificationsService.updateConnection();
this.updateAppMenu();
2019-02-27 17:29:31 +01:00
this.systemService.startProcessReload();
2019-02-27 17:56:30 +01:00
await this.systemService.clearPendingClipboard();
2018-02-08 21:58:47 +01:00
break;
case 'authBlocked':
this.router.navigate(['login']);
break;
2018-02-08 21:58:47 +01:00
case 'logout':
2018-02-10 04:47:53 +01:00
this.logOut(!!message.expired);
break;
case 'lockVault':
2019-02-14 20:00:09 +01:00
await this.lockService.lock(true);
2018-02-08 21:58:47 +01:00
break;
case 'locked':
if (this.modal != null) {
this.modal.close();
}
2019-02-25 21:07:44 +01:00
this.router.navigate(['lock']);
2018-08-24 21:30:26 +02:00
this.notificationsService.updateConnection();
2018-02-14 14:54:27 +01:00
this.updateAppMenu();
2019-02-27 17:29:31 +01:00
this.systemService.startProcessReload();
2019-02-27 17:56:30 +01:00
await this.systemService.clearPendingClipboard();
2019-02-25 21:07:44 +01:00
break;
case 'reloadProcess':
window.location.reload(true);
2018-02-08 21:58:47 +01:00
break;
case 'syncStarted':
break;
case 'syncCompleted':
break;
2018-02-10 05:41:29 +01:00
case 'openSettings':
2018-02-18 04:37:43 +01:00
this.openModal<SettingsComponent>(SettingsComponent, this.settingsRef);
2018-02-10 05:41:29 +01:00
break;
2018-02-16 21:03:29 +01:00
case 'openPremium':
2018-02-18 04:37:43 +01:00
this.openModal<PremiumComponent>(PremiumComponent, this.premiumRef);
break;
2018-11-16 16:34:31 +01:00
case 'showFingerprintPhrase':
const fingerprint = await this.cryptoService.getFingerprint(
await this.userService.getUserId());
const result = await this.platformUtilsService.showDialog(
2018-11-16 17:15:16 +01:00
this.i18nService.t('yourAccountsFingerprint') + ':\n' + fingerprint.join('-'),
2018-11-16 16:34:31 +01:00
this.i18nService.t('fingerprintPhrase'), this.i18nService.t('learnMore'),
this.i18nService.t('close'));
if (result) {
2018-11-16 17:15:16 +01:00
this.platformUtilsService.launchUri(
'https://help.bitwarden.com/article/fingerprint-phrase/');
2018-11-16 16:34:31 +01:00
}
break;
2018-02-18 04:37:43 +01:00
case 'openPasswordHistory':
this.openModal<PasswordGeneratorHistoryComponent>(
PasswordGeneratorHistoryComponent, this.passwordHistoryRef);
2018-02-16 21:03:29 +01:00
break;
case 'showToast':
2018-10-03 15:51:12 +02:00
this.showToast(message);
break;
case 'analyticsEventTrack':
this.analytics.eventTrack.next({
action: message.action,
properties: { label: message.label },
});
break;
2019-02-27 17:29:31 +01:00
case 'copiedToClipboard':
2019-05-30 15:37:06 +02:00
if (!message.clearing) {
this.systemService.clearClipboard(message.clipboardValue, message.clearMs);
}
2019-02-27 17:29:31 +01:00
break;
2018-02-08 21:58:47 +01:00
default:
}
});
});
}
2018-02-08 18:24:17 +01:00
2018-02-10 21:22:07 +01:00
ngOnDestroy() {
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
}
2018-02-14 06:26:32 +01:00
private async updateAppMenu() {
this.messagingService.send('updateAppMenu', {
isAuthenticated: await this.userService.isAuthenticated(),
2019-02-14 20:00:09 +01:00
isLocked: await this.lockService.isLocked(),
2018-02-14 06:26:32 +01:00
});
}
2018-02-08 21:58:47 +01:00
private async logOut(expired: boolean) {
const userId = await this.userService.getUserId();
2018-02-08 18:24:17 +01:00
2018-02-08 21:58:47 +01:00
await Promise.all([
this.syncService.setLastSync(new Date(0)),
this.tokenService.clearToken(),
this.cryptoService.clearKeys(),
this.userService.clear(),
this.settingsService.clear(userId),
this.cipherService.clear(userId),
this.folderService.clear(userId),
2018-05-16 05:26:53 +02:00
this.collectionService.clear(userId),
2018-02-08 21:58:47 +01:00
this.passwordGenerationService.clear(),
2019-02-14 20:00:09 +01:00
this.lockService.clear(),
2018-02-08 21:58:47 +01:00
]);
2019-02-14 20:00:09 +01:00
this.lockService.pinLocked = false;
2018-08-13 20:09:22 +02:00
this.searchService.clearIndex();
2018-02-14 06:26:32 +01:00
this.authService.logOut(async () => {
2018-02-08 18:24:17 +01:00
this.analytics.eventTrack.next({ action: 'Logged Out' });
if (expired) {
this.toasterService.popAsync('warning', this.i18nService.t('loggedOut'),
this.i18nService.t('loginExpired'));
}
2018-02-14 14:54:27 +01:00
this.router.navigate(['login']);
2018-02-08 18:24:17 +01:00
});
2018-01-26 16:50:06 +01:00
}
2018-02-10 05:25:18 +01:00
private async recordActivity() {
const now = (new Date()).getTime();
if (this.lastActivity != null && now - this.lastActivity < 250) {
return;
}
this.lastActivity = now;
this.storageService.save(ConstantsService.lastActiveKey, now);
2018-08-24 21:30:26 +02:00
// Idle states
if (this.isIdle) {
this.isIdle = false;
this.idleStateChanged();
}
if (this.idleTimer != null) {
window.clearTimeout(this.idleTimer);
this.idleTimer = null;
}
this.idleTimer = window.setTimeout(() => {
if (!this.isIdle) {
this.isIdle = true;
this.idleStateChanged();
}
}, IdleTimeout);
}
private idleStateChanged() {
if (this.isIdle) {
this.notificationsService.disconnectFromInactivity();
} else {
this.notificationsService.reconnectFromActivity();
}
2018-02-10 05:25:18 +01:00
}
2018-02-10 05:41:29 +01:00
2018-02-18 04:37:43 +01:00
private openModal<T>(type: Type<T>, ref: ViewContainerRef) {
2018-02-16 21:03:29 +01:00
if (this.modal != null) {
this.modal.close();
}
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
2018-02-18 04:37:43 +01:00
this.modal = ref.createComponent(factory).instance;
2018-08-24 21:30:26 +02:00
this.modal.show<T>(type, ref);
2018-02-16 21:03:29 +01:00
this.modal.onClosed.subscribe(() => {
this.modal = null;
});
}
2018-10-03 15:51:12 +02:00
private showToast(msg: any) {
const toast: Toast = {
type: msg.type,
title: msg.title,
};
if (typeof (msg.text) === 'string') {
toast.body = msg.text;
} else if (msg.text.length === 1) {
toast.body = msg.text[0];
} else {
let message = '';
msg.text.forEach((t: string) =>
message += ('<p>' + this.sanitizer.sanitize(SecurityContext.HTML, t) + '</p>'));
toast.body = message;
toast.bodyOutputType = BodyOutputType.TrustedHtml;
}
if (msg.options != null) {
if (msg.options.trustedHtml === true) {
toast.bodyOutputType = BodyOutputType.TrustedHtml;
}
if (msg.options.timeout != null && msg.options.timeout > 0) {
toast.timeout = msg.options.timeout;
}
}
this.toasterService.popAsync(toast);
}
2018-01-16 20:48:34 +01:00
}