2013-08-15 19:20:54 -07:00
|
|
|
|
using System.Reflection;
|
2013-08-06 22:32:22 -07:00
|
|
|
|
using NzbDrone.Common.Composition;
|
2013-08-12 22:08:37 -07:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-05-23 20:23:59 -07:00
|
|
|
|
using NzbDrone.Common.Instrumentation;
|
2013-07-07 10:19:08 -07:00
|
|
|
|
using NzbDrone.Common.Security;
|
2013-06-27 18:03:04 -07:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2011-10-13 18:22:51 -07:00
|
|
|
|
|
2013-08-06 22:32:22 -07:00
|
|
|
|
namespace NzbDrone.Host
|
2011-10-13 18:22:51 -07:00
|
|
|
|
{
|
2013-08-06 22:32:22 -07:00
|
|
|
|
public static class Bootstrap
|
2011-10-13 18:22:51 -07:00
|
|
|
|
{
|
2013-08-15 19:20:54 -07:00
|
|
|
|
public static IContainer Start(StartupArguments args, IUserAlert userAlert)
|
2011-10-13 18:22:51 -07:00
|
|
|
|
{
|
2013-08-30 18:42:30 -07:00
|
|
|
|
var logger = NzbDroneLogger.GetLogger();
|
2013-08-12 22:08:37 -07:00
|
|
|
|
|
2013-08-15 19:20:54 -07:00
|
|
|
|
GlobalExceptionHandlers.Register();
|
|
|
|
|
IgnoreCertErrorPolicy.Register();
|
2012-01-09 14:01:18 -08:00
|
|
|
|
|
2013-08-15 19:20:54 -07:00
|
|
|
|
logger.Info("Starting NzbDrone Console. Version {0}", Assembly.GetExecutingAssembly().GetName().Version);
|
2013-02-28 16:50:50 -08:00
|
|
|
|
|
2012-01-09 14:01:18 -08:00
|
|
|
|
|
2013-08-15 19:20:54 -07:00
|
|
|
|
if (!PlatformValidation.IsValidate(userAlert))
|
|
|
|
|
{
|
|
|
|
|
throw new TerminateApplicationException();
|
|
|
|
|
}
|
2013-08-06 22:32:22 -07:00
|
|
|
|
|
2013-08-15 19:20:54 -07:00
|
|
|
|
var container = MainAppContainerBuilder.BuildContainer(args);
|
2013-08-12 22:08:37 -07:00
|
|
|
|
|
2013-08-15 19:20:54 -07:00
|
|
|
|
DbFactory.RegisterDatabase(container);
|
|
|
|
|
container.Resolve<Router>().Route();
|
2013-08-12 22:08:37 -07:00
|
|
|
|
|
2013-08-15 19:20:54 -07:00
|
|
|
|
return container;
|
2011-10-13 18:22:51 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|