* Used a UUID in HDHomeRun config to allow multiple instances on a same network * tweak some async calls * try to fix line endings --------- Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
92 lines
3.1 KiB
C#
92 lines
3.1 KiB
C#
using System.Globalization;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Interfaces.Repositories;
|
|
using ErsatzTV.Infrastructure.Extensions;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Repositories;
|
|
|
|
public class ConfigElementRepository : IConfigElementRepository
|
|
{
|
|
private readonly IDbContextFactory<TvContext> _dbContextFactory;
|
|
|
|
public ConfigElementRepository(IDbContextFactory<TvContext> dbContextFactory) =>
|
|
_dbContextFactory = dbContextFactory;
|
|
|
|
public async Task<Unit> Upsert<T>(ConfigElementKey configElementKey, T value)
|
|
{
|
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync();
|
|
|
|
Option<ConfigElement> maybeElement = await dbContext.ConfigElements
|
|
.SelectOneAsync(c => c.Key, c => c.Key == configElementKey.Key);
|
|
|
|
await maybeElement.Match(
|
|
async element =>
|
|
{
|
|
element.Value = value.ToString();
|
|
await dbContext.SaveChangesAsync();
|
|
},
|
|
async () =>
|
|
{
|
|
var configElement = new ConfigElement
|
|
{
|
|
Key = configElementKey.Key,
|
|
Value = value.ToString()
|
|
};
|
|
|
|
await dbContext.ConfigElements.AddAsync(configElement);
|
|
await dbContext.SaveChangesAsync();
|
|
});
|
|
|
|
return Unit.Default;
|
|
}
|
|
|
|
public async Task<Option<ConfigElement>> GetConfigElement(ConfigElementKey key)
|
|
{
|
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync();
|
|
return await dbContext.ConfigElements
|
|
.OrderBy(ce => ce.Key)
|
|
.SingleOrDefaultAsync(ce => ce.Key == key.Key)
|
|
.Map(Optional);
|
|
}
|
|
|
|
public Task<Option<T>> GetValue<T>(ConfigElementKey key) =>
|
|
GetConfigElement(key).MapT(
|
|
ce =>
|
|
{
|
|
if (typeof(T).Name == "Guid")
|
|
{
|
|
return (T)Convert.ChangeType(Guid.Parse(ce.Value), typeof(T), CultureInfo.InvariantCulture);
|
|
}
|
|
|
|
if (typeof(T).IsEnum)
|
|
{
|
|
return (T)Enum.Parse(typeof(T), ce.Value);
|
|
}
|
|
|
|
return (T)Convert.ChangeType(ce.Value, typeof(T), CultureInfo.InvariantCulture);
|
|
});
|
|
|
|
public async Task Delete(ConfigElement configElement)
|
|
{
|
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync();
|
|
dbContext.ConfigElements.Remove(configElement);
|
|
await dbContext.SaveChangesAsync();
|
|
}
|
|
|
|
public async Task<Unit> Delete(ConfigElementKey configElementKey)
|
|
{
|
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync();
|
|
Option<ConfigElement> maybeExisting = await dbContext.ConfigElements
|
|
.SelectOneAsync(ce => ce.Key, ce => ce.Key == configElementKey.Key);
|
|
foreach (ConfigElement element in maybeExisting)
|
|
{
|
|
dbContext.ConfigElements.Remove(element);
|
|
}
|
|
|
|
await dbContext.SaveChangesAsync();
|
|
|
|
return Unit.Default;
|
|
}
|
|
}
|