| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Diagnostics;
 
- using System.Globalization;
 
- using System.IO;
 
- using System.Linq;
 
- using System.Net.Sockets;
 
- using System.Reflection;
 
- using System.Text;
 
- using System.Threading;
 
- using System.Threading.Tasks;
 
- using Emby.Server.Implementations.Net;
 
- using Emby.Server.Implementations.Services;
 
- using Emby.Server.Implementations.SocketSharp;
 
- using MediaBrowser.Common.Extensions;
 
- using MediaBrowser.Common.Net;
 
- using MediaBrowser.Controller;
 
- using MediaBrowser.Controller.Configuration;
 
- using MediaBrowser.Controller.Net;
 
- using MediaBrowser.Model.Events;
 
- using MediaBrowser.Model.Extensions;
 
- using MediaBrowser.Model.Serialization;
 
- using MediaBrowser.Model.Services;
 
- using Microsoft.AspNetCore.Http;
 
- using Microsoft.AspNetCore.Http.Internal;
 
- using Microsoft.AspNetCore.WebUtilities;
 
- using Microsoft.Extensions.Configuration;
 
- using Microsoft.Extensions.Logging;
 
- using ServiceStack.Text.Jsv;
 
- namespace Emby.Server.Implementations.HttpServer
 
- {
 
-     public class HttpListenerHost : IHttpServer, IDisposable
 
-     {
 
-         private string DefaultRedirectPath { get; set; }
 
-         public string[] UrlPrefixes { get; private set; }
 
-         public event EventHandler<GenericEventArgs<IWebSocketConnection>> WebSocketConnected;
 
-         private readonly IServerConfigurationManager _config;
 
-         private readonly INetworkManager _networkManager;
 
-         private readonly IServerApplicationHost _appHost;
 
-         private readonly IJsonSerializer _jsonSerializer;
 
-         private readonly IXmlSerializer _xmlSerializer;
 
-         private readonly IHttpListener _socketListener;
 
-         private readonly Func<Type, Func<string, object>> _funcParseFn;
 
-         public Action<IRequest, IResponse, object>[] ResponseFilters { get; set; }
 
-         private readonly Dictionary<Type, Type> ServiceOperationsMap = new Dictionary<Type, Type>();
 
-         public static HttpListenerHost Instance { get; protected set; }
 
-         private IWebSocketListener[] _webSocketListeners = Array.Empty<IWebSocketListener>();
 
-         private readonly List<IWebSocketConnection> _webSocketConnections = new List<IWebSocketConnection>();
 
-         public HttpListenerHost(
 
-             IServerApplicationHost applicationHost,
 
-             ILoggerFactory loggerFactory,
 
-             IServerConfigurationManager config,
 
-             IConfiguration configuration,
 
-             INetworkManager networkManager,
 
-             IJsonSerializer jsonSerializer,
 
-             IXmlSerializer xmlSerializer,
 
-             IHttpListener socketListener)
 
-         {
 
-             _appHost = applicationHost;
 
-             Logger = loggerFactory.CreateLogger("HttpServer");
 
-             _config = config;
 
-             DefaultRedirectPath = configuration["HttpListenerHost:DefaultRedirectPath"];
 
-             _networkManager = networkManager;
 
-             _jsonSerializer = jsonSerializer;
 
-             _xmlSerializer = xmlSerializer;
 
-             _socketListener = socketListener;
 
-             _socketListener.WebSocketConnected = OnWebSocketConnected;
 
-             _funcParseFn = t => s => JsvReader.GetParseFn(t)(s);
 
-             Instance = this;
 
-             ResponseFilters = Array.Empty<Action<IRequest, IResponse, object>>();
 
-         }
 
-         public string GlobalResponse { get; set; }
 
-         protected ILogger Logger { get; }
 
-         public object CreateInstance(Type type)
 
-         {
 
-             return _appHost.CreateInstance(type);
 
-         }
 
-         /// <summary>
 
-         /// Applies the request filters. Returns whether or not the request has been handled
 
-         /// and no more processing should be done.
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         public void ApplyRequestFilters(IRequest req, IResponse res, object requestDto)
 
-         {
 
-             //Exec all RequestFilter attributes with Priority < 0
 
-             var attributes = GetRequestFilterAttributes(requestDto.GetType());
 
-             int count = attributes.Count;
 
-             int i = 0;
 
-             for (; i < count && attributes[i].Priority < 0; i++)
 
-             {
 
-                 var attribute = attributes[i];
 
-                 attribute.RequestFilter(req, res, requestDto);
 
-             }
 
-             //Exec remaining RequestFilter attributes with Priority >= 0
 
-             for (; i < count && attributes[i].Priority >= 0; i++)
 
-             {
 
-                 var attribute = attributes[i];
 
-                 attribute.RequestFilter(req, res, requestDto);
 
-             }
 
-         }
 
-         public Type GetServiceTypeByRequest(Type requestType)
 
-         {
 
-             ServiceOperationsMap.TryGetValue(requestType, out var serviceType);
 
-             return serviceType;
 
-         }
 
-         public void AddServiceInfo(Type serviceType, Type requestType)
 
-         {
 
-             ServiceOperationsMap[requestType] = serviceType;
 
-         }
 
-         private List<IHasRequestFilter> GetRequestFilterAttributes(Type requestDtoType)
 
-         {
 
-             var attributes = requestDtoType.GetTypeInfo().GetCustomAttributes(true).OfType<IHasRequestFilter>().ToList();
 
-             var serviceType = GetServiceTypeByRequest(requestDtoType);
 
-             if (serviceType != null)
 
-             {
 
-                 attributes.AddRange(serviceType.GetTypeInfo().GetCustomAttributes(true).OfType<IHasRequestFilter>());
 
-             }
 
-             attributes.Sort((x, y) => x.Priority - y.Priority);
 
-             return attributes;
 
-         }
 
-         private void OnWebSocketConnected(WebSocketConnectEventArgs e)
 
-         {
 
-             if (_disposed)
 
-             {
 
-                 return;
 
-             }
 
-             var connection = new WebSocketConnection(e.WebSocket, e.Endpoint, _jsonSerializer, Logger)
 
-             {
 
-                 OnReceive = ProcessWebSocketMessageReceived,
 
-                 Url = e.Url,
 
-                 QueryString = e.QueryString ?? new QueryCollection()
 
-             };
 
-             connection.Closed += Connection_Closed;
 
-             lock (_webSocketConnections)
 
-             {
 
-                 _webSocketConnections.Add(connection);
 
-             }
 
-             WebSocketConnected?.Invoke(this, new GenericEventArgs<IWebSocketConnection>(connection));
 
-         }
 
-         private void Connection_Closed(object sender, EventArgs e)
 
-         {
 
-             lock (_webSocketConnections)
 
-             {
 
-                 _webSocketConnections.Remove((IWebSocketConnection)sender);
 
-             }
 
-         }
 
-         private static Exception GetActualException(Exception ex)
 
-         {
 
-             if (ex is AggregateException agg)
 
-             {
 
-                 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;
 
-         }
 
-         private int GetStatusCode(Exception ex)
 
-         {
 
-             switch (ex)
 
-             {
 
-                 case ArgumentException _: return 400;
 
-                 case SecurityException _: return 401;
 
-                 case DirectoryNotFoundException _:
 
-                 case FileNotFoundException _:
 
-                 case ResourceNotFoundException _: return 404;
 
-                 case RemoteServiceUnavailableException _: return 502;
 
-                 default: return 500;
 
-             }
 
-         }
 
-         private async Task ErrorHandler(Exception ex, IRequest httpReq, bool logExceptionStackTrace, bool logExceptionMessage)
 
-         {
 
-             try
 
-             {
 
-                 ex = GetActualException(ex);
 
-                 if (logExceptionStackTrace)
 
-                 {
 
-                     Logger.LogError(ex, "Error processing request");
 
-                 }
 
-                 else if (logExceptionMessage)
 
-                 {
 
-                     Logger.LogError(ex.Message);
 
-                 }
 
-                 var httpRes = httpReq.Response;
 
-                 if (httpRes.OriginalResponse.HasStarted)
 
-                 {
 
-                     return;
 
-                 }
 
-                 var statusCode = GetStatusCode(ex);
 
-                 httpRes.StatusCode = statusCode;
 
-                 httpRes.ContentType = "text/html";
 
-                 await Write(httpRes, NormalizeExceptionMessage(ex.Message)).ConfigureAwait(false);
 
-             }
 
-             catch (Exception errorEx)
 
-             {
 
-                 Logger.LogError(errorEx, "Error this.ProcessRequest(context)(Exception while writing error to the response)");
 
-             }
 
-         }
 
-         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;
 
-         }
 
-         /// <summary>
 
-         /// Shut down the Web Service
 
-         /// </summary>
 
-         public void Stop()
 
-         {
 
-             List<IWebSocketConnection> connections;
 
-             lock (_webSocketConnections)
 
-             {
 
-                 connections = _webSocketConnections.ToList();
 
-                 _webSocketConnections.Clear();
 
-             }
 
-             foreach (var connection in connections)
 
-             {
 
-                 try
 
-                 {
 
-                     connection.Dispose();
 
-                 }
 
-                 catch
 
-                 {
 
-                 }
 
-             }
 
-         }
 
-         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
 
-             var newQueryString = QueryHelpers.ParseQuery(uri.Query);
 
-             var originalCount = newQueryString.Count;
 
-             if (originalCount == 0)
 
-             {
 
-                 return url;
 
-             }
 
-             // this removes the key if exists
 
-             newQueryString.Remove(key);
 
-             if (originalCount == newQueryString.Count)
 
-             {
 
-                 return url;
 
-             }
 
-             // this gets the page path from root without QueryString
 
-             string pagePathWithoutQueryString = url.Split(new[] { '?' }, StringSplitOptions.RemoveEmptyEntries)[0];
 
-             return newQueryString.Count > 0
 
-                 ? QueryHelpers.AddQueryString(pagePathWithoutQueryString, newQueryString.ToDictionary(kv => kv.Key, kv => kv.Value.ToString()))
 
-                 : pagePathWithoutQueryString;
 
-         }
 
-         private static string GetUrlToLog(string url)
 
-         {
 
-             url = RemoveQueryStringByKey(url, "api_key");
 
-             return url;
 
-         }
 
-         private static string NormalizeConfiguredLocalAddress(string address)
 
-         {
 
-             var index = address.Trim('/').IndexOf('/');
 
-             if (index != -1)
 
-             {
 
-                 address = address.Substring(index + 1);
 
-             }
 
-             return address.Trim('/');
 
-         }
 
-         private bool ValidateHost(string host)
 
-         {
 
-             var hosts = _config
 
-                 .Configuration
 
-                 .LocalNetworkAddresses
 
-                 .Select(NormalizeConfiguredLocalAddress)
 
-                 .ToList();
 
-             if (hosts.Count == 0)
 
-             {
 
-                 return true;
 
-             }
 
-             host = host ?? string.Empty;
 
-             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;
 
-         }
 
-         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;
 
-         }
 
