lock service logging
This commit is contained in:
parent
43517fc4f6
commit
d1eec27fae
|
@ -1,4 +1,5 @@
|
||||||
using Bit.Core.Abstractions;
|
using Bit.Core.Abstractions;
|
||||||
|
using Bit.Core.Utilities;
|
||||||
using System;
|
using System;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
@ -64,39 +65,53 @@ namespace Bit.Core.Services
|
||||||
|
|
||||||
public async Task CheckLockAsync()
|
public async Task CheckLockAsync()
|
||||||
{
|
{
|
||||||
|
var logService = ServiceContainer.Resolve<ILogService>("logService");
|
||||||
|
logService.Info("CheckLockAsync 1");
|
||||||
if(_platformUtilsService.IsViewOpen())
|
if(_platformUtilsService.IsViewOpen())
|
||||||
{
|
{
|
||||||
|
logService.Info("CheckLockAsync 2");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var authed = await _userService.IsAuthenticatedAsync();
|
var authed = await _userService.IsAuthenticatedAsync();
|
||||||
if(!authed)
|
if(!authed)
|
||||||
{
|
{
|
||||||
|
logService.Info("CheckLockAsync 3");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(await IsLockedAsync())
|
if(await IsLockedAsync())
|
||||||
{
|
{
|
||||||
|
logService.Info("CheckLockAsync 4");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
logService.Info("CheckLockAsync 5");
|
||||||
var lockOption = _platformUtilsService.LockTimeout();
|
var lockOption = _platformUtilsService.LockTimeout();
|
||||||
if(lockOption == null)
|
if(lockOption == null)
|
||||||
{
|
{
|
||||||
|
logService.Info("CheckLockAsync 6");
|
||||||
lockOption = await _storageService.GetAsync<int?>(Constants.LockOptionKey);
|
lockOption = await _storageService.GetAsync<int?>(Constants.LockOptionKey);
|
||||||
}
|
}
|
||||||
|
logService.Info("CheckLockAsync 7");
|
||||||
if(lockOption.GetValueOrDefault(-1) < 0)
|
if(lockOption.GetValueOrDefault(-1) < 0)
|
||||||
{
|
{
|
||||||
|
logService.Info("CheckLockAsync 8");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
logService.Info("CheckLockAsync 9");
|
||||||
var lastActive = await _storageService.GetAsync<DateTime?>(Constants.LastActiveKey);
|
var lastActive = await _storageService.GetAsync<DateTime?>(Constants.LastActiveKey);
|
||||||
if(lastActive == null)
|
if(lastActive == null)
|
||||||
{
|
{
|
||||||
|
logService.Info("CheckLockAsync 10");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
logService.Info("CheckLockAsync 11");
|
||||||
var diff = DateTime.UtcNow - lastActive.Value;
|
var diff = DateTime.UtcNow - lastActive.Value;
|
||||||
if(diff.TotalSeconds >= lockOption.Value)
|
if(diff.TotalSeconds >= lockOption.Value)
|
||||||
{
|
{
|
||||||
|
logService.Info("CheckLockAsync 12");
|
||||||
// need to lock now
|
// need to lock now
|
||||||
await LockAsync(true);
|
await LockAsync(true);
|
||||||
}
|
}
|
||||||
|
logService.Info("CheckLockAsync 13");
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task LockAsync(bool allowSoftLock = false, bool userInitiated = false)
|
public async Task LockAsync(bool allowSoftLock = false, bool userInitiated = false)
|
||||||
|
|
Loading…
Reference in New Issue