mirror of https://github.com/lidarr/Lidarr
56 lines
2.1 KiB
C#
56 lines
2.1 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
namespace NzbDrone.Api.Frontend
|
|
{
|
|
public class StaticResourceMapper : IMapHttpRequestsToDisk
|
|
{
|
|
private readonly IAppFolderInfo _appFolderInfo;
|
|
private static readonly string[] Extensions = new[] {
|
|
".css",
|
|
".js",
|
|
".html",
|
|
".htm",
|
|
".jpg",
|
|
".jpeg",
|
|
".ico",
|
|
".icon",
|
|
".gif",
|
|
".png",
|
|
".woff",
|
|
".ttf",
|
|
".eot"
|
|
};
|
|
|
|
public StaticResourceMapper(IAppFolderInfo appFolderInfo)
|
|
{
|
|
_appFolderInfo = appFolderInfo;
|
|
}
|
|
|
|
public string Map(string resourceUrl)
|
|
{
|
|
var path = resourceUrl.Replace('/', Path.DirectorySeparatorChar);
|
|
path = path.Trim(Path.DirectorySeparatorChar).ToLower();
|
|
|
|
|
|
return Path.Combine(_appFolderInfo.StartUpFolder, "ui", path);
|
|
}
|
|
|
|
public bool CanHandle(string resourceUrl)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(resourceUrl))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (resourceUrl.StartsWith("/mediacover", StringComparison.CurrentCultureIgnoreCase))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return Extensions.Any(resourceUrl.EndsWith);
|
|
}
|
|
}
|
|
} |