Lidarr/NzbDrone.Core/Configuration/ConfigFileProvider.cs

231 lines
6.6 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Xml.Linq;
using NzbDrone.Common;
using NzbDrone.Common.Cache;
using NzbDrone.Common.EnvironmentInfo;
2013-07-24 15:08:31 +00:00
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Configuration.Events;
using NzbDrone.Core.Lifecycle;
namespace NzbDrone.Core.Configuration
{
public interface IConfigFileProvider : IHandleAsync<ApplicationStartedEvent>
{
Dictionary<string, object> GetConfigDictionary();
void SaveConfigDictionary(Dictionary<string, object> configValues);
2013-07-14 07:00:50 +00:00
int Port { get; }
bool LaunchBrowser { get; }
bool AuthenticationEnabled { get; }
string Username { get; }
string Password { get; }
2013-07-24 15:08:31 +00:00
string LogLevel { get; }
string Branch { get; }
}
public class ConfigFileProvider : IConfigFileProvider
{
private const string CONFIG_ELEMENT_NAME = "Config";
private readonly IAppFolderInfo _appFolderInfo;
2013-07-24 15:08:31 +00:00
private readonly IMessageAggregator _messageAggregator;
private readonly ICached<string> _cache;
private readonly string _configFile;
2013-07-24 15:08:31 +00:00
public ConfigFileProvider(IAppFolderInfo appFolderInfo, ICacheManger cacheManger, IMessageAggregator messageAggregator)
{
_appFolderInfo = appFolderInfo;
2013-07-24 05:35:32 +00:00
_cache = cacheManger.GetCache<string>(GetType());
2013-07-24 15:08:31 +00:00
_messageAggregator = messageAggregator;
_configFile = _appFolderInfo.GetConfigPath();
}
public Dictionary<string, object> GetConfigDictionary()
{
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 SaveConfigDictionary(Dictionary<string, object> configValues)
{
_cache.Clear();
var allWithDefaults = GetConfigDictionary();
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.FirstCharToUpper(), configValue.Value.ToString());
}
}
2013-07-24 15:08:31 +00:00
_messageAggregator.PublishEvent(new ConfigFileSavedEvent());
}
public int Port
{
get { return GetValueInt("Port", 8989); }
}
public bool LaunchBrowser
{
get { return GetValueBoolean("LaunchBrowser", true); }
}
2013-07-14 07:00:50 +00:00
public bool AuthenticationEnabled
{
2013-07-14 07:00:50 +00:00
get { return GetValueBoolean("AuthenticationEnabled", false); }
}
public string Branch
{
get { return GetValue("Branch", "master"); }
}
2013-07-14 07:00:50 +00:00
public string Username
{
2013-07-14 07:00:50 +00:00
get { return GetValue("Username", ""); }
}
2013-07-14 07:00:50 +00:00
public string Password
{
2013-07-14 07:00:50 +00:00
get { return GetValue("Password", ""); }
}
2013-07-24 15:08:31 +00:00
public string LogLevel
{
get { return GetValue("LogLevel", "Info"); }
}
public int GetValueInt(string key, int defaultValue)
{
return Convert.ToInt32(GetValue(key, defaultValue));
}
public bool GetValueBoolean(string key, bool defaultValue)
{
return Convert.ToBoolean(GetValue(key, defaultValue));
}
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)
{
return _cache.Get(key, () =>
2013-07-24 00:35:35 +00:00
{
EnsureDefaultConfigFile();
2013-07-24 00:35:35 +00:00
var xDoc = XDocument.Load(_configFile);
var config = xDoc.Descendants(CONFIG_ELEMENT_NAME).Single();
2013-07-24 00:35:35 +00:00
var parentContainer = config;
2013-07-24 00:35:35 +00:00
var valueHolder = parentContainer.Descendants(key).ToList();
2013-07-24 00:35:35 +00:00
if (valueHolder.Count() == 1)
return valueHolder.First().Value;
2013-07-24 00:35:35 +00:00
//Save the value
SetValue(key, defaultValue);
2013-07-24 00:35:35 +00:00
//return the default value
return defaultValue.ToString();
});
}
public void SetValue(string key, object value)
{
EnsureDefaultConfigFile();
var xDoc = XDocument.Load(_configFile);
var config = xDoc.Descendants(CONFIG_ELEMENT_NAME).Single();
var parentContainer = config;
var keyHolder = parentContainer.Descendants(key);
if (keyHolder.Count() != 1)
{
parentContainer.Add(new XElement(key, value));
}
else
{
parentContainer.Descendants(key).Single().Value = value.ToString();
}
_cache.Set(key, value.ToString());
xDoc.Save(_configFile);
}
public void SetValue(string key, Enum value)
{
SetValue(key, value.ToString().ToLower());
}
private void EnsureDefaultConfigFile()
{
if (!File.Exists(_configFile))
{
var xDoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"));
xDoc.Add(new XElement(CONFIG_ELEMENT_NAME));
xDoc.Save(_configFile);
}
}
private void DeleteOldValues()
{
EnsureDefaultConfigFile();
var xDoc = XDocument.Load(_configFile);
var config = xDoc.Descendants(CONFIG_ELEMENT_NAME).Single();
var type = GetType();
var properties = type.GetProperties();
foreach (var configValue in config.Descendants().ToList())
{
var name = configValue.Name.LocalName;
if (!properties.Any(p => p.Name == name))
{
config.Descendants(name).Remove();
}
}
xDoc.Save(_configFile);
}
public void HandleAsync(ApplicationStartedEvent message)
{
DeleteOldValues();
}
}
}