2013-08-28 22:08:01 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Nancy.Bootstrapper;
|
2013-04-20 00:05:48 +00:00
|
|
|
|
using NzbDrone.Api;
|
2013-05-05 21:24:33 +00:00
|
|
|
|
using NzbDrone.Api.SignalR;
|
2013-05-10 23:53:50 +00:00
|
|
|
|
using NzbDrone.Common.Composition;
|
2013-07-09 00:47:09 +00:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-04-20 00:05:48 +00:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
using NzbDrone.Core.Organizer;
|
|
|
|
|
using NzbDrone.Core.RootFolders;
|
2013-08-28 22:08:01 +00:00
|
|
|
|
using NzbDrone.Host.Owin;
|
2013-04-20 00:05:48 +00:00
|
|
|
|
|
2013-08-07 05:32:22 +00:00
|
|
|
|
namespace NzbDrone.Host
|
2013-04-20 00:05:48 +00:00
|
|
|
|
{
|
|
|
|
|
public class MainAppContainerBuilder : ContainerBuilderBase
|
|
|
|
|
{
|
2013-08-13 05:08:37 +00:00
|
|
|
|
public static IContainer BuildContainer(StartupArguments args)
|
2013-04-20 00:05:48 +00:00
|
|
|
|
{
|
2013-07-09 00:47:09 +00:00
|
|
|
|
return new MainAppContainerBuilder(args).Container;
|
2013-04-20 00:05:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 05:08:37 +00:00
|
|
|
|
private MainAppContainerBuilder(StartupArguments args)
|
2013-08-16 03:32:23 +00:00
|
|
|
|
: base(args, "NzbDrone.Host", "NzbDrone.Common", "NzbDrone.Core", "NzbDrone.Api")
|
2013-04-20 00:05:48 +00:00
|
|
|
|
{
|
2013-08-13 05:08:37 +00:00
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
AutoRegisterImplementations<NzbDronePersistentConnection>();
|
2013-04-20 00:05:48 +00:00
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
Container.Register(typeof(IBasicRepository<RootFolder>), typeof(BasicRepository<RootFolder>));
|
|
|
|
|
Container.Register(typeof(IBasicRepository<NamingConfig>), typeof(BasicRepository<NamingConfig>));
|
2013-04-20 00:05:48 +00:00
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
Container.Register<INancyBootstrapper, NancyBootstrapper>();
|
2013-07-09 00:47:09 +00:00
|
|
|
|
}
|
2013-04-20 00:05:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|