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

117 lines
4.5 KiB
TypeScript
Raw Normal View History

2018-01-12 17:09:30 +01:00
import { BrowserApi } from '../browser/browserApi';
2017-12-07 22:02:15 +01:00
import MainBackground from './main.background';
2018-01-26 16:48:32 +01:00
import { Analytics } from 'jslib/misc';
import { CipherService } from 'jslib/abstractions/cipher.service';
import { EventService } from 'jslib/abstractions/event.service';
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2020-03-03 16:42:49 +01:00
import { TotpService } from 'jslib/abstractions/totp.service';
import { VaultTimeoutService } from 'jslib/abstractions/vaultTimeout.service';
2020-03-03 16:42:49 +01:00
import { EventType } from 'jslib/enums/eventType';
2017-12-07 22:02:15 +01:00
export default class ContextMenusBackground {
private contextMenus: any;
constructor(private main: MainBackground, private cipherService: CipherService,
2018-04-23 19:04:11 +02:00
private passwordGenerationService: PasswordGenerationService, private analytics: Analytics,
private platformUtilsService: PlatformUtilsService, private vaultTimeoutService: VaultTimeoutService,
private eventService: EventService, private totpService: TotpService) {
2017-12-07 22:02:15 +01:00
this.contextMenus = chrome.contextMenus;
}
async init() {
if (!this.contextMenus) {
return;
}
this.contextMenus.onClicked.addListener(async (info: any, tab: any) => {
if (info.menuItemId === 'generate-password') {
await this.generatePasswordToClipboard();
} else if (info.parentMenuItemId === 'autofill' ||
2020-03-03 16:42:49 +01:00
info.parentMenuItemId === 'copy-username' ||
info.parentMenuItemId === 'copy-password' ||
info.parentMenuItemId === 'copy-totp') {
2017-12-07 22:02:15 +01:00
await this.cipherAction(info);
}
});
}
private async generatePasswordToClipboard() {
const options = (await this.passwordGenerationService.getOptions())[0];
2018-04-23 19:04:11 +02:00
const password = await this.passwordGenerationService.generatePassword(options);
this.platformUtilsService.copyToClipboard(password, { window: window });
2017-12-07 22:02:15 +01:00
this.passwordGenerationService.addHistory(password);
2018-01-19 22:19:24 +01:00
this.analytics.ga('send', {
2017-12-07 22:02:15 +01:00
hitType: 'event',
eventAction: 'Generated Password From Context Menu',
});
}
private async cipherAction(info: any) {
const id = info.menuItemId.split('_')[1];
if (id === 'noop') {
if (chrome.browserAction && chrome.browserAction.openPopup) {
chrome.browserAction.openPopup();
}
return;
}
if (await this.vaultTimeoutService.isLocked()) {
return;
}
2017-12-07 22:02:15 +01:00
const ciphers = await this.cipherService.getAllDecrypted();
const cipher = ciphers.find((c) => c.id === id);
if (cipher == null) {
return;
}
2017-12-07 22:02:15 +01:00
if (info.parentMenuItemId === 'autofill') {
this.analytics.ga('send', {
hitType: 'event',
eventAction: 'Autofilled From Context Menu',
});
await this.startAutofillPage(cipher);
} else if (info.parentMenuItemId === 'copy-username') {
this.analytics.ga('send', {
hitType: 'event',
eventAction: 'Copied Username From Context Menu',
});
this.platformUtilsService.copyToClipboard(cipher.login.username, { window: window });
} else if (info.parentMenuItemId === 'copy-password') {
this.analytics.ga('send', {
hitType: 'event',
eventAction: 'Copied Password From Context Menu',
});
this.platformUtilsService.copyToClipboard(cipher.login.password, { window: window });
this.eventService.collect(EventType.Cipher_ClientCopiedPassword, cipher.id);
} else if (info.parentMenuItemId === 'copy-totp') {
this.analytics.ga('send', {
hitType: 'event',
eventAction: 'Copied Totp From Context Menu',
});
const totpValue = await this.totpService.getCode(cipher.login.totp);
this.platformUtilsService.copyToClipboard(totpValue, { window: window });
2017-12-07 22:02:15 +01:00
}
}
private async startAutofillPage(cipher: any) {
this.main.loginToAutoFill = cipher;
const tab = await BrowserApi.getTabFromCurrentWindow();
if (tab == null) {
return;
}
BrowserApi.tabSendMessage(tab, {
2017-12-07 22:02:15 +01:00
command: 'collectPageDetails',
tab: tab,
sender: 'contextMenu',
});
}
}