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

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

961 lines
32 KiB
TypeScript
Raw Normal View History

import { CipherRepromptType } from "jslib-common/enums/cipherRepromptType";
2021-09-17 15:44:27 +02:00
import { CipherType } from "jslib-common/enums/cipherType";
2021-12-21 15:43:35 +01:00
import { CipherView } from "jslib-common/models/view/cipherView";
2021-12-21 15:43:35 +01:00
2021-09-17 15:44:27 +02:00
import { ApiService } from "jslib-common/services/api.service";
import { AppIdService } from "jslib-common/services/appId.service";
import { AuditService } from "jslib-common/services/audit.service";
import { AuthService } from "jslib-common/services/auth.service";
import { CipherService } from "jslib-common/services/cipher.service";
import { CollectionService } from "jslib-common/services/collection.service";
import { ConsoleLogService } from "jslib-common/services/consoleLog.service";
2021-09-17 15:44:27 +02:00
import { ConstantsService } from "jslib-common/services/constants.service";
import { ContainerService } from "jslib-common/services/container.service";
import { EnvironmentService } from "jslib-common/services/environment.service";
import { EventService } from "jslib-common/services/event.service";
import { ExportService } from "jslib-common/services/export.service";
import { FileUploadService } from "jslib-common/services/fileUpload.service";
2021-09-17 15:44:27 +02:00
import { FolderService } from "jslib-common/services/folder.service";
import { KeyConnectorService } from "jslib-common/services/keyConnector.service";
import { NotificationsService } from "jslib-common/services/notifications.service";
2021-09-17 15:44:27 +02:00
import { PasswordGenerationService } from "jslib-common/services/passwordGeneration.service";
import { PolicyService } from "jslib-common/services/policy.service";
import { SearchService } from "jslib-common/services/search.service";
import { SendService } from "jslib-common/services/send.service";
2021-09-17 15:44:27 +02:00
import { SettingsService } from "jslib-common/services/settings.service";
import { StateService } from "jslib-common/services/state.service";
import { SyncService } from "jslib-common/services/sync.service";
import { SystemService } from "jslib-common/services/system.service";
2021-09-17 15:44:27 +02:00
import { TokenService } from "jslib-common/services/token.service";
import { TotpService } from "jslib-common/services/totp.service";
import { UserService } from "jslib-common/services/user.service";
import { UserVerificationService } from "jslib-common/services/userVerification.service";
import { WebCryptoFunctionService } from "jslib-common/services/webCryptoFunction.service";
2021-12-21 15:43:35 +01:00
2021-09-17 15:44:27 +02:00
import { ApiService as ApiServiceAbstraction } from "jslib-common/abstractions/api.service";
import { AppIdService as AppIdServiceAbstraction } from "jslib-common/abstractions/appId.service";
import { AuditService as AuditServiceAbstraction } from "jslib-common/abstractions/audit.service";
import { AuthService as AuthServiceAbstraction } from "jslib-common/abstractions/auth.service";
import { CipherService as CipherServiceAbstraction } from "jslib-common/abstractions/cipher.service";
import { CollectionService as CollectionServiceAbstraction } from "jslib-common/abstractions/collection.service";
import { CryptoService as CryptoServiceAbstraction } from "jslib-common/abstractions/crypto.service";
import { CryptoFunctionService as CryptoFunctionServiceAbstraction } from "jslib-common/abstractions/cryptoFunction.service";
2021-09-17 15:44:27 +02:00
import { EnvironmentService as EnvironmentServiceAbstraction } from "jslib-common/abstractions/environment.service";
import { EventService as EventServiceAbstraction } from "jslib-common/abstractions/event.service";
import { ExportService as ExportServiceAbstraction } from "jslib-common/abstractions/export.service";
import { FileUploadService as FileUploadServiceAbstraction } from "jslib-common/abstractions/fileUpload.service";
2021-09-17 15:44:27 +02:00
import { FolderService as FolderServiceAbstraction } from "jslib-common/abstractions/folder.service";
import { I18nService as I18nServiceAbstraction } from "jslib-common/abstractions/i18n.service";
import { KeyConnectorService as KeyConnectorServiceAbstraction } from "jslib-common/abstractions/keyConnector.service";
2021-09-17 15:44:27 +02:00
import { LogService as LogServiceAbstraction } from "jslib-common/abstractions/log.service";
import { MessagingService as MessagingServiceAbstraction } from "jslib-common/abstractions/messaging.service";
import { NotificationsService as NotificationsServiceAbstraction } from "jslib-common/abstractions/notifications.service";
2021-09-17 15:44:27 +02:00
import { PasswordGenerationService as PasswordGenerationServiceAbstraction } from "jslib-common/abstractions/passwordGeneration.service";
import { PlatformUtilsService as PlatformUtilsServiceAbstraction } from "jslib-common/abstractions/platformUtils.service";
import { PolicyService as PolicyServiceAbstraction } from "jslib-common/abstractions/policy.service";
import { SearchService as SearchServiceAbstraction } from "jslib-common/abstractions/search.service";
import { SendService as SendServiceAbstraction } from "jslib-common/abstractions/send.service";
2021-09-17 15:44:27 +02:00
import { SettingsService as SettingsServiceAbstraction } from "jslib-common/abstractions/settings.service";
import { StateService as StateServiceAbstraction } from "jslib-common/abstractions/state.service";
import { StorageService as StorageServiceAbstraction } from "jslib-common/abstractions/storage.service";
import { SyncService as SyncServiceAbstraction } from "jslib-common/abstractions/sync.service";
import { SystemService as SystemServiceAbstraction } from "jslib-common/abstractions/system.service";
2021-09-17 15:44:27 +02:00
import { TokenService as TokenServiceAbstraction } from "jslib-common/abstractions/token.service";
import { TotpService as TotpServiceAbstraction } from "jslib-common/abstractions/totp.service";
import { UserService as UserServiceAbstraction } from "jslib-common/abstractions/user.service";
import { UserVerificationService as UserVerificationServiceAbstraction } from "jslib-common/abstractions/userVerification.service";
2021-09-17 15:44:27 +02:00
import { VaultTimeoutService as VaultTimeoutServiceAbstraction } from "jslib-common/abstractions/vaultTimeout.service";
2021-12-21 15:43:35 +01:00
import { AutofillService as AutofillServiceAbstraction } from "../services/abstractions/autofill.service";
2021-12-21 15:43:35 +01:00
2018-01-12 17:09:30 +01:00
import { BrowserApi } from "../browser/browserApi";
2019-08-12 18:31:32 +02:00
import { SafariApp } from "../browser/safariApp";
2021-12-21 15:43:35 +01:00
import CommandsBackground from "./commands.background";
2017-12-07 22:02:15 +01:00
import ContextMenusBackground from "./contextMenus.background";
import IdleBackground from "./idle.background";
2020-11-23 14:27:36 +01:00
import { NativeMessagingBackground } from "./nativeMessaging.background";
import NotificationBackground from "./notification.background";
import RuntimeBackground from "./runtime.background";
import TabsBackground from "./tabs.background";
import WebRequestBackground from "./webRequest.background";
import WindowsBackground from "./windows.background";
2021-12-21 15:43:35 +01:00
2021-02-10 16:40:15 +01:00
import { PopupUtilsService } from "../popup/services/popup-utils.service";
2017-12-05 23:04:30 +01:00
import AutofillService from "../services/autofill.service";
import { BrowserCryptoService } from "../services/browserCrypto.service";
2018-01-04 22:06:00 +01:00
import BrowserMessagingService from "../services/browserMessaging.service";
2018-01-05 22:38:50 +01:00
import BrowserPlatformUtilsService from "../services/browserPlatformUtils.service";
2018-01-04 22:15:06 +01:00
import BrowserStorageService from "../services/browserStorage.service";
2018-04-11 20:52:49 +02:00
import I18nService from "../services/i18n.service";
import VaultTimeoutService from "../services/vaultTimeout.service";
2018-01-04 16:51:08 +01:00
2017-12-05 23:04:30 +01:00
export default class MainBackground {
2018-01-09 20:26:20 +01:00
messagingService: MessagingServiceAbstraction;
storageService: StorageServiceAbstraction;
secureStorageService: StorageServiceAbstraction;
2018-04-11 20:52:49 +02:00
i18nService: I18nServiceAbstraction;
2018-01-09 20:26:20 +01:00
platformUtilsService: PlatformUtilsServiceAbstraction;
2017-12-05 23:04:30 +01:00
constantsService: ConstantsService;
logService: LogServiceAbstraction;
2018-01-09 20:26:20 +01:00
cryptoService: CryptoServiceAbstraction;
2020-09-18 22:03:08 +02:00
cryptoFunctionService: CryptoFunctionServiceAbstraction;
tokenService: TokenServiceAbstraction;
appIdService: AppIdServiceAbstraction;
apiService: ApiServiceAbstraction;
2018-01-10 02:20:45 +01:00
environmentService: EnvironmentServiceAbstraction;
2018-01-09 23:37:40 +01:00
userService: UserServiceAbstraction;
2018-01-10 04:47:53 +01:00
settingsService: SettingsServiceAbstraction;
2018-01-10 05:05:46 +01:00
cipherService: CipherServiceAbstraction;
2018-01-10 04:39:38 +01:00
folderService: FolderServiceAbstraction;
2018-01-10 05:12:14 +01:00
collectionService: CollectionServiceAbstraction;
vaultTimeoutService: VaultTimeoutServiceAbstraction;
2018-01-10 05:27:15 +01:00
syncService: SyncServiceAbstraction;
2018-01-09 23:55:28 +01:00
passwordGenerationService: PasswordGenerationServiceAbstraction;
2018-01-09 23:45:17 +01:00
totpService: TotpServiceAbstraction;
2018-01-11 20:45:27 +01:00
autofillService: AutofillServiceAbstraction;
containerService: ContainerService;
auditService: AuditServiceAbstraction;
authService: AuthServiceAbstraction;
2018-05-17 16:57:52 +02:00
exportService: ExportServiceAbstraction;
2018-08-13 17:53:16 +02:00
searchService: SearchServiceAbstraction;
2018-08-20 23:40:39 +02:00
notificationsService: NotificationsServiceAbstraction;
stateService: StateServiceAbstraction;
2019-02-27 15:28:16 +01:00
systemService: SystemServiceAbstraction;
2019-07-09 19:56:13 +02:00
eventService: EventServiceAbstraction;
policyService: PolicyServiceAbstraction;
2021-04-07 20:43:07 +02:00
popupUtilsService: PopupUtilsService;
sendService: SendServiceAbstraction;
fileUploadService: FileUploadServiceAbstraction;
keyConnectorService: KeyConnectorServiceAbstraction;
userVerificationService: UserVerificationServiceAbstraction;
2021-12-21 15:43:35 +01:00
onUpdatedRan: boolean;
onReplacedRan: boolean;
loginToAutoFill: CipherView = null;
2021-12-21 15:43:35 +01:00
private commandsBackground: CommandsBackground;
private contextMenusBackground: ContextMenusBackground;
private idleBackground: IdleBackground;
2020-10-11 20:45:25 +02:00
private notificationBackground: NotificationBackground;
private runtimeBackground: RuntimeBackground;
2020-10-21 17:18:04 +02:00
private tabsBackground: TabsBackground;
private webRequestBackground: WebRequestBackground;
private windowsBackground: WindowsBackground;
2021-12-21 15:43:35 +01:00
2020-10-21 17:18:04 +02:00
private sidebarAction: any;
private buildingContextMenu: boolean;
private menuOptionsLoaded: any[] = [];
2018-04-06 17:48:45 +02:00
private syncTimeout: any;
private isSafari: boolean;
private nativeMessagingBackground: NativeMessagingBackground;
2021-12-21 15:43:35 +01:00
constructor() {
2021-02-10 16:40:15 +01:00
// Services
this.messagingService = new BrowserMessagingService();
this.storageService = new BrowserStorageService();
2020-09-18 22:03:08 +02:00
this.platformUtilsService = new BrowserPlatformUtilsService(
this.messagingService,
this.storageService,
(clipboardValue, clearMs) => {
2018-01-04 16:51:08 +01:00
if (this.systemService != null) {
this.systemService.clearClipboard(clipboardValue, clearMs);
2021-12-21 15:43:35 +01:00
}
2018-01-04 16:51:08 +01:00
},
async () => {
2018-01-04 16:51:08 +01:00
if (this.nativeMessagingBackground != null) {
const promise = this.nativeMessagingBackground.getResponse();
2021-12-21 15:43:35 +01:00
2018-06-25 20:56:29 +02:00
try {
await this.nativeMessagingBackground.send({ command: "biometricUnlock" });
} catch (e) {
return Promise.reject(e);
2021-12-21 15:43:35 +01:00
}
return promise.then((result) => result.response === "unlocked");
2021-12-21 15:43:35 +01:00
}
}
);
this.secureStorageService = new BrowserStorageService();
this.i18nService = new I18nService(BrowserApi.getUILanguage(window));
this.cryptoFunctionService = new WebCryptoFunctionService(window, this.platformUtilsService);
2021-09-14 13:36:34 +02:00
this.logService = new ConsoleLogService(false);
this.cryptoService = new BrowserCryptoService(
this.storageService,
this.secureStorageService,
this.cryptoFunctionService,
2018-08-23 15:26:07 +02:00
this.platformUtilsService,
2019-02-27 15:28:16 +01:00
this.logService
);
2017-12-05 23:04:30 +01:00
this.tokenService = new TokenService(this.storageService);
this.appIdService = new AppIdService(this.storageService);
this.environmentService = new EnvironmentService(this.storageService);
this.apiService = new ApiService(
this.tokenService,
this.platformUtilsService,
this.environmentService,
(expired: boolean) => this.logout(expired)
);
2019-07-12 20:54:17 +02:00
this.userService = new UserService(this.tokenService, this.storageService);
this.settingsService = new SettingsService(this.userService, this.storageService);
this.fileUploadService = new FileUploadService(this.logService, this.apiService);
this.cipherService = new CipherService(
this.cryptoService,
this.userService,
this.settingsService,
this.apiService,
this.fileUploadService,
2018-01-27 04:38:54 +01:00
this.storageService,
this.i18nService,
() => this.searchService,
this.logService
2021-12-21 15:43:35 +01:00
);
this.folderService = new FolderService(
2020-10-19 16:50:25 +02:00
this.cryptoService,
this.userService,
this.apiService,
this.storageService,
this.i18nService,
this.cipherService
);
this.collectionService = new CollectionService(
this.cryptoService,
this.userService,
this.storageService,
this.i18nService
2021-12-21 15:43:35 +01:00
);
this.searchService = new SearchService(this.cipherService, this.logService, this.i18nService);
this.sendService = new SendService(
this.cryptoService,
this.userService,
this.apiService,
this.fileUploadService,
this.storageService,
this.i18nService,
this.cryptoFunctionService
);
this.stateService = new StateService();
this.policyService = new PolicyService(this.userService, this.storageService, this.apiService);
this.keyConnectorService = new KeyConnectorService(
2017-12-06 05:37:32 +01:00
this.storageService,
this.userService,
this.cryptoService,
this.apiService,
this.tokenService,
this.logService
);
this.vaultTimeoutService = new VaultTimeoutService(
2018-04-11 21:59:39 +02:00
this.cipherService,
2021-05-13 02:51:07 +02:00
this.folderService,
2018-04-11 21:59:39 +02:00
this.collectionService,
2019-07-09 19:56:13 +02:00
this.cryptoService,
this.platformUtilsService,
this.storageService,
this.messagingService,
this.searchService,
this.userService,
this.tokenService,
this.policyService,
this.keyConnectorService,
2018-08-20 23:40:39 +02:00
async () => {
if (this.notificationsService != null) {
this.notificationsService.updateConnection(false);
2017-12-07 22:02:15 +01:00
}
await this.setIcon();
await this.refreshBadgeAndMenu(true);
if (this.systemService != null) {
2019-02-27 15:28:16 +01:00
this.systemService.startProcessReload();
2017-12-07 22:02:15 +01:00
await this.systemService.clearPendingClipboard();
2021-12-21 15:43:35 +01:00
}
},
2017-12-07 22:02:15 +01:00
async () => await this.logout(false)
2021-12-21 15:43:35 +01:00
);
this.syncService = new SyncService(
2017-12-07 22:02:15 +01:00
this.userService,
this.apiService,
this.settingsService,
2021-05-13 02:51:07 +02:00
this.folderService,
2017-12-07 22:02:15 +01:00
this.cipherService,
this.cryptoService,
2017-12-07 04:28:33 +01:00
this.collectionService,
2018-04-10 20:20:03 +02:00
this.storageService,
2017-12-07 22:02:15 +01:00
this.messagingService,
this.policyService,
this.sendService,
this.logService,
this.tokenService,
this.keyConnectorService,
2017-12-07 22:02:15 +01:00
async (expired: boolean) => await this.logout(expired)
2021-12-21 15:43:35 +01:00
);
this.eventService = new EventService(
2018-04-10 20:20:03 +02:00
this.storageService,
this.apiService,
this.userService,
2017-12-07 22:02:15 +01:00
this.cipherService,
this.logService
2021-12-21 15:43:35 +01:00
);
2017-12-07 22:02:15 +01:00
this.passwordGenerationService = new PasswordGenerationService(
this.cryptoService,
2018-04-10 20:20:03 +02:00
this.storageService,
this.policyService
2021-12-21 15:43:35 +01:00
);
2019-07-12 20:54:17 +02:00
this.totpService = new TotpService(
2018-04-10 20:20:03 +02:00
this.storageService,
this.cryptoFunctionService,
this.logService
2021-12-21 15:43:35 +01:00
);
2019-07-12 20:54:17 +02:00
this.autofillService = new AutofillService(
this.cipherService,
this.userService,
2019-07-12 20:54:17 +02:00
this.totpService,
this.eventService,
this.logService
2021-12-21 15:43:35 +01:00
);
2017-12-07 22:02:15 +01:00
this.containerService = new ContainerService(this.cryptoService);
this.auditService = new AuditService(this.cryptoFunctionService, this.apiService);
2021-05-13 02:51:07 +02:00
this.exportService = new ExportService(
this.folderService,
this.cipherService,
this.apiService,
2018-10-14 04:52:49 +02:00
this.cryptoService
2021-12-21 15:43:35 +01:00
);
2017-12-07 22:02:15 +01:00
this.notificationsService = new NotificationsService(
this.userService,
2017-12-07 22:02:15 +01:00
this.syncService,
this.appIdService,
this.apiService,
this.vaultTimeoutService,
this.environmentService,
() => this.logout(true),
this.logService
2021-12-21 15:43:35 +01:00
);
this.popupUtilsService = new PopupUtilsService(this.platformUtilsService);
this.systemService = new SystemService(
2018-04-10 20:20:03 +02:00
this.storageService,
this.vaultTimeoutService,
this.messagingService,
this.platformUtilsService,
2021-12-21 15:43:35 +01:00
() => {
const forceWindowReload =
this.platformUtilsService.isSafari() ||
this.platformUtilsService.isFirefox() ||
this.platformUtilsService.isOpera();
BrowserApi.reloadExtension(forceWindowReload ? window : null);
2019-02-27 15:28:16 +01:00
return Promise.resolve();
2021-12-21 15:43:35 +01:00
}
);
this.userVerificationService = new UserVerificationService(
this.cryptoService,
this.i18nService,
2021-05-13 02:51:07 +02:00
this.apiService
2021-12-21 15:43:35 +01:00
);
2017-12-05 23:04:30 +01:00
// Other fields
2018-01-12 04:36:22 +01:00
this.isSafari = this.platformUtilsService.isSafari();
this.sidebarAction = this.isSafari
2021-12-21 15:43:35 +01:00
? null
: typeof opr !== "undefined" && opr.sidebarAction
2018-01-12 04:36:22 +01:00
? opr.sidebarAction
2017-12-05 23:18:20 +01:00
: (window as any).chrome.sidebarAction;
2021-12-21 15:43:35 +01:00
// Background
this.runtimeBackground = new RuntimeBackground(
2021-12-21 15:43:35 +01:00
this,
this.autofillService,
2018-04-10 20:20:03 +02:00
this.platformUtilsService as BrowserPlatformUtilsService,
this.storageService,
this.i18nService,
this.notificationsService,
this.systemService,
this.environmentService,
this.messagingService,
this.logService
2021-12-21 15:43:35 +01:00
);
2020-10-19 16:50:25 +02:00
this.nativeMessagingBackground = new NativeMessagingBackground(
2018-04-10 20:20:03 +02:00
this.storageService,
this.cryptoService,
this.cryptoFunctionService,
this.vaultTimeoutService,
this.runtimeBackground,
this.i18nService,
this.userService,
this.messagingService,
this.appIdService,
2018-04-10 20:20:03 +02:00
this.platformUtilsService
2021-12-21 15:43:35 +01:00
);
this.commandsBackground = new CommandsBackground(
2021-12-21 15:43:35 +01:00
this,
this.passwordGenerationService,
this.platformUtilsService,
this.vaultTimeoutService
2021-12-21 15:43:35 +01:00
);
this.notificationBackground = new NotificationBackground(
2021-12-21 15:43:35 +01:00
this,
this.autofillService,
this.cipherService,
2018-04-10 20:20:03 +02:00
this.storageService,
this.vaultTimeoutService,
this.policyService,
2021-05-13 02:51:07 +02:00
this.folderService,
2019-07-12 20:54:17 +02:00
this.userService
2021-12-21 15:43:35 +01:00
);
this.tabsBackground = new TabsBackground(this, this.notificationBackground);
this.contextMenusBackground = new ContextMenusBackground(
2021-12-21 15:43:35 +01:00
this,
this.cipherService,
this.passwordGenerationService,
this.platformUtilsService,
this.vaultTimeoutService,
this.eventService,
2019-07-12 20:54:17 +02:00
this.totpService
2021-12-21 15:43:35 +01:00
);
this.idleBackground = new IdleBackground(
this.vaultTimeoutService,
2018-04-10 20:20:03 +02:00
this.storageService,
2018-08-23 15:26:07 +02:00
this.notificationsService
2021-12-21 15:43:35 +01:00
);
this.webRequestBackground = new WebRequestBackground(
this.platformUtilsService,
this.cipherService,
this.vaultTimeoutService
2021-12-21 15:43:35 +01:00
);
this.windowsBackground = new WindowsBackground(this);
2021-12-21 15:43:35 +01:00
const that = this;
2019-07-12 20:54:17 +02:00
this.authService = new AuthService(
this.cryptoService,
this.apiService,
this.userService,
this.tokenService,
this.appIdService,
this.i18nService,
this.platformUtilsService,
new (class extends MessagingServiceAbstraction {
// AuthService should send the messages to the background not popup.
send = (subscriber: string, arg: any = {}) => {
const message = Object.assign({}, { command: subscriber }, arg);
that.runtimeBackground.processMessage(message, that, null);
2021-12-21 15:43:35 +01:00
};
})(),
this.vaultTimeoutService,
this.logService,
this.cryptoFunctionService,
this.environmentService,
this.keyConnectorService
2021-12-21 15:43:35 +01:00
);
}
2017-12-06 05:37:32 +01:00
async bootstrap() {
this.containerService.attachToWindow(window);
2021-12-21 15:43:35 +01:00
(this.authService as AuthService).init();
await (this.vaultTimeoutService as VaultTimeoutService).init(true);
2017-12-07 22:02:15 +01:00
await (this.i18nService as I18nService).init();
await (this.eventService as EventService).init(true);
await this.runtimeBackground.init();
2017-12-07 22:02:15 +01:00
await this.notificationBackground.init();
await this.commandsBackground.init();
2021-12-21 15:43:35 +01:00
await this.tabsBackground.init();
2017-12-07 22:02:15 +01:00
await this.contextMenusBackground.init();
await this.idleBackground.init();
await this.webRequestBackground.init();
await this.windowsBackground.init();
2021-12-21 15:43:35 +01:00
2017-12-07 22:02:15 +01:00
return new Promise<void>((resolve) => {
setTimeout(async () => {
2017-12-07 22:02:15 +01:00
await this.environmentService.setUrlsFromStorage();
await this.setIcon();
this.fullSync(true);
2017-12-07 22:02:15 +01:00
setTimeout(() => this.notificationsService.init(), 2500);
2019-02-13 17:34:42 +01:00
resolve();
2021-12-21 15:43:35 +01:00
}, 500);
});
}
2017-12-07 22:02:15 +01:00
async setIcon() {
if (!chrome.browserAction && !this.sidebarAction) {
return;
}
2018-03-04 04:48:38 +01:00
const isAuthenticated = await this.userService.isAuthenticated();
const locked = await this.vaultTimeoutService.isLocked();
2018-03-04 04:48:38 +01:00
let suffix = "";
if (!isAuthenticated) {
suffix = "_gray";
} else if (locked) {
suffix = "_locked";
2017-12-07 22:02:15 +01:00
}
await this.actionSetIcon(chrome.browserAction, suffix);
2018-05-16 05:27:06 +02:00
await this.actionSetIcon(this.sidebarAction, suffix);
2018-01-04 22:06:00 +01:00
}
2017-12-07 22:02:15 +01:00
async refreshBadgeAndMenu(forLocked: boolean = false) {
2019-02-27 17:57:29 +01:00
if (!chrome.windows || !chrome.contextMenus) {
return;
2017-12-07 22:02:15 +01:00
}
const menuDisabled = await this.storageService.get<boolean>(
ConstantsService.disableContextMenuItemKey
2021-12-21 15:43:35 +01:00
);
2017-12-07 22:02:15 +01:00
if (!menuDisabled) {
await this.buildContextMenu();
} else {
await this.contextMenusRemoveAll();
}
2019-08-19 21:57:34 +02:00
if (forLocked) {
await this.loadMenuAndUpdateBadgeForNoAccessState(!menuDisabled);
this.onUpdatedRan = this.onReplacedRan = false;
return;
2018-01-18 22:17:58 +01:00
}
const tab = await BrowserApi.getTabFromCurrentWindow();
2018-03-04 04:48:38 +01:00
if (tab) {
await this.contextMenuReady(tab, !menuDisabled);
2021-12-21 15:43:35 +01:00
}
}
async logout(expired: boolean) {
await this.eventService.uploadEvents();
const userId = await this.userService.getUserId();
2021-12-21 15:43:35 +01:00
2017-12-07 22:02:15 +01:00
await Promise.all([
2019-07-09 19:56:13 +02:00
this.eventService.clearEvents(),
this.syncService.setLastSync(new Date(0)),
2017-12-07 22:02:15 +01:00
this.tokenService.clearToken(),
this.cryptoService.clearKeys(),
2017-12-07 22:02:15 +01:00
this.userService.clear(),
this.settingsService.clear(userId),
2017-12-07 22:02:15 +01:00
this.cipherService.clear(userId),
this.folderService.clear(userId),
this.collectionService.clear(userId),
this.policyService.clear(userId),
this.passwordGenerationService.clear(),
this.vaultTimeoutService.clear(),
this.keyConnectorService.clear(),
2021-12-21 15:43:35 +01:00
]);
2018-08-13 20:09:26 +02:00
this.searchService.clearIndex();
2018-01-04 22:06:00 +01:00
this.messagingService.send("doneLoggingOut", { expired: expired });
2021-12-21 15:43:35 +01:00
2017-12-07 22:02:15 +01:00
await this.setIcon();
await this.refreshBadgeAndMenu();
2019-02-13 17:34:42 +01:00
await this.reseedStorage();
2018-08-23 15:26:07 +02:00
this.notificationsService.updateConnection(false);
2019-02-27 15:28:16 +01:00
this.systemService.startProcessReload();
2019-02-27 17:57:29 +01:00
await this.systemService.clearPendingClipboard();
2021-12-21 15:43:35 +01:00
}
async collectPageDetailsForContentScript(tab: any, sender: string, frameId: number = null) {
if (tab == null || !tab.id) {
2019-02-13 17:34:42 +01:00
return;
}
const options: any = {};
if (frameId != null) {
options.frameId = frameId;
2021-12-21 15:43:35 +01:00
}
2019-02-13 17:34:42 +01:00
BrowserApi.tabSendMessage(
2021-12-21 15:43:35 +01:00
tab,
{
2017-12-07 22:02:15 +01:00
command: "collectPageDetails",
tab: tab,
sender: sender,
2021-12-21 15:43:35 +01:00
},
options
);
}
2019-02-13 17:34:42 +01:00
async openPopup() {
// Chrome APIs cannot open popup
2021-12-21 15:43:35 +01:00
2019-02-13 17:34:42 +01:00
// TODO: Do we need to open this popup?
if (!this.isSafari) {
2021-12-21 15:43:35 +01:00
return;
}
2019-02-13 17:34:42 +01:00
await SafariApp.sendMessageToApp("showPopover", null, true);
2021-12-21 15:43:35 +01:00
}
2019-02-13 17:34:42 +01:00
async reseedStorage() {
2021-12-21 15:43:35 +01:00
if (
2019-02-13 17:34:42 +01:00
!this.platformUtilsService.isChrome() &&
!this.platformUtilsService.isVivaldi() &&
!this.platformUtilsService.isOpera()
2021-12-21 15:43:35 +01:00
) {
return;
2019-02-13 17:34:42 +01:00
}
const currentVaultTimeout = await this.storageService.get<number>(
ConstantsService.vaultTimeoutKey
2021-12-21 15:43:35 +01:00
);
if (currentVaultTimeout == null) {
2017-12-05 23:04:30 +01:00
return;
}
const getStorage = (): Promise<any> =>
2020-09-15 16:50:45 +02:00
new Promise((resolve) => {
chrome.storage.local.get(null, (o: any) => resolve(o));
2017-12-05 23:04:30 +01:00
});
2020-09-15 16:50:45 +02:00
const clearStorage = (): Promise<void> =>
new Promise((resolve) => {
chrome.storage.local.clear(() => resolve());
});
const storage = await getStorage();
await clearStorage();
for (const key in storage) {
if (!storage.hasOwnProperty(key)) {
continue;
2021-12-21 15:43:35 +01:00
}
await this.storageService.save(key, storage[key]);
2021-12-21 15:43:35 +01:00
}
}
2017-12-05 23:04:30 +01:00
private async buildContextMenu() {
if (!chrome.contextMenus || this.buildingContextMenu) {
return;
}
this.buildingContextMenu = true;
await this.contextMenusRemoveAll();
2021-12-21 15:43:35 +01:00
2017-12-05 23:04:30 +01:00
await this.contextMenusCreate({
type: "normal",
2021-12-21 15:43:35 +01:00
id: "root",
2017-12-05 23:04:30 +01:00
contexts: ["all"],
2018-02-27 19:37:57 +01:00
title: "Bitwarden",
2021-12-21 15:43:35 +01:00
});
2017-12-05 23:04:30 +01:00
await this.contextMenusCreate({
type: "normal",
id: "autofill",
parentId: "root",
contexts: ["all"],
title: this.i18nService.t("autoFill"),
});
2021-12-21 15:43:35 +01:00
2017-12-05 23:04:30 +01:00
await this.contextMenusCreate({
type: "normal",
2017-12-05 23:04:30 +01:00
id: "copy-username",
parentId: "root",
contexts: ["all"],
2020-09-15 16:50:45 +02:00
title: this.i18nService.t("copyUsername"),
2021-12-21 15:43:35 +01:00
});
await this.contextMenusCreate({
type: "normal",
2017-12-05 23:04:30 +01:00
id: "copy-password",
parentId: "root",
2017-12-05 23:04:30 +01:00
contexts: ["all"],
2020-09-15 16:50:45 +02:00
title: this.i18nService.t("copyPassword"),
2021-12-21 15:43:35 +01:00
});
2017-12-05 23:04:30 +01:00
if (await this.userService.canAccessPremium()) {
await this.contextMenusCreate({
type: "normal",
id: "copy-totp",
parentId: "root",
contexts: ["all"],
2020-09-15 16:50:45 +02:00
title: this.i18nService.t("copyVerificationCode"),
2021-12-21 15:43:35 +01:00
});
2017-12-05 23:04:30 +01:00
}
await this.contextMenusCreate({
2021-12-21 15:43:35 +01:00
type: "separator",
parentId: "root",
2021-12-21 15:43:35 +01:00
});
await this.contextMenusCreate({
type: "normal",
2020-09-15 16:50:45 +02:00
id: "generate-password",
parentId: "root",
contexts: ["all"],
2020-09-15 16:50:45 +02:00
title: this.i18nService.t("generatePasswordCopied"),
2021-12-21 15:43:35 +01:00
});
await this.contextMenusCreate({
type: "normal",
id: "copy-identifier",
parentId: "root",
contexts: ["all"],
2020-09-15 16:50:45 +02:00
title: this.i18nService.t("copyElementIdentifier"),
2021-12-21 15:43:35 +01:00
});
2017-12-05 23:04:30 +01:00
this.buildingContextMenu = false;
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
private async contextMenuReady(tab: any, contextMenuEnabled: boolean) {
await this.loadMenuAndUpdateBadge(tab.url, tab.id, contextMenuEnabled);
2018-03-04 04:48:38 +01:00
this.onUpdatedRan = this.onReplacedRan = false;
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
private async loadMenuAndUpdateBadge(url: string, tabId: number, contextMenuEnabled: boolean) {
if (!url || (!chrome.browserAction && !this.sidebarAction)) {
return;
}
this.actionSetBadgeBackgroundColor(chrome.browserAction);
this.actionSetBadgeBackgroundColor(this.sidebarAction);
this.menuOptionsLoaded = [];
const locked = await this.vaultTimeoutService.isLocked();
if (!locked) {
2021-12-21 15:43:35 +01:00
try {
const ciphers = await this.cipherService.getAllDecryptedForUrl(url);
ciphers.sort((a, b) => this.cipherService.sortCiphersByLastUsedThenName(a, b));
2018-03-04 04:48:38 +01:00
if (contextMenuEnabled) {
ciphers.forEach((cipher) => {
this.loadLoginContextMenuOptions(cipher);
2021-12-21 15:43:35 +01:00
});
2018-03-04 04:48:38 +01:00
}
const disableBadgeCounter = await this.storageService.get<boolean>(
ConstantsService.disableBadgeCounterKey
);
let theText = "";
2017-12-05 23:04:30 +01:00
if (!disableBadgeCounter) {
if (ciphers.length > 0 && ciphers.length <= 9) {
theText = ciphers.length.toString();
} else if (ciphers.length > 0) {
2017-12-05 23:04:30 +01:00
theText = "9+";
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
}
if (contextMenuEnabled && ciphers.length === 0) {
await this.loadNoLoginsContextMenuOptions(this.i18nService.t("noMatchingLogins"));
}
2017-12-05 23:04:30 +01:00
this.sidebarActionSetBadgeText(theText, tabId);
this.browserActionSetBadgeText(theText, tabId);
2021-12-21 15:43:35 +01:00
return;
} catch (e) {
2017-12-05 23:04:30 +01:00
this.logService.error(e);
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
}
await this.loadMenuAndUpdateBadgeForNoAccessState(contextMenuEnabled);
}
private async loadMenuAndUpdateBadgeForNoAccessState(contextMenuEnabled: boolean) {
2018-03-04 04:48:38 +01:00
if (contextMenuEnabled) {
2017-12-05 23:04:30 +01:00
const authed = await this.userService.isAuthenticated();
await this.loadNoLoginsContextMenuOptions(
this.i18nService.t(authed ? "unlockVaultMenu" : "loginToVaultMenu")
2021-12-21 15:43:35 +01:00
);
}
2017-12-05 23:04:30 +01:00
2017-12-07 04:10:02 +01:00
const tabs = await BrowserApi.getActiveTabs();
if (tabs != null) {
tabs.forEach((tab) => {
if (tab.id != null) {
2017-12-05 23:04:30 +01:00
this.browserActionSetBadgeText("", tab.id);
this.sidebarActionSetBadgeText("", tab.id);
2017-12-05 23:04:30 +01:00
}
2021-12-21 15:43:35 +01:00
});
}
}
2017-12-05 23:04:30 +01:00
private async loadLoginContextMenuOptions(cipher: any) {
2021-12-21 15:43:35 +01:00
if (
cipher == null ||
2018-01-09 20:26:20 +01:00
cipher.type !== CipherType.Login ||
cipher.reprompt !== CipherRepromptType.None
2021-12-21 15:43:35 +01:00
) {
return;
}
2017-12-05 23:04:30 +01:00
2017-12-07 04:10:02 +01:00
let title = cipher.name;
if (cipher.login.username && cipher.login.username !== "") {
title += " (" + cipher.login.username + ")";
2021-12-21 15:43:35 +01:00
}
2017-12-07 04:10:02 +01:00
await this.loadContextMenuOptions(title, cipher.id, cipher);
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
private async loadNoLoginsContextMenuOptions(noLoginsMessage: string) {
await this.loadContextMenuOptions(noLoginsMessage, "noop", null);
2021-12-21 15:43:35 +01:00
}
private async loadContextMenuOptions(title: string, idSuffix: string, cipher: any) {
2021-12-21 15:43:35 +01:00
if (
!chrome.contextMenus ||
this.menuOptionsLoaded.indexOf(idSuffix) > -1 ||
2018-01-09 20:26:20 +01:00
(cipher != null && cipher.type !== CipherType.Login)
2021-12-21 15:43:35 +01:00
) {
2017-12-05 23:04:30 +01:00
return;
}
this.menuOptionsLoaded.push(idSuffix);
if (cipher == null || (cipher.login.password && cipher.login.password !== "")) {
await this.contextMenusCreate({
type: "normal",
id: "autofill_" + idSuffix,
parentId: "autofill",
contexts: ["all"],
title: this.sanitizeContextMenuTitle(title),
});
2017-12-05 23:04:30 +01:00
}
if (cipher == null || (cipher.login.username && cipher.login.username !== "")) {
await this.contextMenusCreate({
2017-12-05 23:04:30 +01:00
type: "normal",
id: "copy-username_" + idSuffix,
parentId: "copy-username",
2017-12-05 23:04:30 +01:00
contexts: ["all"],
title: this.sanitizeContextMenuTitle(title),
});
}
2021-12-21 15:43:35 +01:00
if (
cipher == null ||
(cipher.login.password && cipher.login.password !== "" && cipher.viewPassword)
2021-12-21 15:43:35 +01:00
) {
await this.contextMenusCreate({
2017-12-05 23:04:30 +01:00
type: "normal",
id: "copy-password_" + idSuffix,
2017-12-05 23:04:30 +01:00
parentId: "copy-password",
contexts: ["all"],
title: this.sanitizeContextMenuTitle(title),
});
}
const canAccessPremium = await this.userService.canAccessPremium();
if (canAccessPremium && (cipher == null || (cipher.login.totp && cipher.login.totp !== ""))) {
await this.contextMenusCreate({
2017-12-05 23:04:30 +01:00
type: "normal",
id: "copy-totp_" + idSuffix,
parentId: "copy-totp",
contexts: ["all"],
title: this.sanitizeContextMenuTitle(title),
});
}
2021-12-21 15:43:35 +01:00
}
private sanitizeContextMenuTitle(title: string): string {
return title.replace(/&/g, "&&");
}
private async fullSync(override: boolean = false) {
const syncInternal = 6 * 60 * 60 * 1000; // 6 hours
const lastSync = await this.syncService.getLastSync();
let lastSyncAgo = syncInternal + 1;
if (lastSync != null) {
lastSyncAgo = new Date().getTime() - lastSync.getTime();
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
if (override || lastSyncAgo >= syncInternal) {
await this.syncService.fullSync(override);
this.scheduleNextSync();
} else {
this.scheduleNextSync();
}
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
private scheduleNextSync() {
if (this.syncTimeout) {
clearTimeout(this.syncTimeout);
}
this.syncTimeout = setTimeout(async () => await this.fullSync(), 5 * 60 * 1000); // check every 5 minutes
2017-12-05 23:04:30 +01:00
}
// Browser API Helpers
private contextMenusRemoveAll() {
return new Promise<void>((resolve) => {
chrome.contextMenus.removeAll(() => {
resolve();
if (chrome.runtime.lastError) {
2017-12-05 23:04:30 +01:00
return;
}
2021-12-21 15:43:35 +01:00
});
});
2017-12-05 23:04:30 +01:00
}
private contextMenusCreate(options: any) {
return new Promise<void>((resolve) => {
chrome.contextMenus.create(options, () => {
resolve();
if (chrome.runtime.lastError) {
return;
}
2021-12-21 15:43:35 +01:00
});
});
}
private async actionSetIcon(theAction: any, suffix: string): Promise<any> {
2017-12-05 23:04:30 +01:00
if (!theAction || !theAction.setIcon) {
2021-12-21 15:43:35 +01:00
return;
2017-12-05 23:04:30 +01:00
}
const options = {
path: {
19: "images/icon19" + suffix + ".png",
38: "images/icon38" + suffix + ".png",
2021-12-21 15:43:35 +01:00
},
};
2017-12-05 23:04:30 +01:00
if (this.platformUtilsService.isFirefox()) {
await theAction.setIcon(options);
} else if (this.platformUtilsService.isSafari()) {
// Workaround since Safari 14.0.3 returns a pending promise
// which doesn't resolve within a reasonable time.
theAction.setIcon(options);
2021-12-21 15:43:35 +01:00
} else {
2017-12-05 23:04:30 +01:00
return new Promise<void>((resolve) => {
theAction.setIcon(options, () => resolve());
});
}
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
private actionSetBadgeBackgroundColor(action: any) {
if (action && action.setBadgeBackgroundColor) {
action.setBadgeBackgroundColor({ color: "#294e5f" });
2021-12-21 15:43:35 +01:00
}
}
2017-12-05 23:04:30 +01:00
private browserActionSetBadgeText(text: string, tabId: number) {
if (chrome.browserAction && chrome.browserAction.setBadgeText) {
chrome.browserAction.setBadgeText({
text: text,
tabId: tabId,
2017-12-05 23:04:30 +01:00
});
}
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
private sidebarActionSetBadgeText(text: string, tabId: number) {
if (!this.sidebarAction) {
2021-12-21 15:43:35 +01:00
return;
}
2017-12-05 23:04:30 +01:00
if (this.sidebarAction.setBadgeText) {
this.sidebarAction.setBadgeText({
text: text,
tabId: tabId,
2017-12-05 23:04:30 +01:00
});
} else if (this.sidebarAction.setTitle) {
2018-02-27 19:37:57 +01:00
let title = "Bitwarden";
2017-12-05 23:04:30 +01:00
if (text && text !== "") {
title += " [" + text + "]";
}
2021-12-21 15:43:35 +01:00
2017-12-05 23:04:30 +01:00
this.sidebarAction.setTitle({
title: title,
tabId: tabId,
2017-12-05 23:04:30 +01:00
});
}
2021-12-21 15:43:35 +01:00
}
2017-12-05 23:04:30 +01:00
}