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

167 lines
5.9 KiB
C#
Raw Normal View History

using System.Linq;
2013-02-04 04:18:59 +00:00
using System;
using System.Collections.Generic;
using System.IO;
using NLog;
2011-11-13 04:07:06 +00:00
using NzbDrone.Common;
using NzbDrone.Common.Disk;
2013-08-31 01:42:30 +00:00
using NzbDrone.Common.Instrumentation;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Tv;
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);
List<UnmappedFolder> GetUnmappedFolders(string path);
Dictionary<string, long?> FreeSpaceOnDrives();
2013-04-12 00:36:47 +00:00
RootFolder Get(int id);
2013-02-04 04:18:59 +00:00
}
public class RootFolderService : IRootFolderService
{
private static readonly Logger Logger = NzbDroneLogger.GetLogger();
2013-11-13 20:08:37 +00:00
private readonly IRootFolderRepository _rootFolderRepository;
2013-05-10 23:53:50 +00:00
private readonly IDiskProvider _diskProvider;
2013-02-19 06:56:02 +00:00
private readonly ISeriesRepository _seriesRepository;
private readonly IConfigService _configService;
private static readonly HashSet<string> SpecialFolders = new HashSet<string> { "$recycle.bin", "system volume information", "recycler", "lost+found" };
2013-11-13 20:08:37 +00:00
public RootFolderService(IRootFolderRepository rootFolderRepository,
IDiskProvider diskProvider,
ISeriesRepository seriesRepository,
IConfigService configService)
{
2013-02-04 04:18:59 +00:00
_rootFolderRepository = rootFolderRepository;
_diskProvider = diskProvider;
2013-02-19 06:56:02 +00:00
_seriesRepository = seriesRepository;
_configService = configService;
}
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
{
if (_diskProvider.FolderExists(folder.Path))
{
folder.FreeSpace = _diskProvider.GetAvailableSpace(folder.Path);
2013-05-13 04:24:04 +00:00
folder.UnmappedFolders = GetUnmappedFolders(folder.Path);
}
});
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.");
2013-08-03 03:28:17 +00:00
if (!String.IsNullOrWhiteSpace(_configService.DownloadedEpisodesFolder) &&
_configService.DownloadedEpisodesFolder.PathEquals(rootFolder.Path))
throw new InvalidOperationException("Drone Factory folder cannot be used.");
2013-02-19 06:56:02 +00:00
_rootFolderRepository.Insert(rootFolder);
2013-02-04 04:18:59 +00:00
rootFolder.FreeSpace = _diskProvider.GetAvailableSpace(rootFolder.Path);
rootFolder.UnmappedFolders = GetUnmappedFolders(rootFolder.Path);
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
2013-08-21 01:17:06 +00:00
public List<UnmappedFolder> GetUnmappedFolders(string path)
{
Logger.Debug("Generating list of unmapped folders");
if (String.IsNullOrEmpty(path))
throw new ArgumentException("Invalid path provided", "path");
var results = new List<UnmappedFolder>();
var series = _seriesRepository.All().ToList();
if (!_diskProvider.FolderExists(path))
{
Logger.Debug("Path supplied does not exist: {0}", path);
return results;
}
2013-08-21 01:17:06 +00:00
var seriesFolders = _diskProvider.GetDirectories(path).ToList();
2013-12-01 00:33:59 +00:00
var unmappedFolders = seriesFolders.Except(series.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 });
}
if (Path.GetPathRoot(path).Equals(path, StringComparison.InvariantCultureIgnoreCase))
{
var setToRemove = SpecialFolders;
results.RemoveAll(x => setToRemove.Contains(new DirectoryInfo(x.Path.ToLowerInvariant()).Name));
}
Logger.Debug("{0} unmapped folders detected.", results.Count);
return results;
}
public Dictionary<string, long?> FreeSpaceOnDrives()
{
var freeSpace = new Dictionary<string, long?>();
2013-02-04 04:18:59 +00:00
var rootDirs = All();
foreach (var rootDir in rootDirs)
{
var pathRoot = _diskProvider.GetPathRoot(rootDir.Path);
if (!freeSpace.ContainsKey(pathRoot))
{
try
{
freeSpace.Add(pathRoot, _diskProvider.GetAvailableSpace(rootDir.Path));
}
catch (Exception ex)
{
2013-03-06 20:30:53 +00:00
Logger.WarnException("Error getting disk space for: " + pathRoot, ex);
}
}
}
return freeSpace;
}
2013-04-12 00:36:47 +00:00
public RootFolder Get(int id)
{
var rootFolder = _rootFolderRepository.Get(id);
rootFolder.FreeSpace = _diskProvider.GetAvailableSpace(rootFolder.Path);
rootFolder.UnmappedFolders = GetUnmappedFolders(rootFolder.Path);
return rootFolder;
2013-04-12 00:36:47 +00:00
}
}
2011-04-10 02:44:01 +00:00
}