-         private bool ValidateSsl(string remoteIp, string urlString)
 
-         {
 
-             if (_config.Configuration.RequireHttps && _appHost.EnableHttps && !_config.Configuration.IsBehindProxy)
 
-             {
 
-                 if (urlString.IndexOf("https://", StringComparison.OrdinalIgnoreCase) == -1)
 
-                 {
 
-                     // 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)
 
-                     {
 
-                         return true;
 
-                     }
 
-                     if (!_networkManager.IsInLocalNetwork(remoteIp))
 
-                     {
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             return true;
 
-         }
 
-         /// <summary>
 
-         /// Overridable method that can be used to implement a custom hnandler
 
-         /// </summary>
 
-         public async Task RequestHandler(IHttpRequest httpReq, string urlString, string host, string localPath, CancellationToken cancellationToken)
 
-         {
 
-             var stopWatch = new Stopwatch();
 
-             stopWatch.Start();
 
-             var httpRes = httpReq.Response;
 
-             string urlToLog = null;
 
-             string remoteIp = httpReq.RemoteIp;
 
-             try
 
-             {
 
-                 if (_disposed)
 
-                 {
 
-                     httpRes.StatusCode = 503;
 
-                     httpRes.ContentType = "text/plain";
 
-                     await Write(httpRes, "Server shutting down").ConfigureAwait(false);
 
-                     return;
 
-                 }
 
-                 if (!ValidateHost(host))
 
-                 {
 
-                     httpRes.StatusCode = 400;
 
-                     httpRes.ContentType = "text/plain";
 
-                     await Write(httpRes, "Invalid host").ConfigureAwait(false);
 
-                     return;
 
-                 }
 
-                 if (!ValidateRequest(remoteIp, httpReq.IsLocal))
 
-                 {
 
-                     httpRes.StatusCode = 403;
 
-                     httpRes.ContentType = "text/plain";
 
-                     await Write(httpRes, "Forbidden").ConfigureAwait(false);
 
-                     return;
 
-                 }
 
-                 if (!ValidateSsl(httpReq.RemoteIp, urlString))
 
-                 {
 
-                     RedirectToSecureUrl(httpReq, httpRes, urlString);
 
-                     return;
 
-                 }
 
-                 if (string.Equals(httpReq.Verb, "OPTIONS", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     httpRes.StatusCode = 200;
 
-                     httpRes.AddHeader("Access-Control-Allow-Origin", "*");
 
-                     httpRes.AddHeader("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, PATCH, OPTIONS");
 
-                     httpRes.AddHeader("Access-Control-Allow-Headers", "Content-Type, Authorization, Range, X-MediaBrowser-Token, X-Emby-Authorization");
 
-                     httpRes.ContentType = "text/plain";
 
-                     await Write(httpRes, string.Empty).ConfigureAwait(false);
 
-                     return;
 
-                 }
 
-                 urlToLog = GetUrlToLog(urlString);
 
-                 Logger.LogDebug("HTTP {HttpMethod} {Url} UserAgent: {UserAgent} \nHeaders: {@Headers}", urlToLog, httpReq.UserAgent ?? string.Empty, httpReq.HttpMethod, httpReq.Headers);
 
-                 if (string.Equals(localPath, "/emby/", StringComparison.OrdinalIgnoreCase) ||
 
-                     string.Equals(localPath, "/mediabrowser/", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     RedirectToUrl(httpRes, DefaultRedirectPath);
 
-                     return;
 
-                 }
 
-                 if (string.Equals(localPath, "/emby", StringComparison.OrdinalIgnoreCase) ||
 
-                     string.Equals(localPath, "/mediabrowser", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     RedirectToUrl(httpRes, "emby/" + DefaultRedirectPath);
 
-                     return;
 
-                 }
 
-                 if (localPath.IndexOf("mediabrowser/web", StringComparison.OrdinalIgnoreCase) != -1)
 
-                 {
 
-                     httpRes.StatusCode = 200;
 
-                     httpRes.ContentType = "text/html";
 
-                     var newUrl = urlString.Replace("mediabrowser", "emby", StringComparison.OrdinalIgnoreCase)
 
-                         .Replace("/dashboard/", "/web/", StringComparison.OrdinalIgnoreCase);
 
-                     if (!string.Equals(newUrl, urlString, StringComparison.OrdinalIgnoreCase))
 
-                     {
 
-                         await Write(httpRes,
 
-                             "<!doctype html><html><head><title>Emby</title></head><body>Please update your Emby bookmark to <a href=\"" +
 
-                             newUrl + "\">" + newUrl + "</a></body></html>").ConfigureAwait(false);
 
-                         return;
 
-                     }
 
-                 }
 
-                 if (localPath.IndexOf("dashboard/", StringComparison.OrdinalIgnoreCase) != -1 &&
 
-                     localPath.IndexOf("web/dashboard", StringComparison.OrdinalIgnoreCase) == -1)
 
-                 {
 
-                     httpRes.StatusCode = 200;
 
-                     httpRes.ContentType = "text/html";
 
-                     var newUrl = urlString.Replace("mediabrowser", "emby", StringComparison.OrdinalIgnoreCase)
 
-                         .Replace("/dashboard/", "/web/", StringComparison.OrdinalIgnoreCase);
 
-                     if (!string.Equals(newUrl, urlString, StringComparison.OrdinalIgnoreCase))
 
-                     {
 
-                         await Write(httpRes,
 
-                             "<!doctype html><html><head><title>Emby</title></head><body>Please update your Emby bookmark to <a href=\"" +
 
-                             newUrl + "\">" + newUrl + "</a></body></html>").ConfigureAwait(false);
 
-                         return;
 
-                     }
 
-                 }
 
-                 if (string.Equals(localPath, "/web", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     RedirectToUrl(httpRes, DefaultRedirectPath);
 
-                     return;
 
-                 }
 
-                 if (string.Equals(localPath, "/web/", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     RedirectToUrl(httpRes, "../" + DefaultRedirectPath);
 
-                     return;
 
-                 }
 
-                 if (string.Equals(localPath, "/", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     RedirectToUrl(httpRes, DefaultRedirectPath);
 
-                     return;
 
-                 }
 
-                 if (string.IsNullOrEmpty(localPath))
 
-                 {
 
-                     RedirectToUrl(httpRes, "/" + DefaultRedirectPath);
 
-                     return;
 
-                 }
 
-                 if (!string.Equals(httpReq.QueryString["r"], "0", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     if (localPath.EndsWith("web/dashboard.html", StringComparison.OrdinalIgnoreCase))
 
-                     {
 
-                         RedirectToUrl(httpRes, "index.html#!/dashboard.html");
 
-                     }
 
-                     if (localPath.EndsWith("web/home.html", StringComparison.OrdinalIgnoreCase))
 
-                     {
 
-                         RedirectToUrl(httpRes, "index.html");
 
-                     }
 
-                 }
 
-                 if (!string.IsNullOrEmpty(GlobalResponse))
 
-                 {
 
-                     // 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";
 
-                         await Write(httpRes, GlobalResponse).ConfigureAwait(false);
 
-                         return;
 
-                     }
 
-                 }
 
-                 var handler = GetServiceHandler(httpReq);
 
-                 if (handler != null)
 
-                 {
 
-                     await handler.ProcessRequestAsync(this, httpReq, httpRes, Logger, httpReq.OperationName, cancellationToken).ConfigureAwait(false);
 
-                 }
 
-                 else
 
-                 {
 
-                     await ErrorHandler(new FileNotFoundException(), httpReq, false, false).ConfigureAwait(false);
 
-                 }
 
-             }
 
-             catch (Exception ex) when (ex is SocketException || ex is IOException || ex is OperationCanceledException)
 
-             {
 
-                 await ErrorHandler(ex, httpReq, false, false).ConfigureAwait(false);
 
-             }
 
-             catch (SecurityException ex)
 
-             {
 
-                 await ErrorHandler(ex, httpReq, false, true).ConfigureAwait(false);
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 var logException = !string.Equals(ex.GetType().Name, "SocketException", StringComparison.OrdinalIgnoreCase);
 
-                 await ErrorHandler(ex, httpReq, logException, false).ConfigureAwait(false);
 
-             }
 
-             finally
 
-             {
 
-                 stopWatch.Stop();
 
-                 var elapsed = stopWatch.Elapsed;
 
-                 if (elapsed.TotalMilliseconds > 500)
 
-                 {
 
-                     Logger.LogWarning("HTTP Response {StatusCode} to {RemoteIp}. Time (slow): {Elapsed:g}. {Url}", httpRes.StatusCode, remoteIp, elapsed, urlToLog);
 
-                 }
 
-                 else
 
-                 {
 
-                     Logger.LogDebug("HTTP Response {StatusCode} to {RemoteIp}. Time: {Elapsed:g}. {Url}", httpRes.StatusCode, remoteIp, elapsed, urlToLog);
 
-                 }
 
-             }
 
-         }
 
-         // Entry point for HttpListener
 
-         public ServiceHandler GetServiceHandler(IHttpRequest httpReq)
 
-         {
 
-             var pathInfo = httpReq.PathInfo;
 
-             var pathParts = pathInfo.TrimStart('/').Split('/');
 
-             if (pathParts.Length == 0)
 
-             {
 
-                 Logger.LogError("Path parts empty for PathInfo: {PathInfo}, Url: {RawUrl}", pathInfo, httpReq.RawUrl);
 
-                 return null;
 
-             }
 
-             var restPath = ServiceHandler.FindMatchingRestPath(httpReq.HttpMethod, pathInfo, out string contentType);
 
-             if (restPath != null)
 
-             {
 
-                 return new ServiceHandler
 
-                 {
 
-                     RestPath = restPath,
 
-                     ResponseContentType = contentType
 
-                 };
 
-             }
 
-             Logger.LogError("Could not find handler for {PathInfo}", pathInfo);
 
-             return null;
 
-         }
 
-         private static Task Write(IResponse response, string text)
 
-         {
 
-             var bOutput = Encoding.UTF8.GetBytes(text);
 
-             return response.OutputStream.WriteAsync(bOutput, 0, bOutput.Length);
 
-         }
 
-         private void RedirectToSecureUrl(IHttpRequest httpReq, IResponse httpRes, string url)
 
-         {
 
-             if (Uri.TryCreate(url, UriKind.Absolute, out Uri uri))
 
-             {
 
-                 var builder = new UriBuilder(uri)
 
-                 {
 
-                     Port = _config.Configuration.PublicHttpsPort,
 
-                     Scheme = "https"
 
-                 };
 
-                 url = builder.Uri.ToString();
 
-                 RedirectToUrl(httpRes, url);
 
-             }
 
-             else
 
-             {
 
-                 // TODO what is this?
 
-                 var httpsUrl = url
 
-                     .Replace("http://", "https://", StringComparison.OrdinalIgnoreCase)
 
-                     .Replace(":" + _config.Configuration.PublicPort.ToString(CultureInfo.InvariantCulture), ":" + _config.Configuration.PublicHttpsPort.ToString(CultureInfo.InvariantCulture), StringComparison.OrdinalIgnoreCase);
 
-                 RedirectToUrl(httpRes, url);
 
-             }
 
-         }
 
-         public static void RedirectToUrl(IResponse httpRes, string url)
 
-         {
 
-             httpRes.StatusCode = 302;
 
-             httpRes.AddHeader("Location", url);
 
-         }
 
-         public ServiceController ServiceController { get; private set; }
 
-         /// <summary>
 
-         /// Adds the rest handlers.
 
-         /// </summary>
 
-         /// <param name="services">The services.</param>
 
-         /// <param name="listeners"></param>
 
-         /// <param name="urlPrefixes"></param>
 
-         public void Init(IEnumerable<IService> services, IEnumerable<IWebSocketListener> listeners, IEnumerable<string> urlPrefixes)
 
-         {
 
-             _webSocketListeners = listeners.ToArray();
 
-             UrlPrefixes = urlPrefixes.ToArray();
 
-             ServiceController = new ServiceController();
 
-             Logger.LogInformation("Calling ServiceStack AppHost.Init");
 
-             var types = services.Select(r => r.GetType()).ToArray();
 
-             ServiceController.Init(this, types);
 
-             ResponseFilters = new Action<IRequest, IResponse, object>[]
 
-             {
 
-                 new ResponseFilter(Logger).FilterResponse
 
-             };
 
-         }
 
-         public RouteAttribute[] GetRouteAttributes(Type requestType)
 
-         {
 
-             var routes = requestType.GetTypeInfo().GetCustomAttributes<RouteAttribute>(true).ToList();
 
-             var clone = routes.ToList();
 
-             foreach (var route in clone)
 
-             {
 
-                 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)
 
-                 {
 
-                     Notes = route.Notes,
 
-                     Priority = route.Priority,
 
-                     Summary = route.Summary
 
-                 });
 
-                 // needed because apps add /emby, and some users also add /emby, thereby double prefixing
 
-                 routes.Add(new RouteAttribute(DoubleNormalizeEmbyRoutePath(route.Path), route.Verbs)
 
-                 {
 
-                     Notes = route.Notes,
 
-                     Priority = route.Priority,
 
-                     Summary = route.Summary
 
-                 });
 
-             }
 
-             return routes.ToArray();
 
-         }
 
-         public Func<string, object> GetParseFn(Type propertyType)
 
-         {
 
-             return _funcParseFn(propertyType);
 
-         }
 
-         public void SerializeToJson(object o, Stream stream)
 
-         {
 
-             _jsonSerializer.SerializeToStream(o, stream);
 
-         }
 
-         public void SerializeToXml(object o, Stream stream)
 
-         {
 
-             _xmlSerializer.SerializeToStream(o, stream);
 
-         }
 
-         public Task<object> DeserializeXml(Type type, Stream stream)
 
-         {
 
-             return Task.FromResult(_xmlSerializer.DeserializeFromStream(type, stream));
 
-         }
 
-         public Task<object> DeserializeJson(Type type, Stream stream)
 
-         {
 
-             return _jsonSerializer.DeserializeFromStreamAsync(stream, type);
 
-         }
 
-         public Task ProcessWebSocketRequest(HttpContext context)
 
-         {
 
-             return _socketListener.ProcessWebSocketRequest(context);
 
-         }
 
-         //TODO Add Jellyfin Route Path Normalizer
 
-         private static string NormalizeEmbyRoutePath(string path)
 
-         {
 
-             if (path.StartsWith("/", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return "/emby" + path;
 
-             }
 
-             return "emby/" + path;
 
-         }
 
-         private static string NormalizeMediaBrowserRoutePath(string path)
 
-         {
 
-             if (path.StartsWith("/", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return "/mediabrowser" + path;
 
-             }
 
-             return "mediabrowser/" + path;
 
-         }
 
-         private static string DoubleNormalizeEmbyRoutePath(string path)
 
-         {
 
-             if (path.StartsWith("/", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return "/emby/emby" + path;
 
-             }
 
-             return "emby/emby/" + path;
 
-         }
 
-         private bool _disposed;
 
-         private readonly object _disposeLock = new object();
 
-         protected virtual void Dispose(bool disposing)
 
-         {
 
-             if (_disposed) return;
 
-             lock (_disposeLock)
 
-             {
 
-                 if (_disposed) return;
 
-                 _disposed = true;
 
-                 if (disposing)
 
-                 {
 
-                     Stop();
 
-                 }
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Processes the web socket message received.
 
-         /// </summary>
 
-         /// <param name="result">The result.</param>
 
-         private Task ProcessWebSocketMessageReceived(WebSocketMessageInfo result)
 
-         {
 
-             if (_disposed)
 
-             {
 
-                 return Task.CompletedTask;
 
-             }
 
-             Logger.LogDebug("Websocket message received: {0}", result.MessageType);
 
-             var tasks = _webSocketListeners.Select(i => Task.Run(async () =>
 
-             {
 
-                 try
 
-                 {
 
-                     await i.ProcessMessage(result).ConfigureAwait(false);
 
-                 }
 
-                 catch (Exception ex)
 
-                 {
 
-                     Logger.LogError(ex, "{0} failed processing WebSocket message {1}", i.GetType().Name, result.MessageType ?? string.Empty);
 
-                 }
 
-             }));
 
-             return Task.WhenAll(tasks);
 
-         }
 
-         public void Dispose()
 
-         {
 
-             Dispose(true);
 
-         }
 
-     }
 
- }
 
 
  |