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