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