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

114 lines
3.9 KiB
C#
Raw Normal View History

using System;
2013-12-07 10:52:38 -05:00
using System.Globalization;
using System.Text;
using MediaBrowser.Controller.Net;
2016-10-25 15:02:04 -04:00
using MediaBrowser.Model.Services;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using Microsoft.Net.Http.Headers;
2013-12-07 10:52:38 -05:00
2016-11-08 13:44:23 -05:00
namespace Emby.Server.Implementations.HttpServer
2013-12-07 10:52:38 -05:00
{
2019-11-01 13:38:54 -04:00
/// <summary>
/// Class ResponseFilter.
/// </summary>
2013-12-07 10:52:38 -05:00
public class ResponseFilter
{
private readonly IHttpServer _server;
2013-12-07 10:52:38 -05:00
private readonly ILogger _logger;
2019-11-01 13:38:54 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="ResponseFilter"/> class.
/// </summary>
/// <param name="server">The HTTP server.</param>
2019-11-01 13:38:54 -04:00
/// <param name="logger">The logger.</param>
public ResponseFilter(IHttpServer server, ILogger logger)
2013-12-07 10:52:38 -05:00
{
_server = server;
2013-12-07 10:52:38 -05: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, HttpResponse res, object dto)
2013-12-07 10:52:38 -05:00
{
2020-05-14 19:03:45 -04:00
foreach(var (key, value) in _server.GetDefaultCorsHeaders(req))
{
2020-05-14 09:28:33 -04:00
res.Headers.Add(key, value);
}
2013-12-07 10:52:38 -05:00
// Try to prevent compatibility view
2020-06-19 05:57:37 -04:00
res.Headers["Access-Control-Allow-Headers"] = "Accept, Accept-Language, Authorization, Cache-Control, " +
"Content-Disposition, Content-Encoding, Content-Language, Content-Length, Content-MD5, Content-Range, " +
"Content-Type, Cookie, Date, Host, If-Match, If-Modified-Since, If-None-Match, If-Unmodified-Since, " +
"Origin, OriginToken, Pragma, Range, Slug, Transfer-Encoding, Want-Digest, X-MediaBrowser-Token, " +
2020-06-19 05:57:37 -04:00
"X-Emby-Authorization";
2015-06-13 00:14:48 -04:00
2019-01-06 14:35:36 -05:00
if (dto is Exception exception)
2013-12-07 10:52:38 -05:00
{
2018-12-20 07:11:26 -05:00
_logger.LogError(exception, "Error processing request for {RawUrl}", req.RawUrl);
2013-12-07 10:52:38 -05:00
if (!string.IsNullOrEmpty(exception.Message))
{
2019-11-01 13:38:54 -04:00
var error = exception.Message.Replace(Environment.NewLine, " ", StringComparison.Ordinal);
2013-12-07 10:52:38 -05:00
error = RemoveControlCharacters(error);
res.Headers.Add("X-Application-Error-Code", error);
2013-12-07 10:52:38 -05:00
}
}
2019-01-06 14:35:36 -05:00
if (dto is IHasHeaders hasHeaders)
2013-12-07 10:52:38 -05:00
{
if (!hasHeaders.Headers.ContainsKey(HeaderNames.Server))
2016-01-14 16:41:23 -05:00
{
hasHeaders.Headers[HeaderNames.Server] = "Microsoft-NetCore/2.0, UPnP/1.0 DLNADOC/1.50";
2016-01-14 16:41:23 -05:00
}
2015-05-22 15:16:14 -04:00
2013-12-07 10:52:38 -05:00
// Content length has to be explicitly set on on HttpListenerResponse or it won't be happy
if (hasHeaders.Headers.TryGetValue(HeaderNames.ContentLength, out string contentLength)
2019-01-06 14:35:36 -05:00
&& !string.IsNullOrEmpty(contentLength))
2013-12-07 10:52:38 -05:00
{
2019-11-01 13:38:54 -04:00
var length = long.Parse(contentLength, CultureInfo.InvariantCulture);
2013-12-07 10:52:38 -05:00
if (length > 0)
{
res.ContentLength = length;
2013-12-07 10:52:38 -05:00
}
}
}
}
/// <summary>
/// Removes the control characters.
/// </summary>
/// <param name="inString">The in string.</param>
/// <returns>System.String.</returns>
2014-10-28 19:17:55 -04:00
public static string RemoveControlCharacters(string inString)
2013-12-07 10:52:38 -05:00
{
if (inString == null)
{
return null;
}
2020-04-19 09:18:28 -04:00
else if (inString.Length == 0)
{
return inString;
}
2013-12-07 10:52:38 -05:00
var newString = new StringBuilder(inString.Length);
2013-12-07 10:52:38 -05:00
foreach (var ch in inString)
{
if (!char.IsControl(ch))
{
newString.Append(ch);
}
}
2013-12-07 10:52:38 -05:00
return newString.ToString();
}
}
}