Mark van Renswoude
2e6524f3b9
Added unread messages counter to deactivated subscriber tabs Added feature to reply to a new subscriber tab
31 lines
921 B
C#
31 lines
921 B
C#
using LiteDB;
|
|
using LiteDB.Async;
|
|
|
|
namespace PettingZoo.Settings.LiteDB
|
|
{
|
|
public class BaseLiteDBRepository
|
|
{
|
|
private readonly string databaseFilename;
|
|
|
|
|
|
public BaseLiteDBRepository(string databaseName)
|
|
{
|
|
var appDataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
|
|
if (appDataPath == null)
|
|
throw new IOException("Could not resolve application data path");
|
|
|
|
var databasePath = Path.Combine(appDataPath, @"PettingZoo");
|
|
if (!Directory.CreateDirectory(databasePath).Exists)
|
|
throw new IOException($"Failed to create directory: {databasePath}");
|
|
|
|
databaseFilename = Path.Combine(databasePath, $"{databaseName}.litedb");
|
|
}
|
|
|
|
|
|
protected ILiteDatabaseAsync GetDatabase()
|
|
{
|
|
return new LiteDatabaseAsync(databaseFilename);
|
|
}
|
|
}
|
|
}
|