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