1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Common/IConfigFileProvider.cs

152 lines
4.4 KiB
C#
Raw Normal View History

2010-10-15 10:10:44 +03:00
using System;
using System.IO;
using System.Linq;
using System.Xml.Linq;
2011-11-13 10:27:16 +03:00
using NzbDrone.Common.Model;
2010-10-15 10:10:44 +03:00
2011-11-13 10:27:16 +03:00
namespace NzbDrone.Common
2010-10-15 10:10:44 +03:00
{
2013-05-11 02:53:50 +03:00
public interface IConfigFileProvider
2010-10-15 10:10:44 +03:00
{
2013-05-11 02:53:50 +03:00
Guid Guid { get; }
int Port { get; set; }
bool LaunchBrowser { get; set; }
AuthenticationType AuthenticationType { get; set; }
2013-05-22 03:58:57 +03:00
string BasicAuthUsername { get; set; }
string BasicAuthPassword { get; set; }
2013-05-11 02:53:50 +03:00
int GetValueInt(string key, int defaultValue);
bool GetValueBoolean(string key, bool defaultValue);
string GetValue(string key, object defaultValue);
void SetValue(string key, object value);
}
public class ConfigFileProvider : IConfigFileProvider
{
private readonly IEnvironmentProvider _environmentProvider;
2011-04-10 05:44:01 +03:00
2011-11-13 10:27:16 +03:00
private readonly string _configFile;
2013-04-16 03:08:06 +03:00
2013-05-11 02:53:50 +03:00
public ConfigFileProvider(IEnvironmentProvider environmentProvider)
{
_environmentProvider = environmentProvider;
_configFile = _environmentProvider.GetConfigPath();
CreateDefaultConfigFile();
}
public virtual Guid Guid
{
get
{
var key = "Guid";
if (string.IsNullOrWhiteSpace(GetValue(key, string.Empty)))
{
SetValue(key, Guid.NewGuid().ToString());
}
return Guid.Parse(GetValue(key, string.Empty));
}
2010-10-15 10:10:44 +03:00
}
2011-11-13 10:27:16 +03:00
public virtual int Port
2010-10-15 10:10:44 +03:00
{
get { return GetValueInt("Port", 8989); }
2011-11-13 10:27:16 +03:00
set { SetValue("Port", value); }
}
2011-10-07 09:36:04 +03:00
public virtual bool LaunchBrowser
{
get { return GetValueBoolean("LaunchBrowser", true); }
2011-11-13 10:27:16 +03:00
set { SetValue("LaunchBrowser", value); }
2011-10-07 09:36:04 +03:00
}
public virtual AuthenticationType AuthenticationType
{
2013-05-22 03:58:57 +03:00
get { return GetValueEnum("AuthenticationType", AuthenticationType.Anonymous); }
set { SetValue("AuthenticationType", value); }
}
2013-05-22 03:58:57 +03:00
public virtual string BasicAuthUsername
{
get { return GetValue("BasicAuthUsername", ""); }
set { SetValue("BasicAuthUsername", value); }
}
public virtual string BasicAuthPassword
{
get { return GetValue("BasicAuthPassword", ""); }
set { SetValue("BasicAuthPassword", value); }
}
public virtual int GetValueInt(string key, int defaultValue)
{
return Convert.ToInt32(GetValue(key, defaultValue));
}
public virtual bool GetValueBoolean(string key, bool defaultValue)
{
return Convert.ToBoolean(GetValue(key, defaultValue));
}
2013-05-22 03:58:57 +03:00
private T GetValueEnum<T>(string key, T defaultValue)
{
return (T)Enum.Parse(typeof(T), GetValue(key, defaultValue), true);
}
public virtual string GetValue(string key, object defaultValue)
2011-10-07 09:36:04 +03:00
{
2011-11-13 10:27:16 +03:00
var xDoc = XDocument.Load(_configFile);
var config = xDoc.Descendants("Config").Single();
var parentContainer = config;
var valueHolder = parentContainer.Descendants(key).ToList();
if (valueHolder.Count() == 1)
return valueHolder.First().Value;
//Save the value
SetValue(key, defaultValue);
//return the default value
return defaultValue.ToString();
}
public virtual void SetValue(string key, object value)
{
2011-11-13 10:27:16 +03:00
var xDoc = XDocument.Load(_configFile);
var config = xDoc.Descendants("Config").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();
2011-11-13 10:27:16 +03:00
xDoc.Save(_configFile);
}
2013-05-22 03:58:57 +03:00
private void SetValue(string key, Enum value)
{
SetValue(key, value.ToString().ToLower());
}
private void CreateDefaultConfigFile()
{
2011-11-13 10:27:16 +03:00
if (!File.Exists(_configFile))
{
var xDoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"));
xDoc.Add(new XElement("Config"));
xDoc.Save(_configFile);
}
}
2010-10-15 10:10:44 +03:00
}
2011-11-13 10:27:16 +03:00
}