2020-10-16 11:09:49 +02:00
|
|
|
import { CryptoService, LogService, VaultTimeoutService } from 'jslib/abstractions';
|
2020-10-12 18:01:34 +02:00
|
|
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
|
|
|
import { ConstantsService } from 'jslib/services';
|
2020-10-11 20:45:25 +02:00
|
|
|
import { BrowserApi } from '../browser/browserApi';
|
2020-10-12 18:01:34 +02:00
|
|
|
import RuntimeBackground from './runtime.background';
|
2020-10-09 17:16:15 +02:00
|
|
|
|
2020-10-16 11:09:49 +02:00
|
|
|
const MessageValidTimeout = 10 * 1000;
|
|
|
|
|
2020-10-09 17:16:15 +02:00
|
|
|
export class NativeMessagingBackground {
|
|
|
|
private connected = false;
|
|
|
|
private port: browser.runtime.Port | chrome.runtime.Port;
|
|
|
|
|
|
|
|
private resolver: any = null;
|
|
|
|
|
2020-10-12 18:01:34 +02:00
|
|
|
constructor(private storageService: StorageService, private cryptoService: CryptoService,
|
|
|
|
private vaultTimeoutService: VaultTimeoutService, private runtimeBackground: RuntimeBackground) {}
|
|
|
|
|
2020-10-09 17:16:15 +02:00
|
|
|
connect() {
|
2020-10-11 20:45:25 +02:00
|
|
|
this.port = BrowserApi.connectNative('com.8bit.bitwarden');
|
2020-10-09 17:16:15 +02:00
|
|
|
|
|
|
|
this.connected = true;
|
2020-10-12 18:01:34 +02:00
|
|
|
|
|
|
|
this.port.onMessage.addListener((msg) => this.onMessage(msg));
|
2020-10-16 11:09:49 +02:00
|
|
|
|
2020-10-09 17:16:15 +02:00
|
|
|
this.port.onDisconnect.addListener(() => {
|
|
|
|
this.connected = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-10-12 21:18:47 +02:00
|
|
|
async send(message: any) {
|
2020-10-09 17:16:15 +02:00
|
|
|
// If not connected, try to connect
|
|
|
|
if (!this.connected) {
|
|
|
|
this.connect();
|
|
|
|
}
|
|
|
|
|
2020-10-12 21:18:47 +02:00
|
|
|
message.timestamp = Date.now();
|
|
|
|
|
|
|
|
const encrypted = await this.cryptoService.encrypt(JSON.stringify(message));
|
|
|
|
this.port.postMessage(encrypted);
|
2020-10-09 17:16:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
await(): Promise<any> {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
this.resolver = resolve;
|
|
|
|
});
|
|
|
|
}
|
2020-10-12 18:01:34 +02:00
|
|
|
|
2020-10-12 21:18:47 +02:00
|
|
|
private async onMessage(rawMessage: any) {
|
|
|
|
const message = JSON.parse(await this.cryptoService.decryptToUtf8(rawMessage));
|
|
|
|
|
2020-10-16 11:09:49 +02:00
|
|
|
if (Math.abs(message.timestamp - Date.now()) > MessageValidTimeout) {
|
|
|
|
// tslint:disable-next-line
|
|
|
|
console.error('NativeMessage is to old, ignoring.');
|
2020-10-12 21:18:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-16 11:09:49 +02:00
|
|
|
switch (message.command) {
|
2020-10-12 18:01:34 +02:00
|
|
|
case 'biometricUnlock': {
|
|
|
|
await this.storageService.remove(ConstantsService.biometricAwaitingAcceptance);
|
|
|
|
|
|
|
|
const enabled = await this.storageService.get(ConstantsService.biometricUnlockKey);
|
|
|
|
if (enabled === null || enabled === false) {
|
2020-10-12 21:18:47 +02:00
|
|
|
if (message.response === 'unlocked') {
|
2020-10-12 18:01:34 +02:00
|
|
|
await this.storageService.save(ConstantsService.biometricUnlockKey, true);
|
|
|
|
}
|
2020-10-16 11:09:49 +02:00
|
|
|
|
2020-10-12 18:01:34 +02:00
|
|
|
await this.cryptoService.toggleKey();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.vaultTimeoutService.biometricLocked) {
|
|
|
|
this.runtimeBackground.processMessage({command: 'unlocked'}, null, null);
|
|
|
|
this.vaultTimeoutService.biometricLocked = false;
|
|
|
|
}
|
|
|
|
}
|
2020-10-16 11:09:49 +02:00
|
|
|
default:
|
|
|
|
// tslint:disable-next-line
|
|
|
|
console.error('NativeMessage, got unknown command.');
|
2020-10-12 18:01:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.resolver) {
|
2020-10-12 21:18:47 +02:00
|
|
|
this.resolver(message);
|
2020-10-12 18:01:34 +02:00
|
|
|
}
|
|
|
|
}
|
2020-10-09 17:16:15 +02:00
|
|
|
}
|