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