2010-09-28 19:32:19 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2010-09-28 05:01:54 +00:00
|
|
|
using System.Text.RegularExpressions;
|
2010-10-05 06:21:18 +00:00
|
|
|
using NLog;
|
2010-09-28 05:01:54 +00:00
|
|
|
using NzbDrone.Core.Repository;
|
2010-10-05 06:21:18 +00:00
|
|
|
using NzbDrone.Core.Repository.Episode;
|
2010-10-01 00:09:22 +00:00
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2010-09-28 19:32:19 +00:00
|
|
|
using SubSonic.Repository;
|
2010-09-28 05:01:54 +00:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
{
|
2010-09-28 20:44:33 +00:00
|
|
|
public class EpisodeProvider : IEpisodeProvider
|
2010-09-28 05:01:54 +00:00
|
|
|
{
|
2010-09-28 19:32:19 +00:00
|
|
|
//TODO: Remove parsing of the series name, it should be done in series provider
|
2010-09-28 06:09:24 +00:00
|
|
|
private static readonly Regex ParseRegex = new Regex(@"(?<showName>.*)
|
2010-09-28 05:01:54 +00:00
|
|
|
(?:
|
|
|
|
s(?<seasonNumber>\d+)e(?<episodeNumber>\d+)-?e(?<episodeNumber2>\d+)
|
|
|
|
| s(?<seasonNumber>\d+)e(?<episodeNumber>\d+)
|
|
|
|
| (?<seasonNumber>\d+)x(?<episodeNumber>\d+)
|
|
|
|
| (?<airDate>\d{4}.\d{2}.\d{2})
|
|
|
|
)
|
|
|
|
(?:
|
|
|
|
(?<episodeName>.*?)
|
|
|
|
(?<release>
|
|
|
|
(?:hdtv|pdtv|xvid|ws|720p|x264|bdrip|dvdrip|dsr|proper)
|
|
|
|
.*)
|
|
|
|
| (?<episodeName>.*)
|
|
|
|
)", RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.IgnorePatternWhitespace);
|
|
|
|
|
2010-09-28 19:32:19 +00:00
|
|
|
|
|
|
|
private readonly IRepository _sonicRepo;
|
2010-10-05 06:21:18 +00:00
|
|
|
private readonly ISeriesProvider _series;
|
|
|
|
private readonly ISeasonProvider _seasons;
|
|
|
|
private readonly ITvDbProvider _tvDb;
|
|
|
|
private static readonly Logger Logger = NLog.LogManager.GetCurrentClassLogger();
|
2010-09-28 19:32:19 +00:00
|
|
|
|
2010-10-05 06:21:18 +00:00
|
|
|
|
|
|
|
public EpisodeProvider(IRepository sonicRepo, ISeriesProvider seriesProvider, ISeasonProvider seasonProvider, ITvDbProvider tvDbProvider)
|
2010-09-28 05:01:54 +00:00
|
|
|
{
|
2010-09-28 19:32:19 +00:00
|
|
|
_sonicRepo = sonicRepo;
|
2010-10-05 06:21:18 +00:00
|
|
|
_series = seriesProvider;
|
|
|
|
_tvDb = tvDbProvider;
|
|
|
|
_seasons = seasonProvider;
|
|
|
|
|
2010-09-28 19:32:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Episode GetEpisode(long id)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2010-10-05 06:21:18 +00:00
|
|
|
public Episode UpdateEpisode(Episode episode)
|
2010-09-28 19:32:19 +00:00
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2010-09-28 20:44:33 +00:00
|
|
|
public IList<Episode> GetEpisodesBySeason(long seasonId)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
public IList<Episode> GetEpisodeBySeries(long seriesId)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2010-09-28 19:32:19 +00:00
|
|
|
public String GetSabTitle(Episode episode)
|
|
|
|
{
|
2010-10-05 06:21:18 +00:00
|
|
|
var series = _series.GetSeries(episode.SeriesId);
|
2010-09-28 19:32:19 +00:00
|
|
|
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();
|
2010-09-28 05:01:54 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-09-28 19:32:19 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Comprehensive check on whether or not this episode is needed.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="episode">Episode that needs to be checked</param>
|
|
|
|
/// <returns></returns>
|
2010-09-28 20:44:33 +00:00
|
|
|
public bool IsNeeded(Episode episode)
|
2010-09-28 05:01:54 +00:00
|
|
|
{
|
2010-09-28 19:32:19 +00:00
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2010-10-05 06:21:18 +00:00
|
|
|
public void RefreshSeries(int seriesId)
|
|
|
|
{
|
|
|
|
Logger.Info("Starting episode info refresh for series:{0}", seriesId);
|
|
|
|
int successCount = 0;
|
|
|
|
int failCount = 0;
|
|
|
|
var targetSeries = _tvDb.GetSeries(seriesId, true);
|
|
|
|
foreach (var episode in targetSeries.Episodes)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
_seasons.EnsureSeason(seriesId, episode.SeasonId, episode.SeasonNumber);
|
|
|
|
var newEpisode = new EpisodeInfo()
|
|
|
|
{
|
|
|
|
AirDate = episode.FirstAired,
|
|
|
|
EpisodeId = episode.Id,
|
|
|
|
EpisodeNumber = episode.EpisodeNumber,
|
|
|
|
Language = episode.Language.Abbriviation,
|
|
|
|
Overview = episode.Overview,
|
|
|
|
SeasonId = episode.SeasonId,
|
|
|
|
SeasonNumber = episode.SeasonNumber,
|
|
|
|
SeriesId = episode.SeriesId,
|
|
|
|
Title = episode.EpisodeName
|
|
|
|
};
|
|
|
|
|
|
|
|
_sonicRepo.Add<EpisodeInfo>(newEpisode);
|
|
|
|
successCount++;
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
Logger.FatalException(String.Format("An error has occured while updating episode info for series {0}", seriesId), e);
|
|
|
|
failCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger.Info("Finished episode refresh for series:{0}. Success:{1} - Fail:{2} ", seriesId, successCount, failCount);
|
|
|
|
}
|
|
|
|
|
2010-09-28 19:32:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Parses a post title into list of episode objects
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="title">Title of the report</param>
|
|
|
|
/// <returns>List of episodes relating to the post</returns>
|
2010-10-05 06:21:18 +00:00
|
|
|
public static List<RemoteEpisode> Parse(string title)
|
2010-09-28 19:32:19 +00:00
|
|
|
{
|
|
|
|
var match = ParseRegex.Match(title);
|
|
|
|
|
|
|
|
if (!match.Success)
|
|
|
|
throw new ArgumentException(String.Format("Title doesn't match any know patterns. [{0}]", title));
|
2010-09-28 06:09:24 +00:00
|
|
|
|
2010-10-05 06:21:18 +00:00
|
|
|
var result = new List<RemoteEpisode>();
|
2010-09-28 19:32:19 +00:00
|
|
|
|
2010-10-05 06:21:18 +00:00
|
|
|
result.Add(new RemoteEpisode { EpisodeNumber = Convert.ToInt32(match.Groups["episodeNumber"].Value) });
|
2010-09-28 19:32:19 +00:00
|
|
|
|
|
|
|
if (match.Groups["episodeNumber2"].Success)
|
|
|
|
{
|
2010-10-05 06:21:18 +00:00
|
|
|
result.Add(new RemoteEpisode { EpisodeNumber = Convert.ToInt32(match.Groups["episodeNumber2"].Value) });
|
2010-09-28 19:32:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach (var ep in result)
|
|
|
|
{
|
2010-10-01 00:09:22 +00:00
|
|
|
ep.SeasonNumber = Convert.ToInt32(match.Groups["seasonNumber"].Value);
|
2010-09-28 19:32:19 +00:00
|
|
|
ep.Proper = title.Contains("PROPER");
|
2010-10-01 00:09:22 +00:00
|
|
|
ep.Quality = QualityTypes.Unknown;
|
2010-09-28 19:32:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2010-09-28 05:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|