2013-03-06 12:30:53 -08:00
|
|
|
using System;
|
2013-02-19 18:05:15 -08:00
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-28 23:03:41 -08:00
|
|
|
using NzbDrone.Core.MediaFiles;
|
2011-02-18 08:36:50 -08:00
|
|
|
using NzbDrone.Core.Model;
|
2013-03-23 21:16:00 -07:00
|
|
|
|
2011-05-30 00:22:20 -07:00
|
|
|
|
2013-02-18 22:01:03 -08:00
|
|
|
namespace NzbDrone.Core.Tv
|
2010-10-04 23:21:18 -07:00
|
|
|
{
|
2013-02-19 18:05:15 -08:00
|
|
|
public class Episode : ModelBase
|
2010-10-04 23:21:18 -07:00
|
|
|
{
|
2013-02-24 16:00:17 -08:00
|
|
|
public int TvDbEpisodeId { get; set; }
|
2011-06-17 21:39:02 -07:00
|
|
|
public int SeriesId { get; set; }
|
2013-04-19 17:46:09 -07:00
|
|
|
public int EpisodeFileId { get; set; }
|
2011-06-17 21:39:02 -07:00
|
|
|
public int SeasonNumber { get; set; }
|
|
|
|
public int EpisodeNumber { get; set; }
|
|
|
|
public string Title { get; set; }
|
2011-06-22 23:56:17 -07:00
|
|
|
public DateTime? AirDate { get; set; }
|
2013-02-27 23:33:00 -08:00
|
|
|
|
2011-06-17 21:39:02 -07:00
|
|
|
public string Overview { get; set; }
|
|
|
|
public Boolean Ignored { get; set; }
|
2011-10-11 20:44:19 -07:00
|
|
|
public PostDownloadStatusType PostDownloadStatus { get; set; }
|
2013-03-02 11:32:55 -08:00
|
|
|
public Nullable<Int32> AbsoluteEpisodeNumber { get; set; }
|
2012-10-16 22:00:28 -07:00
|
|
|
public int SceneSeasonNumber { get; set; }
|
|
|
|
public int SceneEpisodeNumber { get; set; }
|
2011-10-11 20:44:19 -07:00
|
|
|
|
2013-02-19 23:45:52 -08:00
|
|
|
//Todo: This should be UTC
|
2011-06-17 21:39:02 -07:00
|
|
|
public DateTime? GrabDate { get; set; }
|
2011-05-22 09:53:06 -07:00
|
|
|
|
2013-02-19 18:05:15 -08:00
|
|
|
public bool HasFile
|
|
|
|
{
|
|
|
|
get { return EpisodeFile != null; }
|
|
|
|
}
|
2013-04-19 17:46:09 -07:00
|
|
|
|
2013-04-14 18:41:39 -07:00
|
|
|
public EpisodeStatuses Status
|
2011-05-22 09:53:06 -07:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2013-04-14 18:41:39 -07:00
|
|
|
if (HasFile) return EpisodeStatuses.Ready;
|
2011-07-10 13:07:42 -07:00
|
|
|
|
2011-10-11 20:44:19 -07:00
|
|
|
if (GrabDate != null)
|
2011-05-22 09:53:06 -07:00
|
|
|
{
|
2011-10-11 20:44:19 -07:00
|
|
|
if (PostDownloadStatus == PostDownloadStatusType.Unpacking)
|
2013-04-14 18:41:39 -07:00
|
|
|
return EpisodeStatuses.Unpacking;
|
2011-10-11 20:44:19 -07:00
|
|
|
|
|
|
|
if (PostDownloadStatus == PostDownloadStatusType.Failed)
|
2013-04-14 18:41:39 -07:00
|
|
|
return EpisodeStatuses.Failed;
|
2011-10-11 20:44:19 -07:00
|
|
|
|
|
|
|
if (GrabDate.Value.AddDays(1) >= DateTime.Now)
|
2013-04-14 18:41:39 -07:00
|
|
|
return EpisodeStatuses.Downloading;
|
2011-05-22 09:53:06 -07:00
|
|
|
}
|
2011-06-03 18:56:53 -07:00
|
|
|
|
2011-10-11 20:44:19 -07:00
|
|
|
if (GrabDate != null && GrabDate.Value.AddDays(1) >= DateTime.Now)
|
2013-04-14 18:41:39 -07:00
|
|
|
return EpisodeStatuses.Downloading;
|
2011-10-11 20:44:19 -07:00
|
|
|
|
2012-03-03 12:11:26 -08:00
|
|
|
if (AirDate != null && AirDate.Value.Date == DateTime.Today)
|
2013-04-14 18:41:39 -07:00
|
|
|
return EpisodeStatuses.AirsToday;
|
2012-03-03 12:11:26 -08:00
|
|
|
|
2011-06-22 23:56:17 -07:00
|
|
|
if (AirDate != null && AirDate.Value.Date < DateTime.Now)
|
2013-04-14 18:41:39 -07:00
|
|
|
return EpisodeStatuses.Missing;
|
2011-05-22 09:53:06 -07:00
|
|
|
|
2013-04-14 18:41:39 -07:00
|
|
|
return EpisodeStatuses.NotAired;
|
2011-05-22 09:53:06 -07:00
|
|
|
}
|
|
|
|
}
|
2011-03-31 23:36:34 -07:00
|
|
|
|
2013-04-19 17:46:09 -07:00
|
|
|
public DateTime? EndTime
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (!AirDate.HasValue) return null;
|
|
|
|
if (Series == null) return null;
|
|
|
|
|
|
|
|
return AirDate.Value.AddMinutes(Series.Runtime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-17 21:39:02 -07:00
|
|
|
public Series Series { get; set; }
|
2010-10-24 00:46:58 -07:00
|
|
|
|
2011-06-17 21:39:02 -07:00
|
|
|
public EpisodeFile EpisodeFile { get; set; }
|
2011-01-28 22:10:22 -08:00
|
|
|
|
2011-05-25 22:44:59 -07:00
|
|
|
public override string ToString()
|
|
|
|
{
|
2011-06-17 21:39:02 -07:00
|
|
|
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
2011-05-26 19:12:28 -07:00
|
|
|
|
2013-03-23 21:16:00 -07:00
|
|
|
if (Series != null && Series.SeriesType == SeriesTypes.Daily && AirDate.HasValue)
|
2013-01-16 23:29:43 -08:00
|
|
|
return string.Format("{0} - {1:yyyy-MM-dd}", seriesTitle, AirDate.Value);
|
2011-05-25 22:44:59 -07:00
|
|
|
|
2011-05-28 12:23:35 -07:00
|
|
|
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
|
2011-05-25 22:44:59 -07:00
|
|
|
}
|
2010-10-04 23:21:18 -07:00
|
|
|
}
|
2011-04-09 19:44:01 -07:00
|
|
|
}
|