2013-03-29 23:00:38 +00:00
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
namespace NzbDrone.Api.Frontend
|
|
|
|
{
|
|
|
|
public interface IMapHttpRequestsToDisk
|
|
|
|
{
|
|
|
|
string Map(string resourceUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
public class StaticResourceMapper : IMapHttpRequestsToDisk
|
|
|
|
{
|
|
|
|
public string Map(string resourceUrl)
|
|
|
|
{
|
|
|
|
var path = resourceUrl.Replace('/', Path.DirectorySeparatorChar);
|
|
|
|
path = path.Trim(Path.DirectorySeparatorChar).ToLower();
|
|
|
|
|
|
|
|
|
2013-05-03 05:24:52 +00:00
|
|
|
return Path.Combine(Directory.GetCurrentDirectory(), "ui", path);
|
2013-03-29 23:00:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|