2011-10-14 03:22:51 +02:00
|
|
|
|
using System;
|
2012-01-09 23:01:18 +01:00
|
|
|
|
using System.Diagnostics;
|
2011-10-14 03:22:51 +02:00
|
|
|
|
using System.Reflection;
|
2013-03-01 01:50:50 +01:00
|
|
|
|
using NLog;
|
2013-08-07 07:32:22 +02:00
|
|
|
|
using NzbDrone.Common.Composition;
|
2013-08-13 07:08:37 +02:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-05-24 05:23:59 +02:00
|
|
|
|
using NzbDrone.Common.Instrumentation;
|
2013-07-07 19:19:08 +02:00
|
|
|
|
using NzbDrone.Common.Security;
|
2013-06-28 03:03:04 +02:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2011-10-14 03:22:51 +02:00
|
|
|
|
|
2013-08-07 07:32:22 +02:00
|
|
|
|
namespace NzbDrone.Host
|
2011-10-14 03:22:51 +02:00
|
|
|
|
{
|
2013-08-07 07:32:22 +02:00
|
|
|
|
public static class Bootstrap
|
2011-10-14 03:22:51 +02:00
|
|
|
|
{
|
2013-08-13 07:08:37 +02:00
|
|
|
|
public static IContainer Start(StartupArguments args)
|
2011-10-14 03:22:51 +02:00
|
|
|
|
{
|
2013-08-13 07:08:37 +02:00
|
|
|
|
var logger = LogManager.GetLogger("AppMain");
|
|
|
|
|
|
2011-10-14 03:22:51 +02:00
|
|
|
|
try
|
|
|
|
|
{
|
2013-06-07 21:00:48 +02:00
|
|
|
|
GlobalExceptionHandlers.Register();
|
2013-07-07 19:19:08 +02:00
|
|
|
|
IgnoreCertErrorPolicy.Register();
|
2013-06-07 21:00:48 +02:00
|
|
|
|
|
2013-08-13 07:08:37 +02:00
|
|
|
|
logger.Info("Starting NzbDrone Console. Version {0}", Assembly.GetExecutingAssembly().GetName().Version);
|
2013-03-01 01:50:50 +01:00
|
|
|
|
|
2012-01-09 23:01:18 +01:00
|
|
|
|
//Check if full version .NET is installed.
|
|
|
|
|
try
|
|
|
|
|
{
|
2012-01-09 23:10:44 +01:00
|
|
|
|
Assembly.Load("System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a");
|
2012-01-09 23:01:18 +01:00
|
|
|
|
}
|
2012-01-09 23:10:44 +01:00
|
|
|
|
catch (Exception)
|
2012-01-09 23:01:18 +01:00
|
|
|
|
{
|
2013-08-13 07:08:37 +02:00
|
|
|
|
logger.Error("It looks like you don't have full version of .NET Framework installed. Press any key and you will be directed to the download page.");
|
2012-01-09 23:01:18 +01:00
|
|
|
|
Console.Read();
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Process.Start("http://www.microsoft.com/download/en/details.aspx?id=17851");
|
|
|
|
|
}
|
2013-03-01 01:50:50 +01:00
|
|
|
|
catch (Exception e)
|
2012-01-09 23:01:18 +01:00
|
|
|
|
{
|
2013-08-13 07:08:37 +02:00
|
|
|
|
logger.Warn("Oops. can't start default browser. Please visit http://www.microsoft.com/download/en/details.aspx?id=17851 to download .NET Framework 4.");
|
2012-01-09 23:01:18 +01:00
|
|
|
|
Console.ReadLine();
|
|
|
|
|
}
|
2013-03-01 01:50:50 +01:00
|
|
|
|
|
2013-08-07 07:32:22 +02:00
|
|
|
|
return null;
|
2012-01-09 23:01:18 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-09 02:47:09 +02:00
|
|
|
|
var container = MainAppContainerBuilder.BuildContainer(args);
|
2013-05-21 04:41:24 +02:00
|
|
|
|
|
2013-06-28 03:03:04 +02:00
|
|
|
|
DbFactory.RegisterDatabase(container);
|
2013-07-09 02:47:09 +02:00
|
|
|
|
container.Resolve<Router>().Route();
|
2013-08-07 07:32:22 +02:00
|
|
|
|
|
2013-08-13 07:08:37 +02:00
|
|
|
|
|
|
|
|
|
|
2013-08-07 07:32:22 +02:00
|
|
|
|
return container;
|
2011-10-14 03:22:51 +02:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2013-08-13 07:08:37 +02:00
|
|
|
|
logger.FatalException("Epic Fail " + e.Message, e);
|
2013-08-07 07:32:22 +02:00
|
|
|
|
throw;
|
2011-10-14 03:22:51 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|