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.
29 lines
806 B
29 lines
806 B
using System.IO;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
namespace NzbDrone.Api.Frontend
|
|
{
|
|
public class MediaCoverMapper : IMapHttpRequestsToDisk
|
|
{
|
|
private readonly IAppDirectoryInfo _appDirectoryInfo;
|
|
|
|
public MediaCoverMapper(IAppDirectoryInfo appDirectoryInfo)
|
|
{
|
|
_appDirectoryInfo = appDirectoryInfo;
|
|
}
|
|
|
|
public string Map(string resourceUrl)
|
|
{
|
|
var path = resourceUrl.Replace('/', Path.DirectorySeparatorChar);
|
|
path = path.Trim(Path.DirectorySeparatorChar).ToLower();
|
|
|
|
return Path.Combine(_appDirectoryInfo.GetAppDataPath(), path);
|
|
}
|
|
|
|
public bool CanHandle(string resourceUrl)
|
|
{
|
|
return resourceUrl.StartsWith("/mediacover");
|
|
}
|
|
}
|
|
} |