mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
298 lines
12 KiB
TypeScript
298 lines
12 KiB
TypeScript
import {
|
|
BodyOutputType,
|
|
Toast,
|
|
ToasterConfig,
|
|
ToasterContainerComponent,
|
|
ToasterService,
|
|
} from 'angular2-toaster';
|
|
import { Angulartics2 } from 'angulartics2';
|
|
import { Angulartics2GoogleAnalytics } from 'angulartics2/ga';
|
|
|
|
import {
|
|
Component,
|
|
ComponentFactoryResolver,
|
|
NgZone,
|
|
OnInit,
|
|
SecurityContext,
|
|
Type,
|
|
ViewChild,
|
|
ViewContainerRef,
|
|
} from '@angular/core';
|
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
import { Router } from '@angular/router';
|
|
|
|
import { PremiumComponent } from './accounts/premium.component';
|
|
import { SettingsComponent } from './accounts/settings.component';
|
|
import { PasswordGeneratorHistoryComponent } from './vault/password-generator-history.component';
|
|
|
|
import { ModalComponent } from 'jslib/angular/components/modal.component';
|
|
|
|
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
|
|
|
|
import { AuthService } from 'jslib/abstractions/auth.service';
|
|
import { CipherService } from 'jslib/abstractions/cipher.service';
|
|
import { CollectionService } from 'jslib/abstractions/collection.service';
|
|
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
|
import { FolderService } from 'jslib/abstractions/folder.service';
|
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
|
import { LockService } from 'jslib/abstractions/lock.service';
|
|
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
|
import { NotificationsService } from 'jslib/abstractions/notifications.service';
|
|
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
|
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
|
import { SearchService } from 'jslib/abstractions/search.service';
|
|
import { SettingsService } from 'jslib/abstractions/settings.service';
|
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
|
import { SyncService } from 'jslib/abstractions/sync.service';
|
|
import { SystemService } from 'jslib/abstractions/system.service';
|
|
import { TokenService } from 'jslib/abstractions/token.service';
|
|
import { UserService } from 'jslib/abstractions/user.service';
|
|
|
|
import { ConstantsService } from 'jslib/services/constants.service';
|
|
|
|
const BroadcasterSubscriptionId = 'AppComponent';
|
|
const IdleTimeout = 60000 * 10; // 10 minutes
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
styles: [],
|
|
template: `
|
|
<toaster-container [toasterconfig]="toasterConfig"></toaster-container>
|
|
<ng-template #settings></ng-template>
|
|
<ng-template #premium></ng-template>
|
|
<ng-template #passwordHistory></ng-template>
|
|
<router-outlet></router-outlet>`,
|
|
})
|
|
export class AppComponent implements OnInit {
|
|
@ViewChild('settings', { read: ViewContainerRef }) settingsRef: ViewContainerRef;
|
|
@ViewChild('premium', { read: ViewContainerRef }) premiumRef: ViewContainerRef;
|
|
@ViewChild('passwordHistory', { read: ViewContainerRef }) passwordHistoryRef: ViewContainerRef;
|
|
|
|
toasterConfig: ToasterConfig = new ToasterConfig({
|
|
showCloseButton: true,
|
|
mouseoverTimerStop: true,
|
|
animation: 'flyRight',
|
|
limit: 5,
|
|
});
|
|
|
|
private lastActivity: number = null;
|
|
private modal: ModalComponent = null;
|
|
private idleTimer: number = null;
|
|
private isIdle = false;
|
|
|
|
constructor(private angulartics2GoogleAnalytics: Angulartics2GoogleAnalytics,
|
|
private broadcasterService: BroadcasterService, private userService: UserService,
|
|
private tokenService: TokenService, private folderService: FolderService,
|
|
private settingsService: SettingsService, private syncService: SyncService,
|
|
private passwordGenerationService: PasswordGenerationService, private cipherService: CipherService,
|
|
private authService: AuthService, private router: Router, private analytics: Angulartics2,
|
|
private toasterService: ToasterService, private i18nService: I18nService,
|
|
private sanitizer: DomSanitizer, private ngZone: NgZone,
|
|
private lockService: LockService, private storageService: StorageService,
|
|
private cryptoService: CryptoService, private componentFactoryResolver: ComponentFactoryResolver,
|
|
private messagingService: MessagingService, private collectionService: CollectionService,
|
|
private searchService: SearchService, private notificationsService: NotificationsService,
|
|
private platformUtilsService: PlatformUtilsService, private systemService: SystemService) { }
|
|
|
|
ngOnInit() {
|
|
this.ngZone.runOutsideAngular(() => {
|
|
setTimeout(async () => {
|
|
await this.updateAppMenu();
|
|
}, 1000);
|
|
|
|
window.onmousemove = () => this.recordActivity();
|
|
window.onmousedown = () => this.recordActivity();
|
|
window.ontouchstart = () => this.recordActivity();
|
|
window.onclick = () => this.recordActivity();
|
|
window.onscroll = () => this.recordActivity();
|
|
window.onkeypress = () => this.recordActivity();
|
|
});
|
|
|
|
this.broadcasterService.subscribe(BroadcasterSubscriptionId, async (message: any) => {
|
|
this.ngZone.run(async () => {
|
|
switch (message.command) {
|
|
case 'loggedIn':
|
|
case 'unlocked':
|
|
this.notificationsService.updateConnection();
|
|
this.updateAppMenu();
|
|
this.systemService.cancelProcessReload();
|
|
break;
|
|
case 'loggedOut':
|
|
this.notificationsService.updateConnection();
|
|
this.updateAppMenu();
|
|
this.systemService.startProcessReload();
|
|
break;
|
|
case 'logout':
|
|
this.logOut(!!message.expired);
|
|
break;
|
|
case 'lockVault':
|
|
await this.lockService.lock(true);
|
|
break;
|
|
case 'locked':
|
|
this.router.navigate(['lock']);
|
|
this.notificationsService.updateConnection();
|
|
this.updateAppMenu();
|
|
this.systemService.startProcessReload();
|
|
break;
|
|
case 'reloadProcess':
|
|
window.location.reload(true);
|
|
break;
|
|
case 'syncStarted':
|
|
break;
|
|
case 'syncCompleted':
|
|
break;
|
|
case 'openSettings':
|
|
this.openModal<SettingsComponent>(SettingsComponent, this.settingsRef);
|
|
break;
|
|
case 'openPremium':
|
|
this.openModal<PremiumComponent>(PremiumComponent, this.premiumRef);
|
|
break;
|
|
case 'showFingerprintPhrase':
|
|
const fingerprint = await this.cryptoService.getFingerprint(
|
|
await this.userService.getUserId());
|
|
const result = await this.platformUtilsService.showDialog(
|
|
this.i18nService.t('yourAccountsFingerprint') + ':\n' + fingerprint.join('-'),
|
|
this.i18nService.t('fingerprintPhrase'), this.i18nService.t('learnMore'),
|
|
this.i18nService.t('close'));
|
|
if (result) {
|
|
this.platformUtilsService.launchUri(
|
|
'https://help.bitwarden.com/article/fingerprint-phrase/');
|
|
}
|
|
break;
|
|
case 'openPasswordHistory':
|
|
this.openModal<PasswordGeneratorHistoryComponent>(
|
|
PasswordGeneratorHistoryComponent, this.passwordHistoryRef);
|
|
break;
|
|
case 'showToast':
|
|
this.showToast(message);
|
|
break;
|
|
case 'analyticsEventTrack':
|
|
this.analytics.eventTrack.next({
|
|
action: message.action,
|
|
properties: { label: message.label },
|
|
});
|
|
break;
|
|
case 'copiedToClipboard':
|
|
this.systemService.clearClipboard(message.clipboardValue, message.clearMs);
|
|
break;
|
|
default:
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
|
|
}
|
|
|
|
private async updateAppMenu() {
|
|
this.messagingService.send('updateAppMenu', {
|
|
isAuthenticated: await this.userService.isAuthenticated(),
|
|
isLocked: await this.lockService.isLocked(),
|
|
});
|
|
}
|
|
|
|
private async logOut(expired: boolean) {
|
|
const userId = await this.userService.getUserId();
|
|
|
|
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),
|
|
this.collectionService.clear(userId),
|
|
this.passwordGenerationService.clear(),
|
|
this.lockService.clear(),
|
|
]);
|
|
|
|
this.lockService.pinLocked = false;
|
|
this.searchService.clearIndex();
|
|
this.authService.logOut(async () => {
|
|
this.analytics.eventTrack.next({ action: 'Logged Out' });
|
|
if (expired) {
|
|
this.toasterService.popAsync('warning', this.i18nService.t('loggedOut'),
|
|
this.i18nService.t('loginExpired'));
|
|
}
|
|
this.router.navigate(['login']);
|
|
});
|
|
}
|
|
|
|
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);
|
|
|
|
// 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();
|
|
}
|
|
}
|
|
|
|
private openModal<T>(type: Type<T>, ref: ViewContainerRef) {
|
|
if (this.modal != null) {
|
|
this.modal.close();
|
|
}
|
|
|
|
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
|
|
this.modal = ref.createComponent(factory).instance;
|
|
this.modal.show<T>(type, ref);
|
|
|
|
this.modal.onClosed.subscribe(() => {
|
|
this.modal = null;
|
|
});
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|