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

170 lines
5.2 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;
using System.Text;
using System.Threading;
2016-01-02 22:54:37 +01:00
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
2015-09-14 01:07:54 +02:00
using MediaBrowser.Common.IO;
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
}
2015-08-28 06:19:08 +02: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)
{
2015-10-07 23:42:29 +02:00
var index = 0;
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
{
2015-10-07 23:42:29 +02:00
// Sometimes whatismyipaddress might fail, but it won't do us any good having users raise alarms over it.
var logErrors = index > 0;
#if DEBUG
logErrors = true;
#endif
2015-06-04 22:27:46 +02:00
using (var stream = await _httpClient.Get(new HttpRequestOptions
2014-08-25 05:54:45 +02:00
{
2015-06-11 23:22:44 +02:00
Url = ipLookupUrl,
2015-10-25 19:34:31 +01:00
UserAgent = "Emby/" + _appHost.ApplicationVersion,
2016-01-23 19:21:35 +01:00
LogErrors = logErrors,
// Seeing block length errors with our server
2016-03-25 06:39:49 +01:00
EnableHttpCompression = false,
PreferIpv4 = true
2014-08-25 05:54:45 +02:00
2015-06-04 22:27:46 +02:00
}).ConfigureAwait(false))
{
using (var reader = new StreamReader(stream))
2014-08-25 05:54:45 +02:00
{
2015-06-04 22:27:46 +02:00
var address = await reader.ReadToEndAsync().ConfigureAwait(false);
2015-10-25 19:34:31 +01:00
if (IsValid(address, ipLookupUrl))
2015-06-04 22:27:46 +02:00
{
((ConnectManager)_connectManager).OnWanAddressResolved(address);
CacheAddress(address);
return;
}
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);
}
2015-10-07 23:42:29 +02:00
index++;
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"); }
}
private void CacheAddress(string address)
{
var path = CacheFilePath;
try
{
2015-10-07 23:42:29 +02:00
_fileSystem.CreateDirectory(Path.GetDirectoryName(path));
_fileSystem.WriteAllText(path, address, 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);
2014-08-25 05:54:45 +02:00
2015-10-25 19:34:31 +01:00
if (IsValid(endpoint, "cache"))
2014-08-25 05:54:45 +02:00
{
((ConnectManager)_connectManager).OnWanAddressResolved(endpoint);
}
}
catch (IOException)
{
// File isn't there. no biggie
}
catch (Exception ex)
{
_logger.ErrorException("Error loading data", ex);
}
}
2015-10-25 19:34:31 +01:00
private bool IsValid(string address, string source)
2014-08-25 05:54:45 +02:00
{
IPAddress ipAddress;
2015-06-04 06:50:10 +02:00
var valid = IPAddress.TryParse(address, out ipAddress);
if (!valid)
{
2015-10-25 19:34:31 +01:00
_logger.Error("{0} is not a valid ip address. Source: {1}", address, source);
2015-06-04 06:50:10 +02:00
}
return valid;
2014-08-25 05:54:45 +02:00
}
public void Dispose()
{
if (_timer != null)
{
_timer.Dispose();
_timer = null;
}
}
}
}