2013-08-16 04:20:54 +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-16 04:20:54 +02:00
|
|
|
|
public static IContainer Start(StartupArguments args, IUserAlert userAlert)
|
2011-10-14 03:22:51 +02:00
|
|
|
|
{
|
2013-08-13 07:08:37 +02:00
|
|
|
|
var logger = LogManager.GetLogger("AppMain");
|
|
|
|
|
|
2013-08-16 04:20:54 +02:00
|
|
|
|
GlobalExceptionHandlers.Register();
|
|
|
|
|
IgnoreCertErrorPolicy.Register();
|
2012-01-09 23:01:18 +01:00
|
|
|
|
|
2013-08-16 04:20:54 +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
|
|
|
|
|
2013-08-16 04:20:54 +02:00
|
|
|
|
if (!PlatformValidation.IsValidate(userAlert))
|
|
|
|
|
{
|
|
|
|
|
throw new TerminateApplicationException();
|
|
|
|
|
}
|
2013-08-07 07:32:22 +02:00
|
|
|
|
|
2013-08-16 04:20:54 +02:00
|
|
|
|
var container = MainAppContainerBuilder.BuildContainer(args);
|
2013-08-13 07:08:37 +02:00
|
|
|
|
|
2013-08-16 04:20:54 +02:00
|
|
|
|
DbFactory.RegisterDatabase(container);
|
|
|
|
|
container.Resolve<Router>().Route();
|
2013-08-13 07:08:37 +02:00
|
|
|
|
|
2013-08-16 04:20:54 +02:00
|
|
|
|
return container;
|
2011-10-14 03:22:51 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|