2013-05-22 02:58:57 +02:00
|
|
|
|
using System;
|
|
|
|
|
using NLog;
|
|
|
|
|
using Nancy;
|
|
|
|
|
using Nancy.Authentication.Basic;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
using Nancy.Bootstrapper;
|
|
|
|
|
using Nancy.Conventions;
|
|
|
|
|
using Nancy.Diagnostics;
|
|
|
|
|
using NzbDrone.Api.ErrorManagement;
|
2013-02-23 21:35:26 +01:00
|
|
|
|
using NzbDrone.Api.Extensions;
|
2013-03-30 00:00:38 +01:00
|
|
|
|
using NzbDrone.Api.Frontend;
|
2013-05-22 02:58:57 +02:00
|
|
|
|
using NzbDrone.Common;
|
2013-05-11 01:53:50 +02:00
|
|
|
|
using NzbDrone.Common.Composition;
|
2013-04-24 03:56:00 +02:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
2013-05-22 02:58:57 +02:00
|
|
|
|
using NzbDrone.Common.Model;
|
2013-05-21 05:20:29 +02:00
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
using NzbDrone.Core.Lifecycle;
|
2013-04-03 04:20:05 +02:00
|
|
|
|
using TinyIoC;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Api
|
|
|
|
|
{
|
2013-05-11 01:53:50 +02:00
|
|
|
|
[Singleton]
|
2013-04-19 06:46:18 +02:00
|
|
|
|
public class NancyBootstrapper : TinyIoCNancyBootstrapper
|
2013-02-19 02:13:42 +01:00
|
|
|
|
{
|
2013-04-03 04:20:05 +02:00
|
|
|
|
private readonly TinyIoCContainer _tinyIoCContainer;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
private readonly Logger _logger;
|
|
|
|
|
|
2013-04-19 06:46:18 +02:00
|
|
|
|
public NancyBootstrapper(TinyIoCContainer tinyIoCContainer)
|
2013-02-19 02:13:42 +01:00
|
|
|
|
{
|
2013-04-03 04:20:05 +02:00
|
|
|
|
_tinyIoCContainer = tinyIoCContainer;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
_logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-03 04:20:05 +02:00
|
|
|
|
protected override void ApplicationStartup(TinyIoCContainer container, IPipelines pipelines)
|
2013-02-19 02:13:42 +01:00
|
|
|
|
{
|
|
|
|
|
_logger.Info("Starting NzbDrone API");
|
|
|
|
|
AutomapperBootstraper.InitializeAutomapper();
|
2013-04-10 02:47:04 +02:00
|
|
|
|
|
2013-05-21 05:20:29 +02:00
|
|
|
|
container.Resolve<DatabaseTarget>().Register();
|
|
|
|
|
|
2013-04-27 04:03:34 +02:00
|
|
|
|
container.Resolve<IMessageAggregator>().PublishEvent(new ApplicationStartedEvent());
|
2013-05-22 02:58:57 +02:00
|
|
|
|
|
|
|
|
|
if (container.Resolve<IConfigFileProvider>().AuthenticationType == AuthenticationType.Basic)
|
|
|
|
|
{
|
|
|
|
|
pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(
|
|
|
|
|
container.Resolve<IUserValidator>(),
|
|
|
|
|
"NzbDrone"));
|
|
|
|
|
}
|
2013-03-30 00:00:38 +01:00
|
|
|
|
|
2013-05-11 01:53:50 +02:00
|
|
|
|
ApplicationPipelines.OnError.AddItemToEndOfPipeline(container.Resolve<NzbDroneErrorPipeline>().HandleException);
|
2013-02-19 02:13:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-03 04:20:05 +02:00
|
|
|
|
|
|
|
|
|
protected override TinyIoCContainer GetApplicationContainer()
|
2013-02-19 02:13:42 +01:00
|
|
|
|
{
|
2013-04-03 04:20:05 +02:00
|
|
|
|
return _tinyIoCContainer;
|
2013-02-19 02:13:42 +01: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-30 00:00:38 +01:00
|
|
|
|
var processors = ApplicationContainer.Resolve<IProcessStaticResource>();
|
|
|
|
|
Conventions.StaticContentsConventions.Add(processors.ProcessStaticResourceRequest);
|
2013-02-19 02:13:42 +01:00
|
|
|
|
}
|
2013-04-19 06:46:18 +02:00
|
|
|
|
|
|
|
|
|
public void Shutdown()
|
|
|
|
|
{
|
2013-04-27 04:03:34 +02:00
|
|
|
|
ApplicationContainer.Resolve<IMessageAggregator>().PublishEvent(new ApplicationShutdownRequested());
|
2013-04-19 06:46:18 +02:00
|
|
|
|
}
|
2013-02-19 02:13:42 +01:00
|
|
|
|
}
|
|
|
|
|
}
|