jellyfin/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs

523 lines
17 KiB
C#
Raw Normal View History

2014-07-26 19:30:15 +02:00
using Funq;
2013-12-07 16:52:38 +01:00
using MediaBrowser.Common;
using MediaBrowser.Common.Extensions;
2015-06-13 06:14:48 +02:00
using MediaBrowser.Controller.Configuration;
2013-12-07 16:52:38 +01:00
using MediaBrowser.Controller.Net;
using MediaBrowser.Model.Logging;
2014-07-19 03:28:40 +02:00
using MediaBrowser.Server.Implementations.HttpServer.SocketSharp;
2013-12-07 16:52:38 +01:00
using ServiceStack;
2013-12-10 17:44:07 +01:00
using ServiceStack.Api.Swagger;
2013-12-07 16:52:38 +01:00
using ServiceStack.Host;
using ServiceStack.Host.Handlers;
using ServiceStack.Host.HttpListener;
using ServiceStack.Logging;
using ServiceStack.Web;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
2015-10-30 18:00:33 +01:00
using MediaBrowser.Common.Security;
2013-12-07 16:52:38 +01:00
namespace MediaBrowser.Server.Implementations.HttpServer
{
public class HttpListenerHost : ServiceStackHost, IHttpServer
{
private string DefaultRedirectPath { get; set; }
private readonly ILogger _logger;
2014-01-09 05:44:51 +01:00
public IEnumerable<string> UrlPrefixes { get; private set; }
2013-12-07 16:52:38 +01:00
private readonly List<IRestfulService> _restServices = new List<IRestfulService>();
2014-07-19 00:14:59 +02:00
private IHttpListener _listener;
2013-12-07 16:52:38 +01:00
private readonly ContainerAdapter _containerAdapter;
public event EventHandler<WebSocketConnectEventArgs> WebSocketConnected;
2015-03-08 20:48:30 +01:00
public event EventHandler<WebSocketConnectingEventArgs> WebSocketConnecting;
2013-12-07 16:52:38 +01:00
2014-09-17 05:04:10 +02:00
private readonly List<string> _localEndpoints = new List<string>();
private readonly ReaderWriterLockSlim _localEndpointLock = new ReaderWriterLockSlim();
2015-01-19 05:29:57 +01:00
public string CertificatePath { get; private set; }
2015-06-13 06:14:48 +02:00
private readonly IServerConfigurationManager _config;
2013-12-07 16:52:38 +01:00
/// <summary>
/// Gets the local end points.
/// </summary>
/// <value>The local end points.</value>
public IEnumerable<string> LocalEndPoints
{
2014-09-17 05:04:10 +02:00
get
{
_localEndpointLock.EnterReadLock();
var list = _localEndpoints.ToList();
_localEndpointLock.ExitReadLock();
return list;
}
2013-12-07 16:52:38 +01:00
}
2015-01-17 20:30:23 +01:00
public HttpListenerHost(IApplicationHost applicationHost,
2015-10-30 18:00:33 +01:00
ILogManager logManager,
2015-06-13 06:14:48 +02:00
IServerConfigurationManager config,
2015-01-17 20:30:23 +01:00
string serviceName,
2015-06-13 06:14:48 +02:00
string defaultRedirectPath, params Assembly[] assembliesWithServices)
2013-12-07 16:52:38 +01:00
: base(serviceName, assembliesWithServices)
{
DefaultRedirectPath = defaultRedirectPath;
2015-06-13 06:14:48 +02:00
_config = config;
2013-12-07 16:52:38 +01:00
_logger = logManager.GetLogger("HttpServer");
_containerAdapter = new ContainerAdapter(applicationHost);
}
2015-09-14 01:07:54 +02:00
public string GlobalResponse { get; set; }
2015-10-30 18:00:33 +01:00
2013-12-07 16:52:38 +01:00
public override void Configure(Container container)
{
HostConfig.Instance.DefaultRedirectPath = DefaultRedirectPath;
HostConfig.Instance.MapExceptionToStatusCode = new Dictionary<Type, int>
{
{typeof (InvalidOperationException), 422},
{typeof (ResourceNotFoundException), 404},
{typeof (FileNotFoundException), 404},
2014-07-22 03:29:06 +02:00
{typeof (DirectoryNotFoundException), 404},
2014-11-15 03:31:03 +01:00
{typeof (SecurityException), 401},
2015-10-30 18:00:33 +01:00
{typeof (PaymentRequiredException), 402},
{typeof (UnauthorizedAccessException), 500},
{typeof (ApplicationException), 500}
2013-12-07 16:52:38 +01:00
};
HostConfig.Instance.DebugMode = true;
HostConfig.Instance.LogFactory = LogManager.LogFactory;
// The Markdown feature causes slow startup times (5 mins+) on cold boots for some users
// Custom format allows images
HostConfig.Instance.EnableFeatures = Feature.Csv | Feature.Html | Feature.Json | Feature.Jsv | Feature.Metadata | Feature.Xml | Feature.CustomFormat;
container.Adapter = _containerAdapter;
2013-12-10 17:44:07 +01:00
Plugins.Add(new SwaggerFeature());
2015-07-10 05:00:03 +02:00
Plugins.Add(new CorsFeature(allowedHeaders: "Content-Type, Authorization, Range, X-MediaBrowser-Token, X-Emby-Authorization"));
2014-07-09 02:46:11 +02:00
//Plugins.Add(new AuthFeature(() => new AuthUserSession(), new IAuthProvider[] {
// new SessionAuthProvider(_containerAdapter.Resolve<ISessionContext>()),
//}));
2014-08-18 05:00:37 +02:00
PreRequestFilters.Add((httpReq, httpRes) =>
{
//Handles Request and closes Responses after emitting global HTTP Headers
if (string.Equals(httpReq.Verb, "OPTIONS", StringComparison.OrdinalIgnoreCase))
{
httpRes.EndRequest(); //add a 'using ServiceStack;'
}
});
2015-06-13 06:14:48 +02:00
HostContext.GlobalResponseFilters.Add(new ResponseFilter(_logger, () => _config.Configuration.DenyIFrameEmbedding).FilterResponse);
2013-12-07 16:52:38 +01:00
}
public override void OnAfterInit()
{
SetAppDomainData();
base.OnAfterInit();
}
public override void OnConfigLoad()
{
base.OnConfigLoad();
2015-01-17 20:30:23 +01:00
Config.HandlerFactoryPath = null;
2013-12-07 16:52:38 +01:00
2015-01-17 20:30:23 +01:00
Config.MetadataRedirectPath = "metadata";
2013-12-07 16:52:38 +01:00
}
protected override ServiceController CreateServiceController(params Assembly[] assembliesWithServices)
{
var types = _restServices.Select(r => r.GetType()).ToArray();
return new ServiceController(this, () => types);
}
public virtual void SetAppDomainData()
{
//Required for Mono to resolve VirtualPathUtility and Url.Content urls
var domain = Thread.GetDomain(); // or AppDomain.Current
domain.SetData(".appDomain", "1");
domain.SetData(".appVPath", "/");
domain.SetData(".appPath", domain.BaseDirectory);
if (string.IsNullOrEmpty(domain.GetData(".appId") as string))
{
domain.SetData(".appId", "1");
}
if (string.IsNullOrEmpty(domain.GetData(".domainId") as string))
{
domain.SetData(".domainId", "1");
}
}
public override ServiceStackHost Start(string listeningAtUrlBase)
{
2014-07-19 00:14:59 +02:00
StartListener();
2013-12-07 16:52:38 +01:00
return this;
}
2014-08-31 21:15:33 +02:00
private void OnRequestReceived(string localEndPoint)
{
2014-09-24 03:44:05 +02:00
var ignore = localEndPoint.IndexOf("::", StringComparison.OrdinalIgnoreCase) != -1 ||
localEndPoint.StartsWith("127.", StringComparison.OrdinalIgnoreCase) ||
localEndPoint.StartsWith("localhost", StringComparison.OrdinalIgnoreCase) ||
localEndPoint.StartsWith("169.", StringComparison.OrdinalIgnoreCase);
if (ignore)
{
return;
}
2014-09-17 05:04:10 +02:00
if (_localEndpointLock.TryEnterWriteLock(100))
{
var list = _localEndpoints.ToList();
list.Remove(localEndPoint);
list.Insert(0, localEndPoint);
_localEndpointLock.ExitWriteLock();
}
2014-08-31 21:15:33 +02:00
}
2013-12-07 16:52:38 +01:00
/// <summary>
/// Starts the Web Service
/// </summary>
2014-07-19 00:14:59 +02:00
private void StartListener()
2013-12-07 16:52:38 +01:00
{
2014-07-09 02:46:11 +02:00
HostContext.Config.HandlerFactoryPath = ListenerRequest.GetHandlerPathIfAny(UrlPrefixes.First());
2014-12-27 23:52:41 +01:00
_listener = GetListener();
2014-07-19 03:28:40 +02:00
2015-03-08 20:48:30 +01:00
_listener.WebSocketConnected = OnWebSocketConnected;
_listener.WebSocketConnecting = OnWebSocketConnecting;
2014-07-19 03:28:40 +02:00
_listener.ErrorHandler = ErrorHandler;
_listener.RequestHandler = RequestHandler;
2013-12-07 16:52:38 +01:00
2014-07-19 00:14:59 +02:00
_listener.Start(UrlPrefixes);
2014-07-09 02:46:11 +02:00
}
2013-12-07 16:52:38 +01:00
2014-12-27 23:52:41 +01:00
private IHttpListener GetListener()
{
2015-01-19 05:29:57 +01:00
return new WebSocketSharpListener(_logger, OnRequestReceived, CertificatePath);
2014-12-27 23:52:41 +01:00
}
2015-03-08 20:48:30 +01:00
private void OnWebSocketConnecting(WebSocketConnectingEventArgs args)
{
if (WebSocketConnecting != null)
{
WebSocketConnecting(this, args);
}
}
private void OnWebSocketConnected(WebSocketConnectEventArgs args)
2014-07-09 02:46:11 +02:00
{
2014-07-19 00:14:59 +02:00
if (WebSocketConnected != null)
2014-07-09 02:46:11 +02:00
{
2014-07-19 00:14:59 +02:00
WebSocketConnected(this, args);
2014-07-09 02:46:11 +02:00
}
2013-12-07 16:52:38 +01:00
}
2014-07-19 00:14:59 +02:00
private void ErrorHandler(Exception ex, IRequest httpReq)
2013-12-07 16:52:38 +01:00
{
try
{
var httpRes = httpReq.Response;
if (httpRes.IsClosed)
{
return;
}
2015-01-17 20:30:23 +01:00
2014-07-09 02:46:11 +02:00
var errorResponse = new ErrorResponse
{
ResponseStatus = new ResponseStatus
{
ErrorCode = ex.GetType().GetOperationName(),
Message = ex.Message,
2014-10-29 00:17:55 +01:00
StackTrace = ex.StackTrace
2014-07-09 02:46:11 +02:00
}
};
2013-12-07 16:52:38 +01:00
var contentType = httpReq.ResponseContentType;
var serializer = HostContext.ContentTypes.GetResponseSerializer(contentType);
if (serializer == null)
{
contentType = HostContext.Config.DefaultContentType;
serializer = HostContext.ContentTypes.GetResponseSerializer(contentType);
}
var httpError = ex as IHttpError;
if (httpError != null)
{
httpRes.StatusCode = httpError.Status;
httpRes.StatusDescription = httpError.StatusDescription;
}
else
{
httpRes.StatusCode = 500;
}
httpRes.ContentType = contentType;
serializer(httpReq, errorResponse, httpRes);
httpRes.Close();
}
catch (Exception errorEx)
{
2014-07-09 02:46:11 +02:00
_logger.ErrorException("Error this.ProcessRequest(context)(Exception while writing error to the response)", errorEx);
2013-12-07 16:52:38 +01:00
}
}
/// <summary>
/// Shut down the Web Service
/// </summary>
public void Stop()
{
2014-07-19 00:14:59 +02:00
if (_listener != null)
2013-12-07 16:52:38 +01:00
{
2014-07-19 00:14:59 +02:00
_listener.Stop();
2013-12-07 16:52:38 +01:00
}
}
/// <summary>
/// Overridable method that can be used to implement a custom hnandler
/// </summary>
2014-07-19 00:14:59 +02:00
/// <param name="httpReq">The HTTP req.</param>
2014-07-19 03:28:40 +02:00
/// <param name="url">The URL.</param>
2014-07-19 00:14:59 +02:00
/// <returns>Task.</returns>
protected Task RequestHandler(IHttpRequest httpReq, Uri url)
2013-12-07 16:52:38 +01:00
{
2014-07-19 00:14:59 +02:00
var date = DateTime.Now;
2014-07-09 02:46:11 +02:00
2014-07-19 00:14:59 +02:00
var httpRes = httpReq.Response;
2014-07-09 02:46:11 +02:00
2014-07-19 00:14:59 +02:00
var operationName = httpReq.OperationName;
var localPath = url.LocalPath;
2014-07-09 02:46:11 +02:00
2015-04-11 23:34:05 +02:00
if (string.Equals(localPath, "/mediabrowser/", StringComparison.OrdinalIgnoreCase) ||
string.Equals(localPath, "/emby/", StringComparison.OrdinalIgnoreCase))
2014-07-09 02:46:11 +02:00
{
2015-02-10 06:54:58 +01:00
httpRes.RedirectToUrl(DefaultRedirectPath);
2014-07-09 02:46:11 +02:00
return Task.FromResult(true);
}
2015-01-17 20:30:23 +01:00
if (string.Equals(localPath, "/mediabrowser", StringComparison.OrdinalIgnoreCase))
2014-07-09 02:46:11 +02:00
{
2015-02-10 06:54:58 +01:00
httpRes.RedirectToUrl("mediabrowser/" + DefaultRedirectPath);
2014-07-09 02:46:11 +02:00
return Task.FromResult(true);
}
2015-04-11 23:34:05 +02:00
if (string.Equals(localPath, "/emby", StringComparison.OrdinalIgnoreCase))
{
httpRes.RedirectToUrl("emby/" + DefaultRedirectPath);
return Task.FromResult(true);
}
2014-07-09 02:46:11 +02:00
if (string.Equals(localPath, "/", StringComparison.OrdinalIgnoreCase))
{
2015-01-17 20:30:23 +01:00
httpRes.RedirectToUrl(DefaultRedirectPath);
2014-07-09 02:46:11 +02:00
return Task.FromResult(true);
}
if (string.IsNullOrEmpty(localPath))
{
2015-01-17 20:30:23 +01:00
httpRes.RedirectToUrl("/" + DefaultRedirectPath);
2014-07-09 02:46:11 +02:00
return Task.FromResult(true);
}
2015-09-14 01:07:54 +02:00
if (!string.IsNullOrWhiteSpace(GlobalResponse))
{
httpRes.Write(GlobalResponse);
httpRes.ContentType = "text/plain";
return Task.FromResult(true);
}
2013-12-07 16:52:38 +01:00
var handler = HttpHandlerFactory.GetHandler(httpReq);
2014-07-09 02:46:11 +02:00
var remoteIp = httpReq.RemoteIp;
2013-12-07 16:52:38 +01:00
var serviceStackHandler = handler as IServiceStackHandler;
if (serviceStackHandler != null)
{
var restHandler = serviceStackHandler as RestHandler;
if (restHandler != null)
{
httpReq.OperationName = operationName = restHandler.RestPath.RequestType.GetOperationName();
}
var task = serviceStackHandler.ProcessRequestAsync(httpReq, httpRes, operationName);
2014-07-09 02:46:11 +02:00
task.ContinueWith(x => httpRes.Close(), TaskContinuationOptions.OnlyOnRanToCompletion | TaskContinuationOptions.AttachedToParent);
//Matches Exceptions handled in HttpListenerBase.InitTask()
2014-07-19 00:14:59 +02:00
var urlString = url.ToString();
2014-07-09 02:46:11 +02:00
task.ContinueWith(x =>
{
2014-07-19 03:28:40 +02:00
var statusCode = httpRes.StatusCode;
2014-07-09 02:46:11 +02:00
var duration = DateTime.Now - date;
2014-07-19 00:14:59 +02:00
LoggerUtils.LogResponse(_logger, statusCode, urlString, remoteIp, duration);
2014-07-09 02:46:11 +02:00
}, TaskContinuationOptions.None);
2013-12-07 16:52:38 +01:00
return task;
}
return new NotImplementedException("Cannot execute handler: " + handler + " at PathInfo: " + httpReq.PathInfo)
.AsTaskException();
}
/// <summary>
/// Adds the rest handlers.
/// </summary>
/// <param name="services">The services.</param>
public void Init(IEnumerable<IRestfulService> services)
{
_restServices.AddRange(services);
ServiceController = CreateServiceController();
_logger.Info("Calling ServiceStack AppHost.Init");
2013-12-09 03:24:48 +01:00
base.Init();
2013-12-07 16:52:38 +01:00
}
2015-01-17 20:30:23 +01:00
public override RouteAttribute[] GetRouteAttributes(Type requestType)
{
var routes = base.GetRouteAttributes(requestType).ToList();
var clone = routes.ToList();
foreach (var route in clone)
{
2015-04-11 23:34:05 +02:00
routes.Add(new RouteAttribute(NormalizeEmbyRoutePath(route.Path), route.Verbs)
{
Notes = route.Notes,
Priority = route.Priority,
Summary = route.Summary
});
2015-01-17 20:30:23 +01:00
routes.Add(new RouteAttribute(NormalizeRoutePath(route.Path), route.Verbs)
{
Notes = route.Notes,
Priority = route.Priority,
Summary = route.Summary
});
2015-02-19 05:37:44 +01:00
// TODO: This is a hack for iOS. Remove it asap.
routes.Add(new RouteAttribute(DoubleNormalizeRoutePath(route.Path), route.Verbs)
{
Notes = route.Notes,
Priority = route.Priority,
Summary = route.Summary
});
2015-04-11 23:34:05 +02:00
routes.Add(new RouteAttribute(DoubleNormalizeEmbyRoutePath(route.Path), route.Verbs)
{
Notes = route.Notes,
Priority = route.Priority,
Summary = route.Summary
});
2015-01-17 20:30:23 +01:00
}
return routes.ToArray();
}
2015-04-11 23:34:05 +02:00
private string NormalizeEmbyRoutePath(string path)
{
if (path.StartsWith("/", StringComparison.OrdinalIgnoreCase))
{
return "/emby" + path;
}
return "emby/" + path;
}
private string DoubleNormalizeEmbyRoutePath(string path)
{
if (path.StartsWith("/", StringComparison.OrdinalIgnoreCase))
{
return "/emby/emby" + path;
}
return "emby/emby/" + path;
}
2015-01-17 20:30:23 +01:00
private string NormalizeRoutePath(string path)
{
if (path.StartsWith("/", StringComparison.OrdinalIgnoreCase))
{
return "/mediabrowser" + path;
}
return "mediabrowser/" + path;
}
2014-07-09 02:46:11 +02:00
2015-02-19 05:37:44 +01:00
private string DoubleNormalizeRoutePath(string path)
{
if (path.StartsWith("/", StringComparison.OrdinalIgnoreCase))
{
return "/mediabrowser/mediabrowser" + path;
}
2015-02-21 03:09:00 +01:00
return "mediabrowser/mediabrowser/" + path;
2015-02-19 05:37:44 +01:00
}
2013-12-07 16:52:38 +01:00
/// <summary>
/// Releases the specified instance.
/// </summary>
/// <param name="instance">The instance.</param>
public override void Release(object instance)
{
// Leave this empty so SS doesn't try to dispose our objects
}
private bool _disposed;
private readonly object _disposeLock = new object();
protected virtual void Dispose(bool disposing)
{
if (_disposed) return;
base.Dispose();
lock (_disposeLock)
{
if (_disposed) return;
if (disposing)
{
Stop();
}
//release unmanaged resources here...
_disposed = true;
}
}
public override void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
public void StartServer(IEnumerable<string> urlPrefixes, string certificatePath)
2013-12-07 16:52:38 +01:00
{
2015-01-19 05:29:57 +01:00
CertificatePath = certificatePath;
2014-01-09 05:44:51 +01:00
UrlPrefixes = urlPrefixes.ToList();
Start(UrlPrefixes.First());
2013-12-07 16:52:38 +01:00
}
}
}