mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07:00
43 lines
No EOL
1.3 KiB
C#
43 lines
No EOL
1.3 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Common.Crypto;
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
namespace NzbDrone.Api.Frontend.Mappers
|
|
{
|
|
public interface ICacheBreakerProvider
|
|
{
|
|
string AddCacheBreakerToPath(string resourceUrl);
|
|
}
|
|
|
|
public class CacheBreakerProvider : ICacheBreakerProvider
|
|
{
|
|
private readonly IEnumerable<IMapHttpRequestsToDisk> _diskMappers;
|
|
private readonly IHashProvider _hashProvider;
|
|
|
|
public CacheBreakerProvider(IEnumerable<IMapHttpRequestsToDisk> diskMappers, IHashProvider hashProvider)
|
|
{
|
|
_diskMappers = diskMappers;
|
|
_hashProvider = hashProvider;
|
|
}
|
|
|
|
public string AddCacheBreakerToPath(string resourceUrl)
|
|
{
|
|
if (!ShouldBreakCache(resourceUrl))
|
|
{
|
|
return resourceUrl;
|
|
}
|
|
|
|
var mapper = _diskMappers.Single(m => m.CanHandle(resourceUrl));
|
|
var pathToFile = mapper.Map(resourceUrl);
|
|
var hash = _hashProvider.ComputeMd5(pathToFile).ToBase64();
|
|
|
|
return resourceUrl + "?h=" + hash;
|
|
}
|
|
|
|
private static bool ShouldBreakCache(string path)
|
|
{
|
|
return !path.EndsWith(".ics") && !path.EndsWith("main");
|
|
}
|
|
}
|
|
} |