using System; using System.Collections.Generic; using System.Linq; using NLog; using NzbDrone.Core.Model; using NzbDrone.Core.Repository; using SubSonic.Repository; namespace NzbDrone.Core.Providers { public class EpisodeProvider { //TODO: Remove parsing of the series name, it should be done in series provider private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); private readonly HistoryProvider _history; private readonly QualityProvider _quality; private readonly SeasonProvider _seasons; private readonly SeriesProvider _series; private readonly IRepository _sonicRepo; private readonly TvDbProvider _tvDb; public EpisodeProvider(IRepository sonicRepo, SeriesProvider seriesProvider, SeasonProvider seasonProvider, TvDbProvider tvDbProvider, HistoryProvider history, QualityProvider quality) { _sonicRepo = sonicRepo; _series = seriesProvider; _tvDb = tvDbProvider; _seasons = seasonProvider; _history = history; _quality = quality; } public EpisodeProvider() { } public virtual Episode GetEpisode(long id) { return _sonicRepo.Single(id); } public virtual Episode GetEpisode(int seriesId, int seasonNumber, int episodeNumber) { return _sonicRepo.Single( c => c.SeriesId == seriesId && c.SeasonNumber == seasonNumber && c.EpisodeNumber == episodeNumber); } public virtual IList GetEpisodeBySeries(long seriesId) { return _sonicRepo.Find(e => e.SeriesId == seriesId); } public virtual IList GetEpisodeBySeason(long seasonId) { return _sonicRepo.Find(e => e.SeasonId == seasonId); } public virtual String GetSabTitle(Episode episode) { var series = _series.GetSeries(episode.SeriesId); if (series == null) throw new ArgumentException("Unknown series. ID: " + episode.SeriesId); //TODO: This method should return a standard title for the sab episode. throw new NotImplementedException(); } /// /// Comprehensive check on whether or not this episode is needed. /// /// Episode that needs to be checked /// public virtual bool IsNeeded(EpisodeParseResult parsedReport) { foreach (var episode in parsedReport.Episodes) { var episodeInfo = GetEpisode(parsedReport.SeriesId, parsedReport.SeasonNumber, episode); if (episodeInfo == null) { //Todo: How do we want to handle this really? Episode could be released before information is on TheTvDB //(Parks and Rec did this a lot in the first season, from experience) //Keivan: Should automatically add the episode to db with minimal information. then update the description/title when avilable. throw new NotImplementedException("Episode was not found in the database"); } var file = episodeInfo.EpisodeFile; if (file != null) { //If not null we need to see if this episode has the quality as the download (or if it is better) if (file.Quality == parsedReport.Quality && file.Proper) continue; //There will never be a time when the episode quality is less than what we have and we want it... ever.... I think. if (file.Quality > parsedReport.Quality) continue; //Now we need to handle upgrades and actually pay attention to the Cutoff Value if (file.Quality < parsedReport.Quality) { var quality = _quality.Find(episodeInfo.Series.QualityProfileId); if (quality.Cutoff <= file.Quality && file.Proper) continue; } } //IsInHistory? (NZBDrone) if (_history.Exists(episodeInfo.EpisodeId, parsedReport.Quality, parsedReport.Proper)) { Logger.Debug("Episode in history: {0}", episode.ToString()); continue; } return true; //If we get to this point and the file has not yet been rejected then accept it } return false; } public virtual void RefreshEpisodeInfo(int seriesId) { Logger.Info("Starting episode info refresh for series:{0}", seriesId); int successCount = 0; int failCount = 0; var targetSeries = _tvDb.GetSeries(seriesId, true); var updateList = new List(); var newList = new List(); Logger.Debug("Updating season info for series:{0}", targetSeries.SeriesName); targetSeries.Episodes.Select(e => new {e.SeasonId, e.SeasonNumber}) .Distinct().ToList() .ForEach(s => _seasons.EnsureSeason(seriesId, s.SeasonId, s.SeasonNumber)); foreach (var episode in targetSeries.Episodes) { try { //DateTime throws an error in SQLServer per message below: //SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. //So lets hack it so it works for SQLServer (as well as SQLite), perhaps we can find a better solution //Todo: Fix this hack if (episode.FirstAired < new DateTime(1753, 1, 1)) episode.FirstAired = new DateTime(1753, 1, 1); Logger.Trace("Updating info for series:{0} - episode:{1}", targetSeries.SeriesName, episode.EpisodeNumber); var newEpisode = new Episode { AirDate = episode.FirstAired, EpisodeId = episode.Id, EpisodeNumber = episode.EpisodeNumber, Language = episode.Language.Abbriviation, Overview = episode.Overview, SeasonId = episode.SeasonId, SeasonNumber = episode.SeasonNumber, SeriesId = seriesId, Title = episode.EpisodeName }; if (_sonicRepo.Exists(e => e.EpisodeId == newEpisode.EpisodeId)) { updateList.Add(newEpisode); } else { newList.Add(newEpisode); } successCount++; } catch (Exception e) { Logger.FatalException( String.Format("An error has occurred while updating episode info for series {0}", seriesId), e); failCount++; } } _sonicRepo.AddMany(newList); _sonicRepo.UpdateMany(updateList); Logger.Debug("Finished episode refresh for series:{0}. Successful:{1} - Failed:{2} ", targetSeries.SeriesName, successCount, failCount); } public virtual void RefreshEpisodeInfo(Season season) { Logger.Info("Starting episode info refresh for season {0} of series:{1}", season.SeasonNumber, season.SeriesId); int successCount = 0; int failCount = 0; var targetSeries = _tvDb.GetSeries(season.SeriesId, true); var updateList = new List(); var newList = new List(); foreach (var episode in targetSeries.Episodes.Where(e => e.SeasonId == season.SeasonId)) { try { //DateTime throws an error in SQLServer per message below: //SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. //So lets hack it so it works for SQLServer (as well as SQLite), perhaps we can find a better solution //Todo: Fix this hack if (episode.FirstAired < new DateTime(1753, 1, 1)) episode.FirstAired = new DateTime(1753, 1, 1); Logger.Trace("Updating info for series:{0} - episode:{1}", targetSeries.SeriesName, episode.EpisodeNumber); var newEpisode = new Episode { AirDate = episode.FirstAired, EpisodeId = episode.Id, EpisodeNumber = episode.EpisodeNumber, Language = episode.Language.Abbriviation, Overview = episode.Overview, SeasonId = episode.SeasonId, SeasonNumber = episode.SeasonNumber, SeriesId = season.SeriesId, Title = episode.EpisodeName }; if (_sonicRepo.Exists(e => e.EpisodeId == newEpisode.EpisodeId)) { updateList.Add(newEpisode); } else { newList.Add(newEpisode); } successCount++; } catch (Exception e) { Logger.FatalException( String.Format("An error has occurred while updating episode info for season {0} of series {1}", season.SeasonNumber, season.SeriesId), e); failCount++; } } _sonicRepo.AddMany(newList); _sonicRepo.UpdateMany(updateList); Logger.Debug("Finished episode refresh for series:{0}. Successful:{1} - Failed:{2} ", targetSeries.SeriesName, successCount, failCount); } public virtual void DeleteEpisode(int episodeId) { _sonicRepo.Delete(episodeId); } public virtual void UpdateEpisode(Episode episode) { _sonicRepo.Update(episode); } } }