Radarr/NzbDrone.Core/Configuration/ConfigService.cs

361 lines
9.9 KiB
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
2010-10-05 06:21:18 +00:00
using NLog;
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Configuration.Events;
2013-04-07 22:40:13 +00:00
using NzbDrone.Core.Download;
2013-03-05 05:33:34 +00:00
using NzbDrone.Core.Download.Clients.Nzbget;
using NzbDrone.Core.Download.Clients.Sabnzbd;
2010-09-23 03:19:47 +00:00
2013-02-24 06:48:52 +00:00
namespace NzbDrone.Core.Configuration
2010-09-23 03:19:47 +00:00
{
public enum ConfigKey
{
DownloadedEpisodesFolder
}
2013-02-24 06:48:52 +00:00
public class ConfigService : IConfigService
2010-09-23 03:19:47 +00:00
{
2013-02-24 06:48:52 +00:00
private readonly IConfigRepository _repository;
private readonly IMessageAggregator _messageAggregator;
2013-02-24 06:48:52 +00:00
private readonly Logger _logger;
private static Dictionary<string, string> _cache;
public ConfigService(IConfigRepository repository, IMessageAggregator messageAggregator, Logger logger)
2010-09-23 03:19:47 +00:00
{
2013-02-24 06:48:52 +00:00
_repository = repository;
_messageAggregator = messageAggregator;
2013-02-24 06:48:52 +00:00
_logger = logger;
_cache = new Dictionary<string, string>();
2010-09-23 03:19:47 +00:00
}
public IEnumerable<Config> All()
2010-09-23 03:19:47 +00:00
{
2013-02-24 06:48:52 +00:00
return _repository.All();
}
2010-09-24 05:21:45 +00:00
public Dictionary<String, Object> AllWithDefaults()
{
2013-03-06 18:41:13 +00:00
var dict = new Dictionary<String, Object>(StringComparer.InvariantCultureIgnoreCase);
var type = GetType();
var properties = type.GetProperties();
foreach (var propertyInfo in properties)
{
var value = propertyInfo.GetValue(this, null);
dict.Add(propertyInfo.Name, value);
}
return dict;
}
public void SaveValues(Dictionary<string, object> configValues)
{
var allWithDefaults = AllWithDefaults();
foreach (var configValue in configValues)
{
object currentValue;
allWithDefaults.TryGetValue(configValue.Key, out currentValue);
if (currentValue == null) continue;
var equal = configValue.Value.ToString().Equals(currentValue.ToString());
if (!equal)
SetValue(configValue.Key, configValue.Value.ToString());
}
_messageAggregator.PublishEvent(new ConfigSavedEvent());
}
public String SabHost
{
2011-06-17 02:27:10 +00:00
get { return GetValue("SabHost", "localhost"); }
set { SetValue("SabHost", value); }
}
public int SabPort
{
get { return GetValueInt("SabPort", 8080); }
set { SetValue("SabPort", value); }
}
public String SabApiKey
{
get { return GetValue("SabApiKey"); }
set { SetValue("SabApiKey", value); }
}
public String SabUsername
{
get { return GetValue("SabUsername"); }
set { SetValue("SabUsername", value); }
}
public String SabPassword
{
get { return GetValue("SabPassword"); }
set { SetValue("SabPassword", value); }
}
public String SabTvCategory
{
get { return GetValue("SabTvCategory", "tv"); }
set { SetValue("SabTvCategory", value); }
}
public SabPriorityType SabRecentTvPriority
{
2013-05-14 05:22:51 +00:00
get { return GetValueEnum("SabRecentTvPriority", SabPriorityType.Default); }
2013-05-14 05:22:51 +00:00
set { SetValue("SabRecentTvPriority", value); }
}
public SabPriorityType SabOlderTvPriority
{
get { return GetValueEnum("SabOlderTvPriority", SabPriorityType.Default); }
set { SetValue("SabOlderTvPriority", value); }
}
2013-05-15 02:57:57 +00:00
public String DownloadedEpisodesFolder
{
get { return GetValue(ConfigKey.DownloadedEpisodesFolder.ToString()); }
set { SetValue(ConfigKey.DownloadedEpisodesFolder.ToString(), value); }
}
public bool UseSeasonFolder
{
2011-07-08 03:36:02 +00:00
get { return GetValueBoolean("UseSeasonFolder", true); }
2011-07-08 03:36:02 +00:00
set { SetValue("UseSeasonFolder", value); }
}
2013-07-05 03:26:07 +00:00
public string SeasonFolderFormat
{
get { return GetValue("SeasonFolderFormat", "Season %s"); }
set { SetValue("SeasonFolderFormat", value); }
}
public bool AutoUnmonitorPreviouslyDownloadedEpisodes
{
get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedEpisodes"); }
set { SetValue("AutoUnmonitorPreviouslyDownloadedEpisodes", value); }
}
public int Retention
{
get { return GetValueInt("Retention", 0); }
set { SetValue("Retention", value); }
}
public DownloadClientType DownloadClient
{
get { return GetValueEnum("DownloadClient", DownloadClientType.Sabnzbd); }
2013-05-14 05:22:51 +00:00
set { SetValue("DownloadClient", value); }
}
2013-05-30 15:29:43 +00:00
public string BlackholeFolder
{
get { return GetValue("BlackholeFolder", String.Empty); }
set { SetValue("BlackholeFolder", value); }
}
public string ServiceRootUrl
2012-02-04 05:28:50 +00:00
{
get { return "http://services.nzbdrone.com"; }
}
2013-05-30 15:29:43 +00:00
public string PneumaticFolder
2012-08-30 00:20:48 +00:00
{
get { return GetValue("PneumaticFolder", String.Empty); }
set { SetValue("PneumaticFolder", value); }
2012-08-30 00:20:48 +00:00
}
public string RecycleBin
{
get { return GetValue("RecycleBin", String.Empty); }
set { SetValue("RecycleBin", value); }
}
public String NzbgetUsername
{
get { return GetValue("NzbgetUsername", "nzbget"); }
set { SetValue("NzbgetUsername", value); }
}
public String NzbgetPassword
{
get { return GetValue("NzbgetPassword", ""); }
set { SetValue("NzbgetPassword", value); }
}
public String NzbgetHost
{
2013-01-24 07:31:41 +00:00
get { return GetValue("NzbgetHost", "localhost"); }
set { SetValue("NzbgetHost", value); }
}
public Int32 NzbgetPort
{
get { return GetValueInt("NzbgetPort", 6789); }
set { SetValue("NzbgetPort", value); }
}
public String NzbgetTvCategory
{
get { return GetValue("NzbgetTvCategory", "nzbget"); }
set { SetValue("NzbgetTvCategory", value); }
}
public PriorityType NzbgetRecentTvPriority
{
2013-05-14 05:22:51 +00:00
get { return GetValueEnum("NzbgetRecentTvPriority", PriorityType.Normal); }
2013-05-14 05:22:51 +00:00
set { SetValue("NzbgetRecentTvPriority", value); }
}
public PriorityType NzbgetOlderTvPriority
{
get { return GetValueEnum("NzbgetOlderTvPriority", PriorityType.Normal); }
set { SetValue("NzbgetOlderTvPriority", value); }
}
public string ReleaseRestrictions
2013-03-18 15:25:36 +00:00
{
get { return GetValue("ReleaseRestrictions", String.Empty); }
set { SetValue("ReleaseRestrictions", value); }
2013-04-17 03:52:43 +00:00
}
public Int32 RssSyncInterval
{
get { return GetValueInt("RssSyncInterval", 15); }
set { SetValue("RssSyncInterval", value); }
}
public Boolean AutoDownloadPropers
{
get { return GetValueBoolean("AutoDownloadPropers", true); }
set { SetValue("AutoDownloadPropers", value); }
}
private string GetValue(string key)
{
2011-06-17 02:27:10 +00:00
return GetValue(key, String.Empty);
2010-09-23 03:19:47 +00:00
}
private bool GetValueBoolean(string key, bool defaultValue = false)
{
2011-06-17 02:27:10 +00:00
return Convert.ToBoolean(GetValue(key, defaultValue));
}
private int GetValueInt(string key, int defaultValue = 0)
{
2012-12-31 21:09:43 +00:00
return Convert.ToInt32(GetValue(key, defaultValue));
}
2013-05-14 05:22:51 +00:00
public T GetValueEnum<T>(string key, T defaultValue)
{
return (T)Enum.Parse(typeof(T), GetValue(key, defaultValue), true);
}
public string GetValue(string key, object defaultValue, bool persist = false)
2010-09-23 03:19:47 +00:00
{
EnsureCache();
2013-03-06 18:41:13 +00:00
key = key.ToLowerInvariant();
string dbValue;
2010-09-23 03:19:47 +00:00
2013-02-24 06:48:52 +00:00
if (_cache.TryGetValue(key, out dbValue) && dbValue != null && !String.IsNullOrEmpty(dbValue))
return dbValue;
2010-09-23 03:19:47 +00:00
2013-02-24 06:48:52 +00:00
_logger.Trace("Unable to find config key '{0}' defaultValue:'{1}'", key, defaultValue);
2012-01-25 03:09:49 +00:00
if (persist)
2013-02-24 06:48:52 +00:00
{
2012-01-25 03:09:49 +00:00
SetValue(key, defaultValue.ToString());
2013-02-24 06:48:52 +00:00
}
return defaultValue.ToString();
2010-09-23 03:19:47 +00:00
}
private void SetValue(string key, Boolean value)
{
SetValue(key, value.ToString());
}
private void SetValue(string key, int value)
{
SetValue(key, value.ToString());
}
public void SetValue(string key, string value)
2010-09-23 03:19:47 +00:00
{
2013-03-06 18:41:13 +00:00
key = key.ToLowerInvariant();
2010-09-28 06:09:24 +00:00
if (String.IsNullOrEmpty(key))
throw new ArgumentOutOfRangeException("key");
if (value == null)
throw new ArgumentNullException("key");
2010-09-24 05:37:48 +00:00
2013-02-24 06:48:52 +00:00
_logger.Trace("Writing Setting to file. Key:'{0}' Value:'{1}'", key, value);
2010-09-23 03:19:47 +00:00
2013-02-24 06:48:52 +00:00
var dbValue = _repository.Get(key);
2010-09-28 06:09:24 +00:00
if (dbValue == null)
{
2013-02-24 06:48:52 +00:00
_repository.Insert(new Config { Key = key, Value = value });
2010-09-28 06:09:24 +00:00
}
else
{
dbValue.Value = value;
2013-02-24 06:48:52 +00:00
_repository.Update(dbValue);
}
ClearCache();
}
2013-05-14 05:22:51 +00:00
public void SetValue(string key, Enum value)
{
SetValue(key, value.ToString().ToLower());
}
private void EnsureCache()
{
2013-02-24 06:48:52 +00:00
lock (_cache)
{
2013-02-24 06:48:52 +00:00
if (!_cache.Any())
2011-06-23 06:56:17 +00:00
{
_cache = All().ToDictionary(c => c.Key.ToLower(), c => c.Value);
2011-06-23 06:56:17 +00:00
}
}
2010-09-23 03:19:47 +00:00
}
public static void ClearCache()
{
2013-02-24 06:48:52 +00:00
lock (_cache)
{
2013-02-24 06:48:52 +00:00
_cache = new Dictionary<string, string>();
}
}
2010-09-23 03:19:47 +00:00
}
}