123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- using Funq;
- using MediaBrowser.Common;
- using MediaBrowser.Common.Extensions;
- using MediaBrowser.Controller.Net;
- using MediaBrowser.Model.Logging;
- using MediaBrowser.Server.Implementations.HttpServer.NetListener;
- using MediaBrowser.Server.Implementations.HttpServer.SocketSharp;
- using ServiceStack;
- using ServiceStack.Api.Swagger;
- 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;
- namespace MediaBrowser.Server.Implementations.HttpServer
- {
- public class HttpListenerHost : ServiceStackHost, IHttpServer
- {
- private string HandlerPath { get; set; }
- private string DefaultRedirectPath { get; set; }
- private readonly ILogger _logger;
- public IEnumerable<string> UrlPrefixes { get; private set; }
- private readonly List<IRestfulService> _restServices = new List<IRestfulService>();
- private IHttpListener _listener;
- private readonly ContainerAdapter _containerAdapter;
- public event EventHandler<WebSocketConnectEventArgs> WebSocketConnected;
- private readonly List<string> _localEndpoints = new List<string>();
- private readonly ReaderWriterLockSlim _localEndpointLock = new ReaderWriterLockSlim();
- private readonly bool _supportsNativeWebSocket;
- private string _certificatePath;
- /// <summary>
- /// Gets the local end points.
- /// </summary>
- /// <value>The local end points.</value>
- public IEnumerable<string> LocalEndPoints
- {
- get
- {
- _localEndpointLock.EnterReadLock();
- var list = _localEndpoints.ToList();
- _localEndpointLock.ExitReadLock();
- return list;
- }
- }
- public HttpListenerHost(IApplicationHost applicationHost,
- ILogManager logManager,
- string serviceName,
- string handlerPath,
- string defaultRedirectPath,
- bool supportsNativeWebSocket,
- params Assembly[] assembliesWithServices)
- : base(serviceName, assembliesWithServices)
- {
- DefaultRedirectPath = defaultRedirectPath;
- _supportsNativeWebSocket = supportsNativeWebSocket;
- HandlerPath = handlerPath;
- _logger = logManager.GetLogger("HttpServer");
- _containerAdapter = new ContainerAdapter(applicationHost);
- }
- 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},
- {typeof (DirectoryNotFoundException), 404},
- {typeof (SecurityException), 401},
- {typeof (UnauthorizedAccessException), 401}
- };
- 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;
- Plugins.Add(new SwaggerFeature());
- Plugins.Add(new CorsFeature(allowedHeaders: "Content-Type, Authorization, Range, X-MediaBrowser-Token"));
- //Plugins.Add(new AuthFeature(() => new AuthUserSession(), new IAuthProvider[] {
- // new SessionAuthProvider(_containerAdapter.Resolve<ISessionContext>()),
- //}));
- 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;'
- }
- });
- HostContext.GlobalResponseFilters.Add(new ResponseFilter(_logger).FilterResponse);
- }
- public override void OnAfterInit()
- {
- SetAppDomainData();
- base.OnAfterInit();
- }
- public override void OnConfigLoad()
- {
- base.OnConfigLoad();
- Config.HandlerFactoryPath = string.IsNullOrEmpty(HandlerPath)
- ? null
- : HandlerPath;
- Config.MetadataRedirectPath = string.IsNullOrEmpty(HandlerPath)
- ? "metadata"
- : PathUtils.CombinePaths(HandlerPath, "metadata");
- }
- 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)
- {
- StartListener();
- return this;
- }
- private void OnRequestReceived(string localEndPoint)
- {
- 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;
- }
- if (_localEndpointLock.TryEnterWriteLock(100))
- {
- var list = _localEndpoints.ToList();
- list.Remove(localEndPoint);
- list.Insert(0, localEndPoint);
- _localEndpointLock.ExitWriteLock();
- }
- }
- /// <summary>
- /// Starts the Web Service
- /// </summary>
- private void StartListener()
- {
- HostContext.Config.HandlerFactoryPath = ListenerRequest.GetHandlerPathIfAny(UrlPrefixes.First());
- _listener = GetListener();
- _listener.WebSocketHandler = WebSocketHandler;
- _listener.ErrorHandler = ErrorHandler;
- _listener.RequestHandler = RequestHandler;
- _listener.Start(UrlPrefixes);
- }
- private IHttpListener GetListener()
- {
- if (_supportsNativeWebSocket && NativeWebSocket.IsSupported)
- {
- // Certificate location is ignored here. You need to use netsh
- // to assign the certificate to the proper port.
- return new HttpListenerServer(_logger, OnRequestReceived);
- }
- return new WebSocketSharpListener(_logger, OnRequestReceived, _certificatePath);
- }
- private void WebSocketHandler(WebSocketConnectEventArgs args)
- {
- if (WebSocketConnected != null)
- {
- WebSocketConnected(this, args);
- }
- }
- private void ErrorHandler(Exception ex, IRequest httpReq)
- {
- try
- {
- var httpRes = httpReq.Response;
- if (httpRes.IsClosed)
- {
- return;
- }
-
- var errorResponse = new ErrorResponse
- {
- ResponseStatus = new ResponseStatus
- {
- ErrorCode = ex.GetType().GetOperationName(),
- Message = ex.Message,
- StackTrace = ex.StackTrace
- }
- };
- 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)
- {
- _logger.ErrorException("Error this.ProcessRequest(context)(Exception while writing error to the response)", errorEx);
- }
- }
- /// <summary>
- /// Shut down the Web Service
- /// </summary>
- public void Stop()
- {
- if (_listener != null)
- {
- _listener.Stop();
- }
- }
- /// <summary>
- /// Overridable method that can be used to implement a custom hnandler
- /// </summary>
- /// <param name="httpReq">The HTTP req.</param>
- /// <param name="url">The URL.</param>
- /// <returns>Task.</returns>
- protected Task RequestHandler(IHttpRequest httpReq, Uri url)
- {
- var date = DateTime.Now;
- var httpRes = httpReq.Response;
- var operationName = httpReq.OperationName;
- var localPath = url.LocalPath;
- if (string.Equals(localPath, "/" + HandlerPath + "/", StringComparison.OrdinalIgnoreCase))
- {
- httpRes.RedirectToUrl(DefaultRedirectPath);
- return Task.FromResult(true);
- }
- if (string.Equals(localPath, "/" + HandlerPath, StringComparison.OrdinalIgnoreCase))
- {
- httpRes.RedirectToUrl(HandlerPath + "/" + DefaultRedirectPath);
- return Task.FromResult(true);
- }
- if (string.Equals(localPath, "/", StringComparison.OrdinalIgnoreCase))
- {
- httpRes.RedirectToUrl(HandlerPath + "/" + DefaultRedirectPath);
- return Task.FromResult(true);
- }
- if (string.IsNullOrEmpty(localPath))
- {
- httpRes.RedirectToUrl("/" + HandlerPath + "/" + DefaultRedirectPath);
- return Task.FromResult(true);
- }
- var handler = HttpHandlerFactory.GetHandler(httpReq);
- var remoteIp = httpReq.RemoteIp;
- 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);
- task.ContinueWith(x => httpRes.Close(), TaskContinuationOptions.OnlyOnRanToCompletion | TaskContinuationOptions.AttachedToParent);
- //Matches Exceptions handled in HttpListenerBase.InitTask()
- var urlString = url.ToString();
- task.ContinueWith(x =>
- {
- var statusCode = httpRes.StatusCode;
- var duration = DateTime.Now - date;
- LoggerUtils.LogResponse(_logger, statusCode, urlString, remoteIp, duration);
- }, TaskContinuationOptions.None);
- 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");
- base.Init();
- }
- //public override RouteAttribute[] GetRouteAttributes(System.Type requestType)
- //{
- // var routes = base.GetRouteAttributes(requestType);
- // routes.Each(x => x.Path = "/api" + x.Path);
- // return routes;
- //}
- /// <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)
- {
- _certificatePath = certificatePath;
- UrlPrefixes = urlPrefixes.ToList();
- Start(UrlPrefixes.First());
- }
- }
- }
|