2010-09-23 06:19:47 +03:00
|
|
|
using System;
|
2011-04-19 03:12:06 +03:00
|
|
|
using System.Linq;
|
2011-02-04 04:58:02 +02:00
|
|
|
using System.Collections.Generic;
|
2010-10-17 20:22:48 +03:00
|
|
|
using System.Diagnostics;
|
2010-09-24 05:19:55 +03:00
|
|
|
using System.IO;
|
2011-04-06 05:24:57 +03:00
|
|
|
using System.Web.Hosting;
|
2010-09-23 06:19:47 +03:00
|
|
|
using Ninject;
|
2011-04-10 05:44:01 +03:00
|
|
|
using NLog;
|
2011-05-24 02:29:14 +03:00
|
|
|
using NzbDrone.Core.Datastore;
|
2010-10-24 10:46:58 +03:00
|
|
|
using NzbDrone.Core.Instrumentation;
|
2010-09-28 07:25:41 +03:00
|
|
|
using NzbDrone.Core.Providers;
|
2011-04-04 06:50:12 +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;
|
2011-04-20 10:44:13 +03:00
|
|
|
using NzbDrone.Core.Providers.Jobs;
|
2010-10-21 04:49:23 +03:00
|
|
|
using NzbDrone.Core.Repository;
|
2011-02-04 04:58:02 +02:00
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2010-09-23 06:19:47 +03:00
|
|
|
using SubSonic.DataProviders;
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core
|
|
|
|
{
|
2010-10-05 09:21:18 +03:00
|
|
|
public static class CentralDispatch
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2011-03-30 09:18:35 +03:00
|
|
|
private static StandardKernel _kernel;
|
2011-04-10 03:14:51 +03:00
|
|
|
private static readonly Object KernelLock = new object();
|
2010-10-10 22:00:07 +03:00
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2010-10-08 01:17:24 +03:00
|
|
|
|
2011-04-10 05:44:01 +03:00
|
|
|
public static String AppPath
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (!String.IsNullOrWhiteSpace(HostingEnvironment.ApplicationPhysicalPath))
|
|
|
|
{
|
|
|
|
return HostingEnvironment.ApplicationPhysicalPath;
|
|
|
|
}
|
|
|
|
return Directory.GetCurrentDirectory();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static StandardKernel NinjectKernel
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (_kernel == null)
|
|
|
|
{
|
2011-05-24 02:29:14 +03:00
|
|
|
InitializeApp();
|
2011-04-10 05:44:01 +03:00
|
|
|
}
|
|
|
|
return _kernel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-24 02:29:14 +03:00
|
|
|
private static void InitializeApp()
|
|
|
|
{
|
|
|
|
BindKernel();
|
2011-05-27 05:12:28 +03:00
|
|
|
|
2011-05-24 02:29:14 +03:00
|
|
|
LogConfiguration.Setup();
|
2011-05-27 05:12:28 +03:00
|
|
|
|
2011-05-24 02:29:14 +03:00
|
|
|
Migrations.Run();
|
|
|
|
ForceMigration(_kernel.Get<IRepository>());
|
2011-05-27 05:12:28 +03:00
|
|
|
|
2011-05-24 02:29:14 +03:00
|
|
|
SetupDefaultQualityProfiles(_kernel.Get<IRepository>()); //Setup the default QualityProfiles on start-up
|
|
|
|
|
|
|
|
BindIndexers();
|
|
|
|
BindJobs();
|
|
|
|
BindExternalNotifications();
|
|
|
|
}
|
|
|
|
|
2010-10-10 22:00:07 +03:00
|
|
|
public static void BindKernel()
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2011-04-10 03:14:51 +03:00
|
|
|
lock (KernelLock)
|
2010-10-10 22:00:07 +03:00
|
|
|
{
|
|
|
|
Logger.Debug("Binding Ninject's Kernel");
|
|
|
|
_kernel = new StandardKernel();
|
|
|
|
|
2011-05-20 05:13:21 +03:00
|
|
|
//dbProvider.Log = new NlogWriter();
|
2011-04-10 03:14:51 +03:00
|
|
|
_kernel.Bind<QualityProvider>().ToSelf().InSingletonScope();
|
2011-04-20 10:44:13 +03:00
|
|
|
_kernel.Bind<TvDbProvider>().ToSelf().InTransientScope();
|
2011-04-10 03:14:51 +03:00
|
|
|
_kernel.Bind<HttpProvider>().ToSelf().InSingletonScope();
|
2011-04-09 02:55:23 +03:00
|
|
|
_kernel.Bind<SeriesProvider>().ToSelf().InSingletonScope();
|
2011-04-10 04:34:36 +03:00
|
|
|
_kernel.Bind<SeasonProvider>().ToSelf().InSingletonScope();
|
2011-04-10 03:14:51 +03:00
|
|
|
_kernel.Bind<EpisodeProvider>().ToSelf().InSingletonScope();
|
|
|
|
_kernel.Bind<UpcomingEpisodesProvider>().ToSelf().InSingletonScope();
|
|
|
|
_kernel.Bind<DiskProvider>().ToSelf().InSingletonScope();
|
|
|
|
_kernel.Bind<SabProvider>().ToSelf().InSingletonScope();
|
|
|
|
_kernel.Bind<HistoryProvider>().ToSelf().InSingletonScope();
|
|
|
|
_kernel.Bind<RootDirProvider>().ToSelf().InSingletonScope();
|
|
|
|
_kernel.Bind<ExternalNotificationProvider>().ToSelf().InSingletonScope();
|
|
|
|
_kernel.Bind<XbmcProvider>().ToSelf().InSingletonScope();
|
2011-04-10 04:34:36 +03:00
|
|
|
_kernel.Bind<ConfigProvider>().To<ConfigProvider>().InSingletonScope();
|
|
|
|
_kernel.Bind<SyncProvider>().ToSelf().InSingletonScope();
|
2011-04-09 03:08:03 +03:00
|
|
|
_kernel.Bind<RenameProvider>().ToSelf().InSingletonScope();
|
2011-04-09 02:55:23 +03:00
|
|
|
_kernel.Bind<NotificationProvider>().ToSelf().InSingletonScope();
|
2011-04-10 03:14:51 +03:00
|
|
|
_kernel.Bind<LogProvider>().ToSelf().InSingletonScope();
|
2011-04-10 04:34:36 +03:00
|
|
|
_kernel.Bind<MediaFileProvider>().ToSelf().InSingletonScope();
|
2011-04-20 10:44:13 +03:00
|
|
|
_kernel.Bind<JobProvider>().ToSelf().InSingletonScope();
|
2011-04-19 03:12:06 +03:00
|
|
|
_kernel.Bind<IndexerProvider>().ToSelf().InSingletonScope();
|
2011-04-22 08:46:47 +03:00
|
|
|
_kernel.Bind<WebTimer>().ToSelf().InSingletonScope();
|
2011-04-26 08:54:12 +03:00
|
|
|
_kernel.Bind<AutoConfigureProvider>().ToSelf().InSingletonScope();
|
2011-02-10 08:51:04 +02:00
|
|
|
|
2011-05-24 02:29:14 +03:00
|
|
|
_kernel.Bind<IRepository>().ToConstant(Connection.MainDataRepository).InSingletonScope();
|
|
|
|
_kernel.Bind<IRepository>().ToConstant(Connection.LogDataRepository).WhenInjectedInto<SubsonicTarget>().InSingletonScope();
|
|
|
|
_kernel.Bind<IRepository>().ToConstant(Connection.LogDataRepository).WhenInjectedInto<LogProvider>().InSingletonScope();
|
2010-10-10 22:00:07 +03:00
|
|
|
}
|
2010-09-23 06:19:47 +03:00
|
|
|
}
|
|
|
|
|
2011-04-19 03:12:06 +03:00
|
|
|
private static void BindIndexers()
|
|
|
|
{
|
2011-05-20 07:21:18 +03:00
|
|
|
_kernel.Bind<IndexerBase>().To<NzbsOrg>().InSingletonScope();
|
|
|
|
_kernel.Bind<IndexerBase>().To<NzbMatrix>().InSingletonScope();
|
|
|
|
_kernel.Bind<IndexerBase>().To<NzbsRUs>().InSingletonScope();
|
|
|
|
_kernel.Bind<IndexerBase>().To<Newzbin>().InSingletonScope();
|
2011-04-19 03:12:06 +03:00
|
|
|
}
|
|
|
|
|
2011-04-20 10:44:13 +03:00
|
|
|
private static void BindJobs()
|
2011-04-20 05:17:28 +03:00
|
|
|
{
|
2011-04-20 10:44:13 +03:00
|
|
|
_kernel.Bind<IJob>().To<RssSyncJob>().InTransientScope();
|
2011-05-21 03:23:49 +03:00
|
|
|
_kernel.Bind<IJob>().To<ImportNewSeriesJob>().InTransientScope();
|
2011-04-20 10:44:13 +03:00
|
|
|
_kernel.Bind<IJob>().To<UpdateInfoJob>().InTransientScope();
|
2011-05-21 03:23:49 +03:00
|
|
|
_kernel.Bind<IJob>().To<DiskScanJob>().InTransientScope();
|
2011-05-12 05:53:19 +03:00
|
|
|
_kernel.Bind<IJob>().To<DeleteSeriesJob>().InTransientScope();
|
2011-04-23 22:47:05 +03:00
|
|
|
|
2011-04-20 10:44:13 +03:00
|
|
|
_kernel.Get<JobProvider>().Initialize();
|
2011-04-22 08:46:47 +03:00
|
|
|
_kernel.Get<WebTimer>().StartTimer(30);
|
2011-04-20 05:17:28 +03:00
|
|
|
}
|
|
|
|
|
2011-04-29 09:06:13 +03:00
|
|
|
private static void BindExternalNotifications()
|
|
|
|
{
|
|
|
|
_kernel.Bind<ExternalNotificationProviderBase>().To<XbmcNotificationProvider>().InSingletonScope();
|
|
|
|
var notifiers = _kernel.GetAll<ExternalNotificationProviderBase>();
|
|
|
|
_kernel.Get<ExternalNotificationProvider>().InitializeNotifiers(notifiers.ToList());
|
|
|
|
}
|
2011-04-22 05:23:31 +03:00
|
|
|
|
2010-10-05 09:21:18 +03:00
|
|
|
private static void ForceMigration(IRepository repository)
|
|
|
|
{
|
2011-04-23 22:47:05 +03:00
|
|
|
repository.All<Series>().Count();
|
|
|
|
repository.All<Season>().Count();
|
|
|
|
repository.All<Episode>().Count();
|
|
|
|
repository.All<EpisodeFile>().Count();
|
|
|
|
repository.All<QualityProfile>().Count();
|
|
|
|
repository.All<History>().Count();
|
2011-05-18 05:53:31 +03:00
|
|
|
repository.All<IndexerSetting>().Count();
|
2010-10-05 09:21:18 +03:00
|
|
|
}
|
2010-10-17 20:22:48 +03:00
|
|
|
|
|
|
|
/// <summary>
|
2011-04-20 04:20:20 +03:00
|
|
|
/// Forces IISExpress process to exit with the host application
|
2010-10-17 20:22:48 +03:00
|
|
|
/// </summary>
|
|
|
|
public static void DedicateToHost()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2010-10-24 20:35:58 +03:00
|
|
|
Logger.Debug("Attaching to parent process for automatic termination.");
|
2011-04-10 05:44:01 +03:00
|
|
|
var pc = new PerformanceCounter("Process", "Creating Process ID",
|
|
|
|
Process.GetCurrentProcess().ProcessName);
|
2011-04-19 03:12:06 +03:00
|
|
|
var pid = (int)pc.NextValue();
|
2010-10-17 20:22:48 +03:00
|
|
|
var hostProcess = Process.GetProcessById(pid);
|
|
|
|
|
|
|
|
hostProcess.EnableRaisingEvents = true;
|
|
|
|
hostProcess.Exited += (delegate
|
2011-04-10 05:44:01 +03:00
|
|
|
{
|
|
|
|
Logger.Info("Host has been terminated. Shutting down web server.");
|
|
|
|
ShutDown();
|
|
|
|
});
|
2010-10-17 20:22:48 +03:00
|
|
|
|
2010-10-24 20:35:58 +03:00
|
|
|
Logger.Debug("Successfully Attached to host. Process ID: {0}", pid);
|
2010-10-17 20:22:48 +03:00
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
Logger.Fatal(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void ShutDown()
|
|
|
|
{
|
|
|
|
Logger.Info("Shutting down application.");
|
|
|
|
Process.GetCurrentProcess().Kill();
|
|
|
|
}
|
2011-01-29 08:10:22 +02:00
|
|
|
|
2011-02-04 04:58:02 +02:00
|
|
|
private static void SetupDefaultQualityProfiles(IRepository repository)
|
|
|
|
{
|
2011-03-27 03:16:50 +03:00
|
|
|
var sd = new QualityProfile
|
2011-04-10 05:44:01 +03:00
|
|
|
{
|
|
|
|
Name = "SD",
|
2011-05-23 20:20:43 +03:00
|
|
|
Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD },
|
|
|
|
Cutoff = QualityTypes.SDTV
|
2011-04-10 05:44:01 +03:00
|
|
|
};
|
2011-02-04 04:58:02 +02:00
|
|
|
|
2011-03-27 03:16:50 +03:00
|
|
|
var hd = new QualityProfile
|
2011-04-10 05:44:01 +03:00
|
|
|
{
|
|
|
|
Name = "HD",
|
|
|
|
Allowed =
|
2011-05-26 06:13:39 +03:00
|
|
|
new List<QualityTypes> { QualityTypes.HDTV, QualityTypes.WEBDL, QualityTypes.Bluray720p },
|
2011-04-10 05:44:01 +03:00
|
|
|
Cutoff = QualityTypes.HDTV
|
|
|
|
};
|
2011-02-04 04:58:02 +02:00
|
|
|
|
2011-03-27 03:16:50 +03:00
|
|
|
//Add or Update SD
|
|
|
|
Logger.Debug(String.Format("Checking for default QualityProfile: {0}", sd.Name));
|
|
|
|
var sdDb = repository.Single<QualityProfile>(i => i.Name == sd.Name);
|
|
|
|
if (sdDb == null)
|
2011-02-04 04:58:02 +02:00
|
|
|
{
|
2011-03-27 03:16:50 +03:00
|
|
|
Logger.Debug(String.Format("Adding new default QualityProfile: {0}", sd.Name));
|
|
|
|
repository.Add(sd);
|
2011-02-04 04:58:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
2011-03-27 03:16:50 +03:00
|
|
|
Logger.Debug(String.Format("Updating default QualityProfile: {0}", sd.Name));
|
|
|
|
sd.QualityProfileId = sdDb.QualityProfileId;
|
|
|
|
repository.Update(sd);
|
2011-02-04 04:58:02 +02:00
|
|
|
}
|
|
|
|
|
2011-03-27 03:16:50 +03:00
|
|
|
//Add or Update HD
|
|
|
|
Logger.Debug(String.Format("Checking for default QualityProfile: {0}", hd.Name));
|
|
|
|
var hdDb = repository.Single<QualityProfile>(i => i.Name == hd.Name);
|
|
|
|
if (hdDb == null)
|
2011-02-04 04:58:02 +02:00
|
|
|
{
|
2011-03-27 03:16:50 +03:00
|
|
|
Logger.Debug(String.Format("Adding new default QualityProfile: {0}", hd.Name));
|
|
|
|
repository.Add(hd);
|
2011-02-04 04:58:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
2011-03-27 03:16:50 +03:00
|
|
|
Logger.Debug(String.Format("Updating default QualityProfile: {0}", hd.Name));
|
|
|
|
hd.QualityProfileId = hdDb.QualityProfileId;
|
|
|
|
repository.Update(hd);
|
2011-02-04 04:58:02 +02:00
|
|
|
}
|
|
|
|
}
|
2010-09-23 06:19:47 +03:00
|
|
|
}
|
2010-09-28 08:58:49 +03:00
|
|
|
}
|