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.
25 lines
763 B
25 lines
763 B
using Newtonsoft.Json;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public interface IProviderIndexerSetting
|
|
{
|
|
TSetting Get<TSetting>(IIndexerBase indexer) where TSetting : IIndexerSetting, new();
|
|
}
|
|
|
|
public class IndexerSettingProvider : IProviderIndexerSetting
|
|
{
|
|
private readonly IIndexerRepository _indexerRepository;
|
|
|
|
public IndexerSettingProvider(IIndexerRepository indexerRepository)
|
|
{
|
|
_indexerRepository = indexerRepository;
|
|
}
|
|
|
|
public TSetting Get<TSetting>(IIndexerBase indexer) where TSetting : IIndexerSetting, new()
|
|
{
|
|
var json = _indexerRepository.Get(indexer.Name).Settings;
|
|
return JsonConvert.DeserializeObject<TSetting>(json);
|
|
}
|
|
}
|
|
} |