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.
25 lines
739 B
25 lines
739 B
12 years ago
|
using System.IO;
|
||
|
using NzbDrone.Common;
|
||
|
|
||
|
namespace NzbDrone.Api.Frontend
|
||
|
{
|
||
|
public class MediaCoverMapper : IMapHttpRequestsToDisk
|
||
|
{
|
||
|
private readonly IEnvironmentProvider _environmentProvider;
|
||
|
|
||
|
public MediaCoverMapper(IEnvironmentProvider environmentProvider)
|
||
|
{
|
||
|
_environmentProvider = environmentProvider;
|
||
|
}
|
||
|
|
||
|
public string Map(string resourceUrl)
|
||
|
{
|
||
|
var path = resourceUrl.Replace('/', Path.DirectorySeparatorChar);
|
||
|
path = path.Trim(Path.DirectorySeparatorChar).ToLower();
|
||
|
|
||
|
return Path.Combine(_environmentProvider.GetAppDataPath(), path);
|
||
|
}
|
||
|
|
||
|
public RequestType IHandle { get { return RequestType.MediaCovers; } }
|
||
|
}
|
||
|
}
|