2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2013-12-07 15:52:38 +00:00
|
|
|
using System.Globalization;
|
|
|
|
using System.Text;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.Services;
|
2019-01-13 19:20:41 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-12-07 15:52:38 +00:00
|
|
|
|
2016-11-08 18:44:23 +00:00
|
|
|
namespace Emby.Server.Implementations.HttpServer
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
|
|
|
public class ResponseFilter
|
|
|
|
{
|
|
|
|
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
2016-05-29 21:04:49 +00:00
|
|
|
public ResponseFilter(ILogger logger)
|
2013-12-07 15:52:38 +00: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
|
2017-05-05 17:55:38 +00:00
|
|
|
res.AddHeader("Access-Control-Allow-Headers", "Accept, Accept-Language, Authorization, Cache-Control, Content-Disposition, Content-Encoding, Content-Language, Content-Length, Content-MD5, Content-Range, Content-Type, 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, X-Emby-Authorization");
|
2016-11-08 18:44:23 +00:00
|
|
|
res.AddHeader("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, PATCH, OPTIONS");
|
|
|
|
res.AddHeader("Access-Control-Allow-Origin", "*");
|
2015-06-13 04:14:48 +00:00
|
|
|
|
2019-01-06 19:35:36 +00:00
|
|
|
if (dto is Exception exception)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
_logger.LogError(exception, "Error processing request for {RawUrl}", req.RawUrl);
|
2013-12-07 15:52:38 +00:00
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(exception.Message))
|
|
|
|
{
|
|
|
|
var error = exception.Message.Replace(Environment.NewLine, " ");
|
|
|
|
error = RemoveControlCharacters(error);
|
|
|
|
|
|
|
|
res.AddHeader("X-Application-Error-Code", error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-06 19:35:36 +00:00
|
|
|
if (dto is IHasHeaders hasHeaders)
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
2016-10-25 19:02:04 +00:00
|
|
|
if (!hasHeaders.Headers.ContainsKey("Server"))
|
2016-01-14 21:41:23 +00:00
|
|
|
{
|
2017-06-15 17:22:05 +00:00
|
|
|
hasHeaders.Headers["Server"] = "Microsoft-NetCore/2.0, UPnP/1.0 DLNADOC/1.50";
|
2016-01-14 21:41:23 +00:00
|
|
|
}
|
2015-05-22 19:16:14 +00:00
|
|
|
|
2013-12-07 15:52:38 +00:00
|
|
|
// Content length has to be explicitly set on on HttpListenerResponse or it won't be happy
|
2019-01-06 19:35:36 +00:00
|
|
|
if (hasHeaders.Headers.TryGetValue("Content-Length", out string contentLength)
|
|
|
|
&& !string.IsNullOrEmpty(contentLength))
|
2013-12-07 15:52:38 +00:00
|
|
|
{
|
|
|
|
var length = long.Parse(contentLength, UsCulture);
|
|
|
|
|
|
|
|
if (length > 0)
|
|
|
|
{
|
2014-07-19 01:28:40 +00:00
|
|
|
res.SetContentLength(length);
|
2018-09-12 17:26:21 +00:00
|
|
|
res.SendChunked = false;
|
2013-12-07 15:52:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Removes the control characters.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="inString">The in string.</param>
|
|
|
|
/// <returns>System.String.</returns>
|
2014-10-28 23:17:55 +00:00
|
|
|
public static string RemoveControlCharacters(string inString)
|
2013-12-07 15:52:38 +00: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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|