You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.TrashLib/Config/Parsing/ConfigurationLoader.cs

97 lines
3.1 KiB

using System.IO.Abstractions;
using AutoMapper;
using Recyclarr.TrashLib.Config.Parsing.PostProcessing;
using Recyclarr.TrashLib.Config.Services;
namespace Recyclarr.TrashLib.Config.Parsing;
public class ConfigurationLoader : IConfigurationLoader
{
private readonly ConfigParser _parser;
private readonly IMapper _mapper;
private readonly ConfigValidationExecutor _validator;
private readonly IEnumerable<IConfigPostProcessor> _postProcessors;
public ConfigurationLoader(
ConfigParser parser,
IMapper mapper,
ConfigValidationExecutor validator,
IEnumerable<IConfigPostProcessor> postProcessors)
{
_parser = parser;
_mapper = mapper;
_validator = validator;
_postProcessors = postProcessors;
}
public ICollection<IServiceConfiguration> LoadMany(
IEnumerable<IFileInfo> configFiles,
SupportedServices? desiredServiceType = null)
{
return configFiles
.SelectMany(x => Load(x, desiredServiceType))
.ToList();
}
public IReadOnlyCollection<IServiceConfiguration> Load(IFileInfo file, SupportedServices? desiredServiceType = null)
{
return ProcessLoadedConfigs(_parser.Load(file), desiredServiceType);
}
public IReadOnlyCollection<IServiceConfiguration> Load(string yaml, SupportedServices? desiredServiceType = null)
{
return ProcessLoadedConfigs(_parser.Load(yaml), desiredServiceType);
}
public IReadOnlyCollection<IServiceConfiguration> Load(
Func<TextReader> streamFactory,
SupportedServices? desiredServiceType = null)
{
return ProcessLoadedConfigs(_parser.Load(streamFactory), desiredServiceType);
}
private IReadOnlyCollection<IServiceConfiguration> ProcessLoadedConfigs(
RootConfigYaml? config,
SupportedServices? desiredServiceType)
{
if (config is null)
{
return Array.Empty<IServiceConfiguration>();
}
config = _postProcessors.Aggregate(config, (current, processor) => processor.Process(current));
if (!_validator.Validate(config))
{
return Array.Empty<IServiceConfiguration>();
}
var convertedConfigs = new List<IServiceConfiguration>();
if (desiredServiceType is null or SupportedServices.Radarr)
{
convertedConfigs.AddRange(MapConfigs<RadarrConfigYaml, RadarrConfiguration>(config.Radarr));
}
if (desiredServiceType is null or SupportedServices.Sonarr)
{
convertedConfigs.AddRange(MapConfigs<SonarrConfigYaml, SonarrConfiguration>(config.Sonarr));
}
return convertedConfigs;
}
private IEnumerable<IServiceConfiguration> MapConfigs<TConfigYaml, TServiceConfig>(
IReadOnlyDictionary<string, TConfigYaml>? configs)
where TServiceConfig : ServiceConfiguration
where TConfigYaml : ServiceConfigYaml
{
if (configs is null)
{
return Array.Empty<IServiceConfiguration>();
}
return configs.Select(x => _mapper.Map<TServiceConfig>(x.Value) with {InstanceName = x.Key});
}
}