2019-11-01 17:38:54 +00:00
|
|
|
#pragma warning disable CS1591
|
2019-12-10 23:13:57 +00:00
|
|
|
#pragma warning disable SA1600
|
2019-11-01 17:38:54 +00:00
|
|
|
|
2013-12-07 15:52:38 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2019-02-25 17:26:17 +00:00
|
|
|
using System.Diagnostics;
|
2013-12-07 15:52:38 +00:00
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2019-01-13 19:20:41 +00:00
|
|
|
using System.Net.Sockets;
|
2019-12-17 22:15:02 +00:00
|
|
|
using System.Net.WebSockets;
|
2013-12-07 15:52:38 +00:00
|
|
|
using System.Reflection;
|
2017-05-22 04:54:02 +00:00
|
|
|
using System.Threading;
|
2013-12-07 15:52:38 +00:00
|
|
|
using System.Threading.Tasks;
|
2017-02-13 01:07:48 +00:00
|
|
|
using Emby.Server.Implementations.Services;
|
2019-12-17 22:15:02 +00:00
|
|
|
using Emby.Server.Implementations.SocketSharp;
|
2019-01-13 19:20:41 +00:00
|
|
|
using MediaBrowser.Common.Extensions;
|
2015-12-14 14:45:42 +00:00
|
|
|
using MediaBrowser.Common.Net;
|
2016-10-26 06:01:42 +00:00
|
|
|
using MediaBrowser.Controller;
|
2019-01-13 19:20:41 +00:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
using MediaBrowser.Controller.Net;
|
|
|
|
using MediaBrowser.Model.Events;
|
2016-11-10 14:41:24 +00:00
|
|
|
using MediaBrowser.Model.Serialization;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.Services;
|
2019-02-26 19:13:48 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2019-12-17 22:15:02 +00:00
|
|
|
using Microsoft.AspNetCore.Http.Extensions;
|
2019-02-27 11:40:18 +00:00
|
|
|
using Microsoft.AspNetCore.WebUtilities;
|
2019-02-17 10:54:47 +00:00
|
|
|
using Microsoft.Extensions.Configuration;
|
2019-01-13 19:20:41 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2019-12-17 22:15:02 +00:00
|
|
|
using Microsoft.Net.Http.Headers;
|
2019-02-17 10:54:47 +00:00
|
|
|
using ServiceStack.Text.Jsv;
|
2013-12-07 15:52:38 +00:00
|
|
|
|
2016-11-11 03:29:51 +00:00
|
|
|
namespace Emby.Server.Implementations.HttpServer
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2017-02-13 02:06:54 +00:00
|
|
|
public class HttpListenerHost : IHttpServer, IDisposable
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2019-07-28 21:53:19 +00:00
|
|
|
private readonly ILogger _logger;
|
2019-12-17 22:15:02 +00:00
|
|
|
private readonly ILoggerFactory _loggerFactory;
|
2015-06-13 04:14:48 +00:00
|
|
|
private readonly IServerConfigurationManager _config;
|
2015-12-14 14:45:42 +00:00
|
|
|
private readonly INetworkManager _networkManager;
|
2016-10-26 06:01:42 +00:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
2016-11-10 14:41:24 +00:00
|
|
|
private readonly IJsonSerializer _jsonSerializer;
|
|
|
|
private readonly IXmlSerializer _xmlSerializer;
|
2016-11-11 03:29:51 +00:00
|
|
|
private readonly Func<Type, Func<string, object>> _funcParseFn;
|
2019-07-28 21:53:19 +00:00
|
|
|
private readonly string _defaultRedirectPath;
|
2019-10-08 19:18:34 +00:00
|
|
|
private readonly string _baseUrlPrefix;
|
2017-02-13 02:06:54 +00:00
|
|
|
private readonly Dictionary<Type, Type> ServiceOperationsMap = new Dictionary<Type, Type>();
|
2018-09-12 17:26:21 +00:00
|
|
|
private IWebSocketListener[] _webSocketListeners = Array.Empty<IWebSocketListener>();
|
2019-07-28 21:53:19 +00:00
|
|
|
private bool _disposed = false;
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-01-06 19:35:36 +00:00
|
|
|
public HttpListenerHost(
|
|
|
|
IServerApplicationHost applicationHost,
|
2019-07-28 21:53:19 +00:00
|
|
|
ILogger<HttpListenerHost> logger,
|
2015-06-13 04:14:48 +00:00
|
|
|
IServerConfigurationManager config,
|
2019-02-17 10:54:47 +00:00
|
|
|
IConfiguration configuration,
|
2019-01-06 19:35:36 +00:00
|
|
|
INetworkManager networkManager,
|
|
|
|
IJsonSerializer jsonSerializer,
|
2019-02-26 19:22:40 +00:00
|
|
|
IXmlSerializer xmlSerializer,
|
2019-12-17 22:15:02 +00:00
|
|
|
ILoggerFactory loggerFactory)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2016-10-26 06:01:42 +00:00
|
|
|
_appHost = applicationHost;
|
2019-07-28 21:53:19 +00:00
|
|
|
_logger = logger;
|
2019-01-06 19:35:36 +00:00
|
|
|
_config = config;
|
2019-07-28 21:53:19 +00:00
|
|
|
_defaultRedirectPath = configuration["HttpListenerHost:DefaultRedirectPath"];
|
2019-10-08 19:18:34 +00:00
|
|
|
_baseUrlPrefix = _config.Configuration.BaseUrl;
|
2015-12-14 14:45:42 +00:00
|
|
|
_networkManager = networkManager;
|
2016-11-10 14:41:24 +00:00
|
|
|
_jsonSerializer = jsonSerializer;
|
|
|
|
_xmlSerializer = xmlSerializer;
|
2019-12-17 22:15:02 +00:00
|
|
|
_loggerFactory = loggerFactory;
|
2019-02-26 18:37:39 +00:00
|
|
|
|
2019-02-17 10:54:47 +00:00
|
|
|
_funcParseFn = t => s => JsvReader.GetParseFn(t)(s);
|
2017-02-13 01:07:48 +00:00
|
|
|
|
2019-01-06 19:35:36 +00:00
|
|
|
Instance = this;
|
2019-07-28 21:53:19 +00:00
|
|
|
ResponseFilters = Array.Empty<Action<IRequest, HttpResponse, object>>();
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
public Action<IRequest, HttpResponse, object>[] ResponseFilters { get; set; }
|
|
|
|
|
|
|
|
public static HttpListenerHost Instance { get; protected set; }
|
|
|
|
|
|
|
|
public string[] UrlPrefixes { get; private set; }
|
|
|
|
|
2015-09-13 23:07:54 +00:00
|
|
|
public string GlobalResponse { get; set; }
|
2015-10-30 17:00:33 +00:00
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
public ServiceController ServiceController { get; private set; }
|
|
|
|
|
|
|
|
public event EventHandler<GenericEventArgs<IWebSocketConnection>> WebSocketConnected;
|
2016-11-08 18:44:23 +00:00
|
|
|
|
2017-02-13 02:06:54 +00:00
|
|
|
public object CreateInstance(Type type)
|
2016-11-10 14:41:24 +00:00
|
|
|
{
|
2017-02-13 01:07:48 +00:00
|
|
|
return _appHost.CreateInstance(type);
|
2016-11-10 14:41:24 +00:00
|
|
|
}
|
|
|
|
|
2019-10-09 13:22:55 +00:00
|
|
|
private static string NormalizeUrlPath(string path)
|
2019-10-08 19:18:34 +00:00
|
|
|
{
|
|
|
|
if (path.StartsWith("/"))
|
|
|
|
{
|
|
|
|
// If the path begins with a leading slash, just return it as-is
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If the path does not begin with a leading slash, append one for consistency
|
|
|
|
return "/" + path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-13 01:07:48 +00:00
|
|
|
/// <summary>
|
2019-01-07 23:27:46 +00:00
|
|
|
/// Applies the request filters. Returns whether or not the request has been handled
|
2017-02-13 01:07:48 +00:00
|
|
|
/// and no more processing should be done.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
2019-07-28 21:53:19 +00:00
|
|
|
public void ApplyRequestFilters(IRequest req, HttpResponse res, object requestDto)
|
2016-11-11 01:37:20 +00:00
|
|
|
{
|
2019-09-22 09:36:41 +00:00
|
|
|
// Exec all RequestFilter attributes with Priority < 0
|
2017-02-13 01:07:48 +00:00
|
|
|
var attributes = GetRequestFilterAttributes(requestDto.GetType());
|
2017-08-30 18:52:29 +00:00
|
|
|
|
2019-01-06 19:35:36 +00:00
|
|
|
int count = attributes.Count;
|
|
|
|
int i = 0;
|
2017-08-30 18:52:29 +00:00
|
|
|
for (; i < count && attributes[i].Priority < 0; i++)
|
2017-02-13 01:07:48 +00:00
|
|
|
{
|
|
|
|
var attribute = attributes[i];
|
|
|
|
attribute.RequestFilter(req, res, requestDto);
|
|
|
|
}
|
|
|
|
|
2019-09-22 09:36:41 +00:00
|
|
|
// Exec remaining RequestFilter attributes with Priority >= 0
|
2017-08-30 18:52:29 +00:00
|
|
|
for (; i < count && attributes[i].Priority >= 0; i++)
|
2017-02-13 01:07:48 +00:00
|
|
|
{
|
|
|
|
var attribute = attributes[i];
|
|
|
|
attribute.RequestFilter(req, res, requestDto);
|
|
|
|
}
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
|
|
|
|
2017-02-13 01:07:48 +00:00
|
|
|
public Type GetServiceTypeByRequest(Type requestType)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2019-01-13 20:46:33 +00:00
|
|
|
ServiceOperationsMap.TryGetValue(requestType, out var serviceType);
|
2017-02-13 01:07:48 +00:00
|
|
|
return serviceType;
|
|
|
|
}
|
2013-12-07 15:52:38 +00:00
|
|
|
|
2017-08-19 19:43:35 +00:00
|
|
|
public void AddServiceInfo(Type serviceType, Type requestType)
|
2017-02-13 01:07:48 +00:00
|
|
|
{
|
|
|
|
ServiceOperationsMap[requestType] = serviceType;
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
|
|
|
|
2017-08-30 18:52:29 +00:00
|
|
|
private List<IHasRequestFilter> GetRequestFilterAttributes(Type requestDtoType)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2019-03-26 18:20:40 +00:00
|
|
|
var attributes = requestDtoType.GetCustomAttributes(true).OfType<IHasRequestFilter>().ToList();
|
2017-02-13 01:07:48 +00:00
|
|
|
|
|
|
|
var serviceType = GetServiceTypeByRequest(requestDtoType);
|
|
|
|
if (serviceType != null)
|
|
|
|
{
|
2019-03-26 18:20:40 +00:00
|
|
|
attributes.AddRange(serviceType.GetCustomAttributes(true).OfType<IHasRequestFilter>());
|
2017-02-13 01:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
attributes.Sort((x, y) => x.Priority - y.Priority);
|
|
|
|
|
2017-08-30 18:52:29 +00:00
|
|
|
return attributes;
|
2014-07-09 00:46:11 +00:00
|
|
|
}
|
2013-12-07 15:52:38 +00:00
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static Exception GetActualException(Exception ex)
|
2017-07-22 22:58:03 +00:00
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
if (ex is AggregateException agg)
|
2017-07-22 22:58:03 +00:00
|
|
|
{
|
|
|
|
var inner = agg.InnerException;
|
|
|
|
if (inner != null)
|
|
|
|
{
|
|
|
|
return GetActualException(inner);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var inners = agg.InnerExceptions;
|
|
|
|
if (inners != null && inners.Count > 0)
|
|
|
|
{
|
|
|
|
return GetActualException(inners[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ex;
|
|
|
|
}
|
|
|
|
|
2016-12-27 07:24:44 +00:00
|
|
|
private int GetStatusCode(Exception ex)
|
|
|
|
{
|
2019-01-06 19:35:36 +00:00
|
|
|
switch (ex)
|
2016-12-27 07:24:44 +00:00
|
|
|
{
|
2019-01-18 16:04:01 +00:00
|
|
|
case ArgumentException _: return 400;
|
|
|
|
case SecurityException _: return 401;
|
2019-01-06 19:35:36 +00:00
|
|
|
case DirectoryNotFoundException _:
|
|
|
|
case FileNotFoundException _:
|
2019-01-18 16:04:01 +00:00
|
|
|
case ResourceNotFoundException _: return 404;
|
2019-04-18 02:31:06 +00:00
|
|
|
case MethodNotAllowedException _: return 405;
|
2019-01-18 16:04:01 +00:00
|
|
|
default: return 500;
|
2016-12-27 07:24:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-09 11:00:22 +00:00
|
|
|
private async Task ErrorHandler(Exception ex, IRequest httpReq, bool logExceptionStackTrace)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2017-07-22 22:58:03 +00:00
|
|
|
ex = GetActualException(ex);
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (logExceptionStackTrace)
|
2016-12-26 17:38:12 +00:00
|
|
|
{
|
2019-07-28 21:53:19 +00:00
|
|
|
_logger.LogError(ex, "Error processing request");
|
2016-12-26 17:38:12 +00:00
|
|
|
}
|
2019-10-09 11:00:22 +00:00
|
|
|
else
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2019-10-09 11:05:32 +00:00
|
|
|
_logger.LogError("Error processing request: {Message}", ex.Message);
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2016-11-10 14:41:24 +00:00
|
|
|
|
2013-12-07 15:52:38 +00:00
|
|
|
var httpRes = httpReq.Response;
|
2014-07-04 02:22:57 +00:00
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
if (httpRes.HasStarted)
|
2014-07-04 02:22:57 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2015-01-17 19:30:23 +00:00
|
|
|
|
2016-12-27 07:24:44 +00:00
|
|
|
var statusCode = GetStatusCode(ex);
|
2016-11-12 06:58:50 +00:00
|
|
|
httpRes.StatusCode = statusCode;
|
2013-12-07 15:52:38 +00:00
|
|
|
|
2019-10-09 10:54:05 +00:00
|
|
|
var errContent = NormalizeExceptionMessage(ex.Message);
|
|
|
|
httpRes.ContentType = "text/plain";
|
|
|
|
httpRes.ContentLength = errContent.Length;
|
|
|
|
await httpRes.WriteAsync(errContent).ConfigureAwait(false);
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
2018-12-20 12:11:26 +00:00
|
|
|
catch (Exception errorEx)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2019-07-28 21:53:19 +00:00
|
|
|
_logger.LogError(errorEx, "Error this.ProcessRequest(context)(Exception while writing error to the response)");
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
private string NormalizeExceptionMessage(string msg)
|
|
|
|
{
|
|
|
|
if (msg == null)
|
|
|
|
{
|
|
|
|
return string.Empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Strip any information we don't want to reveal
|
|
|
|
|
|
|
|
msg = msg.Replace(_config.ApplicationPaths.ProgramSystemPath, string.Empty, StringComparison.OrdinalIgnoreCase);
|
|
|
|
msg = msg.Replace(_config.ApplicationPaths.ProgramDataPath, string.Empty, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2016-03-15 19:11:53 +00:00
|
|
|
public static string RemoveQueryStringByKey(string url, string key)
|
|
|
|
{
|
|
|
|
var uri = new Uri(url);
|
|
|
|
|
|
|
|
// this gets all the query string key value pairs as a collection
|
2019-02-27 11:40:18 +00:00
|
|
|
var newQueryString = QueryHelpers.ParseQuery(uri.Query);
|
2016-03-15 19:11:53 +00:00
|
|
|
|
2016-11-11 03:29:51 +00:00
|
|
|
var originalCount = newQueryString.Count;
|
|
|
|
|
|
|
|
if (originalCount == 0)
|
2016-03-15 19:11:53 +00:00
|
|
|
{
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this removes the key if exists
|
|
|
|
newQueryString.Remove(key);
|
|
|
|
|
2016-11-11 03:29:51 +00:00
|
|
|
if (originalCount == newQueryString.Count)
|
|
|
|
{
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
2016-03-15 19:11:53 +00:00
|
|
|
// this gets the page path from root without QueryString
|
2016-11-11 03:29:51 +00:00
|
|
|
string pagePathWithoutQueryString = url.Split(new[] { '?' }, StringSplitOptions.RemoveEmptyEntries)[0];
|
2016-03-15 19:11:53 +00:00
|
|
|
|
|
|
|
return newQueryString.Count > 0
|
2019-03-04 19:08:54 +00:00
|
|
|
? QueryHelpers.AddQueryString(pagePathWithoutQueryString, newQueryString.ToDictionary(kv => kv.Key, kv => kv.Value.ToString()))
|
2016-03-15 19:11:53 +00:00
|
|
|
: pagePathWithoutQueryString;
|
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static string GetUrlToLog(string url)
|
2016-03-15 19:11:53 +00:00
|
|
|
{
|
|
|
|
url = RemoveQueryStringByKey(url, "api_key");
|
|
|
|
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static string NormalizeConfiguredLocalAddress(string address)
|
2016-08-18 06:26:47 +00:00
|
|
|
{
|
2019-03-26 18:20:40 +00:00
|
|
|
var add = address.AsSpan().Trim('/');
|
|
|
|
int index = add.IndexOf('/');
|
2016-08-18 06:26:47 +00:00
|
|
|
if (index != -1)
|
|
|
|
{
|
2019-03-26 18:20:40 +00:00
|
|
|
add = add.Slice(index + 1);
|
2016-08-18 06:26:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 18:20:40 +00:00
|
|
|
return add.TrimStart('/').ToString();
|
2016-08-18 06:26:47 +00:00
|
|
|
}
|
|
|
|
|
2017-09-03 07:28:58 +00:00
|
|
|
private bool ValidateHost(string host)
|
2016-08-18 06:26:47 +00:00
|
|
|
{
|
|
|
|
var hosts = _config
|
|
|
|
.Configuration
|
|
|
|
.LocalNetworkAddresses
|
|
|
|
.Select(NormalizeConfiguredLocalAddress)
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
if (hosts.Count == 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-03 07:28:58 +00:00
|
|
|
host = host ?? string.Empty;
|
2016-08-18 06:26:47 +00:00
|
|
|
|
|
|
|
if (_networkManager.IsInPrivateAddressSpace(host))
|
|
|
|
{
|
|
|
|
hosts.Add("localhost");
|
|
|
|
hosts.Add("127.0.0.1");
|
|
|
|
|
|
|
|
return hosts.Any(i => host.IndexOf(i, StringComparison.OrdinalIgnoreCase) != -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
private bool ValidateRequest(string remoteIp, bool isLocal)
|
|
|
|
{
|
|
|
|
if (isLocal)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_config.Configuration.EnableRemoteAccess)
|
|
|
|
{
|
|
|
|
var addressFilter = _config.Configuration.RemoteIPFilter.Where(i => !string.IsNullOrWhiteSpace(i)).ToArray();
|
|
|
|
|
|
|
|
if (addressFilter.Length > 0 && !_networkManager.IsInLocalNetwork(remoteIp))
|
|
|
|
{
|
|
|
|
if (_config.Configuration.IsRemoteIPFilterBlacklist)
|
|
|
|
{
|
|
|
|
return !_networkManager.IsAddressInSubnets(remoteIp, addressFilter);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return _networkManager.IsAddressInSubnets(remoteIp, addressFilter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!_networkManager.IsInLocalNetwork(remoteIp))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-30 17:40:42 +00:00
|
|
|
private bool ValidateSsl(string remoteIp, string urlString)
|
2017-09-29 19:17:54 +00:00
|
|
|
{
|
2019-12-17 22:15:02 +00:00
|
|
|
if (_config.Configuration.RequireHttps
|
|
|
|
&& _appHost.EnableHttps
|
|
|
|
&& !_config.Configuration.IsBehindProxy
|
|
|
|
&& !urlString.Contains("https://", StringComparison.OrdinalIgnoreCase))
|
2017-09-29 19:17:54 +00:00
|
|
|
{
|
2019-12-17 22:15:02 +00:00
|
|
|
// These are hacks, but if these ever occur on ipv6 in the local network they could be incorrectly redirected
|
|
|
|
if (urlString.IndexOf("system/ping", StringComparison.OrdinalIgnoreCase) != -1
|
|
|
|
|| urlString.IndexOf("dlna/", StringComparison.OrdinalIgnoreCase) != -1)
|
2017-09-29 19:17:54 +00:00
|
|
|
{
|
2019-12-17 22:15:02 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-12-17 22:15:02 +00:00
|
|
|
if (!_networkManager.IsInLocalNetwork(remoteIp))
|
|
|
|
{
|
|
|
|
return false;
|
2017-09-29 19:17:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-17 22:15:02 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public Task RequestHandler(HttpContext context)
|
|
|
|
{
|
|
|
|
if (context.WebSockets.IsWebSocketRequest)
|
|
|
|
{
|
|
|
|
return WebSocketRequestHandler(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
var request = context.Request;
|
|
|
|
var response = context.Response;
|
|
|
|
var localPath = context.Request.Path.ToString();
|
|
|
|
|
|
|
|
var req = new WebSocketSharpRequest(request, response, request.Path, _logger);
|
|
|
|
return RequestHandler(req, request.GetDisplayUrl(), request.Host.ToString(), localPath, context.RequestAborted);
|
|
|
|
}
|
|
|
|
|
2013-12-07 15:52:38 +00:00
|
|
|
/// <summary>
|
2019-12-17 22:15:02 +00:00
|
|
|
/// Overridable method that can be used to implement a custom handler
|
2013-12-07 15:52:38 +00:00
|
|
|
/// </summary>
|
2019-12-17 22:15:02 +00:00
|
|
|
private async Task RequestHandler(IHttpRequest httpReq, string urlString, string host, string localPath, CancellationToken cancellationToken)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2019-02-25 17:26:17 +00:00
|
|
|
var stopWatch = new Stopwatch();
|
|
|
|
stopWatch.Start();
|
2014-07-18 22:14:59 +00:00
|
|
|
var httpRes = httpReq.Response;
|
2016-11-08 18:44:23 +00:00
|
|
|
string urlToLog = null;
|
2018-09-12 17:26:21 +00:00
|
|
|
string remoteIp = httpReq.RemoteIp;
|
2014-07-09 00:46:11 +00:00
|
|
|
|
2016-11-08 18:44:23 +00:00
|
|
|
try
|
2016-04-22 16:12:20 +00:00
|
|
|
{
|
2016-11-08 18:44:23 +00:00
|
|
|
if (_disposed)
|
|
|
|
{
|
|
|
|
httpRes.StatusCode = 503;
|
2016-11-13 21:04:21 +00:00
|
|
|
httpRes.ContentType = "text/plain";
|
2019-07-28 21:53:19 +00:00
|
|
|
await httpRes.WriteAsync("Server shutting down", cancellationToken).ConfigureAwait(false);
|
2016-11-08 18:44:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-04-22 16:12:20 +00:00
|
|
|
|
2017-09-03 07:28:58 +00:00
|
|
|
if (!ValidateHost(host))
|
2016-11-08 18:44:23 +00:00
|
|
|
{
|
|
|
|
httpRes.StatusCode = 400;
|
|
|
|
httpRes.ContentType = "text/plain";
|
2019-07-28 21:53:19 +00:00
|
|
|
await httpRes.WriteAsync("Invalid host", cancellationToken).ConfigureAwait(false);
|
2016-11-08 18:44:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-08-18 06:26:47 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!ValidateRequest(remoteIp, httpReq.IsLocal))
|
2017-09-29 19:17:54 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
httpRes.StatusCode = 403;
|
|
|
|
httpRes.ContentType = "text/plain";
|
2019-07-28 21:53:19 +00:00
|
|
|
await httpRes.WriteAsync("Forbidden", cancellationToken).ConfigureAwait(false);
|
2018-09-12 17:26:21 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-09-30 17:40:42 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!ValidateSsl(httpReq.RemoteIp, urlString))
|
|
|
|
{
|
|
|
|
RedirectToSecureUrl(httpReq, httpRes, urlString);
|
2017-09-29 19:17:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-08 18:44:23 +00:00
|
|
|
if (string.Equals(httpReq.Verb, "OPTIONS", StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
httpRes.StatusCode = 200;
|
2019-07-28 21:53:19 +00:00
|
|
|
httpRes.Headers.Add("Access-Control-Allow-Origin", "*");
|
|
|
|
httpRes.Headers.Add("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, PATCH, OPTIONS");
|
|
|
|
httpRes.Headers.Add("Access-Control-Allow-Headers", "Content-Type, Authorization, Range, X-MediaBrowser-Token, X-Emby-Authorization");
|
2016-11-27 00:40:15 +00:00
|
|
|
httpRes.ContentType = "text/plain";
|
2019-07-28 21:53:19 +00:00
|
|
|
await httpRes.WriteAsync(string.Empty, cancellationToken).ConfigureAwait(false);
|
2016-11-08 18:44:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-08-18 06:26:47 +00:00
|
|
|
|
2019-02-25 17:26:17 +00:00
|
|
|
urlToLog = GetUrlToLog(urlString);
|
2016-01-23 03:10:21 +00:00
|
|
|
|
2019-10-08 19:18:34 +00:00
|
|
|
if (string.Equals(localPath, _baseUrlPrefix + "/", StringComparison.OrdinalIgnoreCase)
|
|
|
|
|| string.Equals(localPath, _baseUrlPrefix, StringComparison.OrdinalIgnoreCase)
|
|
|
|
|| string.Equals(localPath, "/", StringComparison.OrdinalIgnoreCase)
|
|
|
|
|| string.IsNullOrEmpty(localPath)
|
|
|
|
|| !localPath.StartsWith(_baseUrlPrefix))
|
2016-11-08 18:44:23 +00:00
|
|
|
{
|
2019-10-08 19:18:34 +00:00
|
|
|
// Always redirect back to the default path if the base prefix is invalid or missing
|
|
|
|
_logger.LogDebug("Normalizing a URL at {0}", localPath);
|
|
|
|
httpRes.Redirect(_baseUrlPrefix + "/" + _defaultRedirectPath);
|
2016-11-08 18:44:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-03-18 03:40:15 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!string.IsNullOrEmpty(GlobalResponse))
|
2016-11-08 18:44:23 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
// We don't want the address pings in ApplicationHost to fail
|
|
|
|
if (localPath.IndexOf("system/ping", StringComparison.OrdinalIgnoreCase) == -1)
|
|
|
|
{
|
|
|
|
httpRes.StatusCode = 503;
|
|
|
|
httpRes.ContentType = "text/html";
|
2019-07-28 21:53:19 +00:00
|
|
|
await httpRes.WriteAsync(GlobalResponse, cancellationToken).ConfigureAwait(false);
|
2018-09-12 17:26:21 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-03-25 17:48:18 +00:00
|
|
|
}
|
2016-03-18 06:36:58 +00:00
|
|
|
|
2017-02-13 01:07:48 +00:00
|
|
|
var handler = GetServiceHandler(httpReq);
|
2016-11-08 18:44:23 +00:00
|
|
|
if (handler != null)
|
|
|
|
{
|
2019-07-28 21:53:19 +00:00
|
|
|
await handler.ProcessRequestAsync(this, httpReq, httpRes, _logger, cancellationToken).ConfigureAwait(false);
|
2016-11-08 18:44:23 +00:00
|
|
|
}
|
2016-11-12 06:58:50 +00:00
|
|
|
else
|
|
|
|
{
|
2019-10-09 11:00:22 +00:00
|
|
|
await ErrorHandler(new FileNotFoundException(), httpReq, false).ConfigureAwait(false);
|
2016-11-12 06:58:50 +00:00
|
|
|
}
|
2016-02-21 06:25:25 +00:00
|
|
|
}
|
2019-02-25 17:26:17 +00:00
|
|
|
catch (Exception ex) when (ex is SocketException || ex is IOException || ex is OperationCanceledException)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2019-10-09 11:00:22 +00:00
|
|
|
await ErrorHandler(ex, httpReq, false).ConfigureAwait(false);
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
catch (SecurityException ex)
|
|
|
|
{
|
2019-10-09 11:00:22 +00:00
|
|
|
await ErrorHandler(ex, httpReq, false).ConfigureAwait(false);
|
2016-12-26 17:38:12 +00:00
|
|
|
}
|
2016-11-08 18:44:23 +00:00
|
|
|
catch (Exception ex)
|
2015-09-13 23:07:54 +00:00
|
|
|
{
|
2017-09-24 20:24:12 +00:00
|
|
|
var logException = !string.Equals(ex.GetType().Name, "SocketException", StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
2019-10-09 11:00:22 +00:00
|
|
|
await ErrorHandler(ex, httpReq, logException).ConfigureAwait(false);
|
2015-09-13 23:07:54 +00:00
|
|
|
}
|
2016-11-08 18:44:23 +00:00
|
|
|
finally
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2019-10-10 15:47:02 +00:00
|
|
|
if (httpRes.StatusCode >= 500)
|
|
|
|
{
|
|
|
|
_logger.LogDebug("Sending HTTP Response 500 in response to {Url}", urlToLog);
|
|
|
|
}
|
2019-10-16 13:13:59 +00:00
|
|
|
|
2019-02-25 17:26:17 +00:00
|
|
|
stopWatch.Stop();
|
|
|
|
var elapsed = stopWatch.Elapsed;
|
2019-02-26 18:37:39 +00:00
|
|
|
if (elapsed.TotalMilliseconds > 500)
|
2014-07-09 00:46:11 +00:00
|
|
|
{
|
2019-07-28 21:53:19 +00:00
|
|
|
_logger.LogWarning("HTTP Response {StatusCode} to {RemoteIp}. Time (slow): {Elapsed:g}. {Url}", httpRes.StatusCode, remoteIp, elapsed, urlToLog);
|
2016-07-14 19:13:52 +00:00
|
|
|
}
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-17 22:15:02 +00:00
|
|
|
private async Task WebSocketRequestHandler(HttpContext context)
|
|
|
|
{
|
|
|
|
if (_disposed)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var url = context.Request.GetDisplayUrl();
|
|
|
|
_logger.LogInformation("WS {Url}. UserAgent: {UserAgent}", url, context.Request.Headers[HeaderNames.UserAgent].ToString());
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
var webSocket = await context.WebSockets.AcceptWebSocketAsync(null).ConfigureAwait(false);
|
|
|
|
|
|
|
|
var connection = new WebSocketConnection(
|
|
|
|
_loggerFactory.CreateLogger<WebSocketConnection>(),
|
|
|
|
webSocket,
|
|
|
|
context.Connection.RemoteIpAddress)
|
|
|
|
{
|
|
|
|
Url = url,
|
|
|
|
QueryString = context.Request.Query,
|
|
|
|
OnReceive = ProcessWebSocketMessageReceived
|
|
|
|
};
|
|
|
|
|
|
|
|
WebSocketConnected?.Invoke(this, new GenericEventArgs<IWebSocketConnection>(connection));
|
|
|
|
|
|
|
|
await connection.ProcessAsync().ConfigureAwait(false);
|
|
|
|
}
|
|
|
|
catch (WebSocketException ex)
|
|
|
|
{
|
|
|
|
_logger.LogError(ex, "ProcessWebSocketRequest error");
|
|
|
|
if (!context.Response.HasStarted)
|
|
|
|
{
|
|
|
|
context.Response.StatusCode = 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-13 01:07:48 +00:00
|
|
|
// Entry point for HttpListener
|
|
|
|
public ServiceHandler GetServiceHandler(IHttpRequest httpReq)
|
|
|
|
{
|
|
|
|
var pathInfo = httpReq.PathInfo;
|
|
|
|
|
2019-03-26 18:20:40 +00:00
|
|
|
pathInfo = ServiceHandler.GetSanitizedPathInfo(pathInfo, out string contentType);
|
|
|
|
var restPath = ServiceController.GetRestPathForRequest(httpReq.HttpMethod, pathInfo);
|
2017-02-13 01:07:48 +00:00
|
|
|
if (restPath != null)
|
|
|
|
{
|
2019-03-26 18:20:40 +00:00
|
|
|
return new ServiceHandler(restPath, contentType);
|
2017-02-13 01:07:48 +00:00
|
|
|
}
|
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
_logger.LogError("Could not find handler for {PathInfo}", pathInfo);
|
2017-02-13 01:07:48 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
private void RedirectToSecureUrl(IHttpRequest httpReq, HttpResponse httpRes, string url)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2019-01-06 19:35:36 +00:00
|
|
|
if (Uri.TryCreate(url, UriKind.Absolute, out Uri uri))
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2019-01-06 19:35:36 +00:00
|
|
|
var builder = new UriBuilder(uri)
|
|
|
|
{
|
|
|
|
Port = _config.Configuration.PublicHttpsPort,
|
|
|
|
Scheme = "https"
|
|
|
|
};
|
2018-09-12 17:26:21 +00:00
|
|
|
url = builder.Uri.ToString();
|
|
|
|
}
|
2016-11-12 07:14:04 +00:00
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
httpRes.Redirect(url);
|
2016-11-08 18:44:23 +00:00
|
|
|
}
|
|
|
|
|
2013-12-07 15:52:38 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Adds the rest handlers.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="services">The services.</param>
|
2019-03-07 21:49:41 +00:00
|
|
|
/// <param name="listeners"></param>
|
|
|
|
/// <param name="urlPrefixes"></param>
|
|
|
|
public void Init(IEnumerable<IService> services, IEnumerable<IWebSocketListener> listeners, IEnumerable<string> urlPrefixes)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
_webSocketListeners = listeners.ToArray();
|
2019-03-07 21:49:41 +00:00
|
|
|
UrlPrefixes = urlPrefixes.ToArray();
|
2017-08-09 19:56:38 +00:00
|
|
|
ServiceController = new ServiceController();
|
2013-12-07 15:52:38 +00:00
|
|
|
|
2019-03-26 18:20:40 +00:00
|
|
|
var types = services.Select(r => r.GetType());
|
2017-08-09 19:56:38 +00:00
|
|
|
ServiceController.Init(this, types);
|
2017-02-13 01:07:48 +00:00
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
ResponseFilters = new Action<IRequest, HttpResponse, object>[]
|
2017-08-30 18:52:29 +00:00
|
|
|
{
|
2019-07-28 21:53:19 +00:00
|
|
|
new ResponseFilter(_logger).FilterResponse
|
2017-08-30 18:52:29 +00:00
|
|
|
};
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
|
|
|
|
2017-02-13 02:06:54 +00:00
|
|
|
public RouteAttribute[] GetRouteAttributes(Type requestType)
|
2015-01-17 19:30:23 +00:00
|
|
|
{
|
2017-02-13 02:06:54 +00:00
|
|
|
var routes = requestType.GetTypeInfo().GetCustomAttributes<RouteAttribute>(true).ToList();
|
2015-01-17 19:30:23 +00:00
|
|
|
var clone = routes.ToList();
|
|
|
|
|
|
|
|
foreach (var route in clone)
|
|
|
|
{
|
2019-10-08 19:18:34 +00:00
|
|
|
routes.Add(new RouteAttribute(NormalizeCustomRoutePath(route.Path), route.Verbs)
|
2017-10-07 06:13:26 +00:00
|
|
|
{
|
|
|
|
Notes = route.Notes,
|
|
|
|
Priority = route.Priority,
|
|
|
|
Summary = route.Summary
|
|
|
|
});
|
2019-08-05 23:27:10 +00:00
|
|
|
|
2019-09-22 09:36:41 +00:00
|
|
|
routes.Add(new RouteAttribute(NormalizeEmbyRoutePath(route.Path), route.Verbs)
|
|
|
|
{
|
|
|
|
Notes = route.Notes,
|
|
|
|
Priority = route.Priority,
|
|
|
|
Summary = route.Summary
|
|
|
|
});
|
|
|
|
|
|
|
|
routes.Add(new RouteAttribute(NormalizeMediaBrowserRoutePath(route.Path), route.Verbs)
|
2019-08-05 23:27:10 +00:00
|
|
|
{
|
|
|
|
Notes = route.Notes,
|
|
|
|
Priority = route.Priority,
|
|
|
|
Summary = route.Summary
|
|
|
|
});
|
2015-01-17 19:30:23 +00:00
|
|
|
}
|
|
|
|
|
2018-12-28 15:48:26 +00:00
|
|
|
return routes.ToArray();
|
2015-01-17 19:30:23 +00:00
|
|
|
}
|
|
|
|
|
2017-02-13 02:06:54 +00:00
|
|
|
public Func<string, object> GetParseFn(Type propertyType)
|
2016-11-11 01:37:20 +00:00
|
|
|
{
|
2016-11-11 03:29:51 +00:00
|
|
|
return _funcParseFn(propertyType);
|
2016-11-11 01:37:20 +00:00
|
|
|
}
|
|
|
|
|
2017-02-13 02:06:54 +00:00
|
|
|
public void SerializeToJson(object o, Stream stream)
|
2016-11-10 14:41:24 +00:00
|
|
|
{
|
|
|
|
_jsonSerializer.SerializeToStream(o, stream);
|
|
|
|
}
|
|
|
|
|
2017-02-13 02:06:54 +00:00
|
|
|
public void SerializeToXml(object o, Stream stream)
|
2016-11-10 14:41:24 +00:00
|
|
|
{
|
|
|
|
_xmlSerializer.SerializeToStream(o, stream);
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public Task<object> DeserializeXml(Type type, Stream stream)
|
2016-11-10 14:41:24 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
return Task.FromResult(_xmlSerializer.DeserializeFromStream(type, stream));
|
2016-11-10 14:41:24 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public Task<object> DeserializeJson(Type type, Stream stream)
|
2016-11-10 14:41:24 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
return _jsonSerializer.DeserializeFromStreamAsync(stream, type);
|
2016-11-10 14:41:24 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 19:18:34 +00:00
|
|
|
private string NormalizeEmbyRoutePath(string path)
|
2019-08-05 23:27:10 +00:00
|
|
|
{
|
2019-10-08 19:18:34 +00:00
|
|
|
_logger.LogDebug("Normalizing /emby route");
|
|
|
|
return _baseUrlPrefix + "/emby" + NormalizeUrlPath(path);
|
2019-08-05 23:27:10 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 19:18:34 +00:00
|
|
|
private string NormalizeMediaBrowserRoutePath(string path)
|
2019-09-22 09:36:41 +00:00
|
|
|
{
|
2019-10-08 19:18:34 +00:00
|
|
|
_logger.LogDebug("Normalizing /mediabrowser route");
|
|
|
|
return _baseUrlPrefix + "/mediabrowser" + NormalizeUrlPath(path);
|
2019-09-22 09:36:41 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 19:18:34 +00:00
|
|
|
private string NormalizeCustomRoutePath(string path)
|
2015-04-11 21:34:05 +00:00
|
|
|
{
|
2019-10-08 19:18:34 +00:00
|
|
|
_logger.LogDebug("Normalizing custom route {0}", path);
|
|
|
|
return _baseUrlPrefix + NormalizeUrlPath(path);
|
2015-04-11 21:34:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
2019-02-26 07:09:42 +00:00
|
|
|
|
2013-12-07 15:52:38 +00:00
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
{
|
|
|
|
if (_disposed) return;
|
2016-12-28 06:08:18 +00:00
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
if (disposing)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2019-12-17 22:15:02 +00:00
|
|
|
// TODO:
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
2019-07-28 21:53:19 +00:00
|
|
|
|
|
|
|
_disposed = true;
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Processes the web socket message received.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="result">The result.</param>
|
|
|
|
private Task ProcessWebSocketMessageReceived(WebSocketMessageInfo result)
|
|
|
|
{
|
|
|
|
if (_disposed)
|
|
|
|
{
|
|
|
|
return Task.CompletedTask;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:53:19 +00:00
|
|
|
_logger.LogDebug("Websocket message received: {0}", result.MessageType);
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-02-24 02:16:19 +00:00
|
|
|
IEnumerable<Task> GetTasks()
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2019-02-24 02:16:19 +00:00
|
|
|
foreach (var x in _webSocketListeners)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2019-02-24 02:16:19 +00:00
|
|
|
yield return x.ProcessMessageAsync(result);
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2019-02-24 02:16:19 +00:00
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-02-24 02:16:19 +00:00
|
|
|
return Task.WhenAll(GetTasks());
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
2018-12-28 15:48:26 +00:00
|
|
|
}
|