2013-09-19 06:55:13 +00:00
|
|
|
|
using Nancy.Bootstrapper;
|
2013-05-04 21:09:25 +00:00
|
|
|
|
using Nancy.Owin;
|
|
|
|
|
using Owin;
|
|
|
|
|
|
2013-08-07 05:32:22 +00:00
|
|
|
|
namespace NzbDrone.Host.Owin.MiddleWare
|
2013-05-04 21:09:25 +00:00
|
|
|
|
{
|
|
|
|
|
public class NancyMiddleWare : IOwinMiddleWare
|
|
|
|
|
{
|
|
|
|
|
private readonly INancyBootstrapper _nancyBootstrapper;
|
|
|
|
|
|
|
|
|
|
public NancyMiddleWare(INancyBootstrapper nancyBootstrapper)
|
|
|
|
|
{
|
|
|
|
|
_nancyBootstrapper = nancyBootstrapper;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-05 21:24:33 +00:00
|
|
|
|
public int Order { get { return 1; } }
|
|
|
|
|
|
2013-05-04 21:09:25 +00:00
|
|
|
|
public void Attach(IAppBuilder appBuilder)
|
|
|
|
|
{
|
2013-09-19 06:55:13 +00:00
|
|
|
|
var options = new NancyOptions
|
|
|
|
|
{
|
|
|
|
|
Bootstrapper = _nancyBootstrapper,
|
|
|
|
|
PerformPassThrough = context => context.Request.Path.StartsWith("/signalr")
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
appBuilder.UseNancy(options);
|
2013-05-04 21:09:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|