Radarr/NzbDrone/Providers/ConfigProvider.cs

148 lines
4.5 KiB
C#
Raw Normal View History

2010-10-15 07:10:44 +00:00
using System;
using System.IO;
using System.Linq;
2010-10-15 07:10:44 +00:00
using System.Reflection;
using System.Xml.Linq;
2011-10-07 06:36:04 +00:00
using System.Xml.XPath;
2010-10-15 07:10:44 +00:00
using NLog;
using NLog.Config;
namespace NzbDrone.Providers
2010-10-15 07:10:44 +00:00
{
2011-10-07 06:36:04 +00:00
public class ConfigProvider
2010-10-15 07:10:44 +00:00
{
2011-10-07 06:43:35 +00:00
private static readonly Logger Logger = LogManager.GetLogger("Host.ConfigProvider");
2011-04-10 02:44:01 +00:00
2011-10-07 06:36:04 +00:00
public virtual string ApplicationRoot
2010-10-15 07:10:44 +00:00
{
get
{
var appDir = new FileInfo(Assembly.GetExecutingAssembly().Location).Directory;
2010-10-15 07:10:44 +00:00
while (appDir.GetDirectories("iisexpress").Length == 0)
{
if (appDir.Parent == null) throw new ApplicationException("Can't fine IISExpress folder.");
appDir = appDir.Parent;
2010-10-15 07:10:44 +00:00
}
return appDir.FullName;
2010-10-15 07:10:44 +00:00
}
}
2011-10-07 06:36:04 +00:00
public virtual int Port
2010-10-15 07:10:44 +00:00
{
get { return GetValueInt("Port"); }
}
2011-10-07 06:36:04 +00:00
public virtual bool LaunchBrowser
{
get { return GetValueBoolean("LaunchBrowser"); }
}
2011-10-07 06:36:04 +00:00
public virtual string AppDataDirectory
{
get { return Path.Combine(ApplicationRoot, "NzbDrone.Web", "App_Data"); }
}
2011-10-07 06:36:04 +00:00
public virtual string ConfigFile
{
get { return Path.Combine(AppDataDirectory, "Config.xml"); }
2010-10-15 07:10:44 +00:00
}
2011-10-07 06:36:04 +00:00
public virtual string IISFolder
{
get { return Path.Combine(ApplicationRoot, @"IISExpress\"); }
}
2011-10-07 06:36:04 +00:00
public virtual string IISExePath
{
get { return IISFolder + @"iisexpress.exe"; }
}
public virtual string IISConfigPath
{
get { return Path.Combine(IISFolder, "AppServer", "applicationhost.config"); }
}
public virtual void ConfigureNlog()
2011-04-10 02:44:01 +00:00
{
LogManager.Configuration = new XmlLoggingConfiguration(
Path.Combine(ApplicationRoot, "NzbDrone.Web\\log.config"), false);
}
2011-10-07 06:36:04 +00:00
public virtual void UpdateIISConfig(string configPath)
{
Logger.Info(@"Server configuration file: {0}", configPath);
Logger.Info(@"Configuring server to: [http://localhost:{0}]", Port);
var configXml = XDocument.Load(configPath);
var bindings =
configXml.XPathSelectElement("configuration/system.applicationHost/sites").Elements("site").Where(
d => d.Attribute("name").Value.ToLowerInvariant() == "nzbdrone").First().Element("bindings");
bindings.Descendants().Remove();
bindings.Add(
new XElement("binding",
new XAttribute("protocol", "http"),
new XAttribute("bindingInformation", String.Format("*:{0}:localhost", Port))
));
bindings.Add(
2011-10-07 06:57:43 +00:00
new XElement("binding",
new XAttribute("protocol", "http"),
new XAttribute("bindingInformation", String.Format("*:{0}:", Port))
));
2011-10-07 06:36:04 +00:00
configXml.Save(configPath);
}
public virtual void CreateDefaultConfigFile()
{
//Create the config file here
Directory.CreateDirectory(AppDataDirectory);
if (!File.Exists(ConfigFile))
{
WriteDefaultConfig();
}
}
2011-10-07 06:36:04 +00:00
public virtual void WriteDefaultConfig()
{
var xDoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"));
xDoc.Add(new XElement("Config",
2011-10-07 06:57:43 +00:00
new XElement("Port", 8989),
new XElement("LaunchBrowser", true)
)
);
xDoc.Save(ConfigFile);
}
private string GetValue(string key, string parent = null)
{
var xDoc = XDocument.Load(ConfigFile);
var config = xDoc.Descendants("Config").Single();
var parentContainer = config;
if (parent != null)
parentContainer = config.Descendants(parent).Single();
2011-10-07 06:57:43 +00:00
string value = parentContainer.Descendants(key).Single().Value;
return value;
}
private int GetValueInt(string key, string parent = null)
{
return Convert.ToInt32(GetValue(key, parent));
}
private bool GetValueBoolean(string key, string parent = null)
{
return Convert.ToBoolean(GetValue(key, parent));
2011-04-10 02:44:01 +00:00
}
2010-10-15 07:10:44 +00:00
}
2011-04-10 02:44:01 +00:00
}