Radarr/NzbDrone.Core/Configuration/ConfigService.cs

588 lines
16 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.Core.Model;
2013-03-05 05:33:34 +00:00
using NzbDrone.Core.Download.Clients.Nzbget;
using NzbDrone.Core.Download.Clients.Sabnzbd;
2013-02-24 06:48:52 +00:00
using NzbDrone.Core.Providers;
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
{
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 Logger _logger;
private static Dictionary<string, string> _cache;
2013-02-24 06:48:52 +00:00
public ConfigService(IConfigRepository repository, Logger logger)
2010-09-23 03:19:47 +00:00
{
2013-02-24 06:48:52 +00:00
_repository = repository;
_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 String NzbsOrgUId
{
get { return GetValue("NzbsOrgUId"); }
set { SetValue("NzbsOrgUId", value); }
}
public String NzbsOrgHash
{
get { return GetValue("NzbsOrgHash"); }
set { SetValue("NzbsOrgHash", value); }
}
public String NzbsrusUId
{
get { return GetValue("NzbsrusUId"); }
set { SetValue("NzbsrusUId", value); }
}
public String NzbsrusHash
{
get { return GetValue("NzbsrusHash"); }
set { SetValue("NzbsrusHash", value); }
}
public String FileSharingTalkUid
{
get { return GetValue("FileSharingTalkUid"); }
set { SetValue("FileSharingTalkUid", value); }
}
public String FileSharingTalkSecret
{
get { return GetValue("FileSharingTalkSecret"); }
set { SetValue("FileSharingTalkSecret", value); }
}
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 SabBacklogTvPriority
{
get { return (SabPriorityType)GetValueInt("SabBacklogTvPriority"); }
set { SetValue("SabBacklogTvPriority", (int)value); }
}
public SabPriorityType SabRecentTvPriority
{
get { return (SabPriorityType)GetValueInt("SabRecentTvPriority"); }
set { SetValue("SabRecentTvPriority", (int)value); }
}
public String DownloadClientTvDirectory
{
get { return GetValue("DownloadClientTvDirectory"); }
set { SetValue("DownloadClientTvDirectory", 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); }
}
public string SortingSeasonFolderFormat
{
2011-06-17 02:27:10 +00:00
get { return GetValue("Sorting_SeasonFolderFormat", "Season %s"); }
set { SetValue("Sorting_SeasonFolderFormat", value); }
}
public int DefaultQualityProfile
{
get { return GetValueInt("DefaultQualityProfile", 1); }
set { SetValue("DefaultQualityProfile", value); }
}
public Boolean XbmcUpdateLibrary
{
get { return GetValueBoolean("XbmcUpdateLibrary"); }
set { SetValue("XbmcUpdateLibrary", value); }
}
public Boolean XbmcCleanLibrary
{
get { return GetValueBoolean("XbmcCleanLibrary"); }
set { SetValue("XbmcCleanLibrary", value); }
}
public Boolean XbmcUpdateWhenPlaying
{
get { return GetValueBoolean("XbmcUpdateWhenPlaying"); }
set { SetValue("XbmcUpdateWhenPlaying", value); }
}
public string XbmcHosts
{
get { return GetValue("XbmcHosts", "localhost:8080"); }
set { SetValue("XbmcHosts", value); }
}
public string XbmcUsername
{
get { return GetValue("XbmcUsername", "xbmc"); }
set { SetValue("XbmcUsername", value); }
}
public string XbmcPassword
{
get { return GetValue("XbmcPassword", String.Empty); }
set { SetValue("XbmcPassword", value); }
}
public string UpdateUrl
{
get { return GetValue("UpdateUrl", UpdateProvider.DEFAULT_UPDATE_URL); }
set { SetValue("UpdateUrl", value); }
}
public string SmtpServer
{
get { return GetValue("SmtpServer", String.Empty); }
set { SetValue("SmtpServer", value); }
}
public int SmtpPort
{
get { return GetValueInt("SmtpPort", 25); }
set { SetValue("SmtpPort", value); }
}
public Boolean SmtpUseSsl
{
get { return GetValueBoolean("SmtpUseSsl"); }
set { SetValue("SmtpUseSsl", value); }
}
public string SmtpUsername
{
get { return GetValue("SmtpUsername", String.Empty); }
set { SetValue("SmtpUsername", value); }
}
public string SmtpPassword
{
get { return GetValue("SmtpPassword", String.Empty); }
set { SetValue("SmtpPassword", value); }
}
public string SmtpFromAddress
{
get { return GetValue("SmtpFromAddress", String.Empty); }
set { SetValue("SmtpFromAddress", value); }
}
public string SmtpToAddresses
{
get { return GetValue("SmtpToAddresses", String.Empty); }
set { SetValue("SmtpToAddresses", value); }
}
public string TwitterAccessToken
{
get { return GetValue("TwitterAccessToken", String.Empty); }
set { SetValue("TwitterAccessToken", value); }
}
public string TwitterAccessTokenSecret
{
get { return GetValue("TwitterAccessTokenSecret", String.Empty); }
set { SetValue("TwitterAccessTokenSecret", value); }
}
public string GrowlHost
{
2011-11-02 07:09:52 +00:00
get { return GetValue("GrowlHost", "localhost:23053"); }
set { SetValue("GrowlHost", value); }
}
public string GrowlPassword
{
get { return GetValue("GrowlPassword", String.Empty); }
set { SetValue("GrowlPassword", value); }
}
public string ProwlApiKeys
2011-11-03 02:44:22 +00:00
{
get { return GetValue("ProwlApiKeys", String.Empty); }
set { SetValue("ProwlApiKeys", value); }
}
public int ProwlPriority
2011-11-03 02:44:22 +00:00
{
get { return GetValueInt("ProwlPriority", 0); }
set { SetValue("ProwlPriority", value); }
}
public bool EnableBacklogSearching
{
get { return GetValueBoolean("EnableBacklogSearching"); }
set { SetValue("EnableBacklogSearching", value); }
}
public bool AutoIgnorePreviouslyDownloadedEpisodes
{
get { return GetValueBoolean("AutoIgnorePreviouslyDownloadedEpisodes"); }
set { SetValue("AutoIgnorePreviouslyDownloadedEpisodes", value); }
}
public int Retention
{
get { return GetValueInt("Retention", 0); }
set { SetValue("Retention", value); }
}
public Guid UGuid
{
get { return Guid.Parse(GetValue("UGuid", Guid.NewGuid().ToString(), persist: true)); }
}
public DownloadClientType DownloadClient
{
get { return (DownloadClientType)GetValueInt("DownloadClient"); }
set { SetValue("DownloadClient", (int)value); }
}
public string BlackholeDirectory
{
get { return GetValue("BlackholeDirectory", String.Empty); }
set { SetValue("BlackholeDirectory", value); }
}
public string ServiceRootUrl
2012-02-04 05:28:50 +00:00
{
get { return "http://services.nzbdrone.com"; }
}
public Boolean PlexUpdateLibrary
{
get { return GetValueBoolean("PlexUpdateLibrary"); }
set { SetValue("PlexUpdateLibrary", value); }
}
public string PlexServerHost
{
get { return GetValue("PlexServerHost", "localhost:32400"); }
set { SetValue("PlexServerHost", value); }
}
public string PlexClientHosts
{
get { return GetValue("PlexClientHosts", "localhost:3000"); }
set { SetValue("PlexClientHosts", value); }
}
public string PlexUsername
{
get { return GetValue("PlexUsername"); }
set { SetValue("PlexUsername", value); }
}
public string PlexPassword
{
get { return GetValue("PlexPassword"); }
set { SetValue("PlexPassword", value); }
}
public Boolean MetadataUseBanners
2012-07-10 04:37:24 +00:00
{
get { return GetValueBoolean("MetadataUseBanners"); }
set { SetValue("MetadataUseBanners", value); }
}
public string PneumaticDirectory
2012-08-30 00:20:48 +00:00
{
get { return GetValue("PneumaticDirectory", String.Empty); }
set { SetValue("PneumaticDirectory", value); }
}
public string RecycleBin
{
get { return GetValue("RecycleBin", String.Empty); }
set { SetValue("RecycleBin", value); }
}
public int RssSyncInterval
{
get { return GetValueInt("RssSyncInterval", 25); }
set { SetValue("RssSyncInterval", value); }
}
public string OmgwtfnzbsUsername
2012-12-18 01:52:56 +00:00
{
get { return GetValue("OmgwtfnzbsUsername", String.Empty); }
set { SetValue("OmgwtfnzbsUsername", value); }
}
public string OmgwtfnzbsApiKey
2012-12-18 01:52:56 +00:00
{
get { return GetValue("OmgwtfnzbsApiKey", String.Empty); }
set { SetValue("OmgwtfnzbsApiKey", value); }
}
public Boolean IgnoreArticlesWhenSortingSeries
{
get { return GetValueBoolean("IgnoreArticlesWhenSortingSeries", true); }
set { SetValue("IgnoreArticlesWhenSortingSeries", value); }
}
public Boolean DownloadClientUseSceneName
{
get { return GetValueBoolean("DownloadClientUseSceneName", false); }
set { SetValue("DownloadClientUseSceneName", 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 Int32 NzbgetPriority
{
get { return GetValueInt("NzbgetPriority", 0); }
set { SetValue("NzbgetPriority", value); }
}
public PriorityType NzbgetBacklogTvPriority
{
get { return (PriorityType)GetValueInt("NzbgetBacklogTvPriority"); }
set { SetValue("NzbgetBacklogTvPriority", (int)value); }
}
public PriorityType NzbgetRecentTvPriority
{
get { return (PriorityType)GetValueInt("NzbgetRecentTvPriority"); }
set { SetValue("NzbgetRecentTvPriority", (int)value); }
}
2013-03-18 15:25:36 +00:00
public string NzbRestrictions
{
get { return GetValue("NzbRestrictions", String.Empty); }
set { SetValue("NzbRestrictions", 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));
}
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-03-05 16:13:23 +00:00
public void SaveValues(Dictionary<string, object> configValues)
{
var allWithDefaults = AllWithDefaults();
foreach(var configValue in configValues)
{
object currentValue;
allWithDefaults.TryGetValue(configValue.Key, out currentValue);
2013-03-06 18:41:13 +00:00
if (currentValue == null) continue;
var equal = configValue.Value.ToString().Equals(currentValue.ToString());
2013-03-05 16:13:23 +00:00
2013-03-06 18:41:13 +00:00
if (!equal)
2013-03-05 16:13:23 +00:00
SetValue(configValue.Key, configValue.Value.ToString());
}
}
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
{
2013-02-24 06:48:52 +00:00
_cache = All().ToDictionary(c => c.Key, 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
}
}