2018-02-08 18:24:17 +01:00
|
|
|
import {
|
2021-12-20 15:47:17 +01:00
|
|
|
Component,
|
|
|
|
NgZone,
|
|
|
|
OnInit,
|
|
|
|
SecurityContext,
|
|
|
|
Type,
|
|
|
|
ViewChild,
|
|
|
|
ViewContainerRef,
|
|
|
|
} from "@angular/core";
|
|
|
|
import { DomSanitizer } from "@angular/platform-browser";
|
|
|
|
import { Router } from "@angular/router";
|
|
|
|
import { IndividualConfig, ToastrService } from "ngx-toastr";
|
|
|
|
|
|
|
|
import { PremiumComponent } from "./accounts/premium.component";
|
|
|
|
import { SettingsComponent } from "./accounts/settings.component";
|
|
|
|
import { PasswordGeneratorHistoryComponent } from "./vault/password-generator-history.component";
|
|
|
|
|
|
|
|
import { AuthService } from "jslib-common/abstractions/auth.service";
|
|
|
|
import { BroadcasterService } from "jslib-common/abstractions/broadcaster.service";
|
|
|
|
import { CipherService } from "jslib-common/abstractions/cipher.service";
|
|
|
|
import { CollectionService } from "jslib-common/abstractions/collection.service";
|
|
|
|
import { CryptoService } from "jslib-common/abstractions/crypto.service";
|
|
|
|
import { EventService } from "jslib-common/abstractions/event.service";
|
|
|
|
import { FolderService } from "jslib-common/abstractions/folder.service";
|
|
|
|
import { I18nService } from "jslib-common/abstractions/i18n.service";
|
|
|
|
import { KeyConnectorService } from "jslib-common/abstractions/keyConnector.service";
|
|
|
|
import { LogService } from "jslib-common/abstractions/log.service";
|
|
|
|
import { MessagingService } from "jslib-common/abstractions/messaging.service";
|
|
|
|
import { NotificationsService } from "jslib-common/abstractions/notifications.service";
|
|
|
|
import { PasswordGenerationService } from "jslib-common/abstractions/passwordGeneration.service";
|
|
|
|
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
|
|
|
|
import { PolicyService } from "jslib-common/abstractions/policy.service";
|
|
|
|
import { SearchService } from "jslib-common/abstractions/search.service";
|
|
|
|
import { SettingsService } from "jslib-common/abstractions/settings.service";
|
|
|
|
import { StateService } from "jslib-common/abstractions/state.service";
|
|
|
|
import { SyncService } from "jslib-common/abstractions/sync.service";
|
|
|
|
import { SystemService } from "jslib-common/abstractions/system.service";
|
|
|
|
import { TokenService } from "jslib-common/abstractions/token.service";
|
|
|
|
import { VaultTimeoutService } from "jslib-common/abstractions/vaultTimeout.service";
|
|
|
|
|
|
|
|
import { CipherType } from "jslib-common/enums/cipherType";
|
|
|
|
|
|
|
|
import { ExportComponent } from "./vault/export.component";
|
|
|
|
import { FolderAddEditComponent } from "./vault/folder-add-edit.component";
|
|
|
|
import { PasswordGeneratorComponent } from "./vault/password-generator.component";
|
|
|
|
|
|
|
|
import { ModalRef } from "jslib-angular/components/modal/modal.ref";
|
|
|
|
|
|
|
|
import { ModalService } from "jslib-angular/services/modal.service";
|
|
|
|
import { MenuUpdateRequest } from "src/main/menu.updater";
|
|
|
|
|
|
|
|
const BroadcasterSubscriptionId = "AppComponent";
|
2018-08-24 21:30:26 +02:00
|
|
|
const IdleTimeout = 60000 * 10; // 10 minutes
|
2021-02-22 19:17:02 +01:00
|
|
|
const SyncInterval = 6 * 60 * 60 * 1000; // 6 hours
|
2018-02-10 21:22:07 +01:00
|
|
|
|
2022-02-01 17:31:30 +01:00
|
|
|
const systemTimeoutOptions = {
|
|
|
|
onLock: -2,
|
|
|
|
onSuspend: -3,
|
|
|
|
onIdle: -4,
|
|
|
|
};
|
|
|
|
|
2018-01-16 20:48:34 +01:00
|
|
|
@Component({
|
2021-12-20 15:47:17 +01:00
|
|
|
selector: "app-root",
|
|
|
|
styles: [],
|
2022-01-12 15:23:00 +01:00
|
|
|
template: `
|
|
|
|
<ng-template #settings></ng-template>
|
2021-12-20 15:47:17 +01:00
|
|
|
<ng-template #premium></ng-template>
|
|
|
|
<ng-template #passwordHistory></ng-template>
|
|
|
|
<ng-template #appFolderAddEdit></ng-template>
|
|
|
|
<ng-template #exportVault></ng-template>
|
|
|
|
<ng-template #appPasswordGenerator></ng-template>
|
|
|
|
<app-header></app-header>
|
2022-01-12 15:23:00 +01:00
|
|
|
<div id="container">
|
|
|
|
<div class="loading" *ngIf="loading">
|
2022-01-27 18:21:53 +01:00
|
|
|
<i class="bwi bwi-spinner bwi-spin bwi-3x" aria-hidden="true"></i>
|
2022-01-12 15:23:00 +01:00
|
|
|
</div>
|
|
|
|
<router-outlet *ngIf="!loading"></router-outlet>
|
|
|
|
</div>
|
|
|
|
`,
|
2018-01-16 20:48:34 +01:00
|
|
|
})
|
2018-02-08 18:24:17 +01:00
|
|
|
export class AppComponent implements OnInit {
|
2021-12-20 15:47:17 +01:00
|
|
|
@ViewChild("settings", { read: ViewContainerRef, static: true }) settingsRef: ViewContainerRef;
|
|
|
|
@ViewChild("premium", { read: ViewContainerRef, static: true }) premiumRef: ViewContainerRef;
|
|
|
|
@ViewChild("passwordHistory", { read: ViewContainerRef, static: true })
|
|
|
|
passwordHistoryRef: ViewContainerRef;
|
|
|
|
@ViewChild("exportVault", { read: ViewContainerRef, static: true })
|
|
|
|
exportVaultModalRef: ViewContainerRef;
|
|
|
|
@ViewChild("appFolderAddEdit", { read: ViewContainerRef, static: true })
|
|
|
|
folderAddEditModalRef: ViewContainerRef;
|
|
|
|
@ViewChild("appPasswordGenerator", { read: ViewContainerRef, static: true })
|
|
|
|
passwordGeneratorModalRef: ViewContainerRef;
|
|
|
|
|
2022-01-12 15:23:00 +01:00
|
|
|
loading = false;
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
private lastActivity: number = null;
|
|
|
|
private modal: ModalRef = null;
|
|
|
|
private idleTimer: number = null;
|
|
|
|
private isIdle = false;
|
2022-02-02 16:28:36 +01:00
|
|
|
private activeUserId: string = null;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
private broadcasterService: BroadcasterService,
|
|
|
|
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 toastrService: ToastrService,
|
|
|
|
private i18nService: I18nService,
|
|
|
|
private sanitizer: DomSanitizer,
|
|
|
|
private ngZone: NgZone,
|
|
|
|
private vaultTimeoutService: VaultTimeoutService,
|
|
|
|
private cryptoService: CryptoService,
|
|
|
|
private logService: LogService,
|
|
|
|
private messagingService: MessagingService,
|
|
|
|
private collectionService: CollectionService,
|
|
|
|
private searchService: SearchService,
|
|
|
|
private notificationsService: NotificationsService,
|
|
|
|
private platformUtilsService: PlatformUtilsService,
|
|
|
|
private systemService: SystemService,
|
|
|
|
private stateService: StateService,
|
|
|
|
private eventService: EventService,
|
|
|
|
private policyService: PolicyService,
|
|
|
|
private modalService: ModalService,
|
|
|
|
private keyConnectorService: KeyConnectorService
|
|
|
|
) {}
|
|
|
|
|
|
|
|
ngOnInit() {
|
2022-01-19 17:00:28 +01:00
|
|
|
this.stateService.activeAccount.subscribe((userId) => {
|
2022-02-02 16:28:36 +01:00
|
|
|
this.activeUserId = userId;
|
2022-01-19 17:00:28 +01:00
|
|
|
});
|
2021-12-20 15:47:17 +01:00
|
|
|
this.ngZone.runOutsideAngular(() => {
|
|
|
|
setTimeout(async () => {
|
|
|
|
await this.updateAppMenu();
|
|
|
|
}, 1000);
|
|
|
|
|
2022-02-02 16:28:36 +01:00
|
|
|
window.ontouchstart = () => this.recordActivity();
|
|
|
|
window.onmousedown = () => this.recordActivity();
|
|
|
|
window.onscroll = () => this.recordActivity();
|
|
|
|
window.onkeypress = () => this.recordActivity();
|
2021-12-20 15:47:17 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
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":
|
|
|
|
if (this.modal != null) {
|
|
|
|
this.modal.close();
|
|
|
|
}
|
|
|
|
this.notificationsService.updateConnection();
|
|
|
|
this.updateAppMenu();
|
|
|
|
await this.systemService.clearPendingClipboard();
|
2022-01-25 15:36:30 +01:00
|
|
|
await this.reloadProcess();
|
2021-12-20 15:47:17 +01:00
|
|
|
break;
|
|
|
|
case "authBlocked":
|
|
|
|
this.router.navigate(["login"]);
|
|
|
|
break;
|
|
|
|
case "logout":
|
2022-01-19 17:00:28 +01:00
|
|
|
this.loading = true;
|
2021-12-20 15:47:17 +01:00
|
|
|
await this.logOut(!!message.expired, message.userId);
|
2022-01-19 17:00:28 +01:00
|
|
|
this.loading = false;
|
2021-12-20 15:47:17 +01:00
|
|
|
break;
|
|
|
|
case "lockVault":
|
|
|
|
await this.vaultTimeoutService.lock(true, message.userId);
|
|
|
|
break;
|
|
|
|
case "lockAllVaults":
|
|
|
|
for (const userId in this.stateService.accounts.getValue()) {
|
|
|
|
if (userId != null) {
|
|
|
|
await this.vaultTimeoutService.lock(true, userId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "locked":
|
|
|
|
if (this.modal != null) {
|
|
|
|
this.modal.close();
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
message.userId == null ||
|
|
|
|
message.userId === (await this.stateService.getUserId())
|
|
|
|
) {
|
2022-01-12 15:23:00 +01:00
|
|
|
await this.router.navigate(["lock"]);
|
2021-12-20 15:47:17 +01:00
|
|
|
}
|
|
|
|
this.notificationsService.updateConnection();
|
2022-01-12 15:23:00 +01:00
|
|
|
await this.updateAppMenu();
|
|
|
|
await this.systemService.clearPendingClipboard();
|
2022-01-25 15:36:30 +01:00
|
|
|
await this.reloadProcess();
|
2021-12-20 15:47:17 +01:00
|
|
|
break;
|
|
|
|
case "reloadProcess":
|
|
|
|
window.location.reload(true);
|
|
|
|
break;
|
|
|
|
case "syncStarted":
|
|
|
|
break;
|
|
|
|
case "syncCompleted":
|
|
|
|
await this.updateAppMenu();
|
|
|
|
break;
|
|
|
|
case "openSettings":
|
|
|
|
await this.openModal<SettingsComponent>(SettingsComponent, this.settingsRef);
|
|
|
|
break;
|
|
|
|
case "openPremium":
|
|
|
|
await this.openModal<PremiumComponent>(PremiumComponent, this.premiumRef);
|
|
|
|
break;
|
|
|
|
case "showFingerprintPhrase":
|
|
|
|
const fingerprint = await this.cryptoService.getFingerprint(
|
|
|
|
await this.stateService.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":
|
|
|
|
await this.openModal<PasswordGeneratorHistoryComponent>(
|
|
|
|
PasswordGeneratorHistoryComponent,
|
|
|
|
this.passwordHistoryRef
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case "showToast":
|
|
|
|
this.showToast(message);
|
|
|
|
break;
|
|
|
|
case "copiedToClipboard":
|
|
|
|
if (!message.clearing) {
|
|
|
|
this.systemService.clearClipboard(message.clipboardValue, message.clearMs);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "ssoCallback":
|
|
|
|
this.router.navigate(["sso"], {
|
|
|
|
queryParams: { code: message.code, state: message.state },
|
2018-02-08 21:58:47 +01:00
|
|
|
});
|
2021-12-20 15:47:17 +01:00
|
|
|
break;
|
|
|
|
case "premiumRequired":
|
|
|
|
const premiumConfirmed = await this.platformUtilsService.showDialog(
|
|
|
|
this.i18nService.t("premiumRequiredDesc"),
|
|
|
|
this.i18nService.t("premiumRequired"),
|
|
|
|
this.i18nService.t("learnMore"),
|
|
|
|
this.i18nService.t("cancel")
|
|
|
|
);
|
|
|
|
if (premiumConfirmed) {
|
|
|
|
await this.openModal<PremiumComponent>(PremiumComponent, this.premiumRef);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "emailVerificationRequired":
|
|
|
|
const emailVerificationConfirmed = await this.platformUtilsService.showDialog(
|
|
|
|
this.i18nService.t("emailVerificationRequiredDesc"),
|
|
|
|
this.i18nService.t("emailVerificationRequired"),
|
|
|
|
this.i18nService.t("learnMore"),
|
|
|
|
this.i18nService.t("cancel")
|
|
|
|
);
|
|
|
|
if (emailVerificationConfirmed) {
|
|
|
|
this.platformUtilsService.launchUri(
|
|
|
|
"https://bitwarden.com/help/article/create-bitwarden-account/"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "syncVault":
|
|
|
|
try {
|
|
|
|
await this.syncService.fullSync(true, true);
|
|
|
|
this.platformUtilsService.showToast(
|
|
|
|
"success",
|
|
|
|
null,
|
|
|
|
this.i18nService.t("syncingComplete")
|
|
|
|
);
|
|
|
|
} catch {
|
|
|
|
this.platformUtilsService.showToast(
|
|
|
|
"error",
|
|
|
|
null,
|
|
|
|
this.i18nService.t("syncingFailed")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "checkSyncVault":
|
|
|
|
try {
|
|
|
|
const lastSync = await this.syncService.getLastSync();
|
|
|
|
let lastSyncAgo = SyncInterval + 1;
|
|
|
|
if (lastSync != null) {
|
|
|
|
lastSyncAgo = new Date().getTime() - lastSync.getTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lastSyncAgo >= SyncInterval) {
|
|
|
|
await this.syncService.fullSync(false);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
this.logService.error(e);
|
|
|
|
}
|
|
|
|
this.messagingService.send("scheduleNextSync");
|
|
|
|
break;
|
|
|
|
case "exportVault":
|
|
|
|
await this.openExportVault();
|
|
|
|
break;
|
|
|
|
case "newLogin":
|
|
|
|
this.routeToVault("add", CipherType.Login);
|
|
|
|
break;
|
|
|
|
case "newCard":
|
|
|
|
this.routeToVault("add", CipherType.Card);
|
|
|
|
break;
|
|
|
|
case "newIdentity":
|
|
|
|
this.routeToVault("add", CipherType.Identity);
|
|
|
|
break;
|
|
|
|
case "newSecureNote":
|
|
|
|
this.routeToVault("add", CipherType.SecureNote);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case "newFolder":
|
|
|
|
await this.addFolder();
|
|
|
|
break;
|
|
|
|
case "openPasswordGenerator":
|
|
|
|
// openPasswordGenerator has extended functionality if called in the vault
|
|
|
|
if (!this.router.url.includes("vault")) {
|
|
|
|
await this.openPasswordGenerator();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "convertAccountToKeyConnector":
|
|
|
|
this.router.navigate(["/remove-password"]);
|
|
|
|
break;
|
2022-01-12 15:23:00 +01:00
|
|
|
case "switchAccount":
|
|
|
|
if (message.userId != null) {
|
|
|
|
await this.stateService.setActiveUser(message.userId);
|
|
|
|
}
|
|
|
|
const locked = await this.vaultTimeoutService.isLocked(message.userId);
|
|
|
|
if (locked) {
|
|
|
|
this.messagingService.send("locked", { userId: message.userId });
|
|
|
|
} else {
|
|
|
|
this.messagingService.send("unlocked");
|
|
|
|
this.loading = true;
|
|
|
|
await this.syncService.fullSync(true);
|
|
|
|
this.loading = false;
|
|
|
|
this.router.navigate(["vault"]);
|
|
|
|
}
|
|
|
|
break;
|
2022-02-01 17:31:30 +01:00
|
|
|
case "systemSuspended":
|
|
|
|
await this.checkForSystemTimeout(systemTimeoutOptions.onSuspend);
|
|
|
|
case "systemLocked":
|
|
|
|
await this.checkForSystemTimeout(systemTimeoutOptions.onLock);
|
|
|
|
case "systemIdle":
|
|
|
|
await this.checkForSystemTimeout(systemTimeoutOptions.onIdle);
|
2021-02-22 19:17:02 +01:00
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2021-02-22 19:17:02 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
ngOnDestroy() {
|
|
|
|
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
|
|
|
|
}
|
2021-02-22 19:17:02 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
async openExportVault() {
|
|
|
|
if (this.modal != null) {
|
|
|
|
this.modal.close();
|
2021-02-22 19:17:02 +01:00
|
|
|
}
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
const [modal, childComponent] = await this.modalService.openViewRef(
|
|
|
|
ExportComponent,
|
|
|
|
this.exportVaultModalRef
|
|
|
|
);
|
|
|
|
this.modal = modal;
|
2021-02-22 19:17:02 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
childComponent.onSaved.subscribe(() => {
|
|
|
|
this.modal.close();
|
|
|
|
});
|
2021-02-22 19:17:02 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
this.modal.onClosed.subscribe(() => {
|
|
|
|
this.modal = null;
|
|
|
|
});
|
|
|
|
}
|
2021-02-22 19:17:02 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
async addFolder() {
|
|
|
|
if (this.modal != null) {
|
|
|
|
this.modal.close();
|
2021-02-22 19:17:02 +01:00
|
|
|
}
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
const [modal, childComponent] = await this.modalService.openViewRef(
|
|
|
|
FolderAddEditComponent,
|
|
|
|
this.folderAddEditModalRef,
|
|
|
|
(comp) => (comp.folderId = null)
|
|
|
|
);
|
|
|
|
this.modal = modal;
|
|
|
|
|
|
|
|
childComponent.onSavedFolder.subscribe(async () => {
|
|
|
|
this.modal.close();
|
|
|
|
this.syncService.fullSync(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.modal.onClosed.subscribe(() => {
|
|
|
|
this.modal = null;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async openPasswordGenerator() {
|
|
|
|
if (this.modal != null) {
|
|
|
|
this.modal.close();
|
2021-02-22 19:17:02 +01:00
|
|
|
}
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
[this.modal] = await this.modalService.openViewRef(
|
|
|
|
PasswordGeneratorComponent,
|
|
|
|
this.folderAddEditModalRef,
|
|
|
|
(comp) => (comp.showSelect = false)
|
|
|
|
);
|
|
|
|
|
|
|
|
this.modal.onClosed.subscribe(() => {
|
|
|
|
this.modal = null;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private async updateAppMenu() {
|
|
|
|
let updateRequest: MenuUpdateRequest;
|
|
|
|
const stateAccounts = this.stateService.accounts?.getValue();
|
|
|
|
if (stateAccounts == null || Object.keys(stateAccounts).length < 1) {
|
|
|
|
updateRequest = {
|
|
|
|
accounts: null,
|
|
|
|
activeUserId: null,
|
|
|
|
hideChangeMasterPassword: true,
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
const accounts: { [userId: string]: any } = {};
|
|
|
|
for (const i in stateAccounts) {
|
|
|
|
if (i != null && stateAccounts[i]?.profile?.userId != null) {
|
|
|
|
const userId = stateAccounts[i].profile.userId;
|
|
|
|
accounts[userId] = {
|
|
|
|
isAuthenticated: await this.stateService.getIsAuthenticated({
|
|
|
|
userId: userId,
|
|
|
|
}),
|
|
|
|
isLocked: await this.vaultTimeoutService.isLocked(userId),
|
|
|
|
email: stateAccounts[i].profile.email,
|
|
|
|
userId: stateAccounts[i].profile.userId,
|
|
|
|
};
|
2021-11-09 19:00:01 +01:00
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
}
|
|
|
|
updateRequest = {
|
|
|
|
accounts: accounts,
|
|
|
|
activeUserId: await this.stateService.getUserId(),
|
|
|
|
hideChangeMasterPassword: await this.keyConnectorService.getUsesKeyConnector(),
|
|
|
|
};
|
2018-02-14 06:26:32 +01:00
|
|
|
}
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
this.messagingService.send("updateAppMenu", { updateRequest: updateRequest });
|
|
|
|
}
|
|
|
|
|
|
|
|
private async logOut(expired: boolean, userId?: string) {
|
2022-01-13 15:43:00 +01:00
|
|
|
if (!userId) {
|
|
|
|
userId = await this.stateService.getUserId();
|
|
|
|
}
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
await Promise.all([
|
|
|
|
this.eventService.uploadEvents(userId),
|
|
|
|
this.syncService.setLastSync(new Date(0), userId),
|
|
|
|
this.tokenService.clearToken(userId),
|
|
|
|
this.cryptoService.clearKeys(userId),
|
|
|
|
this.settingsService.clear(userId),
|
|
|
|
this.cipherService.clear(userId),
|
|
|
|
this.folderService.clear(userId),
|
|
|
|
this.collectionService.clear(userId),
|
|
|
|
this.passwordGenerationService.clear(userId),
|
|
|
|
this.vaultTimeoutService.clear(userId),
|
|
|
|
this.policyService.clear(userId),
|
|
|
|
this.keyConnectorService.clear(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
await this.stateService.setBiometricLocked(true, { userId: userId });
|
|
|
|
|
|
|
|
if (userId == null || userId === (await this.stateService.getUserId())) {
|
|
|
|
this.searchService.clearIndex();
|
|
|
|
this.authService.logOut(async () => {
|
|
|
|
if (expired) {
|
|
|
|
this.platformUtilsService.showToast(
|
|
|
|
"warning",
|
|
|
|
this.i18nService.t("loggedOut"),
|
|
|
|
this.i18nService.t("loginExpired")
|
|
|
|
);
|
2021-12-15 23:32:00 +01:00
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
});
|
2018-01-26 16:50:06 +01:00
|
|
|
}
|
2018-02-10 05:25:18 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
await this.stateService.clean({ userId: userId });
|
|
|
|
|
|
|
|
if (this.stateService.activeAccount.getValue() == null) {
|
|
|
|
this.router.navigate(["login"]);
|
|
|
|
} else {
|
2022-01-12 15:23:00 +01:00
|
|
|
this.messagingService.send("switchAccount");
|
2021-12-20 15:47:17 +01:00
|
|
|
}
|
2018-02-10 05:25:18 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
await this.updateAppMenu();
|
|
|
|
}
|
2018-08-24 21:30:26 +02:00
|
|
|
|
2022-02-02 16:28:36 +01:00
|
|
|
private async recordActivity() {
|
|
|
|
if (this.activeUserId == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
const now = new Date().getTime();
|
|
|
|
if (this.lastActivity != null && now - this.lastActivity < 250) {
|
|
|
|
return;
|
2018-08-24 21:30:26 +02:00
|
|
|
}
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
this.lastActivity = now;
|
2022-02-02 16:28:36 +01:00
|
|
|
await this.stateService.setLastActive(now, { userId: this.activeUserId });
|
2018-02-10 05:41:29 +01:00
|
|
|
|
2021-12-20 15:47:17 +01: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-16 21:03:29 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
private async openModal<T>(type: Type<T>, ref: ViewContainerRef) {
|
|
|
|
if (this.modal != null) {
|
|
|
|
this.modal.close();
|
2018-02-16 21:03:29 +01:00
|
|
|
}
|
2018-10-03 15:42:11 +02:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
[this.modal] = await this.modalService.openViewRef(type, ref);
|
2021-12-07 20:42:31 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
this.modal.onClosed.subscribe(() => {
|
|
|
|
this.modal = null;
|
|
|
|
});
|
|
|
|
}
|
2021-12-07 20:42:31 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
private showToast(msg: any) {
|
|
|
|
let message = "";
|
|
|
|
|
|
|
|
const options: Partial<IndividualConfig> = {};
|
2021-12-07 20:42:31 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
if (typeof msg.text === "string") {
|
|
|
|
message = msg.text;
|
|
|
|
} else if (msg.text.length === 1) {
|
|
|
|
message = msg.text[0];
|
|
|
|
} else {
|
|
|
|
msg.text.forEach(
|
|
|
|
(t: string) =>
|
|
|
|
(message += "<p>" + this.sanitizer.sanitize(SecurityContext.HTML, t) + "</p>")
|
|
|
|
);
|
|
|
|
options.enableHtml = true;
|
|
|
|
}
|
|
|
|
if (msg.options != null) {
|
|
|
|
if (msg.options.trustedHtml === true) {
|
|
|
|
options.enableHtml = true;
|
|
|
|
}
|
|
|
|
if (msg.options.timeout != null && msg.options.timeout > 0) {
|
|
|
|
options.timeOut = msg.options.timeout;
|
|
|
|
}
|
2018-10-03 15:42:11 +02:00
|
|
|
}
|
2021-02-22 19:17:02 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
this.toastrService.show(message, msg.title, options, "toast-" + msg.type);
|
|
|
|
}
|
|
|
|
|
|
|
|
private routeToVault(action: string, cipherType: CipherType) {
|
|
|
|
if (!this.router.url.includes("vault")) {
|
|
|
|
this.router.navigate(["/vault"], {
|
|
|
|
queryParams: {
|
|
|
|
action: action,
|
|
|
|
addType: cipherType,
|
|
|
|
},
|
|
|
|
replaceUrl: true,
|
|
|
|
});
|
2021-02-22 19:17:02 +01:00
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
}
|
2022-01-25 15:36:30 +01:00
|
|
|
|
|
|
|
private async reloadProcess(): Promise<void> {
|
|
|
|
const accounts = Object.keys(this.stateService.accounts.getValue());
|
|
|
|
if (accounts.length > 0) {
|
2022-01-25 15:49:57 +01:00
|
|
|
for (const userId of accounts) {
|
|
|
|
if (!(await this.vaultTimeoutService.isLocked(userId))) {
|
2022-01-25 15:36:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
await this.systemService.startProcessReload();
|
|
|
|
}
|
2022-02-01 17:31:30 +01:00
|
|
|
|
|
|
|
private async checkForSystemTimeout(timeout: number): Promise<void> {
|
|
|
|
for (const userId in this.stateService.accounts.getValue()) {
|
|
|
|
if (userId == null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const options = await this.getVaultTimeoutOptions(userId);
|
|
|
|
if (options[0] === timeout) {
|
|
|
|
options[1] === "logOut"
|
|
|
|
? this.logOut(false, userId)
|
|
|
|
: await this.vaultTimeoutService.lock(true, userId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private async getVaultTimeoutOptions(userId: string): Promise<[number, string]> {
|
|
|
|
const timeout = await this.stateService.getVaultTimeout({ userId: userId });
|
|
|
|
const action = await this.stateService.getVaultTimeoutAction({ userId: userId });
|
|
|
|
return [timeout, action];
|
|
|
|
}
|
2018-01-16 20:48:34 +01:00
|
|
|
}
|