Lidarr/src/NzbDrone.Core/RootFolders/RootFolderService.cs

194 lines
6.9 KiB
C#
Raw Normal View History

2013-02-04 04:18:59 +00:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using NLog;
2011-11-13 04:07:06 +00:00
using NzbDrone.Common;
using NzbDrone.Common.Disk;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Music;
2013-02-04 04:18:59 +00:00
namespace NzbDrone.Core.RootFolders
{
2013-02-04 04:18:59 +00:00
public interface IRootFolderService
{
2013-02-05 04:07:07 +00:00
List<RootFolder> All();
2013-05-13 04:24:04 +00:00
List<RootFolder> AllWithUnmappedFolders();
2013-02-05 04:07:07 +00:00
RootFolder Add(RootFolder rootDir);
2013-04-12 00:36:47 +00:00
void Remove(int id);
RootFolder Get(int id);
string GetBestRootFolderPath(string path);
2013-02-04 04:18:59 +00:00
}
public class RootFolderService : IRootFolderService
{
2013-11-13 20:08:37 +00:00
private readonly IRootFolderRepository _rootFolderRepository;
2013-05-10 23:53:50 +00:00
private readonly IDiskProvider _diskProvider;
private readonly IArtistRepository _artistRepository;
private readonly Logger _logger;
private static readonly HashSet<string> SpecialFolders = new HashSet<string>
{
"$recycle.bin",
"system volume information",
"recycler",
"lost+found",
".appledb",
".appledesktop",
".appledouble",
"@eadir",
".grab"
};
2013-11-13 20:08:37 +00:00
public RootFolderService(IRootFolderRepository rootFolderRepository,
IDiskProvider diskProvider,
IArtistRepository artistRepository,
Logger logger)
{
2013-02-04 04:18:59 +00:00
_rootFolderRepository = rootFolderRepository;
_diskProvider = diskProvider;
_artistRepository = artistRepository;
_logger = logger;
}
2013-08-21 01:17:06 +00:00
public List<RootFolder> All()
{
2013-02-19 06:56:02 +00:00
var rootFolders = _rootFolderRepository.All().ToList();
2013-05-13 04:24:04 +00:00
return rootFolders;
}
2013-08-21 01:17:06 +00:00
public List<RootFolder> AllWithUnmappedFolders()
2013-05-13 04:24:04 +00:00
{
var rootFolders = _rootFolderRepository.All().ToList();
rootFolders.ForEach(folder =>
2013-05-13 04:24:04 +00:00
{
try
{
if (folder.Path.IsPathValid())
{
GetDetails(folder);
}
}
//We don't want an exception to prevent the root folders from loading in the UI, so they can still be deleted
catch (Exception ex)
{
2017-01-05 23:32:17 +00:00
_logger.Error(ex, "Unable to get free space and unmapped folders for root folder {0}", folder.Path);
folder.UnmappedFolders = new List<UnmappedFolder>();
2013-05-13 04:24:04 +00:00
}
});
return rootFolders;
}
2013-08-21 01:17:06 +00:00
public RootFolder Add(RootFolder rootFolder)
{
2013-08-03 03:28:17 +00:00
var all = All();
if (string.IsNullOrWhiteSpace(rootFolder.Path) || !Path.IsPathRooted(rootFolder.Path))
{
throw new ArgumentException("Invalid path");
}
if (!_diskProvider.FolderExists(rootFolder.Path))
{
throw new DirectoryNotFoundException("Can't add root directory that doesn't exist.");
}
if (all.Exists(r => r.Path.PathEquals(rootFolder.Path)))
{
2013-08-14 05:25:53 +00:00
throw new InvalidOperationException("Recent directory already exists.");
}
if (!_diskProvider.FolderWritable(rootFolder.Path))
{
throw new UnauthorizedAccessException(string.Format("Root folder path '{0}' is not writable by user '{1}'", rootFolder.Path, Environment.UserName));
}
2013-02-19 06:56:02 +00:00
_rootFolderRepository.Insert(rootFolder);
2013-02-04 04:18:59 +00:00
GetDetails(rootFolder);
return rootFolder;
}
2011-04-10 02:44:01 +00:00
2013-08-21 01:17:06 +00:00
public void Remove(int id)
{
2013-04-12 00:36:47 +00:00
_rootFolderRepository.Delete(id);
}
2011-04-10 02:44:01 +00:00
2014-10-03 23:29:52 +00:00
private List<UnmappedFolder> GetUnmappedFolders(string path)
{
2014-12-17 07:12:26 +00:00
_logger.Debug("Generating list of unmapped folders");
if (string.IsNullOrEmpty(path))
2017-01-19 09:38:37 +00:00
{
2017-01-07 17:59:59 +00:00
throw new ArgumentException("Invalid path provided", nameof(path));
}
var results = new List<UnmappedFolder>();
var artist = _artistRepository.All().ToList();
if (!_diskProvider.FolderExists(path))
{
2014-12-17 07:12:26 +00:00
_logger.Debug("Path supplied does not exist: {0}", path);
return results;
}
var possibleArtistFolders = _diskProvider.GetDirectories(path).ToList();
var unmappedFolders = possibleArtistFolders.Except(artist.Select(s => s.Path), PathEqualityComparer.Instance).ToList();
2013-08-21 01:17:06 +00:00
foreach (string unmappedFolder in unmappedFolders)
{
2013-08-21 01:17:06 +00:00
var di = new DirectoryInfo(unmappedFolder.Normalize());
results.Add(new UnmappedFolder { Name = di.Name, Path = di.FullName });
}
var setToRemove = SpecialFolders;
results.RemoveAll(x => setToRemove.Contains(new DirectoryInfo(x.Path.ToLowerInvariant()).Name));
2014-12-17 07:12:26 +00:00
_logger.Debug("{0} unmapped folders detected.", results.Count);
return results.OrderBy(u => u.Name, StringComparer.InvariantCultureIgnoreCase).ToList();
}
2013-04-12 00:36:47 +00:00
public RootFolder Get(int id)
{
var rootFolder = _rootFolderRepository.Get(id);
GetDetails(rootFolder);
return rootFolder;
2013-04-12 00:36:47 +00:00
}
public string GetBestRootFolderPath(string path)
{
var possibleRootFolder = All().Where(r => r.Path.IsParentPath(path))
.OrderByDescending(r => r.Path.Length)
.FirstOrDefault();
if (possibleRootFolder == null)
{
return Path.GetDirectoryName(path);
}
return possibleRootFolder.Path;
}
private void GetDetails(RootFolder rootFolder)
{
Task.Run(() =>
{
if (_diskProvider.FolderExists(rootFolder.Path))
{
rootFolder.Accessible = true;
rootFolder.FreeSpace = _diskProvider.GetAvailableSpace(rootFolder.Path);
rootFolder.TotalSpace = _diskProvider.GetTotalSize(rootFolder.Path);
rootFolder.UnmappedFolders = GetUnmappedFolders(rootFolder.Path);
}
}).Wait(5000);
}
}
}