You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
12 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using NzbDrone.Core.Model;
|
||
|
using NzbDrone.Core.Tv;
|
||
|
|
||
|
namespace NzbDrone.Core.Parser.Model
|
||
|
{
|
||
|
public class ParsedEpisodeInfo
|
||
|
{
|
||
|
public string SeriesTitle { get; set; }
|
||
|
public string OriginalString { get; set; }
|
||
|
public QualityModel Quality { get; set; }
|
||
|
public int SeasonNumber { get; set; }
|
||
|
public List<int> EpisodeNumbers { get; set; }
|
||
|
public DateTime? AirDate { get; set; }
|
||
|
public Language Language { get; set; }
|
||
|
|
||
|
public bool FullSeason { get; set; }
|
||
|
public bool SceneSource { 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);
|
||
|
}
|
||
|
}
|
||
|
}
|