Radarr/src/NzbDrone.Api/FileSystem/FileSystemModule.cs

72 lines
2.4 KiB
C#
Raw Normal View History

2015-03-04 00:42:37 +00:00
using System.IO;
using System.Linq;
using Nancy;
using NzbDrone.Common.Disk;
2015-03-04 00:42:37 +00:00
using NzbDrone.Common.Extensions;
using NzbDrone.Core.MediaFiles;
2019-12-22 22:08:53 +00:00
using Radarr.Http.Extensions;
namespace NzbDrone.Api.FileSystem
{
public class FileSystemModule : NzbDroneApiModule
{
private readonly IFileSystemLookupService _fileSystemLookupService;
2015-03-04 00:42:37 +00:00
private readonly IDiskProvider _diskProvider;
private readonly IDiskScanService _diskScanService;
2015-03-04 00:42:37 +00:00
public FileSystemModule(IFileSystemLookupService fileSystemLookupService,
IDiskProvider diskProvider,
IDiskScanService diskScanService)
: base("/filesystem")
{
_fileSystemLookupService = fileSystemLookupService;
2015-03-04 00:42:37 +00:00
_diskProvider = diskProvider;
_diskScanService = diskScanService;
2019-12-22 22:08:53 +00:00
Get("/", x => GetContents());
Get("/type", x => GetEntityType());
Get("/mediafiles", x => GetMediaFiles());
}
2019-08-28 21:43:55 +00:00
private object GetContents()
{
var pathQuery = Request.Query.path;
2018-11-23 07:03:32 +00:00
var includeFiles = Request.GetBooleanQueryParameter("includeFiles");
var allowFoldersWithoutTrailingSlashes = Request.GetBooleanQueryParameter("allowFoldersWithoutTrailingSlashes");
2019-08-28 21:43:55 +00:00
return _fileSystemLookupService.LookupContents((string)pathQuery.Value, includeFiles, allowFoldersWithoutTrailingSlashes);
}
2015-03-04 00:42:37 +00:00
2019-08-28 21:43:55 +00:00
private object GetEntityType()
2015-03-04 00:42:37 +00:00
{
var pathQuery = Request.Query.path;
var path = (string)pathQuery.Value;
if (_diskProvider.FileExists(path))
{
2019-08-28 21:43:55 +00:00
return new { type = "file" };
2015-03-04 00:42:37 +00:00
}
//Return folder even if it doesn't exist on disk to avoid leaking anything from the UI about the underlying system
2019-08-28 21:43:55 +00:00
return new { type = "folder" };
2015-03-04 00:42:37 +00:00
}
2019-08-28 21:43:55 +00:00
private object GetMediaFiles()
2015-03-04 00:42:37 +00:00
{
var pathQuery = Request.Query.path;
var path = (string)pathQuery.Value;
if (!_diskProvider.FolderExists(path))
{
2019-08-28 21:43:55 +00:00
return new string[0];
2015-03-04 00:42:37 +00:00
}
2019-12-22 22:08:53 +00:00
return _diskScanService.GetVideoFiles(path).Select(f => new
{
2015-03-04 00:42:37 +00:00
Path = f,
RelativePath = path.GetRelativePath(f),
Name = Path.GetFileName(f)
2019-08-28 21:43:55 +00:00
});
2015-03-04 00:42:37 +00:00
}
}
2018-11-23 07:03:32 +00:00
}