jellyfin/Emby.Server.Implementations/HttpServer/ResponseFilter.cs

130 lines
4.7 KiB
C#
Raw Normal View History

2013-12-07 16:52:38 +01:00
using MediaBrowser.Model.Logging;
using System;
using System.Globalization;
using System.Text;
2016-11-08 19:44:23 +01:00
using Emby.Server.Implementations.HttpServer.SocketSharp;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.Services;
2013-12-07 16:52:38 +01:00
2016-11-08 19:44:23 +01:00
namespace Emby.Server.Implementations.HttpServer
2013-12-07 16:52:38 +01:00
{
public class ResponseFilter
{
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
private readonly ILogger _logger;
2016-05-29 23:04:49 +02:00
public ResponseFilter(ILogger logger)
2013-12-07 16:52:38 +01:00
{
_logger = logger;
}
/// <summary>
/// Filters the response.
/// </summary>
/// <param name="req">The req.</param>
/// <param name="res">The res.</param>
/// <param name="dto">The dto.</param>
public void FilterResponse(IRequest req, IResponse res, object dto)
{
// Try to prevent compatibility view
res.AddHeader("X-UA-Compatible", "IE=Edge");
2016-11-08 19:44:23 +01:00
res.AddHeader("Access-Control-Allow-Headers", "Content-Type, Authorization, Range, X-MediaBrowser-Token, X-Emby-Authorization");
res.AddHeader("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, PATCH, OPTIONS");
res.AddHeader("Access-Control-Allow-Origin", "*");
2015-06-13 06:14:48 +02:00
2013-12-07 16:52:38 +01:00
var exception = dto as Exception;
if (exception != null)
{
_logger.ErrorException("Error processing request for {0}", exception, req.RawUrl);
if (!string.IsNullOrEmpty(exception.Message))
{
var error = exception.Message.Replace(Environment.NewLine, " ");
error = RemoveControlCharacters(error);
res.AddHeader("X-Application-Error-Code", error);
}
}
2015-05-22 21:16:14 +02:00
var vary = "Accept-Encoding";
2013-12-07 16:52:38 +01:00
2016-10-25 21:02:04 +02:00
var hasHeaders = dto as IHasHeaders;
2015-05-22 21:16:14 +02:00
var sharpResponse = res as WebSocketSharpResponse;
2013-12-07 16:52:38 +01:00
2016-10-25 21:02:04 +02:00
if (hasHeaders != null)
2013-12-07 16:52:38 +01:00
{
2016-10-25 21:02:04 +02:00
if (!hasHeaders.Headers.ContainsKey("Server"))
2016-01-14 22:41:23 +01:00
{
2016-10-25 21:02:04 +02:00
hasHeaders.Headers["Server"] = "Mono-HTTPAPI/1.1, UPnP/1.0 DLNADOC/1.50";
//hasHeaders.Headers["Server"] = "Mono-HTTPAPI/1.1";
2016-01-14 22:41:23 +01:00
}
2015-05-22 21:16:14 +02:00
2013-12-07 16:52:38 +01:00
// Content length has to be explicitly set on on HttpListenerResponse or it won't be happy
string contentLength;
2016-10-25 21:02:04 +02:00
if (hasHeaders.Headers.TryGetValue("Content-Length", out contentLength) && !string.IsNullOrEmpty(contentLength))
2013-12-07 16:52:38 +01:00
{
var length = long.Parse(contentLength, UsCulture);
if (length > 0)
{
2014-07-19 03:28:40 +02:00
res.SetContentLength(length);
2016-11-08 19:44:23 +01:00
//var listenerResponse = res.OriginalResponse as HttpListenerResponse;
//if (listenerResponse != null)
//{
// // Disable chunked encoding. Technically this is only needed when using Content-Range, but
// // anytime we know the content length there's no need for it
// listenerResponse.SendChunked = false;
// return;
//}
2014-07-19 03:28:40 +02:00
if (sharpResponse != null)
{
sharpResponse.SendChunked = false;
}
2013-12-07 16:52:38 +01:00
}
}
2015-05-22 21:16:14 +02:00
2016-10-25 21:02:04 +02:00
string hasHeadersVary;
if (hasHeaders.Headers.TryGetValue("Vary", out hasHeadersVary))
2015-05-22 21:16:14 +02:00
{
2016-10-25 21:02:04 +02:00
vary = hasHeadersVary;
2015-05-22 21:16:14 +02:00
}
2016-10-25 21:02:04 +02:00
hasHeaders.Headers["Vary"] = vary;
2013-12-07 16:52:38 +01:00
}
2015-05-22 21:16:14 +02:00
//res.KeepAlive = false;
// Per Google PageSpeed
// This instructs the proxies to cache two versions of the resource: one compressed, and one uncompressed.
// The correct version of the resource is delivered based on the client request header.
// This is a good choice for applications that are singly homed and depend on public proxies for user locality.
res.AddHeader("Vary", vary);
2013-12-07 16:52:38 +01:00
}
/// <summary>
/// Removes the control characters.
/// </summary>
/// <param name="inString">The in string.</param>
/// <returns>System.String.</returns>
2014-10-29 00:17:55 +01:00
public static string RemoveControlCharacters(string inString)
2013-12-07 16:52:38 +01:00
{
if (inString == null) return null;
var newString = new StringBuilder();
foreach (var ch in inString)
{
if (!char.IsControl(ch))
{
newString.Append(ch);
}
}
return newString.ToString();
}
}
}