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

84 lines
2.9 KiB
TypeScript
Raw Normal View History

2018-01-12 17:09:30 +01:00
import { BrowserApi } from '../browser/browserApi';
import MainBackground from './main.background';
import { PasswordGenerationService } from 'jslib-common/abstractions/passwordGeneration.service';
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
import { VaultTimeoutService } from 'jslib-common/abstractions/vaultTimeout.service';
export default class CommandsBackground {
private isSafari: boolean;
private isVivaldi: boolean;
constructor(private main: MainBackground, private passwordGenerationService: PasswordGenerationService,
private platformUtilsService: PlatformUtilsService, private vaultTimeoutService: VaultTimeoutService) {
this.isSafari = this.platformUtilsService.isSafari();
this.isVivaldi = this.platformUtilsService.isVivaldi();
}
async init() {
if (this.isVivaldi) {
2021-10-19 14:15:15 +02:00
BrowserApi.messageListener('commands.background', async (msg: any, sender: chrome.runtime.MessageSender, sendResponse: any) => {
if (msg.command === 'keyboardShortcutTriggered' && msg.shortcut) {
await this.processCommand(msg.shortcut, sender);
}
});
2020-09-15 16:50:45 +02:00
} else if (chrome && chrome.commands) {
2021-10-19 14:15:15 +02:00
chrome.commands.onCommand.addListener(async (command: string) => {
await this.processCommand(command);
});
}
}
2021-10-19 14:15:15 +02:00
private async processCommand(command: string, sender?: chrome.runtime.MessageSender) {
switch (command) {
case 'generate_password':
await this.generatePasswordToClipboard();
break;
case 'autofill_login':
await this.autoFillLogin(sender ? sender.tab : null);
break;
case 'open_popup':
await this.openPopup();
break;
case 'lock_vault':
await this.vaultTimeoutService.lock(true);
break;
default:
break;
}
}
private async generatePasswordToClipboard() {
const options = (await this.passwordGenerationService.getOptions())[0];
2018-01-09 23:55:28 +01:00
const password = await this.passwordGenerationService.generatePassword(options);
this.platformUtilsService.copyToClipboard(password, { window: window });
this.passwordGenerationService.addHistory(password);
}
2021-10-19 14:15:15 +02:00
private async autoFillLogin(tab?: chrome.tabs.Tab) {
if (await this.vaultTimeoutService.isLocked()) {
return;
}
if (!tab) {
tab = await BrowserApi.getTabFromCurrentWindowId();
}
if (tab == null) {
return;
}
await this.main.collectPageDetailsForContentScript(tab, 'autofill_cmd');
}
private async openPopup() {
// Chrome APIs cannot open popup
2018-01-18 22:17:58 +01:00
if (!this.isSafari) {
return;
}
2018-01-18 22:17:58 +01:00
this.main.openPopup();
}
}