update connection
This commit is contained in:
parent
ae684cf0a5
commit
e619a0dc90
|
@ -8,6 +8,7 @@ using MediaBrowser.Model.Net;
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
using System.Net.Sockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
@ -47,46 +48,26 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||||
_timer = new PeriodicTimer(TimerCallback, null, TimeSpan.FromSeconds(5), TimeSpan.FromHours(3));
|
_timer = new PeriodicTimer(TimerCallback, null, TimeSpan.FromSeconds(5), TimeSpan.FromHours(3));
|
||||||
}
|
}
|
||||||
|
|
||||||
private readonly string[] _ipLookups = { "http://bot.whatismyipaddress.com", "https://connect.emby.media/service/ip" };
|
private readonly string[] _ipLookups =
|
||||||
|
{
|
||||||
|
"http://bot.whatismyipaddress.com",
|
||||||
|
"https://connect.emby.media/service/ip"
|
||||||
|
};
|
||||||
|
|
||||||
private async void TimerCallback(object state)
|
private async void TimerCallback(object state)
|
||||||
{
|
{
|
||||||
var index = 0;
|
IPAddress validIpAddress = null;
|
||||||
|
|
||||||
foreach (var ipLookupUrl in _ipLookups)
|
foreach (var ipLookupUrl in _ipLookups)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Sometimes whatismyipaddress might fail, but it won't do us any good having users raise alarms over it.
|
validIpAddress = await GetIpAddress(ipLookupUrl).ConfigureAwait(false);
|
||||||
var logErrors = index > 0;
|
|
||||||
|
|
||||||
#if DEBUG
|
// Try to find the ipv4 address, if present
|
||||||
logErrors = true;
|
if (validIpAddress.AddressFamily == AddressFamily.InterNetwork)
|
||||||
#endif
|
|
||||||
using (var stream = await _httpClient.Get(new HttpRequestOptions
|
|
||||||
{
|
{
|
||||||
Url = ipLookupUrl,
|
break;
|
||||||
UserAgent = "Emby/" + _appHost.ApplicationVersion,
|
|
||||||
LogErrors = logErrors,
|
|
||||||
|
|
||||||
// Seeing block length errors with our server
|
|
||||||
EnableHttpCompression = false,
|
|
||||||
|
|
||||||
PreferIpv4 = true
|
|
||||||
|
|
||||||
}).ConfigureAwait(false))
|
|
||||||
{
|
|
||||||
using (var reader = new StreamReader(stream))
|
|
||||||
{
|
|
||||||
var address = await reader.ReadToEndAsync().ConfigureAwait(false);
|
|
||||||
|
|
||||||
if (IsValid(address, ipLookupUrl))
|
|
||||||
{
|
|
||||||
((ConnectManager)_connectManager).OnWanAddressResolved(address);
|
|
||||||
CacheAddress(address);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (HttpException)
|
catch (HttpException)
|
||||||
|
@ -96,8 +77,66 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||||
{
|
{
|
||||||
_logger.ErrorException("Error getting connection info", ex);
|
_logger.ErrorException("Error getting connection info", ex);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
index++;
|
// If this produced an ipv6 address, try again
|
||||||
|
if (validIpAddress == null || validIpAddress.AddressFamily == AddressFamily.InterNetworkV6)
|
||||||
|
{
|
||||||
|
foreach (var ipLookupUrl in _ipLookups)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
validIpAddress = await GetIpAddress(ipLookupUrl, true).ConfigureAwait(false);
|
||||||
|
|
||||||
|
// Try to find the ipv4 address, if present
|
||||||
|
if (validIpAddress.AddressFamily == AddressFamily.InterNetwork)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (HttpException)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.ErrorException("Error getting connection info", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (validIpAddress != null)
|
||||||
|
{
|
||||||
|
((ConnectManager)_connectManager).OnWanAddressResolved(validIpAddress);
|
||||||
|
CacheAddress(validIpAddress);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<IPAddress> GetIpAddress(string lookupUrl, bool preferIpv4 = false)
|
||||||
|
{
|
||||||
|
// Sometimes whatismyipaddress might fail, but it won't do us any good having users raise alarms over it.
|
||||||
|
var logErrors = false;
|
||||||
|
|
||||||
|
#if DEBUG
|
||||||
|
logErrors = true;
|
||||||
|
#endif
|
||||||
|
using (var stream = await _httpClient.Get(new HttpRequestOptions
|
||||||
|
{
|
||||||
|
Url = lookupUrl,
|
||||||
|
UserAgent = "Emby/" + _appHost.ApplicationVersion,
|
||||||
|
LogErrors = logErrors,
|
||||||
|
|
||||||
|
// Seeing block length errors with our server
|
||||||
|
EnableHttpCompression = false,
|
||||||
|
PreferIpv4 = preferIpv4
|
||||||
|
|
||||||
|
}).ConfigureAwait(false))
|
||||||
|
{
|
||||||
|
using (var reader = new StreamReader(stream))
|
||||||
|
{
|
||||||
|
var addressString = await reader.ReadToEndAsync().ConfigureAwait(false);
|
||||||
|
|
||||||
|
return IPAddress.Parse(addressString);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,14 +145,14 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||||
get { return Path.Combine(_appPaths.DataPath, "wan.txt"); }
|
get { return Path.Combine(_appPaths.DataPath, "wan.txt"); }
|
||||||
}
|
}
|
||||||
|
|
||||||
private void CacheAddress(string address)
|
private void CacheAddress(IPAddress address)
|
||||||
{
|
{
|
||||||
var path = CacheFilePath;
|
var path = CacheFilePath;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
_fileSystem.CreateDirectory(Path.GetDirectoryName(path));
|
_fileSystem.CreateDirectory(Path.GetDirectoryName(path));
|
||||||
_fileSystem.WriteAllText(path, address, Encoding.UTF8);
|
_fileSystem.WriteAllText(path, address.ToString(), Encoding.UTF8);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
@ -128,10 +167,11 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var endpoint = _fileSystem.ReadAllText(path, Encoding.UTF8);
|
var endpoint = _fileSystem.ReadAllText(path, Encoding.UTF8);
|
||||||
|
IPAddress ipAddress;
|
||||||
|
|
||||||
if (IsValid(endpoint, "cache"))
|
if (IPAddress.TryParse(endpoint, out ipAddress))
|
||||||
{
|
{
|
||||||
((ConnectManager)_connectManager).OnWanAddressResolved(endpoint);
|
((ConnectManager)_connectManager).OnWanAddressResolved(ipAddress);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (IOException)
|
catch (IOException)
|
||||||
|
@ -144,19 +184,6 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool IsValid(string address, string source)
|
|
||||||
{
|
|
||||||
IPAddress ipAddress;
|
|
||||||
var valid = IPAddress.TryParse(address, out ipAddress);
|
|
||||||
|
|
||||||
if (!valid)
|
|
||||||
{
|
|
||||||
_logger.Error("{0} is not a valid ip address. Source: {1}", address, source);
|
|
||||||
}
|
|
||||||
|
|
||||||
return valid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
if (_timer != null)
|
if (_timer != null)
|
||||||
|
|
|
@ -19,6 +19,7 @@ using System.Globalization;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
using System.Net.Sockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
@ -53,7 +54,7 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||||
get { return _data.AccessKey; }
|
get { return _data.AccessKey; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public string DiscoveredWanIpAddress { get; private set; }
|
private IPAddress DiscoveredWanIpAddress { get; set; }
|
||||||
|
|
||||||
public string WanIpAddress
|
public string WanIpAddress
|
||||||
{
|
{
|
||||||
|
@ -61,9 +62,16 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||||
{
|
{
|
||||||
var address = _config.Configuration.WanDdns;
|
var address = _config.Configuration.WanDdns;
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(address))
|
if (string.IsNullOrWhiteSpace(address) && DiscoveredWanIpAddress != null)
|
||||||
{
|
{
|
||||||
address = DiscoveredWanIpAddress;
|
if (DiscoveredWanIpAddress.AddressFamily == AddressFamily.InterNetworkV6)
|
||||||
|
{
|
||||||
|
address = "[" + DiscoveredWanIpAddress + "]";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
address = DiscoveredWanIpAddress.ToString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return address;
|
return address;
|
||||||
|
@ -81,12 +89,6 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||||
if (!ip.StartsWith("http://", StringComparison.OrdinalIgnoreCase) &&
|
if (!ip.StartsWith("http://", StringComparison.OrdinalIgnoreCase) &&
|
||||||
!ip.StartsWith("https://", StringComparison.OrdinalIgnoreCase))
|
!ip.StartsWith("https://", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
// Handle ipv6
|
|
||||||
if (ip.IndexOf(':') != -1)
|
|
||||||
{
|
|
||||||
ip = "[" + ip + "]";
|
|
||||||
}
|
|
||||||
|
|
||||||
ip = (_appHost.EnableHttps ? "https://" : "http://") + ip;
|
ip = (_appHost.EnableHttps ? "https://" : "http://") + ip;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,7 +132,7 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||||
LoadCachedData();
|
LoadCachedData();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void OnWanAddressResolved(string address)
|
internal void OnWanAddressResolved(IPAddress address)
|
||||||
{
|
{
|
||||||
DiscoveredWanIpAddress = address;
|
DiscoveredWanIpAddress = address;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user