bitwarden-estensione-browser/src/background/runtime.background.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

249 lines
8.3 KiB
TypeScript
Raw Normal View History

import { EnvironmentService } from "jslib-common/abstractions/environment.service";
import { I18nService } from "jslib-common/abstractions/i18n.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 { StorageService } from "jslib-common/abstractions/storage.service";
import { SystemService } from "jslib-common/abstractions/system.service";
import { ConstantsService } from "jslib-common/services/constants.service";
2021-02-10 16:40:15 +01:00
import { AutofillService } from "../services/abstractions/autofill.service";
import BrowserPlatformUtilsService from "../services/browserPlatformUtils.service";
2017-12-07 21:36:24 +01:00
2018-01-12 17:09:30 +01:00
import { BrowserApi } from "../browser/browserApi";
2017-12-07 21:36:24 +01:00
import MainBackground from "./main.background";
import { Utils } from "jslib-common/misc/utils";
import LockedVaultPendingNotificationsItem from "./models/lockedVaultPendingNotificationsItem";
export default class RuntimeBackground {
2018-04-06 17:48:45 +02:00
private autofillTimeout: any;
2017-12-07 21:36:24 +01:00
private pageDetailsToAutoFill: any[] = [];
private onInstalledReason: string = null;
private lockedVaultPendingNotifications: LockedVaultPendingNotificationsItem[] = [];
2021-12-21 15:43:35 +01:00
2017-12-07 21:36:24 +01:00
constructor(
private main: MainBackground,
private autofillService: AutofillService,
private platformUtilsService: BrowserPlatformUtilsService,
2018-08-20 23:40:39 +02:00
private storageService: StorageService,
private i18nService: I18nService,
private notificationsService: NotificationsService,
private systemService: SystemService,
private environmentService: EnvironmentService,
private messagingService: MessagingService,
private logService: LogService
) {
// onInstalled listener must be wired up before anything else, so we do it in the ctor
chrome.runtime.onInstalled.addListener((details: any) => {
this.onInstalledReason = details.reason;
});
2021-12-21 15:43:35 +01:00
}
async init() {
if (!chrome.runtime) {
2021-12-21 15:43:35 +01:00
return;
}
await this.checkOnInstalled();
2021-10-18 16:34:14 +02:00
BrowserApi.messageListener(
"runtime.background",
async (msg: any, sender: chrome.runtime.MessageSender, sendResponse: any) => {
await this.processMessage(msg, sender, sendResponse);
2021-12-21 15:43:35 +01:00
}
);
}
2018-01-14 00:16:19 +01:00
async processMessage(msg: any, sender: any, sendResponse: any) {
2018-01-12 21:20:19 +01:00
switch (msg.command) {
case "loggedIn":
case "unlocked":
let item: LockedVaultPendingNotificationsItem;
2021-12-21 15:43:35 +01:00
if (this.lockedVaultPendingNotifications.length > 0) {
await BrowserApi.closeLoginTab();
2021-12-21 15:43:35 +01:00
item = this.lockedVaultPendingNotifications.pop();
if (item.commandToRetry.sender?.tab?.id) {
2017-12-07 21:36:24 +01:00
await BrowserApi.focusSpecifiedTab(item.commandToRetry.sender.tab.id);
2021-12-21 15:43:35 +01:00
}
2017-12-07 21:36:24 +01:00
}
2018-01-16 06:03:17 +01:00
await this.main.setIcon();
2021-10-18 16:34:14 +02:00
await this.main.refreshBadgeAndMenu(false);
this.notificationsService.updateConnection(msg.command === "unlocked");
this.systemService.cancelProcessReload();
2021-12-21 15:43:35 +01:00
2021-10-18 16:34:14 +02:00
if (item) {
await BrowserApi.tabSendMessageData(
item.commandToRetry.sender.tab,
"unlockCompleted",
2021-12-21 15:43:35 +01:00
item
);
}
break;
2021-10-18 16:34:14 +02:00
case "addToLockedVaultPendingNotifications":
this.lockedVaultPendingNotifications.push(msg.data);
2021-12-21 15:43:35 +01:00
break;
2021-10-18 16:34:14 +02:00
case "logout":
2018-01-12 21:20:19 +01:00
await this.main.logout(msg.expired);
2021-12-21 15:43:35 +01:00
break;
2021-10-18 16:34:14 +02:00
case "syncCompleted":
if (msg.successfully) {
setTimeout(async () => await this.main.refreshBadgeAndMenu(), 2000);
2021-12-21 15:43:35 +01:00
}
break;
2018-01-18 22:17:58 +01:00
case "openPopup":
await this.main.openPopup();
2021-12-21 15:43:35 +01:00
break;
case "promptForLogin":
2021-10-18 16:34:14 +02:00
await BrowserApi.createNewTab("popup/index.html?uilocation=popout", true, true);
2021-12-21 15:43:35 +01:00
break;
2021-10-18 16:34:14 +02:00
case "showDialogResolve":
2018-01-12 21:20:19 +01:00
this.platformUtilsService.resolveDialogPromise(msg.dialogId, msg.confirmed);
2021-12-21 15:43:35 +01:00
break;
2018-01-12 21:20:19 +01:00
case "bgCollectPageDetails":
await this.main.collectPageDetailsForContentScript(sender.tab, msg.sender, sender.frameId);
2021-12-21 15:43:35 +01:00
break;
2018-01-12 21:20:19 +01:00
case "bgUpdateContextMenu":
case "editedCipher":
case "addedCipher":
case "deletedCipher":
2018-01-12 21:20:19 +01:00
await this.main.refreshBadgeAndMenu();
2021-12-21 15:43:35 +01:00
break;
case "bgReseedStorage":
2019-02-13 17:34:42 +01:00
await this.main.reseedStorage();
2021-12-21 15:43:35 +01:00
break;
2018-01-12 21:20:19 +01:00
case "collectPageDetailsResponse":
switch (msg.sender) {
case "autofiller":
case "autofill_cmd":
const totpCode = await this.autofillService.doAutoFillActiveTab(
2021-12-21 15:43:35 +01:00
[
{
2018-01-12 21:20:19 +01:00
frameId: sender.frameId,
tab: msg.tab,
details: msg.details,
2021-12-21 15:43:35 +01:00
},
],
2018-01-12 21:20:19 +01:00
msg.sender === "autofill_cmd"
2021-12-21 15:43:35 +01:00
);
2018-08-31 03:47:49 +02:00
if (totpCode != null) {
2018-01-12 21:20:19 +01:00
this.platformUtilsService.copyToClipboard(totpCode, { window: window });
2021-12-21 15:43:35 +01:00
}
break;
2018-01-12 21:20:19 +01:00
case "contextMenu":
clearTimeout(this.autofillTimeout);
this.pageDetailsToAutoFill.push({
frameId: sender.frameId,
tab: msg.tab,
details: msg.details,
});
2018-01-12 21:20:19 +01:00
this.autofillTimeout = setTimeout(async () => await this.autofillPage(), 300);
2021-12-21 15:43:35 +01:00
break;
default:
break;
}
2021-12-21 15:43:35 +01:00
break;
2020-08-14 22:20:16 +02:00
case "authResult":
const vaultUrl = this.environmentService.getWebVaultUrl();
2017-12-07 21:36:24 +01:00
2018-01-12 21:20:19 +01:00
if (msg.referrer == null || Utils.getHostname(vaultUrl) !== msg.referrer) {
return;
2018-01-12 21:20:19 +01:00
}
2017-12-07 21:36:24 +01:00
try {
BrowserApi.createNewTab(
"popup/index.html?uilocation=popout#/sso?code=" +
encodeURIComponent(msg.code) +
2021-12-21 15:43:35 +01:00
"&state=" +
encodeURIComponent(msg.state)
2021-12-21 15:43:35 +01:00
);
} catch {
this.logService.error("Unable to open sso popout tab");
2021-12-21 15:43:35 +01:00
}
break;
case "webAuthnResult":
const vaultUrl2 = this.environmentService.getWebVaultUrl();
2017-12-07 21:36:24 +01:00
2018-08-31 03:47:49 +02:00
if (msg.referrer == null || Utils.getHostname(vaultUrl2) !== msg.referrer) {
return;
}
2017-12-07 21:36:24 +01:00
const params =
`webAuthnResponse=${encodeURIComponent(msg.data)};` +
`remember=${encodeURIComponent(msg.remember)}`;
BrowserApi.createNewTab(
2017-12-07 21:36:24 +01:00
`popup/index.html?uilocation=popout#/2fa;${params}`,
undefined,
2021-12-21 15:43:35 +01:00
false
);
break;
case "reloadPopup":
2017-12-07 21:36:24 +01:00
this.messagingService.send("reloadPopup");
2021-12-21 15:43:35 +01:00
break;
2021-05-12 05:35:18 +02:00
case "emailVerificationRequired":
this.messagingService.send("showDialog", {
2017-12-07 21:36:24 +01:00
dialogId: "emailVerificationRequired",
title: this.i18nService.t("emailVerificationRequired"),
2021-05-12 05:35:18 +02:00
text: this.i18nService.t("emailVerificationRequiredDesc"),
confirmText: this.i18nService.t("ok"),
type: "info",
2021-12-21 15:43:35 +01:00
});
break;
2017-12-07 21:36:24 +01:00
case "getClickedElementResponse":
this.platformUtilsService.copyToClipboard(msg.identifier, { window: window });
default:
2021-12-21 15:43:35 +01:00
break;
2017-12-07 21:36:24 +01:00
}
2021-12-21 15:43:35 +01:00
}
2017-12-07 21:36:24 +01:00
2018-01-16 06:03:17 +01:00
private async autofillPage() {
2018-01-18 04:42:31 +01:00
const totpCode = await this.autofillService.doAutoFill({
cipher: this.main.loginToAutoFill,
pageDetails: this.pageDetailsToAutoFill,
2021-02-10 16:40:15 +01:00
fillNewPassword: true,
2018-01-18 04:42:31 +01:00
});
if (totpCode != null) {
this.platformUtilsService.copyToClipboard(totpCode, { window: window });
2018-01-19 17:42:35 +01:00
}
2018-01-18 04:42:31 +01:00
// reset
this.main.loginToAutoFill = null;
this.pageDetailsToAutoFill = [];
2021-12-21 15:43:35 +01:00
}
2018-01-18 04:42:31 +01:00
private async checkOnInstalled() {
setTimeout(async () => {
if (this.onInstalledReason != null) {
if (this.onInstalledReason === "install") {
BrowserApi.createNewTab("https://bitwarden.com/browser-start/");
await this.setDefaultSettings();
}
this.onInstalledReason = null;
2021-12-21 15:43:35 +01:00
}
}, 100);
}
private async setDefaultSettings() {
// Default timeout option to "on restart".
const currentVaultTimeout = await this.storageService.get<number>(
ConstantsService.vaultTimeoutKey
2021-12-21 15:43:35 +01:00
);
if (currentVaultTimeout == null) {
await this.storageService.save(ConstantsService.vaultTimeoutKey, -1);
2021-12-21 15:43:35 +01:00
}
// Default action to "lock".
const currentVaultTimeoutAction = await this.storageService.get<string>(
ConstantsService.vaultTimeoutActionKey
2021-12-21 15:43:35 +01:00
);
if (currentVaultTimeoutAction == null) {
await this.storageService.save(ConstantsService.vaultTimeoutActionKey, "lock");
2018-01-18 04:42:31 +01:00
}
2021-12-21 15:43:35 +01:00
}
}