2011-04-27 17:34:53 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-05-20 05:47:07 +02:00
|
|
|
|
using System.IO;
|
2011-06-14 03:23:04 +02:00
|
|
|
|
using Ninject;
|
2011-05-20 05:47:07 +02:00
|
|
|
|
using NLog;
|
2011-11-13 05:07:06 +01:00
|
|
|
|
using NzbDrone.Common;
|
2011-05-20 05:47:07 +02:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-06-17 17:27:18 +02:00
|
|
|
|
using PetaPoco;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
2011-04-08 17:10:46 +02:00
|
|
|
|
public class RootDirProvider
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2011-06-17 17:27:18 +02:00
|
|
|
|
private readonly IDatabase _database;
|
2011-05-20 05:47:07 +02:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
private readonly DiskProvider _diskProvider;
|
|
|
|
|
private readonly SeriesProvider _seriesProvider;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
|
2011-06-14 03:23:04 +02:00
|
|
|
|
[Inject]
|
2011-06-17 17:27:18 +02:00
|
|
|
|
public RootDirProvider(IDatabase database, SeriesProvider seriesProvider, DiskProvider diskProvider)
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2011-06-17 17:27:18 +02:00
|
|
|
|
_database = database;
|
2011-05-20 05:47:07 +02:00
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_seriesProvider = seriesProvider;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region IRootDirProvider
|
|
|
|
|
|
2011-04-08 17:10:46 +02:00
|
|
|
|
public virtual List<RootDir> GetAll()
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2011-06-17 17:27:18 +02:00
|
|
|
|
return _database.Fetch<RootDir>();
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-13 06:20:29 +02:00
|
|
|
|
public virtual int Add(RootDir rootDir)
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2011-06-13 05:56:10 +02:00
|
|
|
|
ValidatePath(rootDir);
|
2011-06-17 17:27:18 +02:00
|
|
|
|
return Convert.ToInt32(_database.Insert(rootDir));
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
|
2011-04-08 17:10:46 +02:00
|
|
|
|
public virtual void Remove(int rootDirId)
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2011-06-17 17:27:18 +02:00
|
|
|
|
_database.Delete<RootDir>(rootDirId);
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
|
2011-06-13 05:56:10 +02:00
|
|
|
|
private static void ValidatePath(RootDir rootDir)
|
|
|
|
|
{
|
|
|
|
|
if (String.IsNullOrWhiteSpace(rootDir.Path) || !Path.IsPathRooted(rootDir.Path))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Invalid path");
|
|
|
|
|
}
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
|
2011-04-08 17:10:46 +02:00
|
|
|
|
public virtual RootDir GetRootDir(int rootDirId)
|
2011-03-11 10:04:56 +01:00
|
|
|
|
{
|
2011-06-17 17:27:18 +02:00
|
|
|
|
return _database.SingleOrDefault<RootDir>(rootDirId);
|
2011-03-11 10:04:56 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-20 05:47:07 +02:00
|
|
|
|
public List<String> 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<String>();
|
|
|
|
|
|
|
|
|
|
if (!_diskProvider.FolderExists(path))
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Path supplied does not exist: {0}", path);
|
|
|
|
|
return results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (string seriesFolder in _diskProvider.GetDirectories(path))
|
|
|
|
|
{
|
2011-11-21 01:35:29 +01:00
|
|
|
|
var cleanPath = new DirectoryInfo(seriesFolder).FullName.NormalizePath();
|
2011-05-20 05:47:07 +02:00
|
|
|
|
|
|
|
|
|
if (!_seriesProvider.SeriesPathExists(cleanPath))
|
2011-07-28 00:59:48 +02:00
|
|
|
|
{
|
2011-05-20 05:47:07 +02:00
|
|
|
|
results.Add(cleanPath);
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-15 20:54:39 +02:00
|
|
|
|
public virtual string GetMostFreeRootDir()
|
|
|
|
|
{
|
|
|
|
|
ulong maxSize = 0;
|
|
|
|
|
var maxPath = String.Empty;
|
|
|
|
|
|
|
|
|
|
var rootDirs = GetAll();
|
|
|
|
|
|
|
|
|
|
foreach (var rootDir in rootDirs)
|
|
|
|
|
{
|
2011-11-12 20:53:36 +01:00
|
|
|
|
rootDir.FreeSpace = _diskProvider.FreeDiskSpace(new DirectoryInfo(rootDir.Path));
|
2011-10-15 20:54:39 +02:00
|
|
|
|
if (rootDir.FreeSpace > maxSize)
|
|
|
|
|
{
|
|
|
|
|
maxPath = rootDir.Path;
|
|
|
|
|
maxSize = rootDir.FreeSpace;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return maxPath;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-09 08:40:48 +01:00
|
|
|
|
#endregion
|
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|