2010-09-28 19:32:19 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
using System.Linq;
|
2010-09-28 19:32:19 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2010-10-02 19:01:43 +00:00
|
|
|
|
using NLog;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-01-29 06:10:22 +00:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
using TvdbLib.Data;
|
|
|
|
|
|
2010-09-28 04:25:41 +00:00
|
|
|
|
namespace NzbDrone.Core.Providers
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-09-28 04:25:41 +00:00
|
|
|
|
public class SeriesProvider : ISeriesProvider
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-09-28 19:32:19 +00:00
|
|
|
|
//TODO: Remove parsing of rest of tv show info we just need the show name
|
2010-10-02 19:01:43 +00:00
|
|
|
|
|
2010-10-04 01:00:50 +00:00
|
|
|
|
//Trims all white spaces and separators from the end of the title.
|
2010-10-17 17:22:48 +00:00
|
|
|
|
|
2010-09-28 04:25:41 +00:00
|
|
|
|
private readonly IConfigProvider _config;
|
|
|
|
|
private readonly IDiskProvider _diskProvider;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
private readonly IRepository _sonioRepo;
|
2010-09-28 04:25:41 +00:00
|
|
|
|
private readonly ITvDbProvider _tvDb;
|
2010-10-05 06:21:18 +00:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
2010-10-17 17:22:48 +00:00
|
|
|
|
public SeriesProvider(IDiskProvider diskProvider, IConfigProvider configProvider, IRepository dataRepository, ITvDbProvider tvDbProvider)
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-09-28 04:25:41 +00:00
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_config = configProvider;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
_sonioRepo = dataRepository;
|
2010-09-28 04:25:41 +00:00
|
|
|
|
_tvDb = tvDbProvider;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-09-28 04:25:41 +00:00
|
|
|
|
#region ISeriesProvider Members
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
2010-10-17 17:22:48 +00:00
|
|
|
|
public IQueryable<Series> GetAllSeries()
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
|
|
|
|
return _sonioRepo.All<Series>();
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-05 06:21:18 +00:00
|
|
|
|
public Series GetSeries(int seriesId)
|
2010-09-24 07:14:42 +00:00
|
|
|
|
{
|
2010-10-05 06:21:18 +00:00
|
|
|
|
return _sonioRepo.Single<Series>(s => s.SeriesId == seriesId);
|
2010-09-24 07:14:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-02 19:01:43 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines if a series is being actively watched.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The TVDB ID of the series</param>
|
|
|
|
|
/// <returns>Whether or not the show is monitored</returns>
|
|
|
|
|
public bool IsMonitored(long id)
|
2010-09-28 20:44:33 +00:00
|
|
|
|
{
|
2010-10-05 06:21:18 +00:00
|
|
|
|
return _sonioRepo.Exists<Series>(c => c.SeriesId == id && c.Monitored);
|
2010-09-28 20:44:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-29 06:10:22 +00:00
|
|
|
|
public bool QualityWanted(int seriesId, QualityTypes quality)
|
|
|
|
|
{
|
|
|
|
|
return _sonioRepo.Exists<Series>(s => s.SeriesId == seriesId && (QualityTypes)s.Quality == quality);
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-04 00:48:09 +00:00
|
|
|
|
public Dictionary<Guid, String> GetUnmappedFolders()
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-10-17 17:22:48 +00:00
|
|
|
|
Logger.Debug("Generating list of unmapped folders");
|
2010-10-02 19:01:43 +00:00
|
|
|
|
if (String.IsNullOrEmpty(_config.SeriesRoot))
|
|
|
|
|
throw new InvalidOperationException("TV Series folder is not configured yet.");
|
|
|
|
|
|
2011-02-04 00:48:09 +00:00
|
|
|
|
var results = new Dictionary<Guid, String>();
|
2010-09-28 04:25:41 +00:00
|
|
|
|
foreach (string seriesFolder in _diskProvider.GetDirectories(_config.SeriesRoot))
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-10-24 07:46:58 +00:00
|
|
|
|
var cleanPath = Parser.NormalizePath(new DirectoryInfo(seriesFolder).FullName);
|
2010-09-24 07:14:42 +00:00
|
|
|
|
if (!_sonioRepo.Exists<Series>(s => s.Path == cleanPath))
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2011-02-04 00:48:09 +00:00
|
|
|
|
results.Add(Guid.NewGuid(), cleanPath);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-17 17:22:48 +00:00
|
|
|
|
Logger.Debug("{0} unmapped folders detected.", results.Count);
|
2010-10-02 19:01:43 +00:00
|
|
|
|
return results;
|
|
|
|
|
}
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
2010-10-04 01:00:50 +00:00
|
|
|
|
public TvdbSeries MapPathToSeries(string path)
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-10-02 19:01:43 +00:00
|
|
|
|
var seriesPath = new DirectoryInfo(path);
|
2010-10-04 01:00:50 +00:00
|
|
|
|
var searchResults = _tvDb.GetSeries(seriesPath.Name);
|
2010-10-02 19:01:43 +00:00
|
|
|
|
|
2010-10-04 01:00:50 +00:00
|
|
|
|
if (searchResults == null)
|
|
|
|
|
return null;
|
2010-10-02 19:01:43 +00:00
|
|
|
|
|
2010-10-05 06:21:18 +00:00
|
|
|
|
return _tvDb.GetSeries(searchResults.Id, false);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-17 17:22:48 +00:00
|
|
|
|
public void AddSeries(string path, TvdbSeries series)
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-10-17 17:22:48 +00:00
|
|
|
|
Logger.Info("Adding Series [{0}]:{1} Path: {2}", series.Id, series.SeriesName, path);
|
2010-09-28 03:04:39 +00:00
|
|
|
|
var repoSeries = new Series();
|
2010-10-05 06:21:18 +00:00
|
|
|
|
repoSeries.SeriesId = series.Id;
|
2010-10-02 19:01:43 +00:00
|
|
|
|
repoSeries.Title = series.SeriesName;
|
2010-09-28 03:04:39 +00:00
|
|
|
|
repoSeries.AirTimes = series.AirsTime;
|
|
|
|
|
repoSeries.AirsDayOfWeek = series.AirsDayOfWeek;
|
|
|
|
|
repoSeries.Overview = series.Overview;
|
|
|
|
|
repoSeries.Status = series.Status;
|
|
|
|
|
repoSeries.Language = series.Language != null ? series.Language.Abbriviation : string.Empty;
|
|
|
|
|
repoSeries.Path = path;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
repoSeries.CleanTitle = Parser.NormalizeTitle(series.SeriesName);
|
2010-09-28 03:04:39 +00:00
|
|
|
|
_sonioRepo.Add(repoSeries);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
2010-09-28 19:32:19 +00:00
|
|
|
|
|
2011-01-29 06:10:22 +00:00
|
|
|
|
public Series FindSeries(string cleanTitle)
|
|
|
|
|
{
|
|
|
|
|
return _sonioRepo.Single<Series>(s => s.CleanTitle == cleanTitle);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-02 19:01:43 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Static Helpers
|
|
|
|
|
|
2010-09-28 19:32:19 +00:00
|
|
|
|
|
|
|
|
|
|
2010-10-02 19:01:43 +00:00
|
|
|
|
#endregion
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|