Minor cleanup
This commit is contained in:
parent
a77cca82c8
commit
41134aee98
|
@ -1,9 +1,11 @@
|
||||||
import { CryptoService, VaultTimeoutService } from 'jslib/abstractions';
|
import { CryptoService, LogService, VaultTimeoutService } from 'jslib/abstractions';
|
||||||
import { StorageService } from 'jslib/abstractions/storage.service';
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
import { ConstantsService } from 'jslib/services';
|
import { ConstantsService } from 'jslib/services';
|
||||||
import { BrowserApi } from '../browser/browserApi';
|
import { BrowserApi } from '../browser/browserApi';
|
||||||
import RuntimeBackground from './runtime.background';
|
import RuntimeBackground from './runtime.background';
|
||||||
|
|
||||||
|
const MessageValidTimeout = 10 * 1000;
|
||||||
|
|
||||||
export class NativeMessagingBackground {
|
export class NativeMessagingBackground {
|
||||||
private connected = false;
|
private connected = false;
|
||||||
private port: browser.runtime.Port | chrome.runtime.Port;
|
private port: browser.runtime.Port | chrome.runtime.Port;
|
||||||
|
@ -46,8 +48,9 @@ export class NativeMessagingBackground {
|
||||||
private async onMessage(rawMessage: any) {
|
private async onMessage(rawMessage: any) {
|
||||||
const message = JSON.parse(await this.cryptoService.decryptToUtf8(rawMessage));
|
const message = JSON.parse(await this.cryptoService.decryptToUtf8(rawMessage));
|
||||||
|
|
||||||
if (Math.abs(message.timestamp - Date.now()) > 10*1000) {
|
if (Math.abs(message.timestamp - Date.now()) > MessageValidTimeout) {
|
||||||
console.error("MESSAGE IS TO OLD");
|
// tslint:disable-next-line
|
||||||
|
console.error('NativeMessage is to old, ignoring.');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,6 +72,9 @@ export class NativeMessagingBackground {
|
||||||
this.vaultTimeoutService.biometricLocked = false;
|
this.vaultTimeoutService.biometricLocked = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
default:
|
||||||
|
// tslint:disable-next-line
|
||||||
|
console.error('NativeMessage, got unknown command.');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.resolver) {
|
if (this.resolver) {
|
||||||
|
|
Loading…
Reference in New Issue