Radarr/NzbDrone.Api/Frontend/StaticResourceMapper.cs

56 lines
2.1 KiB
C#
Raw Normal View History

using System;
using System.IO;
2013-05-18 01:18:02 +00:00
using System.Linq;
using NzbDrone.Common.EnvironmentInfo;
namespace NzbDrone.Api.Frontend
{
public class StaticResourceMapper : IMapHttpRequestsToDisk
{
private readonly IAppDirectoryInfo _appDirectoryInfo;
2013-06-15 00:29:38 +00:00
private static readonly string[] Extensions = new[] {
".css",
".js",
".html",
".htm",
".jpg",
".jpeg",
".ico",
".icon",
".gif",
".png",
".woff",
".ttf",
".eot"
};
2013-05-18 01:18:02 +00:00
public StaticResourceMapper(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.StartUpPath, "ui", path);
}
2013-05-18 01:18:02 +00:00
public bool CanHandle(string resourceUrl)
{
if (string.IsNullOrWhiteSpace(resourceUrl))
{
return false;
}
if (resourceUrl.StartsWith("/mediacover", StringComparison.CurrentCultureIgnoreCase))
{
return false;
}
2013-05-18 01:18:02 +00:00
return Extensions.Any(resourceUrl.EndsWith);
}
}
}