2013-03-24 05:16:00 +01:00
|
|
|
|
using System.Data;
|
2013-03-03 23:26:41 +01:00
|
|
|
|
using System.IO;
|
2013-01-19 05:46:43 +01:00
|
|
|
|
using System.Reflection;
|
|
|
|
|
using Autofac;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common;
|
2013-03-30 23:43:19 +01:00
|
|
|
|
using NzbDrone.Common.Eventing;
|
2013-01-19 05:46:43 +01:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-25 00:47:57 +01:00
|
|
|
|
using NzbDrone.Core.ExternalNotification;
|
2013-03-07 04:45:36 +01:00
|
|
|
|
using NzbDrone.Core.IndexerSearch;
|
2013-02-23 05:37:23 +01:00
|
|
|
|
using NzbDrone.Core.Indexers;
|
2013-01-19 05:46:43 +01:00
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core
|
|
|
|
|
{
|
2013-03-05 06:51:07 +01:00
|
|
|
|
public static class ContainerExtensions
|
2013-01-19 05:46:43 +01:00
|
|
|
|
{
|
|
|
|
|
|
2013-01-19 19:54:00 +01:00
|
|
|
|
private static readonly Logger logger = LogManager.GetLogger("ServiceRegistration");
|
2013-01-19 05:46:43 +01:00
|
|
|
|
|
2013-01-20 01:19:27 +01:00
|
|
|
|
public static void RegisterCoreServices(this ContainerBuilder containerBuilder)
|
2013-01-19 05:46:43 +01:00
|
|
|
|
{
|
2013-02-19 08:20:51 +01:00
|
|
|
|
containerBuilder.RegisterAssembly("NzbDrone.Common");
|
2013-02-19 02:57:08 +01:00
|
|
|
|
containerBuilder.RegisterAssembly("NzbDrone.Core");
|
2013-01-19 05:46:43 +01:00
|
|
|
|
|
2013-01-20 01:19:27 +01:00
|
|
|
|
containerBuilder.InitDatabase();
|
2013-03-30 23:43:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
containerBuilder.RegisterType<EventAggregator>()
|
|
|
|
|
.As<IEventAggregator>().SingleInstance();
|
|
|
|
|
|
2013-01-20 01:19:27 +01:00
|
|
|
|
containerBuilder.RegisterModule<LogInjectionModule>();
|
2013-01-19 05:46:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-02-19 02:57:08 +01:00
|
|
|
|
private static void RegisterAssembly(this ContainerBuilder container, string assemblyName)
|
2013-01-19 05:46:43 +01:00
|
|
|
|
{
|
2013-01-19 20:42:06 +01:00
|
|
|
|
|
2013-02-19 02:57:08 +01:00
|
|
|
|
container.RegisterAssemblyTypes(assemblyName);
|
2013-01-19 05:46:43 +01:00
|
|
|
|
|
2013-02-19 02:57:08 +01:00
|
|
|
|
var assembly = Assembly.Load(assemblyName);
|
2013-01-19 05:46:43 +01:00
|
|
|
|
|
|
|
|
|
container.RegisterAssemblyTypes(assembly)
|
2013-01-19 19:54:00 +01:00
|
|
|
|
.Where(t => t.IsSubclassOf(typeof(IndexerBase)))
|
2013-03-30 23:14:33 +01:00
|
|
|
|
.As<IndexerBase>();
|
2013-01-19 05:46:43 +01:00
|
|
|
|
|
|
|
|
|
container.RegisterAssemblyTypes(assembly)
|
2013-03-07 05:34:56 +01:00
|
|
|
|
.Where(t => t.IsSubclassOf(typeof(IndexerSearchBase)))
|
2013-03-30 23:14:33 +01:00
|
|
|
|
.As<IndexerSearchBase>();
|
2013-01-19 05:46:43 +01:00
|
|
|
|
|
|
|
|
|
container.RegisterAssemblyTypes(assembly)
|
2013-01-19 19:54:00 +01:00
|
|
|
|
.Where(t => t.IsSubclassOf(typeof(ExternalNotificationBase)))
|
2013-03-30 23:14:33 +01:00
|
|
|
|
.As<ExternalNotificationBase>();
|
2013-01-19 05:46:43 +01:00
|
|
|
|
}
|
2013-01-19 20:42:06 +01:00
|
|
|
|
|
2013-01-19 05:46:43 +01:00
|
|
|
|
private static void InitDatabase(this ContainerBuilder container)
|
|
|
|
|
{
|
2013-01-19 19:54:00 +01:00
|
|
|
|
logger.Info("Registering Database...");
|
2013-01-19 05:46:43 +01:00
|
|
|
|
|
2013-03-25 05:36:24 +01:00
|
|
|
|
var environmentProvider = new EnvironmentProvider();
|
|
|
|
|
var appDataPath = environmentProvider.GetAppDataPath();
|
2013-01-19 05:46:43 +01:00
|
|
|
|
if (!Directory.Exists(appDataPath)) Directory.CreateDirectory(appDataPath);
|
|
|
|
|
|
2013-03-30 23:14:33 +01:00
|
|
|
|
container.Register(c => c.Resolve<IDbFactory>().Create(environmentProvider.GetNzbDroneDatabase())).As<IDatabase>();
|
2013-01-19 05:46:43 +01:00
|
|
|
|
|
2013-02-17 06:09:35 +01:00
|
|
|
|
container.RegisterGeneric(typeof(BasicRepository<>)).As(typeof(IBasicRepository<>));
|
2013-01-19 05:46:43 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|