2013-02-19 02:13:42 +01:00
|
|
|
|
using System;
|
2013-05-04 22:29:24 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.Owin.Hosting;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
using NLog;
|
|
|
|
|
using Nancy.Bootstrapper;
|
2013-05-04 22:29:24 +02:00
|
|
|
|
using Nancy.Owin;
|
2013-05-04 23:09:25 +02:00
|
|
|
|
using NzbDrone.Common;
|
|
|
|
|
using NzbDrone.Owin.MiddleWare;
|
2013-05-04 22:29:24 +02:00
|
|
|
|
using Owin;
|
2013-05-05 23:24:33 +02:00
|
|
|
|
using System.Linq;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
|
2013-05-04 23:09:25 +02:00
|
|
|
|
namespace NzbDrone.Owin
|
2013-02-19 02:13:42 +01:00
|
|
|
|
{
|
2013-05-04 22:29:24 +02:00
|
|
|
|
public class OwinHostController : IHostController
|
2013-02-19 02:13:42 +01:00
|
|
|
|
{
|
|
|
|
|
private readonly ConfigFileProvider _configFileProvider;
|
2013-05-04 23:09:25 +02:00
|
|
|
|
private readonly IEnumerable<IOwinMiddleWare> _owinMiddleWares;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
private readonly Logger _logger;
|
2013-05-04 22:29:24 +02:00
|
|
|
|
private IDisposable _host;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
|
2013-05-04 23:09:25 +02:00
|
|
|
|
public OwinHostController(ConfigFileProvider configFileProvider, IEnumerable<IOwinMiddleWare> owinMiddleWares, Logger logger)
|
2013-02-19 02:13:42 +01:00
|
|
|
|
{
|
|
|
|
|
_configFileProvider = configFileProvider;
|
2013-05-04 23:09:25 +02:00
|
|
|
|
_owinMiddleWares = owinMiddleWares;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void StartServer()
|
|
|
|
|
{
|
2013-05-05 23:24:33 +02:00
|
|
|
|
var options = new StartOptions
|
|
|
|
|
{
|
|
|
|
|
App = GetType().AssemblyQualifiedName,
|
|
|
|
|
Port = _configFileProvider.Port
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
_host = WebApplication.Start(options, BuildApp);
|
2013-05-04 23:09:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void BuildApp(IAppBuilder appBuilder)
|
|
|
|
|
{
|
2013-05-05 23:24:33 +02:00
|
|
|
|
foreach (var middleWare in _owinMiddleWares.OrderBy(c => c.Order))
|
2013-05-04 23:09:25 +02:00
|
|
|
|
{
|
2013-05-05 23:24:33 +02:00
|
|
|
|
_logger.Debug("Attaching {0} to host", middleWare.GetType().Name);
|
2013-05-04 23:09:25 +02:00
|
|
|
|
middleWare.Attach(appBuilder);
|
|
|
|
|
}
|
2013-05-04 22:29:24 +02:00
|
|
|
|
}
|
2013-03-26 05:03:16 +01:00
|
|
|
|
|
2013-05-04 22:29:24 +02:00
|
|
|
|
private static IAppBuilder RunNancy(IAppBuilder builder, INancyBootstrapper bootstrapper)
|
|
|
|
|
{
|
|
|
|
|
var nancyOwinHost = new NancyOwinHost(null, bootstrapper);
|
|
|
|
|
return builder.Use((Func<Func<IDictionary<string, object>, Task>, Func<IDictionary<string, object>, Task>>)(next => (Func<IDictionary<string, object>, Task>)nancyOwinHost.Invoke), new object[0]);
|
2013-02-19 02:13:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string AppUrl
|
|
|
|
|
{
|
2013-03-01 01:50:50 +01:00
|
|
|
|
get { return string.Format("http://localhost:{0}", _configFileProvider.Port); }
|
2013-02-19 02:13:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void RestartServer()
|
|
|
|
|
{
|
|
|
|
|
_logger.Warn("Attempting to restart server.");
|
|
|
|
|
|
2013-05-04 22:29:24 +02:00
|
|
|
|
StopServer();
|
2013-02-19 02:13:42 +01:00
|
|
|
|
StartServer();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void StopServer()
|
|
|
|
|
{
|
|
|
|
|
if (_host == null) return;
|
|
|
|
|
|
|
|
|
|
_logger.Info("Attempting to stop Nancy host");
|
2013-05-04 22:29:24 +02:00
|
|
|
|
_host.Dispose();
|
2013-02-19 02:13:42 +01:00
|
|
|
|
_host = null;
|
|
|
|
|
_logger.Info("Host has stopped");
|
|
|
|
|
}
|
2013-05-04 22:29:24 +02:00
|
|
|
|
|
2013-02-19 02:13:42 +01:00
|
|
|
|
}
|
|
|
|
|
}
|