2010-09-28 19:32:19 +00:00
|
|
|
|
using System;
|
2011-05-27 06:03:57 +00:00
|
|
|
|
using System.Collections.Generic;
|
2010-09-28 19:32:19 +00:00
|
|
|
|
using System.IO;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
using System.Linq;
|
2011-04-27 02:47:29 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2011-06-14 01:23:04 +00:00
|
|
|
|
using Ninject;
|
2010-10-02 19:01:43 +00:00
|
|
|
|
using NLog;
|
2011-05-20 03:47:07 +00:00
|
|
|
|
using NzbDrone.Core.Helpers;
|
2011-04-04 03:50:12 +00:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
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
|
|
|
|
{
|
2011-04-08 23:55:23 +00:00
|
|
|
|
public class SeriesProvider
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2011-04-10 02:44:01 +00:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2011-04-26 00:28:33 +00:00
|
|
|
|
private readonly IRepository _repository;
|
|
|
|
|
private readonly ConfigProvider _configProvider;
|
|
|
|
|
private readonly TvDbProvider _tvDbProvider;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
2011-06-14 01:23:04 +00:00
|
|
|
|
[Inject]
|
2011-04-26 00:28:33 +00:00
|
|
|
|
public SeriesProvider(ConfigProvider configProviderProvider, IRepository repository, TvDbProvider tvDbProviderProvider)
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
_configProvider = configProviderProvider;
|
|
|
|
|
_repository = repository;
|
|
|
|
|
_tvDbProvider = tvDbProviderProvider;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-10 00:14:51 +00:00
|
|
|
|
public SeriesProvider()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-27 06:03:57 +00:00
|
|
|
|
public virtual IList<Series> GetAllSeries()
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2011-05-27 06:03:57 +00:00
|
|
|
|
return _repository.All<Series>().ToList();
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public virtual Series GetSeries(int seriesId)
|
2010-09-24 07:14:42 +00:00
|
|
|
|
{
|
2011-06-04 01:56:53 +00:00
|
|
|
|
return _repository.Single<Series>(seriesId);
|
2010-09-24 07:14:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-02 19:01:43 +00:00
|
|
|
|
/// <summary>
|
2011-04-10 02:44:01 +00:00
|
|
|
|
/// Determines if a series is being actively watched.
|
2010-10-02 19:01:43 +00:00
|
|
|
|
/// </summary>
|
2011-04-10 02:44:01 +00:00
|
|
|
|
/// <param name = "id">The TVDB ID of the series</param>
|
2010-10-02 19:01:43 +00:00
|
|
|
|
/// <returns>Whether or not the show is monitored</returns>
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public virtual bool IsMonitored(long id)
|
2010-09-28 20:44:33 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
return _repository.Exists<Series>(c => c.SeriesId == id && c.Monitored);
|
2010-09-28 20:44:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public virtual 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);
|
2011-04-26 00:28:33 +00:00
|
|
|
|
var searchResults = _tvDbProvider.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
|
|
|
|
|
2011-04-26 00:28:33 +00:00
|
|
|
|
return _tvDbProvider.GetSeries(searchResults.Id, false);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public virtual Series UpdateSeriesInfo(int seriesId)
|
2011-03-10 07:49:59 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
var tvDbSeries = _tvDbProvider.GetSeries(seriesId, true);
|
2011-04-01 06:36:34 +00:00
|
|
|
|
var series = GetSeries(seriesId);
|
|
|
|
|
|
|
|
|
|
series.SeriesId = tvDbSeries.Id;
|
|
|
|
|
series.Title = tvDbSeries.SeriesName;
|
2011-04-27 02:47:29 +00:00
|
|
|
|
series.AirTimes = CleanAirsTime(tvDbSeries.AirsTime);
|
2011-04-01 06:36:34 +00:00
|
|
|
|
series.AirsDayOfWeek = tvDbSeries.AirsDayOfWeek;
|
|
|
|
|
series.Overview = tvDbSeries.Overview;
|
|
|
|
|
series.Status = tvDbSeries.Status;
|
|
|
|
|
series.Language = tvDbSeries.Language != null ? tvDbSeries.Language.Abbriviation : string.Empty;
|
|
|
|
|
series.CleanTitle = Parser.NormalizeTitle(tvDbSeries.SeriesName);
|
|
|
|
|
series.LastInfoSync = DateTime.Now;
|
|
|
|
|
|
|
|
|
|
UpdateSeries(series);
|
|
|
|
|
return series;
|
2011-03-10 07:49:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public virtual void AddSeries(string path, int tvDbSeriesId, int qualityProfileId)
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2011-04-01 06:36:34 +00:00
|
|
|
|
Logger.Info("Adding Series [{0}] Path: [{1}]", tvDbSeriesId, path);
|
|
|
|
|
|
2010-09-28 03:04:39 +00:00
|
|
|
|
var repoSeries = new Series();
|
2011-04-01 06:36:34 +00:00
|
|
|
|
repoSeries.SeriesId = tvDbSeriesId;
|
2010-09-28 03:04:39 +00:00
|
|
|
|
repoSeries.Path = path;
|
2011-02-15 03:48:39 +00:00
|
|
|
|
repoSeries.Monitored = true; //New shows should be monitored
|
2011-03-28 20:22:12 +00:00
|
|
|
|
repoSeries.QualityProfileId = qualityProfileId;
|
|
|
|
|
if (qualityProfileId == 0)
|
2011-04-26 00:28:33 +00:00
|
|
|
|
repoSeries.QualityProfileId = Convert.ToInt32(_configProvider.GetValue("DefaultQualityProfile", "1", true));
|
2011-02-25 07:20:24 +00:00
|
|
|
|
|
2011-04-26 00:28:33 +00:00
|
|
|
|
repoSeries.SeasonFolder = _configProvider.UseSeasonFolder;
|
2011-02-25 07:20:24 +00:00
|
|
|
|
|
2011-04-26 00:28:33 +00:00
|
|
|
|
_repository.Add(repoSeries);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
2010-09-28 19:32:19 +00:00
|
|
|
|
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public virtual Series FindSeries(string title)
|
2011-01-29 06:10:22 +00:00
|
|
|
|
{
|
2011-04-22 19:16:52 +00:00
|
|
|
|
var normalizeTitle = Parser.NormalizeTitle(title);
|
2011-05-20 03:47:07 +00:00
|
|
|
|
|
2011-06-03 01:15:02 +00:00
|
|
|
|
var seriesId = SceneNameHelper.GetIdByName(normalizeTitle);
|
2011-06-03 01:24:15 +00:00
|
|
|
|
if (seriesId != null)
|
2011-05-20 03:47:07 +00:00
|
|
|
|
{
|
2011-06-03 01:15:02 +00:00
|
|
|
|
return GetSeries(seriesId.Value);
|
2011-05-20 03:47:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 00:28:33 +00:00
|
|
|
|
return _repository.Single<Series>(s => s.CleanTitle == normalizeTitle);
|
2011-01-29 06:10:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public virtual void UpdateSeries(Series series)
|
2011-02-18 02:50:40 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
_repository.Update(series);
|
2011-02-18 02:50:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public virtual void DeleteSeries(int seriesId)
|
2011-02-18 06:49:23 +00:00
|
|
|
|
{
|
2011-05-15 23:35:45 +00:00
|
|
|
|
Logger.Warn("Deleting Series [{0}]", seriesId);
|
|
|
|
|
var series = _repository.Single<Series>(seriesId);
|
|
|
|
|
|
2011-06-04 01:56:53 +00:00
|
|
|
|
//Delete Files, Episodes, Seasons then the Series
|
2011-05-15 23:35:45 +00:00
|
|
|
|
//Can't use providers because episode provider needs series provider - Cyclic Dependency Injection, this will work
|
|
|
|
|
|
|
|
|
|
//Delete History Items for any episodes that belong to this series
|
|
|
|
|
Logger.Debug("Deleting History Items from DB for Series: {0}", series.SeriesId);
|
|
|
|
|
var episodes = series.Episodes.Select(e => e.EpisodeId).ToList();
|
|
|
|
|
episodes.ForEach(e => _repository.DeleteMany<History>(h => h.EpisodeId == e));
|
|
|
|
|
|
|
|
|
|
//Delete all episode files from the DB for episodes in this series
|
|
|
|
|
Logger.Debug("Deleting EpisodeFiles from DB for Series: {0}", series.SeriesId);
|
|
|
|
|
_repository.DeleteMany(series.EpisodeFiles);
|
|
|
|
|
|
|
|
|
|
//Delete all episodes for this series from the DB
|
|
|
|
|
Logger.Debug("Deleting Episodes from DB for Series: {0}", series.SeriesId);
|
|
|
|
|
_repository.DeleteMany(series.Episodes);
|
|
|
|
|
|
|
|
|
|
//Delete the Series
|
|
|
|
|
Logger.Debug("Deleting Series from DB {0}", series.Title);
|
2011-05-13 00:55:26 +00:00
|
|
|
|
_repository.Delete<Series>(seriesId);
|
2011-05-15 23:35:45 +00:00
|
|
|
|
|
|
|
|
|
Logger.Info("Successfully deleted Series [{0}]", seriesId);
|
2011-02-18 06:49:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 02:25:52 +00:00
|
|
|
|
public virtual bool SeriesPathExists(string cleanPath)
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
if (_repository.Exists<Series>(s => s.Path == cleanPath))
|
2011-03-09 07:40:48 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-04-27 02:47:29 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Cleans up the AirsTime Component from TheTVDB since it can be garbage that comes in.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name = "input">The TVDB AirsTime</param>
|
|
|
|
|
/// <returns>String that contains the AirTimes</returns>
|
|
|
|
|
private string CleanAirsTime(string inputTime)
|
|
|
|
|
{
|
|
|
|
|
Regex timeRegex = new Regex(@"^(?<time>\d+:?\d*)\W*(?<meridiem>am|pm)?", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
|
|
|
|
|
var match = timeRegex.Match(inputTime);
|
|
|
|
|
var time = match.Groups["time"].Value;
|
|
|
|
|
var meridiem = match.Groups["meridiem"].Value;
|
|
|
|
|
|
|
|
|
|
//Lets assume that a string that doesn't contain a Merideim is aired at night... So we'll add it
|
|
|
|
|
if (String.IsNullOrEmpty(meridiem))
|
|
|
|
|
meridiem = "PM";
|
|
|
|
|
|
|
|
|
|
if (String.IsNullOrEmpty(time))
|
|
|
|
|
return String.Empty;
|
|
|
|
|
|
2011-04-27 16:47:53 +00:00
|
|
|
|
var dateTime = DateTime.Parse(time + " " + meridiem.ToUpper());
|
2011-04-27 02:47:29 +00:00
|
|
|
|
return dateTime.ToString("hh:mm tt");
|
|
|
|
|
}
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|