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