2011-04-27 15:34:53 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-05-20 03:47:07 +00:00
|
|
|
|
using System.IO;
|
2011-06-14 01:23:04 +00:00
|
|
|
|
using Ninject;
|
2011-05-20 03:47:07 +00:00
|
|
|
|
using NLog;
|
2011-11-13 04:07:06 +00:00
|
|
|
|
using NzbDrone.Common;
|
2012-12-23 05:35:36 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-05-20 03:47:07 +00:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-03-09 07:40:48 +00:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-06-17 15:27:18 +00:00
|
|
|
|
using PetaPoco;
|
2011-03-09 07:40:48 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
2011-04-08 15:10:46 +00:00
|
|
|
|
public class RootDirProvider
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
2011-06-17 15:27:18 +00:00
|
|
|
|
private readonly IDatabase _database;
|
2011-05-20 03:47:07 +00:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
private readonly DiskProvider _diskProvider;
|
|
|
|
|
private readonly SeriesProvider _seriesProvider;
|
2011-03-09 07:40:48 +00:00
|
|
|
|
|
2011-06-14 01:23:04 +00:00
|
|
|
|
[Inject]
|
2011-06-17 15:27:18 +00:00
|
|
|
|
public RootDirProvider(IDatabase database, SeriesProvider seriesProvider, DiskProvider diskProvider)
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
2011-06-17 15:27:18 +00:00
|
|
|
|
_database = database;
|
2011-05-20 03:47:07 +00:00
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_seriesProvider = seriesProvider;
|
2011-03-09 07:40:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 15:10:46 +00:00
|
|
|
|
public virtual List<RootDir> GetAll()
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
2011-06-17 15:27:18 +00:00
|
|
|
|
return _database.Fetch<RootDir>();
|
2011-03-09 07:40:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-19 03:57:27 +00:00
|
|
|
|
public virtual void Add(RootDir 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.");
|
|
|
|
|
|
|
|
|
|
if (GetAll().Exists(r => DiskProvider.PathEquals(r.Path, rootDir.Path)))
|
|
|
|
|
throw new InvalidOperationException("Root directory already exist.");
|
|
|
|
|
|
2012-01-19 03:57:27 +00:00
|
|
|
|
_database.Insert(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
|
|
|
|
{
|
2011-06-17 15:27:18 +00:00
|
|
|
|
_database.Delete<RootDir>(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
|
|
|
|
{
|
2011-12-10 19:22:47 +00:00
|
|
|
|
results.Add(seriesFolder.Normalize());
|
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-23 05:35:36 +00:00
|
|
|
|
public virtual List<RootDir> AllWithFreeSpace()
|
2011-10-15 18:54:39 +00:00
|
|
|
|
{
|
|
|
|
|
var rootDirs = GetAll();
|
|
|
|
|
|
|
|
|
|
foreach (var rootDir in rootDirs)
|
|
|
|
|
{
|
2011-11-12 19:53:36 +00:00
|
|
|
|
rootDir.FreeSpace = _diskProvider.FreeDiskSpace(new DirectoryInfo(rootDir.Path));
|
2011-10-15 18:54:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-12-23 05:35:36 +00:00
|
|
|
|
return rootDirs;
|
2011-10-15 18:54:39 +00:00
|
|
|
|
}
|
2012-12-24 07:16:43 +00:00
|
|
|
|
|
|
|
|
|
public virtual Dictionary<string, ulong> FreeSpaceOnDrives()
|
|
|
|
|
{
|
|
|
|
|
var freeSpace = new Dictionary<string, ulong>();
|
|
|
|
|
|
|
|
|
|
var rootDirs = GetAll();
|
|
|
|
|
|
|
|
|
|
foreach (var rootDir in rootDirs)
|
|
|
|
|
{
|
|
|
|
|
var pathRoot = _diskProvider.GetPathRoot(rootDir.Path);
|
|
|
|
|
|
|
|
|
|
if (!freeSpace.ContainsKey(pathRoot))
|
|
|
|
|
freeSpace.Add(pathRoot, _diskProvider.FreeDiskSpace(new DirectoryInfo(rootDir.Path)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return freeSpace;
|
|
|
|
|
}
|
2011-03-09 07:40:48 +00:00
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|