2013-02-04 05:18:59 +01:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System;
|
2011-04-27 17:34:53 +02:00
|
|
|
|
using System.Collections.Generic;
|
2011-05-20 05:47:07 +02:00
|
|
|
|
using System.IO;
|
|
|
|
|
using NLog;
|
2011-11-13 05:07:06 +01:00
|
|
|
|
using NzbDrone.Common;
|
2013-02-04 05:18:59 +01:00
|
|
|
|
using NzbDrone.Core.Providers;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
|
2013-02-04 05:18:59 +01:00
|
|
|
|
namespace NzbDrone.Core.RootFolders
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2013-02-04 05:18:59 +01:00
|
|
|
|
public interface IRootFolderService
|
|
|
|
|
{
|
2013-02-05 05:07:07 +01:00
|
|
|
|
List<RootFolder> All();
|
|
|
|
|
RootFolder Add(RootFolder rootDir);
|
2013-02-16 04:50:22 +01:00
|
|
|
|
void Remove(int rootDirId);
|
2013-02-04 05:18:59 +01:00
|
|
|
|
List<String> GetUnmappedFolders(string path);
|
|
|
|
|
Dictionary<string, ulong> FreeSpaceOnDrives();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class RootFolderService : IRootFolderService
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2011-05-20 05:47:07 +02:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2013-02-04 05:18:59 +01:00
|
|
|
|
private readonly IRootFolderRepository _rootFolderRepository;
|
2011-05-20 05:47:07 +02:00
|
|
|
|
private readonly DiskProvider _diskProvider;
|
|
|
|
|
private readonly SeriesProvider _seriesProvider;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
|
2013-02-04 05:18:59 +01:00
|
|
|
|
public RootFolderService(IRootFolderRepository rootFolderRepository, SeriesProvider seriesProvider, DiskProvider diskProvider)
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2013-02-04 05:18:59 +01:00
|
|
|
|
_rootFolderRepository = rootFolderRepository;
|
2011-05-20 05:47:07 +02:00
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_seriesProvider = seriesProvider;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-05 05:07:07 +01:00
|
|
|
|
public virtual List<RootFolder> All()
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2013-02-08 09:05:43 +01:00
|
|
|
|
var rootFolders = _rootFolderRepository.All();
|
|
|
|
|
|
|
|
|
|
rootFolders.ForEach(folder =>
|
|
|
|
|
{
|
|
|
|
|
folder.FreeSpace = _diskProvider.FreeDiskSpace(new DirectoryInfo(folder.Path));
|
|
|
|
|
folder.UnmappedFolders = GetUnmappedFolders(folder.Path);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return rootFolders;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-08 09:05:43 +01:00
|
|
|
|
public virtual RootFolder Add(RootFolder rootFolder)
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2013-02-08 09:05:43 +01:00
|
|
|
|
if (String.IsNullOrWhiteSpace(rootFolder.Path) || !Path.IsPathRooted(rootFolder.Path))
|
2012-01-19 06:04:55 +01:00
|
|
|
|
throw new ArgumentException("Invalid path");
|
|
|
|
|
|
2013-02-08 09:05:43 +01:00
|
|
|
|
if (!_diskProvider.FolderExists(rootFolder.Path))
|
2012-01-19 06:04:55 +01:00
|
|
|
|
throw new DirectoryNotFoundException("Can't add root directory that doesn't exist.");
|
|
|
|
|
|
2013-02-08 09:05:43 +01:00
|
|
|
|
if (All().Exists(r => DiskProvider.PathEquals(r.Path, rootFolder.Path)))
|
2012-01-19 06:04:55 +01:00
|
|
|
|
throw new InvalidOperationException("Root directory already exist.");
|
|
|
|
|
|
2013-02-08 09:05:43 +01:00
|
|
|
|
_rootFolderRepository.Add(rootFolder);
|
2013-02-04 05:18:59 +01:00
|
|
|
|
|
2013-02-08 09:05:43 +01:00
|
|
|
|
rootFolder.FreeSpace = _diskProvider.FreeDiskSpace(new DirectoryInfo(rootFolder.Path));
|
|
|
|
|
rootFolder.UnmappedFolders = GetUnmappedFolders(rootFolder.Path);
|
|
|
|
|
return rootFolder;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
|
2013-02-16 04:50:22 +01:00
|
|
|
|
public virtual void Remove(int rootDirId)
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2013-02-04 05:18:59 +01:00
|
|
|
|
_rootFolderRepository.Delete(rootDirId);
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
|
2012-12-23 06:35:36 +01:00
|
|
|
|
public virtual List<String> GetUnmappedFolders(string path)
|
2011-05-20 05:47:07 +02:00
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Generating list of unmapped folders");
|
|
|
|
|
if (String.IsNullOrEmpty(path))
|
|
|
|
|
throw new ArgumentException("Invalid path provided", "path");
|
|
|
|
|
|
|
|
|
|
var results = new List<String>();
|
|
|
|
|
|
|
|
|
|
if (!_diskProvider.FolderExists(path))
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Path supplied does not exist: {0}", path);
|
|
|
|
|
return results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (string seriesFolder in _diskProvider.GetDirectories(path))
|
|
|
|
|
{
|
2011-12-10 20:22:47 +01:00
|
|
|
|
if (!_seriesProvider.SeriesPathExists(seriesFolder))
|
2011-07-28 00:59:48 +02:00
|
|
|
|
{
|
2013-01-30 07:52:31 +01:00
|
|
|
|
results.Add(new DirectoryInfo(seriesFolder.Normalize()).Name);
|
2011-07-28 00:59:48 +02:00
|
|
|
|
}
|
2011-05-20 05:47:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Logger.Debug("{0} unmapped folders detected.", results.Count);
|
|
|
|
|
return results;
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-24 08:16:43 +01:00
|
|
|
|
public virtual Dictionary<string, ulong> FreeSpaceOnDrives()
|
|
|
|
|
{
|
|
|
|
|
var freeSpace = new Dictionary<string, ulong>();
|
|
|
|
|
|
2013-02-04 05:18:59 +01:00
|
|
|
|
var rootDirs = All();
|
2012-12-24 08:16:43 +01:00
|
|
|
|
|
|
|
|
|
foreach (var rootDir in rootDirs)
|
|
|
|
|
{
|
|
|
|
|
var pathRoot = _diskProvider.GetPathRoot(rootDir.Path);
|
|
|
|
|
|
2013-01-25 02:22:14 +01:00
|
|
|
|
if (!freeSpace.ContainsKey(pathRoot))
|
2012-12-26 08:20:31 +01:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
freeSpace.Add(pathRoot, _diskProvider.FreeDiskSpace(new DirectoryInfo(rootDir.Path)));
|
|
|
|
|
}
|
2013-01-25 02:22:14 +01:00
|
|
|
|
catch (Exception ex)
|
2012-12-26 08:20:31 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.WarnException("Error getting fromm space for: " + pathRoot, ex);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-12-24 08:16:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return freeSpace;
|
|
|
|
|
}
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|