Added ISettings interface to allow injection of a specific subset of settings into areas of code. This replaced the old ISettingsProvider method of accessing settings.pull/351/head
parent
a1358014ad
commit
84a5651655
@ -0,0 +1,6 @@
|
||||
namespace Recyclarr.Settings;
|
||||
|
||||
public interface ISettings<out T>
|
||||
{
|
||||
T Value { get; }
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
namespace Recyclarr.Settings;
|
||||
|
||||
public interface ISettingsProvider
|
||||
{
|
||||
SettingsValues Settings { get; }
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
namespace Recyclarr.Settings;
|
||||
|
||||
internal record Settings<T>(T Value) : ISettings<T>;
|
@ -0,0 +1,20 @@
|
||||
using Autofac;
|
||||
|
||||
namespace Recyclarr.Settings;
|
||||
|
||||
internal static class SettingsExtensions
|
||||
{
|
||||
public static void RegisterSettings<TSettings>(
|
||||
this ContainerBuilder builder,
|
||||
Func<RecyclarrSettings, TSettings> settingsSelector)
|
||||
{
|
||||
builder.Register(c =>
|
||||
{
|
||||
var provider = c.Resolve<SettingsProvider>();
|
||||
var settings = settingsSelector(provider.Settings);
|
||||
return new Settings<TSettings>(settings);
|
||||
})
|
||||
.As<ISettings<TSettings>>()
|
||||
.SingleInstance();
|
||||
}
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
using System.IO.Abstractions;
|
||||
using Recyclarr.Common.Extensions;
|
||||
using Recyclarr.Platform;
|
||||
using Recyclarr.Yaml;
|
||||
using YamlDotNet.Core;
|
||||
|
||||
namespace Recyclarr.Settings;
|
||||
|
||||
public class SettingsLoader(IAppPaths paths, IYamlSerializerFactory serializerFactory)
|
||||
{
|
||||
public RecyclarrSettings LoadAndOptionallyCreate()
|
||||
{
|
||||
var yamlPath = paths.AppDataDirectory.YamlFile("settings") ?? CreateDefaultSettingsFile();
|
||||
|
||||
try
|
||||
{
|
||||
using var stream = yamlPath.OpenText();
|
||||
var deserializer = serializerFactory.CreateDeserializer();
|
||||
return deserializer.Deserialize<RecyclarrSettings?>(stream.ReadToEnd()) ?? new RecyclarrSettings();
|
||||
}
|
||||
catch (YamlException e)
|
||||
{
|
||||
e.Data["ContextualMessage"] = SettingsContextualMessages.GetContextualErrorFromException(e);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
private IFileInfo CreateDefaultSettingsFile()
|
||||
{
|
||||
const string fileData =
|
||||
"""
|
||||
# yaml-language-server: $schema=https://raw.githubusercontent.com/recyclarr/recyclarr/master/schemas/settings-schema.json
|
||||
|
||||
# Edit this file to customize the behavior of Recyclarr beyond its defaults
|
||||
# For the settings file reference guide, visit the link to the wiki below:
|
||||
# https://recyclarr.dev/wiki/yaml/settings-reference/
|
||||
""";
|
||||
|
||||
var settingsFile = paths.AppDataDirectory.File("settings.yml");
|
||||
settingsFile.CreateParentDirectory();
|
||||
using var stream = settingsFile.CreateText();
|
||||
stream.Write(fileData);
|
||||
return settingsFile;
|
||||
}
|
||||
}
|
@ -1,56 +1,7 @@
|
||||
using System.IO.Abstractions;
|
||||
using Recyclarr.Common.Extensions;
|
||||
using Recyclarr.Platform;
|
||||
using Recyclarr.Yaml;
|
||||
using YamlDotNet.Core;
|
||||
|
||||
namespace Recyclarr.Settings;
|
||||
|
||||
public class SettingsProvider : ISettingsProvider
|
||||
internal class SettingsProvider(SettingsLoader loader)
|
||||
{
|
||||
private readonly IAppPaths _paths;
|
||||
private readonly Lazy<SettingsValues> _settings;
|
||||
|
||||
public SettingsValues Settings => _settings.Value;
|
||||
|
||||
public SettingsProvider(IAppPaths paths, IYamlSerializerFactory serializerFactory)
|
||||
{
|
||||
_paths = paths;
|
||||
_settings = new Lazy<SettingsValues>(() => LoadOrCreateSettingsFile(serializerFactory));
|
||||
}
|
||||
|
||||
private SettingsValues LoadOrCreateSettingsFile(IYamlSerializerFactory serializerFactory)
|
||||
{
|
||||
var yamlPath = _paths.AppDataDirectory.YamlFile("settings") ?? CreateDefaultSettingsFile();
|
||||
|
||||
try
|
||||
{
|
||||
using var stream = yamlPath.OpenText();
|
||||
var deserializer = serializerFactory.CreateDeserializer();
|
||||
return deserializer.Deserialize<SettingsValues?>(stream.ReadToEnd()) ?? new SettingsValues();
|
||||
}
|
||||
catch (YamlException e)
|
||||
{
|
||||
e.Data["ContextualMessage"] = SettingsContextualMessages.GetContextualErrorFromException(e);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
private IFileInfo CreateDefaultSettingsFile()
|
||||
{
|
||||
const string fileData =
|
||||
"""
|
||||
# yaml-language-server: $schema=https://raw.githubusercontent.com/recyclarr/recyclarr/master/schemas/settings-schema.json
|
||||
|
||||
# Edit this file to customize the behavior of Recyclarr beyond its defaults
|
||||
# For the settings file reference guide, visit the link to the wiki below:
|
||||
# https://recyclarr.dev/wiki/yaml/settings-reference/
|
||||
""";
|
||||
|
||||
var settingsFile = _paths.AppDataDirectory.File("settings.yml");
|
||||
settingsFile.CreateParentDirectory();
|
||||
using var stream = settingsFile.CreateText();
|
||||
stream.Write(fileData);
|
||||
return settingsFile;
|
||||
}
|
||||
private readonly Lazy<RecyclarrSettings> _settings = new(loader.LoadAndOptionallyCreate);
|
||||
public RecyclarrSettings Settings => _settings.Value;
|
||||
}
|
||||
|
Loading…
Reference in new issue