mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
WIP Clean Architecture
Windows 8.1 App Uses keepasslib v2.44 (temporarily)
This commit is contained in:
28
ModernKeePass.Domain.12/AOP/NotifyPropertyChangedBase.cs
Normal file
28
ModernKeePass.Domain.12/AOP/NotifyPropertyChangedBase.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace ModernKeePass.Domain.AOP
|
||||
{
|
||||
public class NotifyPropertyChangedBase : INotifyPropertyChanged
|
||||
{
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
protected void OnPropertyChanged(string propertyName = "")
|
||||
{
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
|
||||
protected bool SetProperty<T>(ref T property, T value, [CallerMemberName] string propertyName = "")
|
||||
{
|
||||
if (EqualityComparer<T>.Default.Equals(property, value))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
property = value;
|
||||
OnPropertyChanged(propertyName);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
9
ModernKeePass.Domain.12/Dtos/Credentials.cs
Normal file
9
ModernKeePass.Domain.12/Dtos/Credentials.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace ModernKeePass.Domain.Dtos
|
||||
{
|
||||
public class Credentials
|
||||
{
|
||||
public string Password { get; set; }
|
||||
public string KeyFilePath { get; set; }
|
||||
// TODO: add Windows Hello
|
||||
}
|
||||
}
|
8
ModernKeePass.Domain.12/Dtos/FileInfo.cs
Normal file
8
ModernKeePass.Domain.12/Dtos/FileInfo.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace ModernKeePass.Domain.Dtos
|
||||
{
|
||||
public class FileInfo
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Path { get; set; }
|
||||
}
|
||||
}
|
16
ModernKeePass.Domain.12/Dtos/PasswordGenerationOptions.cs
Normal file
16
ModernKeePass.Domain.12/Dtos/PasswordGenerationOptions.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace ModernKeePass.Domain.Dtos
|
||||
{
|
||||
public class PasswordGenerationOptions
|
||||
{
|
||||
public int PasswordLength { get; set; }
|
||||
public bool UpperCasePatternSelected { get; set; }
|
||||
public bool LowerCasePatternSelected { get; set; }
|
||||
public bool DigitsPatternSelected { get; set; }
|
||||
public bool SpecialPatternSelected { get; set; }
|
||||
public bool MinusPatternSelected { get; set; }
|
||||
public bool UnderscorePatternSelected { get; set; }
|
||||
public bool SpacePatternSelected { get; set; }
|
||||
public bool BracketsPatternSelected { get; set; }
|
||||
public string CustomChars { get; set; }
|
||||
}
|
||||
}
|
14
ModernKeePass.Domain.12/Entities/BaseEntity.cs
Normal file
14
ModernKeePass.Domain.12/Entities/BaseEntity.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
namespace ModernKeePass.Domain.Entities
|
||||
{
|
||||
public class BaseEntity
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public Color ForegroundColor { get; set; }
|
||||
public Color BackgroundColor { get; set; }
|
||||
public DateTimeOffset LastModificationDate { get; set; }
|
||||
}
|
||||
}
|
9
ModernKeePass.Domain.12/Entities/DatabaseEntity.cs
Normal file
9
ModernKeePass.Domain.12/Entities/DatabaseEntity.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace ModernKeePass.Domain.Entities
|
||||
{
|
||||
public class DatabaseEntity
|
||||
{
|
||||
public string Name { get; set; }
|
||||
|
||||
public GroupEntity RootGroupEntity { get; set; }
|
||||
}
|
||||
}
|
22
ModernKeePass.Domain.12/Entities/EntryEntity.cs
Normal file
22
ModernKeePass.Domain.12/Entities/EntryEntity.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using ModernKeePass.Domain.Enums;
|
||||
|
||||
namespace ModernKeePass.Domain.Entities
|
||||
{
|
||||
public class EntryEntity: BaseEntity
|
||||
{
|
||||
public string UserName { get; set; }
|
||||
public string Password { get; set; }
|
||||
public Uri Url { get; set; }
|
||||
public string Notes { get; set; }
|
||||
public DateTimeOffset ExpirationDate { get; set; }
|
||||
public Color ForegroundColor { get; set; }
|
||||
public Color BackgroundColor { get; set; }
|
||||
public Dictionary<string, string> AdditionalFields { get; set; } = new Dictionary<string, string>();
|
||||
public IEnumerable<EntryEntity> History { get; set; }
|
||||
public Icon Icon { get; set; }
|
||||
public bool HasExpirationDate { get; set; }
|
||||
}
|
||||
}
|
12
ModernKeePass.Domain.12/Entities/GroupEntity.cs
Normal file
12
ModernKeePass.Domain.12/Entities/GroupEntity.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using ModernKeePass.Domain.Enums;
|
||||
|
||||
namespace ModernKeePass.Domain.Entities
|
||||
{
|
||||
public class GroupEntity : BaseEntity
|
||||
{
|
||||
public List<GroupEntity> SubGroups { get; set; } = new List<GroupEntity>();
|
||||
public List<EntryEntity> Entries { get; set; } = new List<EntryEntity>();
|
||||
public Icon Icon { get; set; }
|
||||
}
|
||||
}
|
10
ModernKeePass.Domain.12/Enums/CredentialStatusTypes.cs
Normal file
10
ModernKeePass.Domain.12/Enums/CredentialStatusTypes.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace ModernKeePass.Domain.Enums
|
||||
{
|
||||
public enum CredentialStatusTypes
|
||||
{
|
||||
Normal = 0,
|
||||
Error = 1,
|
||||
Warning = 3,
|
||||
Success = 5
|
||||
}
|
||||
}
|
54
ModernKeePass.Domain.12/Enums/Icon.cs
Normal file
54
ModernKeePass.Domain.12/Enums/Icon.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
namespace ModernKeePass.Domain.Enums
|
||||
{
|
||||
public enum Icon
|
||||
{
|
||||
Delete,
|
||||
Edit,
|
||||
Save,
|
||||
Cancel,
|
||||
Accept,
|
||||
Home,
|
||||
Camera,
|
||||
Setting,
|
||||
Mail,
|
||||
Find,
|
||||
Help,
|
||||
Clock,
|
||||
Crop,
|
||||
World,
|
||||
Flag,
|
||||
PreviewLink,
|
||||
Document,
|
||||
ProtectedDocument,
|
||||
ContactInfo,
|
||||
ViewAll,
|
||||
Rotate,
|
||||
List,
|
||||
Shop,
|
||||
BrowsePhotos,
|
||||
Caption,
|
||||
Repair,
|
||||
Page,
|
||||
Paste,
|
||||
Important,
|
||||
SlideShow,
|
||||
MapDrive,
|
||||
ContactPresence,
|
||||
Contact,
|
||||
Folder,
|
||||
View,
|
||||
Permissions,
|
||||
Map,
|
||||
CellPhone,
|
||||
OutlineStar,
|
||||
Calculator,
|
||||
Library,
|
||||
SyncFolder,
|
||||
GoToStart,
|
||||
ZeroBars,
|
||||
FourBars,
|
||||
Scan,
|
||||
ReportHacked,
|
||||
Stop
|
||||
}
|
||||
}
|
7
ModernKeePass.Domain.12/Enums/ImportFormat.cs
Normal file
7
ModernKeePass.Domain.12/Enums/ImportFormat.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace ModernKeePass.Domain.Enums
|
||||
{
|
||||
public enum ImportFormat
|
||||
{
|
||||
CSV
|
||||
}
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
using System;
|
||||
|
||||
namespace ModernKeePass.Domain.Exceptions
|
||||
{
|
||||
public class DatabaseClosedException: Exception
|
||||
{ }
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
using System;
|
||||
|
||||
namespace ModernKeePass.Domain.Exceptions
|
||||
{
|
||||
public class DatabaseOpenException: Exception
|
||||
{ }
|
||||
}
|
11
ModernKeePass.Domain.12/Exceptions/NavigationException.cs
Normal file
11
ModernKeePass.Domain.12/Exceptions/NavigationException.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace ModernKeePass.Domain.Exceptions
|
||||
{
|
||||
public class NavigationException: Exception
|
||||
{
|
||||
public NavigationException(Type pageType) : base($"Failed to load Page {pageType.FullName}")
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
ModernKeePass.Domain.12/Exceptions/SaveException.cs
Normal file
14
ModernKeePass.Domain.12/Exceptions/SaveException.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace ModernKeePass.Domain.Exceptions
|
||||
{
|
||||
public class SaveException : Exception
|
||||
{
|
||||
public new Exception InnerException { get; }
|
||||
|
||||
public SaveException(Exception exception)
|
||||
{
|
||||
InnerException = exception;
|
||||
}
|
||||
}
|
||||
}
|
11
ModernKeePass.Domain.12/ModernKeePass.Domain.csproj
Normal file
11
ModernKeePass.Domain.12/ModernKeePass.Domain.csproj
Normal file
@@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard1.2</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Splat" Version="3.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
Reference in New Issue
Block a user