mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
acb3470988
Signed-off-by: Robin Dadswell <robin@dadswell.email>
36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
using Nancy;
|
|
using Nancy.Bootstrapper;
|
|
using Readarr.Http.Frontend;
|
|
|
|
namespace Readarr.Http.Extensions.Pipelines
|
|
{
|
|
public class IfModifiedPipeline : IRegisterNancyPipeline
|
|
{
|
|
private readonly ICacheableSpecification _cacheableSpecification;
|
|
|
|
public IfModifiedPipeline(ICacheableSpecification cacheableSpecification)
|
|
{
|
|
_cacheableSpecification = cacheableSpecification;
|
|
}
|
|
|
|
public int Order => 0;
|
|
|
|
public void Register(IPipelines pipelines)
|
|
{
|
|
pipelines.BeforeRequest.AddItemToStartOfPipeline(Handle);
|
|
}
|
|
|
|
private Response Handle(NancyContext context)
|
|
{
|
|
if (_cacheableSpecification.IsCacheable(context) && context.Request.Headers.IfModifiedSince.HasValue)
|
|
{
|
|
var response = new Response { ContentType = MimeTypes.GetMimeType(context.Request.Path), StatusCode = HttpStatusCode.NotModified };
|
|
response.Headers.EnableCache();
|
|
return response;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|