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