2013-07-28 23:13:14 +00:00
|
|
|
using System.IO;
|
|
|
|
using NzbDrone.Common;
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
|
2013-08-20 02:31:26 +00:00
|
|
|
namespace NzbDrone.Api.Frontend.Mappers
|
2013-07-28 23:13:14 +00:00
|
|
|
{
|
|
|
|
public class LogFileMapper : IMapHttpRequestsToDisk
|
|
|
|
{
|
|
|
|
private readonly IAppFolderInfo _appFolderInfo;
|
|
|
|
|
|
|
|
public LogFileMapper(IAppFolderInfo appFolderInfo)
|
|
|
|
{
|
|
|
|
_appFolderInfo = appFolderInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Map(string resourceUrl)
|
|
|
|
{
|
|
|
|
var path = resourceUrl.Replace('/', Path.DirectorySeparatorChar);
|
|
|
|
path = Path.GetFileName(path);
|
|
|
|
|
|
|
|
return Path.Combine(_appFolderInfo.GetLogFolder(), path);
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool CanHandle(string resourceUrl)
|
|
|
|
{
|
2013-08-03 05:07:32 +00:00
|
|
|
return resourceUrl.StartsWith("/log") && resourceUrl.EndsWith(".txt");
|
2013-07-28 23:13:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|