jellyfin/Emby.Server.Implementations/HttpServer/SocketSharp/WebSocketSharpResponse.cs

202 lines
5.6 KiB
C#
Raw Normal View History

2014-07-19 03:28:40 +02:00
using System;
2016-06-19 18:53:43 +02:00
using System.Collections.Generic;
2014-07-19 03:28:40 +02:00
using System.IO;
using System.Net;
2016-11-08 19:44:23 +01:00
using System.Text;
2017-03-12 20:27:26 +01:00
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.IO;
2014-07-19 03:28:40 +02:00
using MediaBrowser.Model.Logging;
2016-11-28 06:38:41 +01:00
using SocketHttpListener.Net;
2015-01-03 20:38:22 +01:00
using HttpListenerResponse = SocketHttpListener.Net.HttpListenerResponse;
2016-10-25 21:02:04 +02:00
using IHttpResponse = MediaBrowser.Model.Services.IHttpResponse;
using IRequest = MediaBrowser.Model.Services.IRequest;
2014-07-19 03:28:40 +02:00
2016-11-08 19:44:23 +01:00
namespace Emby.Server.Implementations.HttpServer.SocketSharp
2014-07-19 03:28:40 +02:00
{
public class WebSocketSharpResponse : IHttpResponse
{
private readonly ILogger _logger;
2016-10-25 21:02:04 +02:00
private readonly HttpListenerResponse _response;
2014-07-19 03:28:40 +02:00
2016-06-19 18:53:43 +02:00
public WebSocketSharpResponse(ILogger logger, HttpListenerResponse response, IRequest request)
2014-07-19 03:28:40 +02:00
{
_logger = logger;
2016-10-25 21:02:04 +02:00
this._response = response;
2016-06-19 18:53:43 +02:00
Items = new Dictionary<string, object>();
Request = request;
2014-07-19 03:28:40 +02:00
}
2016-06-19 18:53:43 +02:00
public IRequest Request { get; private set; }
2014-07-19 03:28:40 +02:00
public bool UseBufferedStream { get; set; }
2016-06-19 18:53:43 +02:00
public Dictionary<string, object> Items { get; private set; }
2014-07-19 03:28:40 +02:00
public object OriginalResponse
{
2016-10-25 21:02:04 +02:00
get { return _response; }
2014-07-19 03:28:40 +02:00
}
public int StatusCode
{
2016-10-25 21:02:04 +02:00
get { return this._response.StatusCode; }
set { this._response.StatusCode = value; }
2014-07-19 03:28:40 +02:00
}
public string StatusDescription
{
2016-10-25 21:02:04 +02:00
get { return this._response.StatusDescription; }
set { this._response.StatusDescription = value; }
2014-07-19 03:28:40 +02:00
}
public string ContentType
{
2016-10-25 21:02:04 +02:00
get { return _response.ContentType; }
set { _response.ContentType = value; }
2014-07-19 03:28:40 +02:00
}
2016-10-25 21:02:04 +02:00
//public ICookies Cookies { get; set; }
2014-07-19 03:28:40 +02:00
public void AddHeader(string name, string value)
{
if (string.Equals(name, "Content-Type", StringComparison.OrdinalIgnoreCase))
{
ContentType = value;
return;
}
2016-10-25 21:02:04 +02:00
_response.AddHeader(name, value);
2014-07-19 03:28:40 +02:00
}
2016-06-19 18:53:43 +02:00
public string GetHeader(string name)
{
2016-10-25 21:02:04 +02:00
return _response.Headers[name];
2016-06-19 18:53:43 +02:00
}
2014-07-19 03:28:40 +02:00
public void Redirect(string url)
{
2016-10-25 21:02:04 +02:00
_response.Redirect(url);
2014-07-19 03:28:40 +02:00
}
public Stream OutputStream
{
2016-10-25 21:02:04 +02:00
get { return _response.OutputStream; }
2014-07-19 03:28:40 +02:00
}
public void Close()
{
if (!this.IsClosed)
{
this.IsClosed = true;
try
{
2016-11-08 19:44:23 +01:00
CloseOutputStream(this._response);
2014-07-19 03:28:40 +02:00
}
catch (Exception ex)
{
_logger.ErrorException("Error closing HttpListener output stream", ex);
}
}
}
2016-11-08 19:44:23 +01:00
public void CloseOutputStream(HttpListenerResponse response)
{
try
{
2016-11-12 08:14:04 +01:00
var outputStream = response.OutputStream;
2016-11-12 09:02:46 +01:00
// This is needed with compression
2016-11-28 06:38:41 +01:00
if (outputStream is ResponseStream)
2016-11-12 09:02:46 +01:00
{
2016-11-28 06:38:41 +01:00
//if (!string.IsNullOrWhiteSpace(GetHeader("Content-Encoding")))
{
outputStream.Flush();
}
2016-11-12 09:02:46 +01:00
2016-11-28 06:38:41 +01:00
outputStream.Dispose();
}
2016-11-08 19:44:23 +01:00
response.Close();
}
catch (Exception ex)
{
_logger.ErrorException("Error in HttpListenerResponseWrapper: " + ex.Message, ex);
}
}
2014-07-19 03:28:40 +02:00
public bool IsClosed
{
get;
private set;
}
public void SetContentLength(long contentLength)
{
//you can happily set the Content-Length header in Asp.Net
//but HttpListener will complain if you do - you have to set ContentLength64 on the response.
//workaround: HttpListener throws "The parameter is incorrect" exceptions when we try to set the Content-Length header
2016-10-25 21:02:04 +02:00
_response.ContentLength64 = contentLength;
2014-07-19 03:28:40 +02:00
}
public void SetCookie(Cookie cookie)
{
2016-11-08 19:44:23 +01:00
var cookieStr = AsHeaderValue(cookie);
_response.Headers.Add("Set-Cookie", cookieStr);
}
public static string AsHeaderValue(Cookie cookie)
{
var defaultExpires = DateTime.MinValue;
var path = cookie.Expires == defaultExpires
? "/"
: cookie.Path ?? "/";
var sb = new StringBuilder();
sb.Append($"{cookie.Name}={cookie.Value};path={path}");
if (cookie.Expires != defaultExpires)
{
sb.Append($";expires={cookie.Expires:R}");
}
if (!string.IsNullOrEmpty(cookie.Domain))
{
sb.Append($";domain={cookie.Domain}");
}
//else if (restrictAllCookiesToDomain != null)
//{
// sb.Append($";domain={restrictAllCookiesToDomain}");
//}
if (cookie.Secure)
{
sb.Append(";Secure");
}
if (cookie.HttpOnly)
{
sb.Append(";HttpOnly");
}
return sb.ToString();
2014-07-19 03:28:40 +02:00
}
2016-11-08 19:44:23 +01:00
2014-07-19 03:28:40 +02:00
public bool SendChunked
{
2016-10-25 21:02:04 +02:00
get { return _response.SendChunked; }
set { _response.SendChunked = value; }
2014-07-19 03:28:40 +02:00
}
2014-11-15 16:51:49 +01:00
public bool KeepAlive { get; set; }
2016-06-19 18:53:43 +02:00
public void ClearCookies()
{
}
2017-03-12 20:27:26 +01:00
public Task TransmitFile(string path, long offset, long count, CancellationToken cancellationToken)
{
return _response.TransmitFile(path, offset, count, cancellationToken);
}
2014-07-19 03:28:40 +02:00
}
}