You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
907 B
34 lines
907 B
using System;
|
|
using Nancy;
|
|
using Nancy.Bootstrapper;
|
|
using NzbDrone.Api.Frontend;
|
|
|
|
namespace NzbDrone.Api.Extensions.Pipelines
|
|
{
|
|
public class CacheHeaderPipeline : IRegisterNancyPipeline
|
|
{
|
|
private readonly ICacheableSpecification _cacheableSpecification;
|
|
|
|
public CacheHeaderPipeline(ICacheableSpecification cacheableSpecification)
|
|
{
|
|
_cacheableSpecification = cacheableSpecification;
|
|
}
|
|
|
|
public void Register(IPipelines pipelines)
|
|
{
|
|
pipelines.AfterRequest.AddItemToStartOfPipeline(Handle);
|
|
}
|
|
|
|
private void Handle(NancyContext context)
|
|
{
|
|
if (_cacheableSpecification.IsCacheable(context))
|
|
{
|
|
context.Response.Headers.EnableCache();
|
|
}
|
|
else
|
|
{
|
|
context.Response.Headers.DisableCache();
|
|
}
|
|
}
|
|
}
|
|
} |