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-03-09 07:40:48 +00:00
|
|
|
|
using System.Linq;
|
2011-05-20 03:47:07 +00:00
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-03-09 07:40:48 +00:00
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
2011-04-08 15:10:46 +00:00
|
|
|
|
public class RootDirProvider
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly IRepository _sonioRepo;
|
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-05-20 03:47:07 +00:00
|
|
|
|
|
|
|
|
|
public RootDirProvider(IRepository sonicRepo, SeriesProvider seriesProvider, DiskProvider diskProvider)
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
|
|
|
|
_sonioRepo = sonicRepo;
|
2011-05-20 03:47:07 +00:00
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_seriesProvider = seriesProvider;
|
2011-03-09 07:40:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region IRootDirProvider
|
|
|
|
|
|
2011-04-08 15:10:46 +00:00
|
|
|
|
public virtual List<RootDir> GetAll()
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
|
|
|
|
return _sonioRepo.All<RootDir>().ToList();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-27 15:34:53 +00:00
|
|
|
|
public virtual int Add(RootDir rootDir)
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
2011-04-27 15:34:53 +00:00
|
|
|
|
return Convert.ToInt32(_sonioRepo.Add(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
|
|
|
|
{
|
|
|
|
|
_sonioRepo.Delete<RootDir>(rootDirId);
|
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
|
2011-04-08 15:10:46 +00:00
|
|
|
|
public virtual void Update(RootDir rootDir)
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
|
|
|
|
_sonioRepo.Update(rootDir);
|
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
|
2011-04-08 15:10:46 +00:00
|
|
|
|
public virtual RootDir GetRootDir(int rootDirId)
|
2011-03-11 09:04:56 +00:00
|
|
|
|
{
|
|
|
|
|
return _sonioRepo.Single<RootDir>(rootDirId);
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-20 03:47:07 +00: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))
|
|
|
|
|
{
|
|
|
|
|
var cleanPath = Parser.NormalizePath(new DirectoryInfo(seriesFolder).FullName);
|
|
|
|
|
|
|
|
|
|
if (!_seriesProvider.SeriesPathExists(cleanPath))
|
|
|
|
|
results.Add(cleanPath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Logger.Debug("{0} unmapped folders detected.", results.Count);
|
|
|
|
|
return results;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-09 07:40:48 +00:00
|
|
|
|
#endregion
|
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|