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

770 lines
30 KiB
TypeScript
Raw Normal View History

2018-01-09 20:26:20 +01:00
import { CipherType } from 'jslib/enums';
import {
ApiService,
AppIdService,
AuditService,
AuthService,
2018-01-10 05:05:46 +01:00
CipherService,
2018-01-10 05:12:14 +01:00
CollectionService,
2018-01-10 04:22:49 +01:00
ConstantsService,
2018-01-10 04:28:21 +01:00
ContainerService,
2018-01-09 20:26:20 +01:00
CryptoService,
2018-01-10 02:20:45 +01:00
EnvironmentService,
2018-01-10 04:39:38 +01:00
FolderService,
2018-01-09 23:55:28 +01:00
PasswordGenerationService,
2018-01-10 04:47:53 +01:00
SettingsService,
StateService,
2018-01-10 05:27:15 +01:00
SyncService,
TokenService,
2018-01-09 23:45:17 +01:00
TotpService,
2018-01-09 23:37:40 +01:00
UserService,
VaultTimeoutService,
2018-01-09 20:26:20 +01:00
} from 'jslib/services';
2019-07-09 19:56:13 +02:00
import { EventService } from 'jslib/services/event.service';
2018-05-17 16:57:52 +02:00
import { ExportService } from 'jslib/services/export.service';
2018-08-20 23:40:39 +02:00
import { NotificationsService } from 'jslib/services/notifications.service';
import { PolicyService } from 'jslib/services/policy.service';
2018-08-13 17:53:16 +02:00
import { SearchService } from 'jslib/services/search.service';
2019-02-27 15:28:16 +01:00
import { SystemService } from 'jslib/services/system.service';
2018-04-22 05:23:34 +02:00
import { WebCryptoFunctionService } from 'jslib/services/webCryptoFunction.service';
2018-01-09 20:26:20 +01:00
import {
ApiService as ApiServiceAbstraction,
AppIdService as AppIdServiceAbstraction,
AuditService as AuditServiceAbstraction,
AuthService as AuthServiceAbstraction,
2018-01-10 05:05:46 +01:00
CipherService as CipherServiceAbstraction,
2018-01-10 05:12:14 +01:00
CollectionService as CollectionServiceAbstraction,
2018-01-09 20:26:20 +01:00
CryptoService as CryptoServiceAbstraction,
2018-01-10 02:20:45 +01:00
EnvironmentService as EnvironmentServiceAbstraction,
2018-01-10 04:39:38 +01:00
FolderService as FolderServiceAbstraction,
2018-01-27 04:38:54 +01:00
I18nService as I18nServiceAbstraction,
2018-01-09 20:26:20 +01:00
MessagingService as MessagingServiceAbstraction,
2018-01-09 23:55:28 +01:00
PasswordGenerationService as PasswordGenerationServiceAbstraction,
2018-01-09 20:26:20 +01:00
PlatformUtilsService as PlatformUtilsServiceAbstraction,
2018-01-10 04:47:53 +01:00
SettingsService as SettingsServiceAbstraction,
StateService as StateServiceAbstraction,
2018-01-09 20:26:20 +01:00
StorageService as StorageServiceAbstraction,
2018-01-10 05:27:15 +01:00
SyncService as SyncServiceAbstraction,
TokenService as TokenServiceAbstraction,
2018-01-09 23:45:17 +01:00
TotpService as TotpServiceAbstraction,
2018-01-09 23:37:40 +01:00
UserService as UserServiceAbstraction,
VaultTimeoutService as VaultTimeoutServiceAbstraction,
2018-01-09 20:26:20 +01:00
} from 'jslib/abstractions';
2020-09-18 22:03:08 +02:00
import { CryptoFunctionService as CryptoFunctionServiceAbstraction } from 'jslib/abstractions/cryptoFunction.service';
2019-07-09 19:56:13 +02:00
import { EventService as EventServiceAbstraction } from 'jslib/abstractions/event.service';
2018-05-17 16:57:52 +02:00
import { ExportService as ExportServiceAbstraction } from 'jslib/abstractions/export.service';
2018-08-20 23:40:39 +02:00
import { NotificationsService as NotificationsServiceAbstraction } from 'jslib/abstractions/notifications.service';
import { PolicyService as PolicyServiceAbstraction } from 'jslib/abstractions/policy.service';
2018-08-13 17:53:16 +02:00
import { SearchService as SearchServiceAbstraction } from 'jslib/abstractions/search.service';
2019-02-27 15:28:16 +01:00
import { SystemService as SystemServiceAbstraction } from 'jslib/abstractions/system.service';
2017-12-05 23:04:30 +01:00
2018-01-26 16:48:32 +01:00
import { Analytics } from 'jslib/misc';
2018-10-14 04:52:49 +02:00
import { Utils } from 'jslib/misc/utils';
2018-01-12 16:05:30 +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';
2017-12-07 21:36:24 +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';
import RuntimeBackground from './runtime.background';
import TabsBackground from './tabs.background';
import WebRequestBackground from './webRequest.background';
import WindowsBackground from './windows.background';
2017-12-05 23:04:30 +01:00
import AutofillService from '../services/autofill.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 { PopupUtilsService } from '../popup/services/popup-utils.service';
2018-01-04 16:51:08 +01:00
2018-01-11 20:45:27 +01:00
import { AutofillService as AutofillServiceAbstraction } from '../services/abstractions/autofill.service';
import { NativeMessagingBackground } from './nativeMessaging.background';
2018-01-11 20:45:27 +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;
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;
2018-01-19 22:19:24 +01:00
analytics: Analytics;
popupUtilsService: PopupUtilsService;
2017-12-05 23:04:30 +01:00
onUpdatedRan: boolean;
onReplacedRan: boolean;
2017-12-07 21:36:24 +01:00
loginToAutoFill: any = null;
2018-08-01 05:24:11 +02:00
notificationQueue: any[] = [];
private commandsBackground: CommandsBackground;
2017-12-07 22:02:15 +01:00
private contextMenusBackground: ContextMenusBackground;
private idleBackground: IdleBackground;
private runtimeBackground: RuntimeBackground;
private tabsBackground: TabsBackground;
private webRequestBackground: WebRequestBackground;
private windowsBackground: WindowsBackground;
2017-12-05 23:04:30 +01:00
private sidebarAction: any;
private buildingContextMenu: boolean;
private menuOptionsLoaded: any[] = [];
2018-04-06 17:48:45 +02:00
private syncTimeout: any;
2018-01-12 04:36:22 +01:00
private isSafari: boolean;
nativeMessagingBackground: NativeMessagingBackground;
2017-12-05 23:04:30 +01:00
constructor() {
this.nativeMessagingBackground = new NativeMessagingBackground();
2017-12-05 23:04:30 +01:00
// Services
2018-04-10 20:20:03 +02:00
this.messagingService = new BrowserMessagingService();
2019-02-27 15:28:16 +01:00
this.platformUtilsService = new BrowserPlatformUtilsService(this.messagingService,
(clipboardValue, clearMs) => {
if (this.systemService != null) {
this.systemService.clearClipboard(clipboardValue, clearMs);
}
}, this.nativeMessagingBackground);
2019-08-13 17:50:28 +02:00
this.storageService = new BrowserStorageService(this.platformUtilsService);
this.secureStorageService = new BrowserStorageService(this.platformUtilsService);
2019-08-14 22:54:40 +02:00
this.i18nService = new I18nService(BrowserApi.getUILanguage(window));
2020-09-18 22:03:08 +02:00
this.cryptoFunctionService = new WebCryptoFunctionService(window, this.platformUtilsService);
this.cryptoService = new CryptoService(this.storageService, this.secureStorageService,
this.cryptoFunctionService);
2018-01-04 16:51:08 +01:00
this.tokenService = new TokenService(this.storageService);
this.appIdService = new AppIdService(this.storageService);
2018-01-05 22:30:15 +01:00
this.apiService = new ApiService(this.tokenService, this.platformUtilsService,
2018-08-28 14:38:29 +02:00
(expired: boolean) => this.logout(expired));
2018-01-04 16:51:08 +01:00
this.userService = new UserService(this.tokenService, this.storageService);
this.authService = new AuthService(this.cryptoService, this.apiService, this.userService,
this.tokenService, this.appIdService, this.i18nService, this.platformUtilsService,
2020-09-15 22:27:28 +02:00
this.messagingService, this.vaultTimeoutService);
2018-01-04 16:51:08 +01:00
this.settingsService = new SettingsService(this.userService, this.storageService);
this.cipherService = new CipherService(this.cryptoService, this.userService, this.settingsService,
2018-10-14 04:52:49 +02:00
this.apiService, this.storageService, this.i18nService, () => this.searchService);
2018-06-25 20:56:29 +02:00
this.folderService = new FolderService(this.cryptoService, this.userService, this.apiService,
this.storageService, this.i18nService, this.cipherService);
2018-01-27 04:38:54 +01:00
this.collectionService = new CollectionService(this.cryptoService, this.userService, this.storageService,
2018-04-11 20:52:49 +02:00
this.i18nService);
2020-09-15 16:50:45 +02:00
this.searchService = new SearchService(this.cipherService);
this.stateService = new StateService();
this.policyService = new PolicyService(this.userService, this.storageService);
this.vaultTimeoutService = new VaultTimeoutService(this.cipherService, this.folderService,
this.collectionService, this.cryptoService, this.platformUtilsService, this.storageService,
this.messagingService, this.searchService, this.userService, this.tokenService,
async () => {
if (this.notificationsService != null) {
2018-08-23 15:26:07 +02:00
this.notificationsService.updateConnection(false);
}
2018-03-04 04:48:38 +01:00
await this.setIcon();
await this.refreshBadgeAndMenu(true);
2019-02-27 15:28:16 +01:00
if (this.systemService != null) {
this.systemService.startProcessReload();
2019-02-27 17:57:29 +01:00
await this.systemService.clearPendingClipboard();
2019-02-27 15:28:16 +01:00
}
}, async () => await this.logout(false));
2017-12-05 23:04:30 +01:00
this.syncService = new SyncService(this.userService, this.apiService, this.settingsService,
2017-12-07 04:28:33 +01:00
this.folderService, this.cipherService, this.cryptoService, this.collectionService,
this.storageService, this.messagingService, this.policyService,
async (expired: boolean) => await this.logout(expired));
2019-07-12 20:54:17 +02:00
this.eventService = new EventService(this.storageService, this.apiService, this.userService,
this.cipherService);
this.passwordGenerationService = new PasswordGenerationService(this.cryptoService, this.storageService,
this.policyService);
2020-09-18 22:03:08 +02:00
this.totpService = new TotpService(this.storageService, this.cryptoFunctionService);
2019-07-12 20:54:17 +02:00
this.autofillService = new AutofillService(this.cipherService, this.userService, this.totpService,
this.eventService);
2018-10-14 04:52:49 +02:00
this.containerService = new ContainerService(this.cryptoService);
2020-09-18 22:03:08 +02:00
this.auditService = new AuditService(this.cryptoFunctionService, this.apiService);
2018-07-05 20:42:11 +02:00
this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService);
this.notificationsService = new NotificationsService(this.userService, this.syncService, this.appIdService,
this.apiService, this.vaultTimeoutService, () => this.logout(true));
2018-08-20 23:40:39 +02:00
this.environmentService = new EnvironmentService(this.apiService, this.storageService,
this.notificationsService);
2018-01-26 16:48:32 +01:00
this.analytics = new Analytics(window, () => BrowserApi.gaFilter(), this.platformUtilsService,
this.storageService, this.appIdService);
this.popupUtilsService = new PopupUtilsService(this.platformUtilsService);
this.systemService = new SystemService(this.storageService, this.vaultTimeoutService,
2019-02-27 15:28:16 +01:00
this.messagingService, this.platformUtilsService, () => {
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();
});
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 ? null : (typeof opr !== 'undefined') && opr.sidebarAction ?
2017-12-05 23:18:20 +01:00
opr.sidebarAction : (window as any).chrome.sidebarAction;
// Background
2018-01-12 18:24:34 +01:00
this.runtimeBackground = new RuntimeBackground(this, this.autofillService, this.cipherService,
2018-04-10 20:20:03 +02:00
this.platformUtilsService as BrowserPlatformUtilsService, this.storageService, this.i18nService,
this.analytics, this.notificationsService, this.systemService, this.vaultTimeoutService,
this.environmentService);
this.commandsBackground = new CommandsBackground(this, this.passwordGenerationService,
this.platformUtilsService, this.analytics, this.vaultTimeoutService);
2018-01-12 18:24:34 +01:00
2018-01-12 05:39:16 +01:00
if (!this.isSafari) {
2019-08-21 15:42:34 +02:00
this.tabsBackground = new TabsBackground(this);
2018-01-12 05:39:16 +01:00
this.contextMenusBackground = new ContextMenusBackground(this, this.cipherService,
this.passwordGenerationService, this.analytics, this.platformUtilsService, this.vaultTimeoutService,
this.eventService, this.totpService);
this.idleBackground = new IdleBackground(this.vaultTimeoutService, this.storageService,
this.notificationsService);
this.webRequestBackground = new WebRequestBackground(this.platformUtilsService, this.cipherService,
this.vaultTimeoutService);
2018-01-12 05:39:16 +01:00
this.windowsBackground = new WindowsBackground(this);
}
2017-12-05 23:04:30 +01:00
}
2017-12-06 05:37:32 +01:00
async bootstrap() {
2019-08-12 18:31:32 +02:00
SafariApp.init();
2018-01-19 22:19:24 +01:00
this.analytics.ga('send', 'pageview', '/background.html');
this.containerService.attachToWindow(window);
await (this.vaultTimeoutService as VaultTimeoutService).init(true);
2018-04-11 21:59:39 +02:00
await (this.i18nService as I18nService).init();
2019-07-09 19:56:13 +02:00
await (this.eventService as EventService).init(true);
await this.runtimeBackground.init();
await this.commandsBackground.init();
2018-01-13 21:09:05 +01:00
2018-01-12 04:36:22 +01:00
if (!this.isSafari) {
2019-08-21 15:42:34 +02:00
await this.tabsBackground.init();
2018-01-12 04:36:22 +01:00
await this.contextMenusBackground.init();
await this.idleBackground.init();
await this.webRequestBackground.init();
await this.windowsBackground.init();
}
return new Promise((resolve) => {
setTimeout(async () => {
await this.environmentService.setUrlsFromStorage();
await this.setIcon();
2018-08-01 05:24:11 +02:00
this.cleanupNotificationQueue();
2018-08-20 23:40:39 +02:00
this.fullSync(true);
setTimeout(() => this.notificationsService.init(this.environmentService), 2500);
resolve();
}, 500);
});
}
2017-12-07 22:02:15 +01:00
async setIcon() {
2018-01-12 04:36:22 +01:00
if (this.isSafari || (!chrome.browserAction && !this.sidebarAction)) {
2017-12-07 22:02:15 +01:00
return;
}
const isAuthenticated = await this.userService.isAuthenticated();
const locked = await this.vaultTimeoutService.isLocked();
2017-12-07 22:02:15 +01:00
let suffix = '';
if (!isAuthenticated) {
suffix = '_gray';
} else if (locked) {
2017-12-07 22:02:15 +01:00
suffix = '_locked';
}
await this.actionSetIcon(chrome.browserAction, suffix);
await this.actionSetIcon(this.sidebarAction, suffix);
}
2018-03-04 04:48:38 +01:00
async refreshBadgeAndMenu(forLocked: boolean = false) {
2018-01-12 04:36:22 +01:00
if (this.isSafari || !chrome.windows || !chrome.contextMenus) {
2017-12-07 22:02:15 +01:00
return;
}
2018-03-04 04:48:38 +01:00
const menuDisabled = await this.storageService.get<boolean>(ConstantsService.disableContextMenuItemKey);
if (!menuDisabled) {
2017-12-07 22:02:15 +01:00
await this.buildContextMenu();
} else {
await this.contextMenusRemoveAll();
2018-03-04 04:48:38 +01:00
}
if (forLocked) {
await this.loadMenuAndUpdateBadgeForNoAccessState(!menuDisabled);
2018-03-04 04:48:38 +01:00
this.onUpdatedRan = this.onReplacedRan = false;
return;
}
const tab = await BrowserApi.getTabFromCurrentWindow();
if (tab) {
await this.contextMenuReady(tab, !menuDisabled);
2017-12-07 22:02:15 +01:00
}
}
async logout(expired: boolean) {
2019-07-09 19:56:13 +02:00
await this.eventService.uploadEvents();
2017-12-07 22:02:15 +01:00
const userId = await this.userService.getUserId();
await Promise.all([
2019-07-09 19:56:13 +02:00
this.eventService.clearEvents(),
2017-12-07 22:02:15 +01:00
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),
2018-05-16 05:27:06 +02:00
this.collectionService.clear(userId),
this.policyService.clear(userId),
2017-12-07 22:02:15 +01:00
this.passwordGenerationService.clear(),
this.vaultTimeoutService.clear(),
2017-12-07 22:02:15 +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 });
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();
2017-12-07 22:02:15 +01:00
}
async collectPageDetailsForContentScript(tab: any, sender: string, frameId: number = null) {
2017-12-07 22:02:15 +01:00
if (tab == null || !tab.id) {
return;
}
if (await this.vaultTimeoutService.isLocked()) {
return;
}
2017-12-07 22:02:15 +01:00
const options: any = {};
if (frameId != null) {
options.frameId = frameId;
}
BrowserApi.tabSendMessage(tab, {
2017-12-07 22:02:15 +01:00
command: 'collectPageDetails',
tab: tab,
sender: sender,
}, options);
2017-12-07 22:02:15 +01:00
}
2018-08-01 05:24:11 +02:00
async checkNotificationQueue(tab: any = null): Promise<any> {
if (this.notificationQueue.length === 0) {
2017-12-07 22:02:15 +01:00
return;
}
if (tab != null) {
2018-08-01 05:24:11 +02:00
this.doNotificationQueueCheck(tab);
2017-12-07 22:02:15 +01:00
return;
}
const currentTab = await BrowserApi.getTabFromCurrentWindow();
if (currentTab != null) {
2018-08-01 05:24:11 +02:00
this.doNotificationQueueCheck(currentTab);
2017-12-07 22:02:15 +01:00
}
}
2018-01-18 22:17:58 +01:00
async openPopup() {
// Chrome APIs cannot open popup
2019-08-13 21:47:03 +02:00
// TODO: Do we need to open this popup?
2019-08-19 21:57:34 +02:00
if (!this.isSafari) {
return;
}
await SafariApp.sendMessageToApp('showPopover', null, true);
2018-01-18 22:17:58 +01:00
}
2019-02-13 17:34:42 +01:00
async reseedStorage() {
if (!this.platformUtilsService.isChrome() && !this.platformUtilsService.isVivaldi() &&
!this.platformUtilsService.isOpera()) {
return;
}
const currentVaultTimeout = await this.storageService.get<number>(ConstantsService.vaultTimeoutKey);
if (currentVaultTimeout == null) {
2019-02-13 17:34:42 +01:00
return;
}
const getStorage = (): Promise<any> => new Promise((resolve) => {
chrome.storage.local.get(null, (o: any) => resolve(o));
});
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;
}
await this.storageService.save(key, storage[key]);
}
}
2017-12-05 23:04:30 +01:00
private async buildContextMenu() {
2018-01-12 04:36:22 +01:00
if (this.isSafari || !chrome.contextMenus || this.buildingContextMenu) {
2017-12-05 23:04:30 +01:00
return;
}
this.buildingContextMenu = true;
await this.contextMenusRemoveAll();
await this.contextMenusCreate({
type: 'normal',
id: 'root',
contexts: ['all'],
2018-02-27 19:37:57 +01:00
title: 'Bitwarden',
2017-12-05 23:04:30 +01:00
});
await this.contextMenusCreate({
type: 'normal',
id: 'autofill',
parentId: 'root',
contexts: ['all'],
2018-04-11 20:52:49 +02:00
title: this.i18nService.t('autoFill'),
2017-12-05 23:04:30 +01:00
});
2020-09-15 16:50:45 +02:00
await this.contextMenusCreate({
type: 'normal',
id: 'copy-username',
parentId: 'root',
contexts: ['all'],
title: this.i18nService.t('copyUsername'),
});
2020-09-15 16:50:45 +02:00
await this.contextMenusCreate({
type: 'normal',
id: 'copy-password',
parentId: 'root',
contexts: ['all'],
title: this.i18nService.t('copyPassword'),
});
2017-12-05 23:04:30 +01:00
2020-09-15 16:50:45 +02:00
if (await this.userService.canAccessPremium()) {
2017-12-05 23:04:30 +01:00
await this.contextMenusCreate({
type: 'normal',
2020-09-15 16:50:45 +02:00
id: 'copy-totp',
2017-12-05 23:04:30 +01:00
parentId: 'root',
contexts: ['all'],
2020-09-15 16:50:45 +02:00
title: this.i18nService.t('copyVerificationCode'),
2017-12-05 23:04:30 +01:00
});
}
2020-09-15 16:50:45 +02:00
await this.contextMenusCreate({
type: 'separator',
parentId: 'root',
});
await this.contextMenusCreate({
type: 'normal',
id: 'generate-password',
parentId: 'root',
contexts: ['all'],
title: this.i18nService.t('generatePasswordCopied'),
});
2017-12-05 23:04:30 +01:00
this.buildingContextMenu = false;
}
private async contextMenuReady(tab: any, contextMenuEnabled: boolean) {
await this.loadMenuAndUpdateBadge(tab.url, tab.id, contextMenuEnabled);
this.onUpdatedRan = this.onReplacedRan = false;
}
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) {
try {
const ciphers = await this.cipherService.getAllDecryptedForUrl(url);
ciphers.sort((a, b) => this.cipherService.sortCiphersByLastUsedThenName(a, b));
2017-12-05 23:04:30 +01:00
if (contextMenuEnabled) {
ciphers.forEach((cipher) => {
this.loadLoginContextMenuOptions(cipher);
});
}
let theText = '';
if (ciphers.length > 0 && ciphers.length <= 9) {
theText = ciphers.length.toString();
} else if (ciphers.length > 0) {
theText = '9+';
} else {
if (contextMenuEnabled) {
await this.loadNoLoginsContextMenuOptions(this.i18nService.t('noMatchingLogins'));
}
2017-12-05 23:04:30 +01:00
}
this.browserActionSetBadgeText(theText, tabId);
this.sidebarActionSetBadgeText(theText, tabId);
return;
} catch { }
2018-03-04 04:48:38 +01:00
}
await this.loadMenuAndUpdateBadgeForNoAccessState(contextMenuEnabled);
2018-03-04 04:48:38 +01:00
}
private async loadMenuAndUpdateBadgeForNoAccessState(contextMenuEnabled: boolean) {
2018-03-04 04:48:38 +01:00
if (contextMenuEnabled) {
const authed = await this.userService.isAuthenticated();
await this.loadNoLoginsContextMenuOptions(this.i18nService.t(authed ? 'vaultLocked' : 'vaultLoggedOut'));
2018-03-04 04:48:38 +01:00
}
const tabs = await BrowserApi.getActiveTabs();
if (tabs != null) {
tabs.forEach((tab) => {
if (tab.id != null) {
this.browserActionSetBadgeText('', tab.id);
this.sidebarActionSetBadgeText('', tab.id);
}
});
2017-12-05 23:04:30 +01:00
}
}
private async loadLoginContextMenuOptions(cipher: any) {
2018-01-09 20:26:20 +01:00
if (cipher == null || cipher.type !== CipherType.Login) {
2017-12-05 23:04:30 +01:00
return;
}
let title = cipher.name;
if (cipher.login.username && cipher.login.username !== '') {
title += (' (' + cipher.login.username + ')');
}
2017-12-05 23:04:30 +01:00
await this.loadContextMenuOptions(title, cipher.id, cipher);
}
private async loadNoLoginsContextMenuOptions(noLoginsMessage: string) {
await this.loadContextMenuOptions(noLoginsMessage, 'noop', null);
}
private async loadContextMenuOptions(title: string, idSuffix: string, cipher: any) {
if (!chrome.contextMenus || this.menuOptionsLoaded.indexOf(idSuffix) > -1 ||
2018-01-09 20:26:20 +01:00
(cipher != null && cipher.type !== CipherType.Login)) {
2017-12-05 23:04:30 +01:00
return;
}
this.menuOptionsLoaded.push(idSuffix);
2017-12-07 04:10:02 +01:00
if (cipher == null || (cipher.login.password && cipher.login.password !== '')) {
2017-12-05 23:04:30 +01:00
await this.contextMenusCreate({
type: 'normal',
id: 'autofill_' + idSuffix,
parentId: 'autofill',
contexts: ['all'],
title: this.sanitizeContextMenuTitle(title),
2017-12-05 23:04:30 +01:00
});
}
2017-12-07 04:10:02 +01:00
if (cipher == null || (cipher.login.username && cipher.login.username !== '')) {
2017-12-05 23:04:30 +01:00
await this.contextMenusCreate({
type: 'normal',
id: 'copy-username_' + idSuffix,
parentId: 'copy-username',
contexts: ['all'],
title: this.sanitizeContextMenuTitle(title),
2017-12-05 23:04:30 +01:00
});
}
2020-05-24 19:59:49 +02:00
if (cipher == null || (cipher.login.password && cipher.login.password !== '' && cipher.viewPassword)) {
2017-12-05 23:04:30 +01:00
await this.contextMenusCreate({
type: 'normal',
id: 'copy-password_' + idSuffix,
parentId: 'copy-password',
contexts: ['all'],
title: this.sanitizeContextMenuTitle(title),
2017-12-05 23:04:30 +01:00
});
}
const canAccessPremium = await this.userService.canAccessPremium();
if (canAccessPremium && (cipher == null || (cipher.login.totp && cipher.login.totp !== ''))) {
await this.contextMenusCreate({
type: 'normal',
id: 'copy-totp_' + idSuffix,
parentId: 'copy-totp',
contexts: ['all'],
title: this.sanitizeContextMenuTitle(title),
});
}
2017-12-05 23:04:30 +01:00
}
private sanitizeContextMenuTitle(title: string): string {
return title.replace(/&/g, '&&');
}
2018-08-01 05:24:11 +02:00
private cleanupNotificationQueue() {
for (let i = this.notificationQueue.length - 1; i >= 0; i--) {
if (this.notificationQueue[i].expires < new Date()) {
this.notificationQueue.splice(i, 1);
}
}
2018-08-01 05:24:11 +02:00
setTimeout(() => this.cleanupNotificationQueue(), 2 * 60 * 1000); // check every 2 minutes
}
2018-08-01 05:24:11 +02:00
private doNotificationQueueCheck(tab: any) {
if (tab == null) {
return;
}
2018-10-14 04:52:49 +02:00
const tabDomain = Utils.getDomain(tab.url);
if (tabDomain == null) {
return;
}
2018-08-01 05:24:11 +02:00
for (let i = 0; i < this.notificationQueue.length; i++) {
if (this.notificationQueue[i].tabId !== tab.id || this.notificationQueue[i].domain !== tabDomain) {
continue;
}
2018-08-01 05:24:11 +02:00
if (this.notificationQueue[i].type === 'addLogin') {
BrowserApi.tabSendMessageData(tab, 'openNotificationBar', {
type: 'add',
});
} else if (this.notificationQueue[i].type === 'changePassword') {
BrowserApi.tabSendMessageData(tab, 'openNotificationBar', {
type: 'change',
});
}
break;
}
}
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();
}
if (override || lastSyncAgo >= syncInternal) {
await this.syncService.fullSync(override);
this.scheduleNextSync();
} else {
this.scheduleNextSync();
}
}
private scheduleNextSync() {
if (this.syncTimeout) {
clearTimeout(this.syncTimeout);
}
this.syncTimeout = setTimeout(async () => await this.fullSync(), 5 * 60 * 1000); // check every 5 minutes
}
// Browser API Helpers
2017-12-05 23:04:30 +01:00
private contextMenusRemoveAll() {
return new Promise((resolve) => {
chrome.contextMenus.removeAll(() => {
2017-12-05 23:04:30 +01:00
resolve();
if (chrome.runtime.lastError) {
return;
}
});
});
}
private contextMenusCreate(options: any) {
return new Promise((resolve) => {
chrome.contextMenus.create(options, () => {
2017-12-05 23:04:30 +01:00
resolve();
if (chrome.runtime.lastError) {
return;
}
});
});
}
private async actionSetIcon(theAction: any, suffix: string): Promise<any> {
2017-12-05 23:04:30 +01:00
if (!theAction || !theAction.setIcon) {
return;
2017-12-05 23:04:30 +01:00
}
const options = {
path: {
19: 'images/icon19' + suffix + '.png',
38: 'images/icon38' + suffix + '.png',
},
};
2018-01-05 22:30:15 +01:00
if (this.platformUtilsService.isFirefox()) {
await theAction.setIcon(options);
} else {
return new Promise((resolve) => {
theAction.setIcon(options, () => resolve());
2017-12-05 23:04:30 +01:00
});
}
2017-12-05 23:04:30 +01:00
}
private actionSetBadgeBackgroundColor(action: any) {
if (action && action.setBadgeBackgroundColor) {
action.setBadgeBackgroundColor({ color: '#294e5f' });
}
}
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
});
}
}
private sidebarActionSetBadgeText(text: string, tabId: number) {
if (!this.sidebarAction) {
return;
}
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 + ']');
}
this.sidebarAction.setTitle({
title: title,
tabId: tabId,
2017-12-05 23:04:30 +01:00
});
}
}
}