mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
55 lines
1.6 KiB
C#
55 lines
1.6 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using NLog;
|
|
using Nancy;
|
|
using Nancy.Responses;
|
|
using NzbDrone.Common;
|
|
|
|
namespace NzbDrone.Api.Frontend
|
|
{
|
|
public interface IProcessStaticResource
|
|
{
|
|
Response ProcessStaticResourceRequest(NancyContext context, string workingFolder);
|
|
}
|
|
|
|
public class StaticResourceProvider : IProcessStaticResource
|
|
{
|
|
private readonly IDiskProvider _diskProvider;
|
|
private readonly IEnumerable<IMapHttpRequestsToDisk> _requestMappers;
|
|
private readonly Logger _logger;
|
|
|
|
public StaticResourceProvider(IDiskProvider diskProvider, IEnumerable<IMapHttpRequestsToDisk> requestMappers, Logger logger)
|
|
{
|
|
_diskProvider = diskProvider;
|
|
_requestMappers = requestMappers;
|
|
_logger = logger;
|
|
}
|
|
|
|
public Response ProcessStaticResourceRequest(NancyContext context, string workingFolder)
|
|
{
|
|
var path = context.Request.Url.Path.ToLower();
|
|
|
|
if (string.IsNullOrWhiteSpace(path))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
var mapper = _requestMappers.SingleOrDefault(m => m.CanHandle(path));
|
|
|
|
if (mapper != null)
|
|
{
|
|
var filePath = mapper.Map(path);
|
|
|
|
if (_diskProvider.FileExists(filePath))
|
|
{
|
|
return new StreamResponse(() => File.OpenRead(filePath), MimeTypes.GetMimeType(filePath));
|
|
}
|
|
|
|
_logger.Warn("File {0} not found", filePath);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
} |