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

718 lines
27 KiB
C#
Raw Normal View History

2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Globalization;
2013-03-08 18:25:25 +01:00
using System.IO;
2018-09-12 19:26:21 +02:00
using System.IO.Compression;
using System.Net;
2016-11-10 15:41:24 +01:00
using System.Runtime.Serialization;
2013-03-25 13:46:38 +01:00
using System.Text;
using System.Threading.Tasks;
2016-11-10 15:41:24 +01:00
using System.Xml;
2017-02-13 02:07:48 +01:00
using Emby.Server.Implementations.Services;
using MediaBrowser.Controller.Net;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Serialization;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.Services;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Primitives;
using Microsoft.Net.Http.Headers;
2016-10-25 21:02:04 +02:00
using IRequest = MediaBrowser.Model.Services.IRequest;
2014-12-26 18:45:06 +01:00
using MimeTypes = MediaBrowser.Model.Net.MimeTypes;
2013-03-08 18:25:25 +01:00
2016-11-11 02:37:20 +01:00
namespace Emby.Server.Implementations.HttpServer
2013-03-08 18:25:25 +01:00
{
/// <summary>
2019-11-01 18:38:54 +01:00
/// Class HttpResultFactory.
/// </summary>
2013-03-08 18:25:25 +01:00
public class HttpResultFactory : IHttpResultFactory
{
// Last-Modified and If-Modified-Since must follow strict date format,
// see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Modified-Since
private const string HttpDateFormat = "ddd, dd MMM yyyy HH:mm:ss \"GMT\"";
2020-04-19 04:46:22 +02:00
// We specifically use en-US culture because both day of week and month names require it
private static readonly CultureInfo _enUSculture = new CultureInfo("en-US", false);
/// <summary>
/// The logger.
/// </summary>
2020-06-06 02:15:56 +02:00
private readonly ILogger<HttpResultFactory> _logger;
private readonly IFileSystem _fileSystem;
private readonly IJsonSerializer _jsonSerializer;
2019-03-05 19:32:22 +01:00
private readonly IStreamHelper _streamHelper;
2018-09-12 19:26:21 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="HttpResultFactory" /> class.
/// </summary>
2019-03-05 19:32:22 +01:00
public HttpResultFactory(ILoggerFactory loggerfactory, IFileSystem fileSystem, IJsonSerializer jsonSerializer, IStreamHelper streamHelper)
{
_fileSystem = fileSystem;
_jsonSerializer = jsonSerializer;
2019-03-05 19:32:22 +01:00
_streamHelper = streamHelper;
2020-06-06 02:15:56 +02:00
_logger = loggerfactory.CreateLogger<HttpResultFactory>();
}
/// <summary>
/// Gets the result.
/// </summary>
/// <param name="requestContext">The request context.</param>
/// <param name="content">The content.</param>
/// <param name="contentType">Type of the content.</param>
/// <param name="responseHeaders">The response headers.</param>
/// <returns>System.Object.</returns>
2018-09-12 19:26:21 +02:00
public object GetResult(IRequest requestContext, byte[] content, string contentType, IDictionary<string, string> responseHeaders = null)
{
return GetHttpResult(requestContext, content, contentType, true, responseHeaders);
}
public object GetResult(string content, string contentType, IDictionary<string, string> responseHeaders = null)
{
2018-09-12 19:26:21 +02:00
return GetHttpResult(null, content, contentType, true, responseHeaders);
}
public object GetResult(IRequest requestContext, Stream content, string contentType, IDictionary<string, string> responseHeaders = null)
{
return GetHttpResult(requestContext, content, contentType, true, responseHeaders);
}
public object GetResult(IRequest requestContext, string content, string contentType, IDictionary<string, string> responseHeaders = null)
{
return GetHttpResult(requestContext, content, contentType, true, responseHeaders);
2013-03-25 03:41:27 +01:00
}
2017-05-31 21:21:32 +02:00
public object GetRedirectResult(string url)
{
var responseHeaders = new Dictionary<string, string>();
responseHeaders[HeaderNames.Location] = url;
2017-05-31 21:21:32 +02:00
2018-09-12 19:26:21 +02:00
var result = new HttpResult(Array.Empty<byte>(), "text/plain", HttpStatusCode.Redirect);
2017-05-31 21:21:32 +02:00
AddResponseHeaders(result, responseHeaders);
return result;
}
2013-03-25 03:41:27 +01:00
/// <summary>
/// Gets the HTTP result.
/// </summary>
2018-09-12 19:26:21 +02:00
private IHasHeaders GetHttpResult(IRequest requestContext, Stream content, string contentType, bool addCachePrevention, IDictionary<string, string> responseHeaders = null)
2013-03-25 03:41:27 +01:00
{
2019-02-09 11:53:07 +01:00
var result = new StreamWriter(content, contentType);
2013-03-25 03:41:27 +01:00
2018-09-12 19:26:21 +02:00
if (responseHeaders == null)
{
responseHeaders = new Dictionary<string, string>();
}
2013-03-25 03:41:27 +01:00
if (addCachePrevention && !responseHeaders.TryGetValue(HeaderNames.Expires, out string expires))
2013-03-25 03:41:27 +01:00
{
2019-03-20 04:13:02 +01:00
responseHeaders[HeaderNames.Expires] = "0";
2013-03-25 03:41:27 +01:00
}
2018-09-12 19:26:21 +02:00
AddResponseHeaders(result, responseHeaders);
return result;
}
/// <summary>
/// Gets the HTTP result.
/// </summary>
private IHasHeaders GetHttpResult(IRequest requestContext, byte[] content, string contentType, bool addCachePrevention, IDictionary<string, string> responseHeaders = null)
{
2018-12-29 17:26:36 +01:00
string compressionType = null;
bool isHeadRequest = false;
2018-09-12 19:26:21 +02:00
if (requestContext != null)
{
2018-12-29 17:26:36 +01:00
compressionType = GetCompressionType(requestContext, content, contentType);
isHeadRequest = string.Equals(requestContext.Verb, "head", StringComparison.OrdinalIgnoreCase);
}
2018-09-12 19:26:21 +02:00
2018-12-29 17:26:36 +01:00
IHasHeaders result;
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(compressionType))
2013-03-25 03:41:27 +01:00
{
2018-09-12 19:26:21 +02:00
var contentLength = content.Length;
2013-03-25 03:41:27 +01:00
2018-09-12 19:26:21 +02:00
if (isHeadRequest)
2013-03-25 03:41:27 +01:00
{
2018-09-12 19:26:21 +02:00
content = Array.Empty<byte>();
2013-03-25 03:41:27 +01:00
}
2013-03-25 13:46:38 +01:00
result = new StreamWriter(content, contentType, contentLength);
2018-09-12 19:26:21 +02:00
}
else
{
result = GetCompressedResult(content, compressionType, responseHeaders, isHeadRequest, contentType);
}
if (responseHeaders == null)
{
responseHeaders = new Dictionary<string, string>();
}
if (addCachePrevention && !responseHeaders.TryGetValue(HeaderNames.Expires, out string _))
2018-09-12 19:26:21 +02:00
{
2019-03-20 04:13:02 +01:00
responseHeaders[HeaderNames.Expires] = "0";
2018-09-12 19:26:21 +02:00
}
AddResponseHeaders(result, responseHeaders);
return result;
}
/// <summary>
/// Gets the HTTP result.
/// </summary>
private IHasHeaders GetHttpResult(IRequest requestContext, string content, string contentType, bool addCachePrevention, IDictionary<string, string> responseHeaders = null)
{
IHasHeaders result;
var bytes = Encoding.UTF8.GetBytes(content);
var compressionType = requestContext == null ? null : GetCompressionType(requestContext, bytes, contentType);
var isHeadRequest = requestContext == null ? false : string.Equals(requestContext.Verb, "head", StringComparison.OrdinalIgnoreCase);
if (string.IsNullOrEmpty(compressionType))
{
var contentLength = bytes.Length;
if (isHeadRequest)
{
bytes = Array.Empty<byte>();
2013-03-25 03:41:27 +01:00
}
2018-09-12 19:26:21 +02:00
result = new StreamWriter(bytes, contentType, contentLength);
2013-03-25 03:41:27 +01:00
}
2018-09-12 19:26:21 +02:00
else
{
result = GetCompressedResult(bytes, compressionType, responseHeaders, isHeadRequest, contentType);
}
2016-10-02 04:09:33 +02:00
if (responseHeaders == null)
{
2016-10-02 04:09:33 +02:00
responseHeaders = new Dictionary<string, string>();
}
2013-09-15 19:34:37 +02:00
if (addCachePrevention && !responseHeaders.TryGetValue(HeaderNames.Expires, out string _))
2016-11-12 07:58:50 +01:00
{
2019-03-20 04:13:02 +01:00
responseHeaders[HeaderNames.Expires] = "0";
2016-11-12 07:58:50 +01:00
}
2016-10-02 04:09:33 +02:00
AddResponseHeaders(result, responseHeaders);
return result;
}
/// <summary>
/// Gets the optimized result.
/// </summary>
/// <typeparam name="T"></typeparam>
2018-09-12 19:26:21 +02:00
public object GetResult<T>(IRequest requestContext, T result, IDictionary<string, string> responseHeaders = null)
where T : class
{
if (result == null)
{
throw new ArgumentNullException(nameof(result));
}
2015-12-01 06:22:52 +01:00
if (responseHeaders == null)
{
2015-12-01 06:22:52 +01:00
responseHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
2019-03-20 04:13:02 +01:00
responseHeaders[HeaderNames.Expires] = "0";
2018-09-12 19:26:21 +02:00
return ToOptimizedResultInternal(requestContext, result, responseHeaders);
}
private string GetCompressionType(IRequest request, byte[] content, string responseContentType)
{
if (responseContentType == null)
2015-12-01 06:22:52 +01:00
{
2018-09-12 19:26:21 +02:00
return null;
2015-12-01 06:22:52 +01:00
}
2018-09-12 19:26:21 +02:00
// Per apple docs, hls manifests must be compressed
if (!responseContentType.StartsWith("text/", StringComparison.OrdinalIgnoreCase) &&
responseContentType.IndexOf("json", StringComparison.OrdinalIgnoreCase) == -1 &&
responseContentType.IndexOf("javascript", StringComparison.OrdinalIgnoreCase) == -1 &&
responseContentType.IndexOf("xml", StringComparison.OrdinalIgnoreCase) == -1 &&
responseContentType.IndexOf("application/x-mpegURL", StringComparison.OrdinalIgnoreCase) == -1)
{
return null;
}
if (content.Length < 1024)
{
return null;
}
return GetCompressionType(request);
}
2016-11-10 15:41:24 +01:00
private static string GetCompressionType(IRequest request)
2016-11-10 15:41:24 +01:00
{
var acceptEncoding = request.Headers[HeaderNames.AcceptEncoding].ToString();
2016-11-10 15:41:24 +01:00
2020-05-25 23:52:51 +02:00
if (!string.IsNullOrEmpty(acceptEncoding))
2016-11-11 02:37:20 +01:00
{
2020-05-25 23:52:51 +02:00
// if (_brotliCompressor != null && acceptEncoding.IndexOf("br", StringComparison.OrdinalIgnoreCase) != -1)
2018-09-12 19:26:21 +02:00
// return "br";
2020-05-25 23:52:51 +02:00
if (acceptEncoding.Contains("deflate", StringComparison.OrdinalIgnoreCase))
{
2016-11-11 02:37:20 +01:00
return "deflate";
2020-05-25 23:52:51 +02:00
}
2016-11-10 15:41:24 +01:00
2020-05-25 23:52:51 +02:00
if (acceptEncoding.Contains("gzip", StringComparison.OrdinalIgnoreCase))
{
2016-11-11 02:37:20 +01:00
return "gzip";
2020-05-25 23:52:51 +02:00
}
2016-11-11 02:37:20 +01:00
}
2016-11-10 15:41:24 +01:00
return null;
}
/// <summary>
2019-01-08 00:27:46 +01:00
/// Returns the optimized result for the IRequestContext.
2016-11-10 15:41:24 +01:00
/// Does not use or store results in any cache.
/// </summary>
/// <param name="request"></param>
/// <param name="dto"></param>
/// <returns></returns>
public object ToOptimizedResult<T>(IRequest request, T dto)
2017-09-28 19:05:10 +02:00
{
2018-09-12 19:26:21 +02:00
return ToOptimizedResultInternal(request, dto);
2017-09-28 19:05:10 +02:00
}
private object ToOptimizedResultInternal<T>(IRequest request, T dto, IDictionary<string, string> responseHeaders = null)
2016-11-10 15:41:24 +01:00
{
2019-02-12 21:06:34 +01:00
// TODO: @bond use Span and .Equals
var contentType = request.ResponseContentType?.Split(';')[0].Trim().ToLowerInvariant();
2016-11-10 15:41:24 +01:00
2019-02-09 11:53:07 +01:00
switch (contentType)
2016-11-10 15:41:24 +01:00
{
2017-08-01 18:45:57 +02:00
case "application/xml":
case "text/xml":
case "text/xml; charset=utf-8": //"text/xml; charset=utf-8" also matches xml
2018-09-12 19:26:21 +02:00
return GetHttpResult(request, SerializeToXmlString(dto), contentType, false, responseHeaders);
2017-02-13 02:07:48 +01:00
2017-08-01 18:45:57 +02:00
case "application/json":
case "text/json":
2018-09-12 19:26:21 +02:00
return GetHttpResult(request, _jsonSerializer.SerializeToString(dto), contentType, false, responseHeaders);
2017-08-01 18:45:57 +02:00
default:
2018-09-12 19:26:21 +02:00
break;
}
2016-11-10 15:41:24 +01:00
2018-09-12 19:26:21 +02:00
var isHeadRequest = string.Equals(request.Verb, "head", StringComparison.OrdinalIgnoreCase);
2016-11-10 15:41:24 +01:00
2018-09-12 19:26:21 +02:00
var ms = new MemoryStream();
var writerFn = RequestHelper.GetResponseWriter(HttpListenerHost.Instance, contentType);
2017-09-28 19:05:10 +02:00
2018-09-12 19:26:21 +02:00
writerFn(dto, ms);
2016-11-10 15:41:24 +01:00
2018-09-12 19:26:21 +02:00
ms.Position = 0;
2016-11-11 02:37:20 +01:00
2018-09-12 19:26:21 +02:00
if (isHeadRequest)
2016-11-10 15:41:24 +01:00
{
2018-09-12 19:26:21 +02:00
using (ms)
2016-11-10 15:41:24 +01:00
{
2018-09-12 19:26:21 +02:00
return GetHttpResult(request, Array.Empty<byte>(), contentType, true, responseHeaders);
2016-11-10 15:41:24 +01:00
}
}
2018-09-12 19:26:21 +02:00
return GetHttpResult(request, ms, contentType, true, responseHeaders);
2016-11-10 15:41:24 +01:00
}
2018-09-12 19:26:21 +02:00
private IHasHeaders GetCompressedResult(byte[] content,
string requestedCompressionType,
IDictionary<string, string> responseHeaders,
bool isHeadRequest,
string contentType)
{
if (responseHeaders == null)
{
2015-12-01 06:22:52 +01:00
responseHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
2018-09-12 19:26:21 +02:00
content = Compress(content, requestedCompressionType);
responseHeaders[HeaderNames.ContentEncoding] = requestedCompressionType;
responseHeaders[HeaderNames.Vary] = HeaderNames.AcceptEncoding;
2018-09-12 19:26:21 +02:00
var contentLength = content.Length;
2018-09-12 19:26:21 +02:00
if (isHeadRequest)
{
var result = new StreamWriter(Array.Empty<byte>(), contentType, contentLength);
2018-09-12 19:26:21 +02:00
AddResponseHeaders(result, responseHeaders);
return result;
}
2018-09-12 19:26:21 +02:00
else
{
var result = new StreamWriter(content, contentType, contentLength);
2018-09-12 19:26:21 +02:00
AddResponseHeaders(result, responseHeaders);
return result;
}
2018-09-12 19:26:21 +02:00
}
2018-09-12 19:26:21 +02:00
private byte[] Compress(byte[] bytes, string compressionType)
{
if (string.Equals(compressionType, "deflate", StringComparison.OrdinalIgnoreCase))
2019-02-09 11:53:07 +01:00
{
2018-09-12 19:26:21 +02:00
return Deflate(bytes);
2019-02-09 11:53:07 +01:00
}
2018-09-12 19:26:21 +02:00
if (string.Equals(compressionType, "gzip", StringComparison.OrdinalIgnoreCase))
2019-02-09 11:53:07 +01:00
{
2018-09-12 19:26:21 +02:00
return GZip(bytes);
2019-02-09 11:53:07 +01:00
}
2018-09-12 19:26:21 +02:00
throw new NotSupportedException(compressionType);
}
private static byte[] Deflate(byte[] bytes)
2018-09-12 19:26:21 +02:00
{
// In .NET FX incompat-ville, you can't access compressed bytes without closing DeflateStream
// Which means we must use MemoryStream since you have to use ToArray() on a closed Stream
using (var ms = new MemoryStream())
using (var zipStream = new DeflateStream(ms, CompressionMode.Compress))
{
2018-09-12 19:26:21 +02:00
zipStream.Write(bytes, 0, bytes.Length);
zipStream.Dispose();
return ms.ToArray();
}
2018-09-12 19:26:21 +02:00
}
private static byte[] GZip(byte[] buffer)
2018-09-12 19:26:21 +02:00
{
using (var ms = new MemoryStream())
using (var zipStream = new GZipStream(ms, CompressionMode.Compress))
{
zipStream.Write(buffer, 0, buffer.Length);
zipStream.Dispose();
2018-09-12 19:26:21 +02:00
return ms.ToArray();
}
}
private static string SerializeToXmlString(object from)
2018-09-12 19:26:21 +02:00
{
using (var ms = new MemoryStream())
{
2018-09-12 19:26:21 +02:00
var xwSettings = new XmlWriterSettings();
xwSettings.Encoding = new UTF8Encoding(false);
xwSettings.OmitXmlDeclaration = false;
2018-09-12 19:26:21 +02:00
using (var xw = XmlWriter.Create(ms, xwSettings))
{
var serializer = new DataContractSerializer(from.GetType());
serializer.WriteObject(xw, from);
xw.Flush();
ms.Seek(0, SeekOrigin.Begin);
2019-01-06 20:35:36 +01:00
using (var reader = new StreamReader(ms))
{
return reader.ReadToEnd();
}
2018-09-12 19:26:21 +02:00
}
}
}
/// <summary>
/// Pres the process optimized result.
/// </summary>
private object GetCachedResult(IRequest requestContext, IDictionary<string, string> responseHeaders, StaticResultOptions options)
{
bool noCache = (requestContext.Headers[HeaderNames.CacheControl].ToString()).IndexOf("no-cache", StringComparison.OrdinalIgnoreCase) != -1;
AddCachingHeaders(responseHeaders, options.CacheDuration, noCache, options.DateLastModified);
2017-05-09 20:51:26 +02:00
if (!noCache)
{
if (!DateTime.TryParseExact(requestContext.Headers[HeaderNames.IfModifiedSince], HttpDateFormat, _enUSculture, DateTimeStyles.AssumeUniversal | DateTimeStyles.AdjustToUniversal, out var ifModifiedSinceHeader))
{
_logger.LogDebug("Failed to parse If-Modified-Since header date: {0}", requestContext.Headers[HeaderNames.IfModifiedSince]);
return null;
}
if (IsNotModified(ifModifiedSinceHeader, options.CacheDuration, options.DateLastModified))
2017-05-09 20:51:26 +02:00
{
AddAgeHeader(responseHeaders, options.DateLastModified);
var result = new HttpResult(Array.Empty<byte>(), options.ContentType ?? "text/html", HttpStatusCode.NotModified);
2017-05-09 20:51:26 +02:00
AddResponseHeaders(result, responseHeaders);
2017-05-09 20:51:26 +02:00
return result;
}
}
return null;
}
2016-06-19 08:18:29 +02:00
public Task<object> GetStaticFileResult(IRequest requestContext,
2014-08-29 14:14:41 +02:00
string path,
2020-01-22 22:27:03 +01:00
FileShare fileShare = FileShare.Read)
2013-03-08 18:25:25 +01:00
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException(nameof(path));
}
2014-08-30 16:26:29 +02:00
return GetStaticFileResult(requestContext, new StaticFileResultOptions
{
Path = path,
FileShare = fileShare
});
}
2019-01-06 20:35:36 +01:00
public Task<object> GetStaticFileResult(IRequest requestContext, StaticFileResultOptions options)
{
2014-08-30 16:26:29 +02:00
var path = options.Path;
var fileShare = options.FileShare;
if (string.IsNullOrEmpty(path))
{
2019-10-25 12:47:20 +02:00
throw new ArgumentException("Path can't be empty.", nameof(options));
}
2020-01-22 22:27:03 +01:00
if (fileShare != FileShare.Read && fileShare != FileShare.ReadWrite)
2013-09-15 19:34:37 +02:00
{
throw new ArgumentException("FileShare must be either Read or ReadWrite");
}
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(options.ContentType))
2014-08-30 16:26:29 +02:00
{
options.ContentType = MimeTypes.GetMimeType(path);
}
2016-07-17 18:59:40 +02:00
if (!options.DateLastModified.HasValue)
{
options.DateLastModified = _fileSystem.GetLastWriteTimeUtc(path);
}
2014-08-30 16:26:29 +02:00
options.ContentFactory = () => Task.FromResult(GetFileStream(path, fileShare));
2017-07-18 19:34:56 +02:00
options.ResponseHeaders = options.ResponseHeaders ?? new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2014-08-30 16:26:29 +02:00
return GetStaticResult(requestContext, options);
}
/// <summary>
/// Gets the file stream.
/// </summary>
/// <param name="path">The path.</param>
2013-09-15 19:34:37 +02:00
/// <param name="fileShare">The file share.</param>
/// <returns>Stream.</returns>
2020-01-22 22:27:03 +01:00
private Stream GetFileStream(string path, FileShare fileShare)
{
2020-01-22 22:27:03 +01:00
return new FileStream(path, FileMode.Open, FileAccess.Read, fileShare);
}
2016-06-19 08:18:29 +02:00
public Task<object> GetStaticResult(IRequest requestContext,
2014-08-29 14:14:41 +02:00
Guid cacheKey,
DateTime? lastDateModified,
TimeSpan? cacheDuration,
string contentType,
Func<Task<Stream>> factoryFn,
IDictionary<string, string> responseHeaders = null,
bool isHeadRequest = false)
{
2014-08-30 16:26:29 +02:00
return GetStaticResult(requestContext, new StaticResultOptions
{
CacheDuration = cacheDuration,
ContentFactory = factoryFn,
ContentType = contentType,
DateLastModified = lastDateModified,
IsHeadRequest = isHeadRequest,
ResponseHeaders = responseHeaders
});
2014-08-29 14:14:41 +02:00
}
2016-06-19 08:18:29 +02:00
public async Task<object> GetStaticResult(IRequest requestContext, StaticResultOptions options)
{
2015-12-01 06:22:52 +01:00
options.ResponseHeaders = options.ResponseHeaders ?? new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2014-08-30 16:26:29 +02:00
var contentType = options.ContentType;
if (!StringValues.IsNullOrEmpty(requestContext.Headers[HeaderNames.IfModifiedSince]))
{
2018-09-12 19:26:21 +02:00
// See if the result is already cached in the browser
var result = GetCachedResult(requestContext, options.ResponseHeaders, options);
2018-09-12 19:26:21 +02:00
if (result != null)
{
return result;
}
}
// TODO: We don't really need the option value
var isHeadRequest = options.IsHeadRequest || string.Equals(requestContext.Verb, "HEAD", StringComparison.OrdinalIgnoreCase);
2014-08-30 16:26:29 +02:00
var factoryFn = options.ContentFactory;
var responseHeaders = options.ResponseHeaders;
AddCachingHeaders(responseHeaders, options.CacheDuration, false, options.DateLastModified);
AddAgeHeader(responseHeaders, options.DateLastModified);
2014-08-30 16:26:29 +02:00
var rangeHeader = requestContext.Headers[HeaderNames.Range];
2018-09-12 19:26:21 +02:00
if (!isHeadRequest && !string.IsNullOrEmpty(options.Path))
{
2019-03-05 19:32:22 +01:00
var hasHeaders = new FileWriter(options.Path, contentType, rangeHeader, _logger, _fileSystem, _streamHelper)
2017-08-01 18:45:57 +02:00
{
OnComplete = options.OnComplete,
OnError = options.OnError,
FileShare = options.FileShare
};
2017-08-30 20:06:54 +02:00
AddResponseHeaders(hasHeaders, options.ResponseHeaders);
return hasHeaders;
2016-12-22 17:47:43 +01:00
}
2018-09-12 19:26:21 +02:00
var stream = await factoryFn().ConfigureAwait(false);
var totalContentLength = options.ContentLength;
if (!totalContentLength.HasValue)
2016-12-22 17:47:43 +01:00
{
2018-09-12 19:26:21 +02:00
try
{
totalContentLength = stream.Length;
}
catch (NotSupportedException)
{
}
}
if (!string.IsNullOrWhiteSpace(rangeHeader) && totalContentLength.HasValue)
{
var hasHeaders = new RangeRequestWriter(rangeHeader, totalContentLength.Value, stream, contentType, isHeadRequest, _logger)
2014-02-19 06:21:03 +01:00
{
2017-08-01 18:45:57 +02:00
OnComplete = options.OnComplete
};
2017-08-30 20:06:54 +02:00
AddResponseHeaders(hasHeaders, options.ResponseHeaders);
return hasHeaders;
2017-08-01 18:45:57 +02:00
}
else
{
if (totalContentLength.HasValue)
{
responseHeaders["Content-Length"] = totalContentLength.Value.ToString(CultureInfo.InvariantCulture);
}
2016-12-22 17:47:43 +01:00
if (isHeadRequest)
{
2018-09-12 19:26:21 +02:00
using (stream)
{
return GetHttpResult(requestContext, Array.Empty<byte>(), contentType, true, responseHeaders);
}
2016-12-22 17:47:43 +01:00
}
2014-02-19 06:21:03 +01:00
2019-02-09 11:53:07 +01:00
var hasHeaders = new StreamWriter(stream, contentType)
2017-08-01 18:45:57 +02:00
{
OnComplete = options.OnComplete,
OnError = options.OnError
};
2017-08-30 20:06:54 +02:00
AddResponseHeaders(hasHeaders, options.ResponseHeaders);
return hasHeaders;
2016-11-10 15:41:24 +01:00
}
}
/// <summary>
/// Adds the caching responseHeaders.
/// </summary>
private void AddCachingHeaders(IDictionary<string, string> responseHeaders, TimeSpan? cacheDuration,
bool noCache, DateTime? lastModifiedDate)
{
if (noCache)
{
responseHeaders[HeaderNames.CacheControl] = "no-cache, no-store, must-revalidate";
responseHeaders[HeaderNames.Pragma] = "no-cache, no-store, must-revalidate";
return;
}
2017-09-22 22:33:01 +02:00
if (cacheDuration.HasValue)
{
responseHeaders[HeaderNames.CacheControl] = "public, max-age=" + cacheDuration.Value.TotalSeconds;
}
else
{
responseHeaders[HeaderNames.CacheControl] = "public";
}
if (lastModifiedDate.HasValue)
{
responseHeaders[HeaderNames.LastModified] = lastModifiedDate.Value.ToUniversalTime().ToString(HttpDateFormat, _enUSculture);
}
}
/// <summary>
/// Adds the age header.
/// </summary>
/// <param name="responseHeaders">The responseHeaders.</param>
/// <param name="lastDateModified">The last date modified.</param>
private static void AddAgeHeader(IDictionary<string, string> responseHeaders, DateTime? lastDateModified)
{
if (lastDateModified.HasValue)
{
responseHeaders[HeaderNames.Age] = Convert.ToInt64((DateTime.UtcNow - lastDateModified.Value).TotalSeconds).ToString(CultureInfo.InvariantCulture);
}
}
/// <summary>
/// Determines whether [is not modified] [the specified if modified since].
/// </summary>
/// <param name="ifModifiedSince">If modified since.</param>
/// <param name="cacheDuration">Duration of the cache.</param>
/// <param name="dateModified">The date modified.</param>
/// <returns><c>true</c> if [is not modified] [the specified if modified since]; otherwise, <c>false</c>.</returns>
private bool IsNotModified(DateTime ifModifiedSince, TimeSpan? cacheDuration, DateTime? dateModified)
{
if (dateModified.HasValue)
{
var lastModified = NormalizeDateForComparison(dateModified.Value);
ifModifiedSince = NormalizeDateForComparison(ifModifiedSince);
return lastModified <= ifModifiedSince;
}
if (cacheDuration.HasValue)
{
var cacheExpirationDate = ifModifiedSince.Add(cacheDuration.Value);
if (DateTime.UtcNow < cacheExpirationDate)
{
return true;
}
}
return false;
}
/// <summary>
/// When the browser sends the IfModifiedDate, it's precision is limited to seconds, so this will account for that
/// </summary>
/// <param name="date">The date.</param>
/// <returns>DateTime.</returns>
private static DateTime NormalizeDateForComparison(DateTime date)
{
return new DateTime(date.Year, date.Month, date.Day, date.Hour, date.Minute, date.Second, date.Kind);
}
/// <summary>
/// Adds the response headers.
/// </summary>
2016-10-25 21:02:04 +02:00
/// <param name="hasHeaders">The has options.</param>
/// <param name="responseHeaders">The response headers.</param>
private static void AddResponseHeaders(IHasHeaders hasHeaders, IEnumerable<KeyValuePair<string, string>> responseHeaders)
{
foreach (var item in responseHeaders)
{
2016-10-25 21:02:04 +02:00
hasHeaders.Headers[item.Key] = item.Value;
}
}
2013-03-08 18:25:25 +01:00
}
2018-12-29 17:26:36 +01:00
}