2011-10-07 05:37:41 +02:00
|
|
|
|
using System;
|
2011-10-14 03:22:51 +02:00
|
|
|
|
using System.ServiceProcess;
|
2011-10-07 05:37:41 +02:00
|
|
|
|
using NLog;
|
2011-10-23 07:26:43 +02:00
|
|
|
|
using NzbDrone.Common;
|
2013-06-28 02:04:52 +02:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-05-23 07:12:01 +02:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
|
using NzbDrone.Host;
|
2013-05-04 23:09:25 +02:00
|
|
|
|
using NzbDrone.Owin;
|
2011-10-07 05:37:41 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone
|
|
|
|
|
{
|
2013-04-16 06:52:41 +02:00
|
|
|
|
public interface INzbDroneServiceFactory
|
2011-10-07 05:37:41 +02:00
|
|
|
|
{
|
2013-04-16 06:52:41 +02:00
|
|
|
|
ServiceBase Build();
|
|
|
|
|
void Start();
|
|
|
|
|
}
|
2011-10-07 05:37:41 +02:00
|
|
|
|
|
2013-04-16 06:52:41 +02:00
|
|
|
|
public class NzbDroneServiceFactory : ServiceBase, INzbDroneServiceFactory
|
|
|
|
|
{
|
2013-05-11 01:53:50 +02:00
|
|
|
|
private readonly IConfigFileProvider _configFileProvider;
|
2013-06-28 02:04:52 +02:00
|
|
|
|
private readonly IRuntimeInfo _runtimeInfo;
|
2013-02-19 02:57:08 +01:00
|
|
|
|
private readonly IHostController _hostController;
|
2013-05-11 01:53:50 +02:00
|
|
|
|
private readonly IProcessProvider _processProvider;
|
2013-03-01 01:50:50 +01:00
|
|
|
|
private readonly PriorityMonitor _priorityMonitor;
|
2013-05-20 04:35:48 +02:00
|
|
|
|
private readonly IFirewallAdapter _firewallAdapter;
|
|
|
|
|
private readonly IUrlAclAdapter _urlAclAdapter;
|
2013-04-16 06:52:41 +02:00
|
|
|
|
private readonly Logger _logger;
|
2011-10-07 05:37:41 +02:00
|
|
|
|
|
2013-06-28 02:04:52 +02:00
|
|
|
|
public NzbDroneServiceFactory(IConfigFileProvider configFileProvider, IHostController hostController, IRuntimeInfo runtimeInfo,
|
2013-05-11 01:53:50 +02:00
|
|
|
|
IProcessProvider processProvider, PriorityMonitor priorityMonitor,
|
2013-05-20 04:35:48 +02:00
|
|
|
|
IFirewallAdapter firewallAdapter, IUrlAclAdapter urlAclAdapter, Logger logger)
|
2011-10-07 05:37:41 +02:00
|
|
|
|
{
|
2011-11-13 08:27:16 +01:00
|
|
|
|
_configFileProvider = configFileProvider;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
_hostController = hostController;
|
2013-06-28 02:04:52 +02:00
|
|
|
|
_runtimeInfo = runtimeInfo;
|
2011-10-07 05:37:41 +02:00
|
|
|
|
_processProvider = processProvider;
|
2013-03-01 01:50:50 +01:00
|
|
|
|
_priorityMonitor = priorityMonitor;
|
2013-05-20 04:35:48 +02:00
|
|
|
|
_firewallAdapter = firewallAdapter;
|
|
|
|
|
_urlAclAdapter = urlAclAdapter;
|
2013-04-16 06:52:41 +02:00
|
|
|
|
_logger = logger;
|
2011-10-07 05:37:41 +02:00
|
|
|
|
}
|
2011-10-14 03:22:51 +02:00
|
|
|
|
|
2011-10-15 02:41:09 +02:00
|
|
|
|
protected override void OnStart(string[] args)
|
2011-10-14 03:22:51 +02:00
|
|
|
|
{
|
|
|
|
|
Start();
|
2011-10-09 04:16:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-16 06:52:41 +02:00
|
|
|
|
public void Start()
|
2011-10-07 05:37:41 +02:00
|
|
|
|
{
|
2013-06-28 02:04:52 +02:00
|
|
|
|
if (_runtimeInfo.IsAdmin)
|
2013-05-20 04:35:48 +02:00
|
|
|
|
{
|
|
|
|
|
_urlAclAdapter.RefreshRegistration();
|
|
|
|
|
_firewallAdapter.MakeAccessible();
|
2013-01-01 21:54:54 +01:00
|
|
|
|
|
2013-05-20 04:35:48 +02:00
|
|
|
|
}
|
2013-02-19 02:13:42 +01:00
|
|
|
|
_hostController.StartServer();
|
2011-10-07 05:37:41 +02:00
|
|
|
|
|
2013-06-28 02:04:52 +02:00
|
|
|
|
if (_runtimeInfo.IsUserInteractive && _configFileProvider.LaunchBrowser)
|
2011-10-07 05:37:41 +02:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-04-16 06:52:41 +02:00
|
|
|
|
_logger.Info("Starting default browser. {0}", _hostController.AppUrl);
|
2013-02-19 02:13:42 +01:00
|
|
|
|
_processProvider.Start(_hostController.AppUrl);
|
2011-10-07 05:37:41 +02:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2013-04-16 06:52:41 +02:00
|
|
|
|
_logger.ErrorException("Failed to open URL in default browser.", e);
|
2011-10-07 05:37:41 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-01 01:50:50 +01:00
|
|
|
|
_priorityMonitor.Start();
|
2011-10-14 03:22:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-10-15 02:41:09 +02:00
|
|
|
|
protected override void OnStop()
|
2011-10-07 05:37:41 +02:00
|
|
|
|
{
|
2013-04-16 06:52:41 +02:00
|
|
|
|
_logger.Info("Attempting to stop application.");
|
2013-02-19 02:13:42 +01:00
|
|
|
|
_hostController.StopServer();
|
2013-04-16 06:52:41 +02:00
|
|
|
|
_logger.Info("Application has finished stop routine.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ServiceBase Build()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
2011-10-07 05:37:41 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-04-16 06:52:41 +02:00
|
|
|
|
|
2011-10-07 08:57:43 +02:00
|
|
|
|
}
|