2013-04-15 01:41:39 +00:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Parser.Model
|
|
|
|
{
|
|
|
|
public class ParsedEpisodeInfo
|
|
|
|
{
|
|
|
|
public string SeriesTitle { get; set; }
|
|
|
|
public QualityModel Quality { get; set; }
|
|
|
|
public int SeasonNumber { get; set; }
|
2013-04-28 19:46:13 +00:00
|
|
|
public int[] EpisodeNumbers { get; set; }
|
2013-04-15 01:41:39 +00:00
|
|
|
public DateTime? AirDate { get; set; }
|
|
|
|
public Language Language { get; set; }
|
|
|
|
|
|
|
|
public bool FullSeason { get; set; }
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
string episodeString = "[Unknown Episode]";
|
|
|
|
|
|
|
|
if (AirDate != null && EpisodeNumbers == null)
|
|
|
|
{
|
|
|
|
episodeString = string.Format("{0}", AirDate.Value.ToString("yyyy-MM-dd"));
|
|
|
|
}
|
|
|
|
else if (FullSeason)
|
|
|
|
{
|
|
|
|
episodeString = string.Format("Season {0:00}", SeasonNumber);
|
|
|
|
}
|
|
|
|
else if (EpisodeNumbers != null && EpisodeNumbers.Any())
|
|
|
|
{
|
|
|
|
episodeString = string.Format("S{0:00}E{1}", SeasonNumber, String.Join("-", EpisodeNumbers.Select(c => c.ToString("00"))));
|
|
|
|
}
|
|
|
|
|
|
|
|
return string.Format("{0} - {1} {2}", SeriesTitle, episodeString, Quality);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|