mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
dabbd5f90e
autocomplete now shows 20 results instead of 8
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using NzbDrone.Common;
|
|
|
|
namespace NzbDrone.Api.Frontend
|
|
{
|
|
public class StaticResourceMapper : IMapHttpRequestsToDisk
|
|
{
|
|
private readonly IEnvironmentProvider _environmentProvider;
|
|
private static readonly string[] Extensions = new[] { ".css", ".js", ".html", ".htm", ".jpg", ".jpeg", ".icon", ".gif", ".png", ".woff", ".ttf" };
|
|
|
|
public StaticResourceMapper(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.StartUpPath, "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);
|
|
}
|
|
}
|
|
} |