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