mirror of https://github.com/Radarr/Radarr
Added cache headers to static resources.
This commit is contained in:
parent
e21a0bd231
commit
b56da336c0
|
@ -1,4 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Nancy;
|
using Nancy;
|
||||||
using Nancy.Responses;
|
using Nancy.Responses;
|
||||||
|
@ -33,5 +34,24 @@ namespace NzbDrone.Api.Extensions
|
||||||
{
|
{
|
||||||
return new JsonResponse<TModel>(model, NancySerializer) { StatusCode = statusCode };
|
return new JsonResponse<TModel>(model, NancySerializer) { StatusCode = statusCode };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static IDictionary<string, string> DisableCache(this IDictionary<string, string> headers)
|
||||||
|
{
|
||||||
|
headers.Add("Cache-Control", "no-cache, no-store, must-revalidate");
|
||||||
|
headers.Add("Pragma", "no-cache");
|
||||||
|
headers.Add("Expires", "0");
|
||||||
|
|
||||||
|
return headers;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static IDictionary<string, string> EnableCache(this IDictionary<string, string> headers)
|
||||||
|
{
|
||||||
|
headers.Add("Cache-Control", "max-age=31536000 , public");
|
||||||
|
headers.Add("Expires", "Sat, 29 Jun 2020 00:00:00 GMT");
|
||||||
|
headers.Add("Last-Modified", "Sat, 29 Jun 2000 00:00:00 GMT");
|
||||||
|
headers.Add("Age", "193266");
|
||||||
|
|
||||||
|
return headers;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,22 +1,37 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.IO;
|
||||||
using Nancy;
|
using Nancy;
|
||||||
using Nancy.Security;
|
using Nancy.Responses;
|
||||||
|
using NzbDrone.Common;
|
||||||
|
using NzbDrone.Common.Cache;
|
||||||
|
using NzbDrone.Common.EnvironmentInfo;
|
||||||
|
using NzbDrone.Api.Extensions;
|
||||||
|
|
||||||
namespace NzbDrone.Api.Frontend
|
namespace NzbDrone.Api.Frontend
|
||||||
{
|
{
|
||||||
public class IndexModule : NancyModule
|
public class IndexModule : NancyModule
|
||||||
{
|
{
|
||||||
public IndexModule()
|
private readonly IDiskProvider _diskProvider;
|
||||||
|
private readonly ICached<string> _indexCache;
|
||||||
|
|
||||||
|
private readonly string _indexPath;
|
||||||
|
|
||||||
|
public IndexModule(IDiskProvider diskProvider, ICacheManger cacheManger, IAppDirectoryInfo appDirectory)
|
||||||
{
|
{
|
||||||
|
_diskProvider = diskProvider;
|
||||||
|
|
||||||
|
_indexPath = Path.Combine(appDirectory.StartUpPath, "UI", "index.html");
|
||||||
|
|
||||||
|
_indexCache = cacheManger.GetCache<string>(typeof(IndexModule));
|
||||||
//Serve anything that doesn't have an extension
|
//Serve anything that doesn't have an extension
|
||||||
Get[@"/(.*)"] = x => Index();
|
Get[@"/(.*)"] = x => Index();
|
||||||
}
|
}
|
||||||
|
|
||||||
private object Index()
|
private object Index()
|
||||||
{
|
{
|
||||||
if(
|
if (
|
||||||
Request.Path.Contains(".")
|
Request.Path.Contains(".")
|
||||||
|| Request.Path.StartsWith("/static", StringComparison.CurrentCultureIgnoreCase)
|
|| Request.Path.StartsWith("/static", StringComparison.CurrentCultureIgnoreCase)
|
||||||
|| Request.Path.StartsWith("/api", StringComparison.CurrentCultureIgnoreCase)
|
|| Request.Path.StartsWith("/api", StringComparison.CurrentCultureIgnoreCase)
|
||||||
|| Request.Path.StartsWith("/signalr", StringComparison.CurrentCultureIgnoreCase))
|
|| Request.Path.StartsWith("/signalr", StringComparison.CurrentCultureIgnoreCase))
|
||||||
{
|
{
|
||||||
|
@ -24,7 +39,34 @@ namespace NzbDrone.Api.Frontend
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return View["UI/index.html"];
|
var htmlResponse = new HtmlResponse();
|
||||||
|
|
||||||
|
htmlResponse.Contents = stream =>
|
||||||
|
{
|
||||||
|
var lastWrite = _diskProvider.GetLastFileWrite(_indexPath);
|
||||||
|
var text = _indexCache.Get(lastWrite.Ticks.ToString(), GetIndexText);
|
||||||
|
|
||||||
|
var streamWriter = new StreamWriter(stream);
|
||||||
|
|
||||||
|
streamWriter.Write(text);
|
||||||
|
streamWriter.Flush();
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
htmlResponse.Headers.DisableCache();
|
||||||
|
|
||||||
|
return htmlResponse;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private string GetIndexText()
|
||||||
|
{
|
||||||
|
var text = _diskProvider.ReadAllText(_indexPath);
|
||||||
|
|
||||||
|
text = text.Replace(".css", ".css?v=" + BuildInfo.Version);
|
||||||
|
text = text.Replace(".js", ".js?v=" + BuildInfo.Version);
|
||||||
|
|
||||||
|
return text;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using NzbDrone.Common;
|
|
||||||
using NzbDrone.Common.EnvironmentInfo;
|
using NzbDrone.Common.EnvironmentInfo;
|
||||||
|
|
||||||
namespace NzbDrone.Api.Frontend
|
namespace NzbDrone.Api.Frontend
|
||||||
|
|
|
@ -5,6 +5,7 @@ using NLog;
|
||||||
using Nancy;
|
using Nancy;
|
||||||
using Nancy.Responses;
|
using Nancy.Responses;
|
||||||
using NzbDrone.Common;
|
using NzbDrone.Common;
|
||||||
|
using NzbDrone.Api.Extensions;
|
||||||
|
|
||||||
namespace NzbDrone.Api.Frontend
|
namespace NzbDrone.Api.Frontend
|
||||||
{
|
{
|
||||||
|
@ -43,7 +44,10 @@ namespace NzbDrone.Api.Frontend
|
||||||
|
|
||||||
if (_diskProvider.FileExists(filePath))
|
if (_diskProvider.FileExists(filePath))
|
||||||
{
|
{
|
||||||
return new StreamResponse(() => File.OpenRead(filePath), MimeTypes.GetMimeType(filePath));
|
var response = new StreamResponse(() => File.OpenRead(filePath), MimeTypes.GetMimeType(filePath));
|
||||||
|
response.Headers.EnableCache();
|
||||||
|
|
||||||
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
_logger.Warn("File {0} not found", filePath);
|
_logger.Warn("File {0} not found", filePath);
|
||||||
|
|
|
@ -156,7 +156,7 @@
|
||||||
<Compile Include="Qualities\QualityProfileModule.cs" />
|
<Compile Include="Qualities\QualityProfileModule.cs" />
|
||||||
<Compile Include="Qualities\QualitySizeResource.cs" />
|
<Compile Include="Qualities\QualitySizeResource.cs" />
|
||||||
<Compile Include="Qualities\QualitySizeModule.cs" />
|
<Compile Include="Qualities\QualitySizeModule.cs" />
|
||||||
<Compile Include="Extensions\RequestExtensions.cs" />
|
<Compile Include="Extensions\ReqResExtensions.cs" />
|
||||||
<Compile Include="Config\SettingsModule.cs" />
|
<Compile Include="Config\SettingsModule.cs" />
|
||||||
<Compile Include="SignalR\BasicResourceConnection.cs" />
|
<Compile Include="SignalR\BasicResourceConnection.cs" />
|
||||||
<Compile Include="SignalR\Serializer.cs" />
|
<Compile Include="SignalR\Serializer.cs" />
|
||||||
|
|
Loading…
Reference in New Issue