mirror of https://github.com/lidarr/Lidarr
32 lines
783 B
C#
32 lines
783 B
C#
using System;
|
|
using Nancy;
|
|
using NzbDrone.Api.Extensions;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
namespace NzbDrone.Api.Frontend
|
|
{
|
|
public interface IAddCacheHeaders
|
|
{
|
|
void ToResponse(Request request, Response response);
|
|
}
|
|
|
|
public class AddCacheHeaders : IAddCacheHeaders
|
|
{
|
|
public void ToResponse(Request request, Response response)
|
|
{
|
|
if (!RuntimeInfo.IsProduction)
|
|
{
|
|
response.Headers.DisableCache();
|
|
return;
|
|
}
|
|
|
|
if (request.Url.Path.EndsWith("app.js", StringComparison.CurrentCultureIgnoreCase))
|
|
{
|
|
response.Headers.DisableCache();
|
|
return;
|
|
}
|
|
|
|
response.Headers.EnableCache();
|
|
}
|
|
}
|
|
} |