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

714 lines
26 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Extensions;
2013-12-07 16:52:38 +01:00
using MediaBrowser.Controller.Net;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Serialization;
using System;
using System.Collections.Generic;
using System.Globalization;
2013-03-08 18:25:25 +01:00
using System.IO;
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;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Services;
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>
/// Class HttpResultFactory
/// </summary>
2013-03-08 18:25:25 +01:00
public class HttpResultFactory : IHttpResultFactory
{
/// <summary>
/// The _logger
/// </summary>
private readonly ILogger _logger;
private readonly IFileSystem _fileSystem;
private readonly IJsonSerializer _jsonSerializer;
2016-11-12 07:58:50 +01:00
private readonly IMemoryStreamFactory _memoryStreamFactory;
/// <summary>
/// Initializes a new instance of the <see cref="HttpResultFactory" /> class.
/// </summary>
2016-11-12 07:58:50 +01:00
public HttpResultFactory(ILogManager logManager, IFileSystem fileSystem, IJsonSerializer jsonSerializer, IMemoryStreamFactory memoryStreamFactory)
{
_fileSystem = fileSystem;
_jsonSerializer = jsonSerializer;
2016-11-12 07:58:50 +01:00
_memoryStreamFactory = memoryStreamFactory;
_logger = logManager.GetLogger("HttpResultFactory");
}
/// <summary>
/// Gets the result.
/// </summary>
/// <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>
public object GetResult(object content, string contentType, IDictionary<string, string> responseHeaders = null)
{
2016-11-12 07:58:50 +01:00
return GetHttpResult(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["Location"] = url;
var result = new HttpResult(new byte[] { }, "text/plain", HttpStatusCode.Redirect);
AddResponseHeaders(result, responseHeaders);
return result;
}
2013-03-25 03:41:27 +01:00
/// <summary>
/// Gets the HTTP result.
/// </summary>
2016-11-12 07:58:50 +01:00
private IHasHeaders GetHttpResult(object content, string contentType, bool addCachePrevention, IDictionary<string, string> responseHeaders = null)
2013-03-25 03:41:27 +01:00
{
2016-10-25 21:02:04 +02:00
IHasHeaders result;
2013-03-25 03:41:27 +01:00
var stream = content as Stream;
if (stream != null)
{
result = new StreamWriter(stream, contentType, _logger);
}
else
{
var bytes = content as byte[];
if (bytes != null)
{
result = new StreamWriter(bytes, contentType, _logger);
}
else
{
2013-03-25 13:46:38 +01:00
var text = content as string;
if (text != null)
{
result = new StreamWriter(Encoding.UTF8.GetBytes(text), contentType, _logger);
}
else
{
2016-11-12 07:58:50 +01:00
result = new HttpResult(content, contentType, HttpStatusCode.OK);
2013-03-25 13:46:38 +01:00
}
2013-03-25 03:41:27 +01:00
}
}
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
string expires;
if (addCachePrevention && !responseHeaders.TryGetValue("Expires", out expires))
2016-11-12 07:58:50 +01:00
{
responseHeaders["Expires"] = "-1";
}
2016-10-02 04:09:33 +02:00
AddResponseHeaders(result, responseHeaders);
return result;
}
/// <summary>
/// Gets the optimized result.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="requestContext">The request context.</param>
/// <param name="result">The result.</param>
/// <param name="responseHeaders">The response headers.</param>
/// <returns>System.Object.</returns>
/// <exception cref="System.ArgumentNullException">result</exception>
2013-12-07 16:52:38 +01:00
public object GetOptimizedResult<T>(IRequest requestContext, T result, IDictionary<string, string> responseHeaders = null)
where T : class
2015-12-01 06:22:52 +01:00
{
return GetOptimizedResultInternal<T>(requestContext, result, true, responseHeaders);
}
private object GetOptimizedResultInternal<T>(IRequest requestContext, T result, bool addCachePrevention, IDictionary<string, string> responseHeaders = null)
where T : class
{
if (result == null)
{
throw new ArgumentNullException("result");
}
2016-11-10 15:41:24 +01:00
var optimizedResult = ToOptimizedResult(requestContext, 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);
}
2015-12-01 06:22:52 +01:00
if (addCachePrevention)
{
responseHeaders["Expires"] = "-1";
}
// Apply headers
2016-10-25 21:02:04 +02:00
var hasHeaders = optimizedResult as IHasHeaders;
2015-12-01 06:22:52 +01:00
2016-10-25 21:02:04 +02:00
if (hasHeaders != null)
2015-12-01 06:22:52 +01:00
{
2016-10-25 21:02:04 +02:00
AddResponseHeaders(hasHeaders, responseHeaders);
}
return optimizedResult;
}
2016-11-10 15:41:24 +01:00
public static string GetCompressionType(IRequest request)
{
2016-11-11 02:37:20 +01:00
var acceptEncoding = request.Headers["Accept-Encoding"];
2016-11-10 15:41:24 +01:00
2016-11-11 02:37:20 +01:00
if (!string.IsNullOrWhiteSpace(acceptEncoding))
{
if (acceptEncoding.Contains("deflate"))
return "deflate";
2016-11-10 15:41:24 +01:00
2016-11-11 02:37:20 +01:00
if (acceptEncoding.Contains("gzip"))
return "gzip";
}
2016-11-10 15:41:24 +01:00
return null;
}
/// <summary>
/// Returns the optimized result for the IRequestContext.
/// 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-08-01 18:45:57 +02:00
var contentType = request.ResponseContentType;
2016-11-10 15:41:24 +01:00
2017-08-01 18:45:57 +02:00
switch (GetRealContentType(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
return SerializeToXmlString(dto);
2017-02-13 02:07:48 +01:00
2017-08-01 18:45:57 +02:00
case "application/json":
case "text/json":
return _jsonSerializer.SerializeToString(dto);
default:
{
var ms = new MemoryStream();
var writerFn = RequestHelper.GetResponseWriter(HttpListenerHost.Instance, contentType);
2017-02-13 02:07:48 +01:00
2017-08-01 18:45:57 +02:00
writerFn(dto, ms);
ms.Position = 0;
2016-11-10 15:41:24 +01:00
2017-08-01 18:45:57 +02:00
if (string.Equals(request.Verb, "head", StringComparison.OrdinalIgnoreCase))
{
return GetHttpResult(new byte[] { }, contentType, true);
}
2016-11-10 15:41:24 +01:00
2017-08-01 18:45:57 +02:00
return GetHttpResult(ms, contentType, true);
}
2016-11-10 15:41:24 +01:00
}
}
2016-11-11 02:37:20 +01:00
public static string GetRealContentType(string contentType)
{
return contentType == null
? null
: contentType.Split(';')[0].ToLower().Trim();
}
2016-11-12 07:58:50 +01:00
private string SerializeToXmlString(object from)
2016-11-10 15:41:24 +01:00
{
using (var ms = new MemoryStream())
{
var xwSettings = new XmlWriterSettings();
xwSettings.Encoding = new UTF8Encoding(false);
xwSettings.OmitXmlDeclaration = false;
using (var xw = XmlWriter.Create(ms, xwSettings))
{
var serializer = new DataContractSerializer(from.GetType());
serializer.WriteObject(xw, from);
xw.Flush();
ms.Seek(0, SeekOrigin.Begin);
var reader = new StreamReader(ms);
return reader.ReadToEnd();
}
}
}
/// <summary>
/// Gets the optimized result using cache.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="requestContext">The request context.</param>
/// <param name="cacheKey">The cache key.</param>
/// <param name="lastDateModified">The last date modified.</param>
/// <param name="cacheDuration">Duration of the cache.</param>
/// <param name="factoryFn">The factory fn.</param>
/// <param name="responseHeaders">The response headers.</param>
/// <returns>System.Object.</returns>
/// <exception cref="System.ArgumentNullException">cacheKey
/// or
/// factoryFn</exception>
public object GetOptimizedResultUsingCache<T>(IRequest requestContext, Guid cacheKey, DateTime? lastDateModified, TimeSpan? cacheDuration, Func<T> factoryFn, IDictionary<string, string> responseHeaders = null)
where T : class
{
if (cacheKey == Guid.Empty)
{
throw new ArgumentNullException("cacheKey");
}
if (factoryFn == null)
{
throw new ArgumentNullException("factoryFn");
}
var key = cacheKey.ToString("N");
if (responseHeaders == null)
{
2015-12-01 06:22:52 +01:00
responseHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
// See if the result is already cached in the browser
var result = GetCachedResult(requestContext, responseHeaders, cacheKey, key, lastDateModified, cacheDuration, null);
if (result != null)
{
return result;
}
2015-12-01 06:22:52 +01:00
return GetOptimizedResultInternal(requestContext, factoryFn(), false, responseHeaders);
}
/// <summary>
/// To the cached result.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="requestContext">The request context.</param>
/// <param name="cacheKey">The cache key.</param>
/// <param name="lastDateModified">The last date modified.</param>
/// <param name="cacheDuration">Duration of the cache.</param>
/// <param name="factoryFn">The factory fn.</param>
/// <param name="contentType">Type of the content.</param>
/// <param name="responseHeaders">The response headers.</param>
/// <returns>System.Object.</returns>
/// <exception cref="System.ArgumentNullException">cacheKey</exception>
public object GetCachedResult<T>(IRequest requestContext, Guid cacheKey, DateTime? lastDateModified, TimeSpan? cacheDuration, Func<T> factoryFn, string contentType, IDictionary<string, string> responseHeaders = null)
where T : class
{
if (cacheKey == Guid.Empty)
{
throw new ArgumentNullException("cacheKey");
}
if (factoryFn == null)
{
throw new ArgumentNullException("factoryFn");
}
var key = cacheKey.ToString("N");
if (responseHeaders == null)
{
2015-12-01 06:22:52 +01:00
responseHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
// See if the result is already cached in the browser
var result = GetCachedResult(requestContext, responseHeaders, cacheKey, key, lastDateModified, cacheDuration, contentType);
if (result != null)
{
return result;
}
result = factoryFn();
// Apply caching headers
2016-10-25 21:02:04 +02:00
var hasHeaders = result as IHasHeaders;
2016-10-25 21:02:04 +02:00
if (hasHeaders != null)
{
2016-10-25 21:02:04 +02:00
AddResponseHeaders(hasHeaders, responseHeaders);
return hasHeaders;
}
2016-11-12 07:58:50 +01:00
return GetHttpResult(result, contentType, false, responseHeaders);
}
/// <summary>
/// Pres the process optimized result.
/// </summary>
2013-12-07 16:52:38 +01:00
private object GetCachedResult(IRequest requestContext, IDictionary<string, string> responseHeaders, Guid cacheKey, string cacheKeyString, DateTime? lastDateModified, TimeSpan? cacheDuration, string contentType)
{
responseHeaders["ETag"] = string.Format("\"{0}\"", cacheKeyString);
2017-05-09 20:51:26 +02:00
var noCache = (requestContext.Headers.Get("Cache-Control") ?? string.Empty).IndexOf("no-cache", StringComparison.OrdinalIgnoreCase) != -1;
if (!noCache)
{
2017-05-09 20:51:26 +02:00
if (IsNotModified(requestContext, cacheKey, lastDateModified, cacheDuration))
{
AddAgeHeader(responseHeaders, lastDateModified);
AddExpiresHeader(responseHeaders, cacheKeyString, cacheDuration, noCache);
2017-05-09 20:51:26 +02:00
var result = new HttpResult(new byte[] { }, 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;
}
}
2017-05-09 20:51:26 +02:00
AddCachingHeaders(responseHeaders, cacheKeyString, lastDateModified, cacheDuration, noCache);
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,
2016-10-25 21:02:04 +02:00
FileShareMode fileShare = FileShareMode.Read)
2013-03-08 18:25:25 +01:00
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException("path");
}
2014-08-30 16:26:29 +02:00
return GetStaticFileResult(requestContext, new StaticFileResultOptions
{
Path = path,
FileShare = fileShare
});
}
2016-06-19 08:18:29 +02:00
public Task<object> GetStaticFileResult(IRequest requestContext,
2014-08-30 16:26:29 +02:00
StaticFileResultOptions options)
{
2014-08-30 16:26:29 +02:00
var path = options.Path;
var fileShare = options.FileShare;
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException("path");
}
2016-10-25 21:02:04 +02:00
if (fileShare != FileShareMode.Read && fileShare != FileShareMode.ReadWrite)
2013-09-15 19:34:37 +02:00
{
throw new ArgumentException("FileShare must be either Read or ReadWrite");
}
2014-08-30 16:26:29 +02:00
if (string.IsNullOrWhiteSpace(options.ContentType))
{
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
var cacheKey = path + options.DateLastModified.Value.Ticks;
2014-08-30 16:26:29 +02:00
options.CacheKey = cacheKey.GetMD5();
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);
2017-09-01 21:24:39 +02:00
if (!options.ResponseHeaders.ContainsKey("Content-Disposition"))
2017-07-18 19:34:56 +02:00
{
2017-09-01 21:24:39 +02:00
// Quotes are valid in linux. They'll possibly cause issues here
var filename = (Path.GetFileName(path) ?? string.Empty).Replace("\"", string.Empty);
if (!string.IsNullOrWhiteSpace(filename))
{
options.ResponseHeaders["Content-Disposition"] = "inline; filename=\"" + filename + "\"";
}
2017-07-18 19:34:56 +02:00
}
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>
2016-10-25 21:02:04 +02:00
private Stream GetFileStream(string path, FileShareMode fileShare)
{
2016-10-25 21:02:04 +02:00
return _fileSystem.GetFileStream(path, FileOpenMode.Open, FileAccessMode.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,
CacheKey = cacheKey,
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)
{
2014-08-30 16:26:29 +02:00
var cacheKey = options.CacheKey;
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 (cacheKey == Guid.Empty)
{
throw new ArgumentNullException("cacheKey");
}
var key = cacheKey.ToString("N");
// See if the result is already cached in the browser
2014-08-30 16:26:29 +02:00
var result = GetCachedResult(requestContext, options.ResponseHeaders, cacheKey, key, options.DateLastModified, options.CacheDuration, contentType);
if (result != null)
{
return result;
}
2014-08-30 16:26:29 +02:00
var isHeadRequest = options.IsHeadRequest;
var factoryFn = options.ContentFactory;
var responseHeaders = options.ResponseHeaders;
2017-08-01 18:45:57 +02:00
//var requestedCompressionType = GetCompressionType(requestContext);
2013-12-07 16:52:38 +01:00
2017-08-01 18:45:57 +02:00
var rangeHeader = requestContext.Headers.Get("Range");
2017-08-01 18:45:57 +02:00
if (!isHeadRequest && !string.IsNullOrWhiteSpace(options.Path))
{
2017-08-30 20:06:54 +02:00
var hasHeaders = new FileWriter(options.Path, contentType, rangeHeader, _logger, _fileSystem)
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
}
2017-08-01 18:45:57 +02:00
if (!string.IsNullOrWhiteSpace(rangeHeader))
2016-12-22 17:47:43 +01:00
{
2017-08-01 18:45:57 +02:00
var stream = await factoryFn().ConfigureAwait(false);
2016-12-22 17:47:43 +01:00
2017-08-30 20:06:54 +02:00
var hasHeaders = new RangeRequestWriter(rangeHeader, 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
{
var stream = await factoryFn().ConfigureAwait(false);
2017-08-01 18:45:57 +02:00
responseHeaders["Content-Length"] = stream.Length.ToString(UsCulture);
2016-12-22 17:47:43 +01:00
if (isHeadRequest)
{
2017-08-01 18:45:57 +02:00
stream.Dispose();
2016-12-22 17:47:43 +01:00
return GetHttpResult(new byte[] { }, contentType, true);
}
2014-02-19 06:21:03 +01:00
2017-08-30 20:06:54 +02:00
var hasHeaders = new StreamWriter(stream, contentType, _logger)
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
}
}
2017-08-30 20:06:54 +02:00
/// <summary>
/// The us culture
/// </summary>
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
/// <summary>
/// Adds the caching responseHeaders.
/// </summary>
2017-05-09 20:51:26 +02:00
private void AddCachingHeaders(IDictionary<string, string> responseHeaders, string cacheKey, DateTime? lastDateModified, TimeSpan? cacheDuration, bool noCache)
{
// Don't specify both last modified and Etag, unless caching unconditionally. They are redundant
// https://developers.google.com/speed/docs/best-practices/caching#LeverageBrowserCaching
if (lastDateModified.HasValue && (string.IsNullOrEmpty(cacheKey) || cacheDuration.HasValue))
{
AddAgeHeader(responseHeaders, lastDateModified);
2016-08-14 02:52:32 +02:00
responseHeaders["Last-Modified"] = lastDateModified.Value.ToString("r");
}
2017-05-09 20:51:26 +02:00
if (!noCache && cacheDuration.HasValue)
{
responseHeaders["Cache-Control"] = "public, max-age=" + Convert.ToInt32(cacheDuration.Value.TotalSeconds);
}
2017-05-09 20:51:26 +02:00
else if (!noCache && !string.IsNullOrEmpty(cacheKey))
{
responseHeaders["Cache-Control"] = "public";
}
else
{
responseHeaders["Cache-Control"] = "no-cache, no-store, must-revalidate";
responseHeaders["pragma"] = "no-cache, no-store, must-revalidate";
}
2017-05-09 20:51:26 +02:00
AddExpiresHeader(responseHeaders, cacheKey, cacheDuration, noCache);
}
/// <summary>
/// Adds the expires header.
/// </summary>
2017-05-09 20:51:26 +02:00
private void AddExpiresHeader(IDictionary<string, string> responseHeaders, string cacheKey, TimeSpan? cacheDuration, bool noCache)
{
2017-05-09 20:51:26 +02:00
if (!noCache && cacheDuration.HasValue)
{
responseHeaders["Expires"] = DateTime.UtcNow.Add(cacheDuration.Value).ToString("r");
}
else if (string.IsNullOrEmpty(cacheKey))
{
responseHeaders["Expires"] = "-1";
}
}
/// <summary>
/// Adds the age header.
/// </summary>
/// <param name="responseHeaders">The responseHeaders.</param>
/// <param name="lastDateModified">The last date modified.</param>
private void AddAgeHeader(IDictionary<string, string> responseHeaders, DateTime? lastDateModified)
{
if (lastDateModified.HasValue)
{
responseHeaders["Age"] = Convert.ToInt64((DateTime.UtcNow - lastDateModified.Value).TotalSeconds).ToString(CultureInfo.InvariantCulture);
}
}
/// <summary>
/// Determines whether [is not modified] [the specified cache key].
/// </summary>
/// <param name="requestContext">The request context.</param>
/// <param name="cacheKey">The cache key.</param>
/// <param name="lastDateModified">The last date modified.</param>
/// <param name="cacheDuration">Duration of the cache.</param>
/// <returns><c>true</c> if [is not modified] [the specified cache key]; otherwise, <c>false</c>.</returns>
2013-12-07 16:52:38 +01:00
private bool IsNotModified(IRequest requestContext, Guid? cacheKey, DateTime? lastDateModified, TimeSpan? cacheDuration)
{
2016-11-27 20:36:56 +01:00
//var isNotModified = true;
2016-11-11 02:37:20 +01:00
var ifModifiedSinceHeader = requestContext.Headers.Get("If-Modified-Since");
if (!string.IsNullOrEmpty(ifModifiedSinceHeader))
{
DateTime ifModifiedSince;
if (DateTime.TryParse(ifModifiedSinceHeader, out ifModifiedSince))
{
2016-11-27 20:36:56 +01:00
if (IsNotModified(ifModifiedSince.ToUniversalTime(), cacheDuration, lastDateModified))
{
return true;
}
}
}
2016-11-11 02:37:20 +01:00
var ifNoneMatchHeader = requestContext.Headers.Get("If-None-Match");
// Validate If-None-Match
2016-11-27 20:36:56 +01:00
if ((cacheKey.HasValue || !string.IsNullOrEmpty(ifNoneMatchHeader)))
{
Guid ifNoneMatch;
2016-11-27 20:36:56 +01:00
ifNoneMatchHeader = (ifNoneMatchHeader ?? string.Empty).Trim('\"');
if (Guid.TryParse(ifNoneMatchHeader, out ifNoneMatch))
{
if (cacheKey.HasValue && cacheKey.Value == ifNoneMatch)
{
return true;
}
}
}
return false;
}
/// <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 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>
2016-10-25 21:02:04 +02:00
private 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
}
2014-01-12 04:29:47 +01:00
}