2010-09-23 06:19:47 +03:00
|
|
|
using System;
|
2012-05-04 01:08:35 +03:00
|
|
|
using System.Collections.Generic;
|
2010-10-17 20:22:48 +03:00
|
|
|
using System.Diagnostics;
|
2011-11-14 03:22:18 +03:00
|
|
|
using System.IO;
|
2011-06-18 04:46:22 +03:00
|
|
|
using System.Linq;
|
2013-01-03 04:09:13 +03:00
|
|
|
using System.Reflection;
|
|
|
|
using Autofac;
|
|
|
|
using Autofac.Core;
|
2012-01-25 06:09:49 +03:00
|
|
|
using DeskMetrics;
|
2011-04-10 05:44:01 +03:00
|
|
|
using NLog;
|
2011-11-13 10:27:16 +03:00
|
|
|
using NzbDrone.Common;
|
2010-10-24 10:46:58 +03:00
|
|
|
using NzbDrone.Core.Instrumentation;
|
2011-12-02 04:33:17 +03:00
|
|
|
using NzbDrone.Core.Jobs;
|
2010-09-28 07:25:41 +03:00
|
|
|
using NzbDrone.Core.Providers;
|
2012-01-25 06:09:49 +03:00
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-04-29 09:06:13 +03:00
|
|
|
using NzbDrone.Core.Providers.ExternalNotification;
|
2011-04-19 03:12:06 +03:00
|
|
|
using NzbDrone.Core.Providers.Indexer;
|
2012-07-13 00:48:09 +03:00
|
|
|
using NzbDrone.Core.Providers.Metadata;
|
2012-05-04 01:08:35 +03:00
|
|
|
using NzbDrone.Core.Repository;
|
2011-06-15 05:31:41 +03:00
|
|
|
using PetaPoco;
|
2012-02-13 04:07:09 +03:00
|
|
|
using SignalR;
|
|
|
|
using SignalR.Hosting.AspNet;
|
|
|
|
using SignalR.Infrastructure;
|
|
|
|
using Connection = NzbDrone.Core.Datastore.Connection;
|
2012-07-13 00:48:09 +03:00
|
|
|
using Xbmc = NzbDrone.Core.Providers.ExternalNotification.Xbmc;
|
2010-09-23 06:19:47 +03:00
|
|
|
|
|
|
|
namespace NzbDrone.Core
|
|
|
|
{
|
2011-11-08 23:12:54 +03:00
|
|
|
public class CentralDispatch
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2012-02-13 09:38:57 +03:00
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
2012-03-07 05:59:43 +03:00
|
|
|
private readonly EnvironmentProvider _environmentProvider;
|
2010-10-08 01:17:24 +03:00
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
public ContainerBuilder ContainerBuilder { get; private set; }
|
2011-11-14 03:22:18 +03:00
|
|
|
|
2011-11-08 23:12:54 +03:00
|
|
|
public CentralDispatch()
|
2011-04-10 05:44:01 +03:00
|
|
|
{
|
2012-03-07 05:59:43 +03:00
|
|
|
_environmentProvider = new EnvironmentProvider();
|
2012-01-26 04:29:55 +03:00
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
logger.Debug("Initializing ContainerBuilder:");
|
|
|
|
ContainerBuilder = new ContainerBuilder();
|
2011-04-10 05:44:01 +03:00
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
ContainerBuilder.RegisterAssemblyTypes(typeof(DiskProvider).Assembly).SingleInstance();
|
|
|
|
ContainerBuilder.RegisterAssemblyTypes(typeof(CentralDispatch).Assembly).SingleInstance();
|
|
|
|
ContainerBuilder.RegisterType<EnvironmentProvider>();
|
2012-02-13 04:07:09 +03:00
|
|
|
|
2011-11-14 03:22:18 +03:00
|
|
|
InitDatabase();
|
2013-01-03 07:09:37 +03:00
|
|
|
RegisterExternalNotifications();
|
|
|
|
RegisterMetadataProviders();
|
|
|
|
RegisterIndexers();
|
2013-01-03 04:09:13 +03:00
|
|
|
RegisterJobs();
|
2011-11-14 03:22:18 +03:00
|
|
|
}
|
2012-01-25 06:09:49 +03:00
|
|
|
|
2011-11-14 03:22:18 +03:00
|
|
|
private void InitDatabase()
|
2011-05-24 02:29:14 +03:00
|
|
|
{
|
2013-01-03 04:09:13 +03:00
|
|
|
logger.Info("Registering Database...");
|
2011-05-27 05:12:28 +03:00
|
|
|
|
2012-03-07 05:59:43 +03:00
|
|
|
var appDataPath = _environmentProvider.GetAppDataPath();
|
2011-11-14 03:22:18 +03:00
|
|
|
if (!Directory.Exists(appDataPath)) Directory.CreateDirectory(appDataPath);
|
2011-10-12 05:24:43 +03:00
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
ContainerBuilder.Register(c => c.Resolve<Connection>().GetMainPetaPocoDb())
|
|
|
|
.As<IDatabase>();
|
2011-05-27 05:12:28 +03:00
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
ContainerBuilder.Register(c => c.Resolve<Connection>().GetLogPetaPocoDb(false))
|
|
|
|
.SingleInstance()
|
|
|
|
.Named<IDatabase>("DatabaseTarget");
|
2011-05-24 02:29:14 +03:00
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
ContainerBuilder.Register(c => c.Resolve<Connection>().GetLogPetaPocoDb())
|
|
|
|
.Named<IDatabase>("LogProvider");
|
|
|
|
|
|
|
|
ContainerBuilder.Register(c => c.Resolve<Connection>().GetLogEfContext())
|
|
|
|
.As<LogDbContext>()
|
|
|
|
.SingleInstance();
|
|
|
|
|
|
|
|
ContainerBuilder.RegisterType<DatabaseTarget>().WithParameter(ResolvedParameter.ForNamed<IDatabase>("DatabaseTarget"));
|
|
|
|
ContainerBuilder.RegisterType<LogProvider>().WithParameter(ResolvedParameter.ForNamed<IDatabase>("LogProvider"));
|
2012-01-25 06:09:49 +03:00
|
|
|
}
|
|
|
|
|
2013-01-03 07:09:37 +03:00
|
|
|
private void RegisterIndexers()
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2013-01-03 04:09:13 +03:00
|
|
|
logger.Debug("Registering Indexers...");
|
|
|
|
|
|
|
|
ContainerBuilder.RegisterAssemblyTypes(typeof(CentralDispatch).Assembly)
|
|
|
|
.Where(t => t.BaseType == typeof(IndexerBase))
|
|
|
|
.As<IndexerBase>();
|
2010-09-23 06:19:47 +03:00
|
|
|
}
|
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
private void RegisterJobs()
|
2011-04-19 03:12:06 +03:00
|
|
|
{
|
2013-01-03 04:09:13 +03:00
|
|
|
logger.Debug("Registering Background Jobs...");
|
2012-05-04 01:08:35 +03:00
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
ContainerBuilder.RegisterType<JobProvider>().SingleInstance();
|
2012-05-04 01:08:35 +03:00
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
ContainerBuilder.RegisterAssemblyTypes(typeof(CentralDispatch).Assembly)
|
|
|
|
.Where(t => t.GetInterfaces().Contains(typeof(IJob)))
|
|
|
|
.As<IJob>()
|
|
|
|
.SingleInstance();
|
2011-04-20 05:17:28 +03:00
|
|
|
}
|
|
|
|
|
2013-01-03 07:09:37 +03:00
|
|
|
private void RegisterExternalNotifications()
|
2011-04-29 09:06:13 +03:00
|
|
|
{
|
2013-01-03 04:09:13 +03:00
|
|
|
logger.Debug("Registering External Notifications...");
|
2013-01-03 07:09:37 +03:00
|
|
|
|
|
|
|
ContainerBuilder.RegisterAssemblyTypes(typeof(CentralDispatch).Assembly)
|
|
|
|
.Where(t => t.BaseType == typeof(ExternalNotificationBase))
|
|
|
|
.As<ExternalNotificationBase>();
|
|
|
|
|
|
|
|
//ContainerBuilder.RegisterType<Xbmc>().As<ExternalNotificationBase>().SingleInstance();
|
|
|
|
//ContainerBuilder.RegisterType<Smtp>().As<ExternalNotificationBase>().SingleInstance();
|
|
|
|
//ContainerBuilder.RegisterType<Twitter>().As<ExternalNotificationBase>().SingleInstance();
|
|
|
|
//ContainerBuilder.RegisterType<Providers.ExternalNotification.Growl>().As<ExternalNotificationBase>().SingleInstance();
|
|
|
|
//ContainerBuilder.RegisterType<Prowl>().As<ExternalNotificationBase>().SingleInstance();
|
|
|
|
//ContainerBuilder.RegisterType<Plex>().As<ExternalNotificationBase>().SingleInstance();
|
2011-04-29 09:06:13 +03:00
|
|
|
}
|
2011-04-22 05:23:31 +03:00
|
|
|
|
2013-01-03 07:09:37 +03:00
|
|
|
private void RegisterMetadataProviders()
|
2012-07-13 00:48:09 +03:00
|
|
|
{
|
2013-01-03 04:09:13 +03:00
|
|
|
logger.Debug("Registering Metadata Providers...");
|
2012-07-13 00:48:09 +03:00
|
|
|
|
2013-01-03 07:09:37 +03:00
|
|
|
ContainerBuilder.RegisterAssemblyTypes(typeof(CentralDispatch).Assembly)
|
|
|
|
.Where(t => t.IsSubclassOf(typeof(MetadataBase)))
|
|
|
|
.As<MetadataBase>();
|
|
|
|
|
|
|
|
//ContainerBuilder.RegisterType<Providers.Metadata.Xbmc>().As<MetadataBase>().SingleInstance();
|
2013-01-03 04:09:13 +03:00
|
|
|
}
|
|
|
|
|
2013-01-03 07:09:37 +03:00
|
|
|
private void RegisterReporting(IContainer container)
|
2013-01-03 04:09:13 +03:00
|
|
|
{
|
|
|
|
EnvironmentProvider.UGuid = container.Resolve<ConfigProvider>().UGuid;
|
|
|
|
ReportingService.RestProvider = container.Resolve<RestProvider>();
|
|
|
|
ReportingService.SetupExceptronDriver();
|
|
|
|
}
|
2012-07-13 00:48:09 +03:00
|
|
|
|
2013-01-03 07:09:37 +03:00
|
|
|
private void RegisterQuality(IContainer container)
|
2013-01-03 04:09:13 +03:00
|
|
|
{
|
|
|
|
logger.Debug("Initializing Quality...");
|
|
|
|
container.Resolve<QualityProvider>().SetupDefaultProfiles();
|
|
|
|
container.Resolve<QualityTypeProvider>().SetupDefault();
|
2012-07-13 00:48:09 +03:00
|
|
|
}
|
|
|
|
|
2011-11-08 23:12:54 +03:00
|
|
|
public void DedicateToHost()
|
2010-10-17 20:22:48 +03:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2012-03-07 05:59:43 +03:00
|
|
|
var pid = _environmentProvider.NzbDroneProcessIdFromEnviroment;
|
2011-06-13 06:45:22 +03:00
|
|
|
|
2012-02-13 09:38:57 +03:00
|
|
|
logger.Debug("Attaching to parent process ({0}) for automatic termination.", pid);
|
2011-06-13 06:45:22 +03:00
|
|
|
|
|
|
|
var hostProcess = Process.GetProcessById(Convert.ToInt32(pid));
|
2010-10-17 20:22:48 +03:00
|
|
|
|
|
|
|
hostProcess.EnableRaisingEvents = true;
|
|
|
|
hostProcess.Exited += (delegate
|
2011-04-10 05:44:01 +03:00
|
|
|
{
|
2012-02-13 09:38:57 +03:00
|
|
|
logger.Info("Host has been terminated. Shutting down web server.");
|
2011-04-10 05:44:01 +03:00
|
|
|
ShutDown();
|
|
|
|
});
|
2010-10-17 20:22:48 +03:00
|
|
|
|
2012-02-13 09:38:57 +03:00
|
|
|
logger.Debug("Successfully Attached to host. Process [{0}]", hostProcess.ProcessName);
|
2010-10-17 20:22:48 +03:00
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
2012-02-13 09:38:57 +03:00
|
|
|
logger.FatalException("An error has occurred while dedicating to host.", e);
|
2010-10-17 20:22:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-03 06:04:42 +03:00
|
|
|
public IContainer BuildContainer()
|
2013-01-03 04:09:13 +03:00
|
|
|
{
|
|
|
|
var container = ContainerBuilder.Build();
|
|
|
|
|
|
|
|
logger.Debug("Initializing Components");
|
|
|
|
|
|
|
|
container.Resolve<DatabaseTarget>().Register();
|
|
|
|
LogConfiguration.Reload();
|
|
|
|
|
2013-01-03 07:09:37 +03:00
|
|
|
RegisterReporting(container);
|
|
|
|
RegisterQuality(container);
|
2013-01-03 04:09:13 +03:00
|
|
|
|
|
|
|
var indexers = container.Resolve<IEnumerable<IndexerBase>>();
|
|
|
|
container.Resolve<IndexerProvider>().InitializeIndexers(indexers.ToList());
|
|
|
|
|
|
|
|
var newznabIndexers = new List<NewznabDefinition>
|
|
|
|
{
|
|
|
|
new NewznabDefinition { Enable = false, Name = "Nzbs.org", Url = "http://nzbs.org", BuiltIn = true },
|
|
|
|
new NewznabDefinition { Enable = false, Name = "Nzb.su", Url = "https://nzb.su", BuiltIn = true },
|
|
|
|
new NewznabDefinition { Enable = false, Name = "Dognzb.cr", Url = "https://dognzb.cr", BuiltIn = true }
|
|
|
|
};
|
|
|
|
|
|
|
|
container.Resolve<NewznabProvider>().InitializeNewznabIndexers(newznabIndexers);
|
|
|
|
|
|
|
|
container.Resolve<JobProvider>().Initialize();
|
|
|
|
container.Resolve<WebTimer>().StartTimer(30);
|
|
|
|
|
|
|
|
var notifiers = container.Resolve<IEnumerable<ExternalNotificationBase>>();
|
|
|
|
container.Resolve<ExternalNotificationProvider>().InitializeNotifiers(notifiers.ToList());
|
|
|
|
|
|
|
|
var providers = container.Resolve<IEnumerable<MetadataBase>>();
|
|
|
|
container.Resolve<MetadataProvider>().Initialize(providers.ToList());
|
|
|
|
|
|
|
|
//SignalR
|
|
|
|
GlobalHost.DependencyResolver = new AutofacSignalrDependencyResolver(container.BeginLifetimeScope("SignalR"));
|
|
|
|
|
|
|
|
return container;
|
|
|
|
}
|
|
|
|
|
2010-10-17 20:22:48 +03:00
|
|
|
private static void ShutDown()
|
|
|
|
{
|
2012-02-13 09:38:57 +03:00
|
|
|
logger.Info("Shutting down application...");
|
2011-11-07 09:26:21 +03:00
|
|
|
WebTimer.Stop();
|
2010-10-17 20:22:48 +03:00
|
|
|
Process.GetCurrentProcess().Kill();
|
|
|
|
}
|
2010-09-23 06:19:47 +03:00
|
|
|
}
|
2011-11-10 07:14:19 +03:00
|
|
|
}
|