Radarr/NzbDrone.Host/AccessControl/UrlAclAdapter.cs

89 lines
2.8 KiB
C#
Raw Normal View History

using System;
using System.Linq;
using NLog;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Core.Configuration;
2013-08-10 20:30:27 +00:00
namespace NzbDrone.Host.AccessControl
{
public interface IUrlAclAdapter
{
2013-09-21 02:50:57 +00:00
void ConfigureUrl();
2013-09-22 19:57:03 +00:00
string Url { get; }
string HttpsUrl { get; }
}
public class UrlAclAdapter : IUrlAclAdapter
{
2013-09-22 19:57:03 +00:00
private readonly INetshProvider _netshProvider;
private readonly IConfigFileProvider _configFileProvider;
2013-09-21 02:50:57 +00:00
private readonly IRuntimeInfo _runtimeInfo;
private readonly Logger _logger;
2013-09-22 19:57:03 +00:00
public string Url { get; private set; }
public string HttpsUrl { get; private set; }
2013-09-21 02:50:57 +00:00
private string _localUrl;
private string _wildcardUrl;
2013-09-22 19:57:03 +00:00
private string _localHttpsUrl;
private string _wildcardHttpsUrl;
2013-09-21 02:50:57 +00:00
2013-09-22 19:57:03 +00:00
public UrlAclAdapter(INetshProvider netshProvider,
2013-09-21 02:50:57 +00:00
IConfigFileProvider configFileProvider,
IRuntimeInfo runtimeInfo,
Logger logger)
{
2013-09-22 19:57:03 +00:00
_netshProvider = netshProvider;
_configFileProvider = configFileProvider;
2013-09-21 02:50:57 +00:00
_runtimeInfo = runtimeInfo;
_logger = logger;
2013-09-22 19:57:03 +00:00
_localUrl = String.Format("http://localhost:{0}/", _configFileProvider.Port);
_wildcardUrl = String.Format("http://*:{0}/", _configFileProvider.Port);
_localHttpsUrl = String.Format("https://localhost:{0}/", _configFileProvider.SslPort);
_wildcardHttpsUrl = String.Format("https://*:{0}/", _configFileProvider.SslPort);
2013-09-22 19:57:03 +00:00
Url = _wildcardUrl;
HttpsUrl = _wildcardHttpsUrl;
}
2013-09-21 02:50:57 +00:00
public void ConfigureUrl()
2013-08-30 22:55:01 +00:00
{
2013-09-22 19:57:03 +00:00
if (!_runtimeInfo.IsAdmin)
2013-08-30 22:55:01 +00:00
{
2013-09-22 19:57:03 +00:00
if (!IsRegistered(_wildcardUrl)) Url = _localUrl;
if (!IsRegistered(_wildcardHttpsUrl)) HttpsUrl = _localHttpsUrl;
}
2013-09-21 02:50:57 +00:00
if (_runtimeInfo.IsAdmin)
{
2013-09-21 02:50:57 +00:00
RefreshRegistration();
2013-08-30 22:55:01 +00:00
}
}
2013-09-21 02:50:57 +00:00
private void RefreshRegistration()
{
if (OsInfo.Version.Major < 6)
return;
2013-09-22 19:57:03 +00:00
RegisterUrl(Url);
RegisterUrl(HttpsUrl);
}
2013-09-22 19:57:03 +00:00
private bool IsRegistered(string urlAcl)
2013-09-21 02:50:57 +00:00
{
2013-09-22 19:57:03 +00:00
var arguments = String.Format("http show urlacl {0}", urlAcl);
var output = _netshProvider.Run(arguments);
2013-09-21 02:50:57 +00:00
2013-09-22 19:57:03 +00:00
if (output == null || !output.Standard.Any()) return false;
2013-09-21 02:50:57 +00:00
2013-09-22 19:57:03 +00:00
return output.Standard.Any(line => line.Contains(urlAcl));
}
2013-09-22 19:57:03 +00:00
private void RegisterUrl(string urlAcl)
{
2013-09-22 19:57:03 +00:00
var arguments = String.Format("http add urlacl {0} sddl=D:(A;;GX;;;S-1-1-0)", urlAcl);
_netshProvider.Run(arguments);
}
}
}