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-08-06 07:22:58 +02:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
|
using NzbDrone.Core.Configuration.Events;
|
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-08-02 09:16:37 +02:00
|
|
|
|
public enum ConfigKey
|
|
|
|
|
{
|
|
|
|
|
DownloadedEpisodesFolder
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2013-08-06 07:22:58 +02:00
|
|
|
|
private readonly IMessageAggregator _messageAggregator;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
private readonly Logger _logger;
|
|
|
|
|
private static Dictionary<string, string> _cache;
|
2012-02-12 01:01:52 +01:00
|
|
|
|
|
2013-08-06 07:22:58 +02:00
|
|
|
|
public ConfigService(IConfigRepository repository, IMessageAggregator messageAggregator, Logger logger)
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2013-02-24 07:48:52 +01:00
|
|
|
|
_repository = repository;
|
2013-08-06 07:22:58 +02:00
|
|
|
|
_messageAggregator = messageAggregator;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
_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-05-23 07:12:01 +02: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-08-06 07:22:58 +02:00
|
|
|
|
|
|
|
|
|
_messageAggregator.PublishEvent(new ConfigSavedEvent());
|
2013-05-23 07:12:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
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 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-07-08 05:15:15 +02:00
|
|
|
|
public SabPriorityType SabOlderTvPriority
|
|
|
|
|
{
|
|
|
|
|
get { return GetValueEnum("SabOlderTvPriority", SabPriorityType.Default); }
|
|
|
|
|
|
|
|
|
|
set { SetValue("SabOlderTvPriority", value); }
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-15 04:57:57 +02:00
|
|
|
|
public String DownloadedEpisodesFolder
|
2012-11-23 03:56:27 +01:00
|
|
|
|
{
|
2013-08-02 09:16:37 +02:00
|
|
|
|
get { return GetValue(ConfigKey.DownloadedEpisodesFolder.ToString()); }
|
2012-11-23 03:56:27 +01:00
|
|
|
|
|
2013-08-02 09:16:37 +02:00
|
|
|
|
set { SetValue(ConfigKey.DownloadedEpisodesFolder.ToString(), 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-07-05 05:26:07 +02:00
|
|
|
|
public string SeasonFolderFormat
|
2011-05-19 01:10:25 +02:00
|
|
|
|
{
|
2013-07-11 09:15:00 +02:00
|
|
|
|
get { return GetValue("SeasonFolderFormat", "Season %s"); }
|
|
|
|
|
set { SetValue("SeasonFolderFormat", value); }
|
2011-05-19 01:10:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-09 03:22:02 +02:00
|
|
|
|
public bool AutoUnmonitorPreviouslyDownloadedEpisodes
|
2012-01-16 05:12:47 +01:00
|
|
|
|
{
|
2013-07-09 03:22:02 +02:00
|
|
|
|
get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedEpisodes"); }
|
|
|
|
|
set { SetValue("AutoUnmonitorPreviouslyDownloadedEpisodes", value); }
|
2012-01-16 05:12:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
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); }
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-05 07:50:42 +01:00
|
|
|
|
public DownloadClientType DownloadClient
|
2012-01-28 22:43:44 +01:00
|
|
|
|
{
|
2013-07-02 08:46:38 +02:00
|
|
|
|
get { return GetValueEnum("DownloadClient", 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-05-30 17:29:43 +02:00
|
|
|
|
public string BlackholeFolder
|
2012-01-29 00:53:14 +01:00
|
|
|
|
{
|
2013-07-02 08:46:38 +02:00
|
|
|
|
get { return GetValue("BlackholeFolder", String.Empty); }
|
|
|
|
|
set { SetValue("BlackholeFolder", value); }
|
2012-01-29 00:53:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-30 17:29:43 +02:00
|
|
|
|
public string PneumaticFolder
|
2012-08-30 02:20:48 +02:00
|
|
|
|
{
|
2013-07-02 08:46:38 +02:00
|
|
|
|
get { return GetValue("PneumaticFolder", String.Empty); }
|
|
|
|
|
set { SetValue("PneumaticFolder", value); }
|
2012-08-30 02:20:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
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 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 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-07-08 05:15:15 +02:00
|
|
|
|
public PriorityType NzbgetOlderTvPriority
|
|
|
|
|
{
|
|
|
|
|
get { return GetValueEnum("NzbgetOlderTvPriority", PriorityType.Normal); }
|
|
|
|
|
|
|
|
|
|
set { SetValue("NzbgetOlderTvPriority", value); }
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-05 06:52:20 +02:00
|
|
|
|
public string ReleaseRestrictions
|
2013-03-18 16:25:36 +01:00
|
|
|
|
{
|
2013-07-05 06:52:20 +02:00
|
|
|
|
get { return GetValue("ReleaseRestrictions", String.Empty); }
|
|
|
|
|
set { SetValue("ReleaseRestrictions", value); }
|
2013-04-17 05:52:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-06 07:22:58 +02:00
|
|
|
|
public Int32 RssSyncInterval
|
|
|
|
|
{
|
|
|
|
|
get { return GetValueInt("RssSyncInterval", 15); }
|
|
|
|
|
|
|
|
|
|
set { SetValue("RssSyncInterval", value); }
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-12 08:00:40 +02:00
|
|
|
|
public Boolean AutoDownloadPropers
|
|
|
|
|
{
|
|
|
|
|
get { return GetValueBoolean("AutoDownloadPropers", true); }
|
|
|
|
|
|
|
|
|
|
set { SetValue("AutoDownloadPropers", value); }
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-22 17:34:51 +02:00
|
|
|
|
public string DownloadClientWorkingFolders
|
|
|
|
|
{
|
|
|
|
|
get { return GetValue("DownloadClientWorkingFolders", "_UNPACK_|_FAILED_"); }
|
|
|
|
|
set { SetValue("DownloadClientWorkingFolders", value); }
|
|
|
|
|
}
|
|
|
|
|
|
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());
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|