1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

system idle locking

This commit is contained in:
Kyle Spearrin
2018-02-11 00:09:47 -05:00
parent 132c59f8fc
commit 1ef0d7a9a9
4 changed files with 34 additions and 5 deletions

View File

@@ -5,20 +5,47 @@ import { ConstantsService } from 'jslib/services/constants.service';
import { MessagingService } from 'jslib/abstractions/messaging.service';
import { StorageService } from 'jslib/abstractions/storage.service';
// tslint:disable-next-line
const desktopIdle = require('desktop-idle');
const IdleLockSeconds = 5 * 60; // 5 minutes
const IdleCheckInterval = 30 * 1000; // 30 seconds
export class PowerMonitorMain {
private idle: boolean = false;
constructor(private storageService: StorageService, private messagingService: MessagingService) { }
init() {
// System sleep
powerMonitor.on('suspend', async () => {
const lockOption = await this.storageService.get<number>(ConstantsService.lockOptionKey);
const lockOption = await this.getLockOption();
if (lockOption === -3) {
this.messagingService.send('lockVault');
}
});
// TODO: System idle
// System idle
global.setInterval(async () => {
const idleSeconds: number = desktopIdle.getIdleTime();
const idle = idleSeconds >= IdleLockSeconds;
if (idle) {
if (this.idle) {
return;
}
const lockOption = await this.getLockOption();
if (lockOption === -4) {
this.messagingService.send('lockVault');
}
}
this.idle = idle;
}, IdleCheckInterval);
// TODO: System locked
}
private async getLockOption(): Promise<number> {
return await this.storageService.get<number>(ConstantsService.lockOptionKey);
}
}