mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
29ec800996
Will run locally when URL hasn't been registered and not running in administrator context.
76 lines
2.0 KiB
C#
76 lines
2.0 KiB
C#
using System;
|
|
using System.Linq;
|
|
using NLog;
|
|
using Nancy.Bootstrapper;
|
|
using Nancy.Hosting.Self;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public interface IHostController
|
|
{
|
|
bool ServerStarted { get; }
|
|
string AppUrl { get; }
|
|
void StartServer();
|
|
void RestartServer();
|
|
void StopServer();
|
|
}
|
|
|
|
public class HostController : IHostController
|
|
{
|
|
private readonly ConfigFileProvider _configFileProvider;
|
|
private readonly SecurityProvider _securityProvider;
|
|
private readonly INancyBootstrapper _bootstrapper;
|
|
private readonly Logger _logger;
|
|
private NancyHost _host;
|
|
|
|
|
|
public bool ServerStarted { get; private set; }
|
|
|
|
public HostController(ConfigFileProvider configFileProvider, SecurityProvider securityProvider, INancyBootstrapper bootstrapper, Logger logger)
|
|
{
|
|
_configFileProvider = configFileProvider;
|
|
_securityProvider = securityProvider;
|
|
_bootstrapper = bootstrapper;
|
|
_logger = logger;
|
|
}
|
|
|
|
public void StartServer()
|
|
{
|
|
if (_securityProvider.IsNzbDroneUrlRegistered())
|
|
_host = new NancyHost(new Uri(AppUrl), _bootstrapper);
|
|
|
|
else
|
|
_host = new NancyHost(new Uri(AppUrl), _bootstrapper, new HostConfiguration { RewriteLocalhost = false });
|
|
|
|
_host.Start();
|
|
}
|
|
|
|
public string AppUrl
|
|
{
|
|
get { return string.Format("http://localhost:{0}", _configFileProvider.Port); }
|
|
}
|
|
|
|
public void RestartServer()
|
|
{
|
|
|
|
_logger.Warn("Attempting to restart server.");
|
|
|
|
if (_host != null)
|
|
{
|
|
StopServer();
|
|
}
|
|
|
|
StartServer();
|
|
}
|
|
|
|
public void StopServer()
|
|
{
|
|
if (_host == null) return;
|
|
|
|
_logger.Info("Attempting to stop Nancy host");
|
|
_host.Stop();
|
|
_host = null;
|
|
_logger.Info("Host has stopped");
|
|
}
|
|
}
|
|
} |