jellyfin/MediaBrowser.Server.Implementations/Connect/ConnectEntryPoint.cs

195 lines
6.1 KiB
C#
Raw Normal View History

2015-06-11 23:22:44 +02:00
using MediaBrowser.Common;
2015-06-04 22:27:46 +02:00
using MediaBrowser.Common.Configuration;
2014-08-25 05:54:45 +02:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Connect;
using MediaBrowser.Controller.Plugins;
using MediaBrowser.Model.Logging;
2015-06-03 05:16:39 +02:00
using MediaBrowser.Model.Net;
2014-08-25 05:54:45 +02:00
using System;
using System.IO;
using System.Net;
2016-03-25 17:23:48 +01:00
using System.Net.Sockets;
2014-08-25 05:54:45 +02:00
using System.Text;
2016-01-02 22:54:37 +01:00
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
using MediaBrowser.Common.Threading;
2014-08-25 05:54:45 +02:00
namespace MediaBrowser.Server.Implementations.Connect
{
public class ConnectEntryPoint : IServerEntryPoint
{
private PeriodicTimer _timer;
2014-08-25 05:54:45 +02:00
private readonly IHttpClient _httpClient;
private readonly IApplicationPaths _appPaths;
private readonly ILogger _logger;
private readonly IConnectManager _connectManager;
private readonly INetworkManager _networkManager;
2015-06-11 23:22:44 +02:00
private readonly IApplicationHost _appHost;
2015-09-14 01:07:54 +02:00
private readonly IFileSystem _fileSystem;
2014-08-25 05:54:45 +02:00
2015-09-14 01:07:54 +02:00
public ConnectEntryPoint(IHttpClient httpClient, IApplicationPaths appPaths, ILogger logger, INetworkManager networkManager, IConnectManager connectManager, IApplicationHost appHost, IFileSystem fileSystem)
2014-08-25 05:54:45 +02:00
{
_httpClient = httpClient;
_appPaths = appPaths;
_logger = logger;
_networkManager = networkManager;
_connectManager = connectManager;
2015-06-11 23:22:44 +02:00
_appHost = appHost;
2015-09-14 01:07:54 +02:00
_fileSystem = fileSystem;
2014-08-25 05:54:45 +02:00
}
public void Run()
{
2016-01-02 22:54:37 +01:00
Task.Run(() => LoadCachedAddress());
2014-08-25 05:54:45 +02:00
2016-01-29 04:42:03 +01:00
_timer = new PeriodicTimer(TimerCallback, null, TimeSpan.FromSeconds(5), TimeSpan.FromHours(3));
2014-08-25 05:54:45 +02:00
}
2016-03-25 17:23:48 +01:00
private readonly string[] _ipLookups =
{
"http://bot.whatismyipaddress.com",
"https://connect.emby.media/service/ip"
};
2015-06-04 22:27:46 +02:00
2014-08-25 05:54:45 +02:00
private async void TimerCallback(object state)
{
2016-03-25 17:23:48 +01:00
IPAddress validIpAddress = null;
2015-10-07 23:42:29 +02:00
2015-06-04 22:27:46 +02:00
foreach (var ipLookupUrl in _ipLookups)
2014-08-25 05:54:45 +02:00
{
2015-06-04 22:27:46 +02:00
try
2014-08-25 05:54:45 +02:00
{
2016-03-25 17:23:48 +01:00
validIpAddress = await GetIpAddress(ipLookupUrl).ConfigureAwait(false);
2016-03-25 06:39:49 +01:00
2016-03-25 17:23:48 +01:00
// Try to find the ipv4 address, if present
if (validIpAddress.AddressFamily == AddressFamily.InterNetwork)
2015-06-04 22:27:46 +02:00
{
2016-03-25 17:23:48 +01:00
break;
2014-08-25 05:54:45 +02:00
}
}
2015-06-04 22:27:46 +02:00
catch (HttpException)
{
}
catch (Exception ex)
{
_logger.ErrorException("Error getting connection info", ex);
}
2016-03-25 17:23:48 +01:00
}
// 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);
}
}
}
2015-10-07 23:42:29 +02:00
2016-03-25 17:23:48 +01:00
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);
}
2015-06-03 05:16:39 +02:00
}
2014-08-25 05:54:45 +02:00
}
private string CacheFilePath
{
get { return Path.Combine(_appPaths.DataPath, "wan.txt"); }
}
2016-03-25 17:23:48 +01:00
private void CacheAddress(IPAddress address)
2014-08-25 05:54:45 +02:00
{
var path = CacheFilePath;
try
{
2015-10-07 23:42:29 +02:00
_fileSystem.CreateDirectory(Path.GetDirectoryName(path));
2016-03-25 17:23:48 +01:00
_fileSystem.WriteAllText(path, address.ToString(), Encoding.UTF8);
2014-08-25 05:54:45 +02:00
}
catch (Exception ex)
{
_logger.ErrorException("Error saving data", ex);
}
}
private void LoadCachedAddress()
{
var path = CacheFilePath;
try
{
2015-10-07 23:42:29 +02:00
var endpoint = _fileSystem.ReadAllText(path, Encoding.UTF8);
2016-03-25 17:23:48 +01:00
IPAddress ipAddress;
2014-08-25 05:54:45 +02:00
2016-03-25 17:23:48 +01:00
if (IPAddress.TryParse(endpoint, out ipAddress))
2014-08-25 05:54:45 +02:00
{
2016-03-25 17:23:48 +01:00
((ConnectManager)_connectManager).OnWanAddressResolved(ipAddress);
2014-08-25 05:54:45 +02:00
}
}
catch (IOException)
{
// File isn't there. no biggie
}
catch (Exception ex)
{
_logger.ErrorException("Error loading data", ex);
}
}
public void Dispose()
{
if (_timer != null)
{
_timer.Dispose();
_timer = null;
}
}
}
}