2013-07-18 20:47:55 -07:00
|
|
|
using NLog;
|
2013-02-18 17:13:42 -08:00
|
|
|
using Nancy.Bootstrapper;
|
|
|
|
using Nancy.Conventions;
|
|
|
|
using Nancy.Diagnostics;
|
2013-05-22 19:12:36 -07:00
|
|
|
using NzbDrone.Api.Authentication;
|
2013-02-18 17:13:42 -08:00
|
|
|
using NzbDrone.Api.ErrorManagement;
|
2013-02-23 12:35:26 -08:00
|
|
|
using NzbDrone.Api.Extensions;
|
2013-03-29 16:00:38 -07:00
|
|
|
using NzbDrone.Api.Frontend;
|
2013-04-23 18:56:00 -07:00
|
|
|
using NzbDrone.Common.Messaging;
|
2013-05-20 20:20:29 -07:00
|
|
|
using NzbDrone.Core.Instrumentation;
|
2013-02-18 17:13:42 -08:00
|
|
|
using NzbDrone.Core.Lifecycle;
|
2013-04-02 19:20:05 -07:00
|
|
|
using TinyIoC;
|
2013-02-18 17:13:42 -08:00
|
|
|
|
|
|
|
namespace NzbDrone.Api
|
|
|
|
{
|
2013-04-18 21:46:18 -07:00
|
|
|
public class NancyBootstrapper : TinyIoCNancyBootstrapper
|
2013-02-18 17:13:42 -08:00
|
|
|
{
|
2013-04-02 19:20:05 -07:00
|
|
|
private readonly TinyIoCContainer _tinyIoCContainer;
|
2013-02-18 17:13:42 -08:00
|
|
|
private readonly Logger _logger;
|
|
|
|
|
2013-04-18 21:46:18 -07:00
|
|
|
public NancyBootstrapper(TinyIoCContainer tinyIoCContainer)
|
2013-02-18 17:13:42 -08:00
|
|
|
{
|
2013-04-02 19:20:05 -07:00
|
|
|
_tinyIoCContainer = tinyIoCContainer;
|
2013-02-18 17:13:42 -08:00
|
|
|
_logger = LogManager.GetCurrentClassLogger();
|
|
|
|
}
|
|
|
|
|
2013-04-02 19:20:05 -07:00
|
|
|
protected override void ApplicationStartup(TinyIoCContainer container, IPipelines pipelines)
|
2013-02-18 17:13:42 -08:00
|
|
|
{
|
|
|
|
_logger.Info("Starting NzbDrone API");
|
2013-04-09 17:47:04 -07:00
|
|
|
|
2013-05-20 20:20:29 -07:00
|
|
|
container.Resolve<DatabaseTarget>().Register();
|
2013-05-22 19:12:36 -07:00
|
|
|
container.Resolve<IEnableBasicAuthInNancy>().Register(pipelines);
|
2013-04-26 19:03:34 -07:00
|
|
|
container.Resolve<IMessageAggregator>().PublishEvent(new ApplicationStartedEvent());
|
2013-05-21 21:06:25 -07:00
|
|
|
|
2013-06-10 17:17:57 -07:00
|
|
|
pipelines.AfterRequest.AddItemToStartOfPipeline(GzipCompressionPipeline.Handle);
|
2013-07-25 14:57:11 -07:00
|
|
|
pipelines.AfterRequest.AddItemToEndOfPipeline(CacheHeaderPipeline.Handle);
|
2013-03-29 16:00:38 -07:00
|
|
|
|
2013-05-10 16:53:50 -07:00
|
|
|
ApplicationPipelines.OnError.AddItemToEndOfPipeline(container.Resolve<NzbDroneErrorPipeline>().HandleException);
|
2013-02-18 17:13:42 -08:00
|
|
|
}
|
|
|
|
|
2013-04-02 19:20:05 -07:00
|
|
|
|
|
|
|
protected override TinyIoCContainer GetApplicationContainer()
|
2013-02-18 17:13:42 -08:00
|
|
|
{
|
2013-04-02 19:20:05 -07:00
|
|
|
return _tinyIoCContainer;
|
2013-02-18 17:13:42 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override NancyInternalConfiguration InternalConfiguration
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
var internalConfig = NancyInternalConfiguration.Default;
|
|
|
|
|
|
|
|
internalConfig.StatusCodeHandlers.Add(typeof(ErrorHandler));
|
|
|
|
internalConfig.Serializers.Add(typeof(NancyJsonSerializer));
|
|
|
|
|
|
|
|
return internalConfig;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override DiagnosticsConfiguration DiagnosticsConfiguration
|
|
|
|
{
|
|
|
|
get { return new DiagnosticsConfiguration { Password = @"password" }; }
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void ConfigureConventions(NancyConventions nancyConventions)
|
|
|
|
{
|
|
|
|
base.ConfigureConventions(nancyConventions);
|
2013-03-29 16:00:38 -07:00
|
|
|
var processors = ApplicationContainer.Resolve<IProcessStaticResource>();
|
|
|
|
Conventions.StaticContentsConventions.Add(processors.ProcessStaticResourceRequest);
|
2013-02-18 17:13:42 -08:00
|
|
|
}
|
2013-04-18 21:46:18 -07:00
|
|
|
|
2013-07-06 15:46:11 -07:00
|
|
|
protected override byte[] FavIcon
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-18 21:46:18 -07:00
|
|
|
public void Shutdown()
|
|
|
|
{
|
2013-04-26 19:03:34 -07:00
|
|
|
ApplicationContainer.Resolve<IMessageAggregator>().PublishEvent(new ApplicationShutdownRequested());
|
2013-04-18 21:46:18 -07:00
|
|
|
}
|
2013-02-18 17:13:42 -08:00
|
|
|
}
|
|
|
|
}
|