mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00

First-time open of app correctly shows Welcome page New Home button in group and entry pages
176 lines
5.5 KiB
C#
176 lines
5.5 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Windows.Storage;
|
|
using Windows.UI.Xaml;
|
|
using ModernKeePass.Common;
|
|
using ModernKeePass.Interfaces;
|
|
using ModernKeePass.Services;
|
|
using ModernKeePassLib.Cryptography;
|
|
using ModernKeePassLib.Keys;
|
|
using ModernKeePassLib.Serialization;
|
|
|
|
namespace ModernKeePass.ViewModels
|
|
{
|
|
public class CompositeKeyVm: NotifyPropertyChangedBase
|
|
{
|
|
public enum StatusTypes
|
|
{
|
|
Normal = 0,
|
|
Error = 1,
|
|
Warning = 3,
|
|
Success = 5
|
|
}
|
|
|
|
public IDatabase Database { get; set; }
|
|
|
|
public bool HasPassword
|
|
{
|
|
get { return _hasPassword; }
|
|
set
|
|
{
|
|
SetProperty(ref _hasPassword, value);
|
|
OnPropertyChanged("IsValid");
|
|
}
|
|
}
|
|
|
|
public bool HasKeyFile
|
|
{
|
|
get { return _hasKeyFile; }
|
|
set
|
|
{
|
|
SetProperty(ref _hasKeyFile, value);
|
|
OnPropertyChanged("IsValid");
|
|
}
|
|
}
|
|
|
|
public bool IsValid => !_isOpening && (HasPassword || HasKeyFile && KeyFile != null);
|
|
|
|
public string Status
|
|
{
|
|
get { return _status; }
|
|
set { SetProperty(ref _status, value); }
|
|
}
|
|
|
|
public int StatusType
|
|
{
|
|
get { return (int)_statusType; }
|
|
set { SetProperty(ref _statusType, (StatusTypes)value); }
|
|
}
|
|
|
|
public string Password
|
|
{
|
|
get { return _password; }
|
|
set
|
|
{
|
|
_password = value;
|
|
OnPropertyChanged("PasswordComplexityIndicator");
|
|
StatusType = (int)StatusTypes.Normal;
|
|
Status = string.Empty;
|
|
}
|
|
}
|
|
|
|
public StorageFile KeyFile
|
|
{
|
|
get { return _keyFile; }
|
|
set
|
|
{
|
|
_keyFile = value;
|
|
KeyFileText = value?.Name;
|
|
OnPropertyChanged("IsValid");
|
|
}
|
|
}
|
|
|
|
public string KeyFileText
|
|
{
|
|
get { return _keyFileText; }
|
|
set { SetProperty(ref _keyFileText, value); }
|
|
}
|
|
|
|
public GroupVm RootGroup { get; set; }
|
|
|
|
public double PasswordComplexityIndicator => QualityEstimation.EstimatePasswordBits(Password?.ToCharArray());
|
|
|
|
private bool _hasPassword;
|
|
private bool _hasKeyFile;
|
|
private bool _isOpening;
|
|
private string _password = string.Empty;
|
|
private string _status;
|
|
private StatusTypes _statusType;
|
|
private StorageFile _keyFile;
|
|
private string _keyFileText;
|
|
private readonly IResource _resource;
|
|
|
|
public CompositeKeyVm() : this((Application.Current as App)?.Database, new ResourcesService()) { }
|
|
|
|
public CompositeKeyVm(IDatabase database, IResource resource)
|
|
{
|
|
_resource = resource;
|
|
_keyFileText = _resource.GetResourceValue("CompositeKeyDefaultKeyFile");
|
|
Database = database;
|
|
}
|
|
|
|
public async Task<bool> OpenDatabase(bool createNew)
|
|
{
|
|
var error = string.Empty;
|
|
try
|
|
{
|
|
_isOpening = true;
|
|
Database.Open(CreateCompositeKey(), createNew);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
error = $"{_resource.GetResourceValue("CompositeKeyErrorOpen")}: {e.Message}";
|
|
}
|
|
finally
|
|
{
|
|
_isOpening = false;
|
|
}
|
|
switch ((DatabaseService.DatabaseStatus)Database.Status)
|
|
{
|
|
case DatabaseService.DatabaseStatus.Opened:
|
|
await Task.Run(() => RootGroup = Database.RootGroup);
|
|
return true;
|
|
case DatabaseService.DatabaseStatus.CompositeKeyError:
|
|
var errorMessage = new StringBuilder(_resource.GetResourceValue("CompositeKeyErrorUserStart"));
|
|
if (HasPassword) errorMessage.Append(_resource.GetResourceValue("CompositeKeyErrorUserPassword"));
|
|
if (HasPassword && HasKeyFile) errorMessage.Append(_resource.GetResourceValue("CompositeKeyErrorUserOr"));
|
|
if (HasKeyFile) errorMessage.Append(_resource.GetResourceValue("CompositeKeyErrorUserKeyFile"));
|
|
UpdateStatus(errorMessage.ToString(), StatusTypes.Error);
|
|
break;
|
|
case DatabaseService.DatabaseStatus.Error:
|
|
UpdateStatus(error, StatusTypes.Error);
|
|
break;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public void UpdateKey()
|
|
{
|
|
Database.UpdateCompositeKey(CreateCompositeKey());
|
|
UpdateStatus(_resource.GetResourceValue("CompositeKeyUpdated"), StatusTypes.Success);
|
|
}
|
|
|
|
public void CreateKeyFile(StorageFile file)
|
|
{
|
|
// TODO: implement entropy generator
|
|
KcpKeyFile.Create(file, null);
|
|
KeyFile = file;
|
|
}
|
|
|
|
private void UpdateStatus(string text, StatusTypes type)
|
|
{
|
|
Status = text;
|
|
StatusType = (int)type;
|
|
}
|
|
|
|
private CompositeKey CreateCompositeKey()
|
|
{
|
|
var compositeKey = new CompositeKey();
|
|
if (HasPassword) compositeKey.AddUserKey(new KcpPassword(Password));
|
|
if (HasKeyFile && KeyFile != null) compositeKey.AddUserKey(new KcpKeyFile(IOConnectionInfo.FromFile(KeyFile)));
|
|
return compositeKey;
|
|
}
|
|
}
|
|
}
|