Lidarr/NzbDrone.Core/Tv/Episode.cs

90 lines
2.9 KiB
C#
Raw Normal View History

2013-03-06 20:30:53 +00:00
using System;
using NzbDrone.Core.Datastore;
2013-03-01 07:03:41 +00:00
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Model;
2013-03-24 04:16:00 +00:00
namespace NzbDrone.Core.Tv
2010-10-05 06:21:18 +00:00
{
public class Episode : ModelBase
2010-10-05 06:21:18 +00:00
{
2013-02-25 00:00:17 +00:00
public int TvDbEpisodeId { get; set; }
public int SeriesId { get; set; }
2013-04-20 00:46:09 +00:00
public int EpisodeFileId { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public string Title { get; set; }
2011-06-23 06:56:17 +00:00
public DateTime? AirDate { get; set; }
public string Overview { get; set; }
public Boolean Ignored { get; set; }
public PostDownloadStatusType PostDownloadStatus { get; set; }
public Nullable<Int32> AbsoluteEpisodeNumber { get; set; }
2012-10-17 05:00:28 +00:00
public int SceneSeasonNumber { get; set; }
public int SceneEpisodeNumber { get; set; }
public DateTime? GrabDate { get; set; }
public bool HasFile
{
get { return EpisodeFile != null; }
}
2013-04-20 00:46:09 +00:00
public EpisodeStatuses Status
{
get
{
if (HasFile) return EpisodeStatuses.Ready;
if (GrabDate != null)
{
if (PostDownloadStatus == PostDownloadStatusType.Unpacking)
return EpisodeStatuses.Unpacking;
if (PostDownloadStatus == PostDownloadStatusType.Failed)
return EpisodeStatuses.Failed;
if (GrabDate.Value.AddDays(1) >= DateTime.Now)
return EpisodeStatuses.Downloading;
}
if (GrabDate != null && GrabDate.Value.AddDays(1) >= DateTime.Now)
return EpisodeStatuses.Downloading;
if (AirDate != null && AirDate.Value.Date == DateTime.Today)
return EpisodeStatuses.AirsToday;
2011-06-23 06:56:17 +00:00
if (AirDate != null && AirDate.Value.Date < DateTime.Now)
return EpisodeStatuses.Missing;
return EpisodeStatuses.NotAired;
}
}
2013-04-20 00:46:09 +00:00
public DateTime? EndTime
{
get
{
if (!AirDate.HasValue) return null;
if (Series == null) return null;
return AirDate.Value.AddMinutes(Series.Runtime);
}
}
2013-05-02 05:50:34 +00:00
public String SeriesTitle { get; private set; }
public Series Series { get; set; }
public EpisodeFile EpisodeFile { get; set; }
public override string ToString()
{
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
2013-03-24 04:16:00 +00:00
if (Series != null && Series.SeriesType == SeriesTypes.Daily && AirDate.HasValue)
return string.Format("{0} - {1:yyyy-MM-dd}", seriesTitle, AirDate.Value);
2011-05-28 19:23:35 +00:00
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
}
2010-10-05 06:21:18 +00:00
}
2011-04-10 02:44:01 +00:00
}