mirror of
https://github.com/Readarr/Readarr
synced 2026-01-13 11:03:45 +01:00
50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Common.Crypto;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
namespace Readarr.Http.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;
|
|
}
|
|
|
|
if (!RuntimeInfo.IsProduction)
|
|
{
|
|
return resourceUrl + "?t=" + DateTime.UtcNow.Ticks;
|
|
}
|
|
|
|
var mapper = _diskMappers.Single(m => m.CanHandle(resourceUrl));
|
|
var pathToFile = mapper.Map(resourceUrl);
|
|
var hash = _hashProvider.ComputeMd5(pathToFile).ToBase64();
|
|
|
|
return resourceUrl + "?h=" + hash.Trim('=');
|
|
}
|
|
|
|
private static bool ShouldBreakCache(string path)
|
|
{
|
|
return !path.EndsWith(".ics") && !path.EndsWith("main");
|
|
}
|
|
}
|
|
}
|