2010-10-05 09:21:18 +03:00
|
|
|
using System;
|
2013-02-13 04:25:32 +03:00
|
|
|
using NzbDrone.Core.Datastore;
|
2011-02-18 18:36:50 +02:00
|
|
|
using NzbDrone.Core.Model;
|
2011-06-15 05:31:41 +03:00
|
|
|
using PetaPoco;
|
2011-05-30 10:22:20 +03:00
|
|
|
|
2010-10-21 04:49:23 +03:00
|
|
|
namespace NzbDrone.Core.Repository
|
2010-10-05 09:21:18 +03:00
|
|
|
{
|
2011-06-16 09:33:01 +03:00
|
|
|
[TableName("Episodes")]
|
|
|
|
[PrimaryKey("EpisodeId", autoIncrement = true)]
|
2013-02-17 07:33:56 +03:00
|
|
|
public class Episode
|
2010-10-05 09:21:18 +03:00
|
|
|
{
|
2011-06-18 07:39:02 +03:00
|
|
|
public int EpisodeId { get; set; }
|
2011-06-18 04:46:22 +03:00
|
|
|
|
2011-06-18 07:39:02 +03:00
|
|
|
public int? TvDbEpisodeId { get; set; }
|
2011-04-10 05:44:01 +03:00
|
|
|
|
2011-06-18 07:39:02 +03:00
|
|
|
public int SeriesId { get; set; }
|
|
|
|
public int EpisodeFileId { get; set; }
|
|
|
|
public int SeasonNumber { get; set; }
|
|
|
|
public int EpisodeNumber { get; set; }
|
|
|
|
public string Title { get; set; }
|
2011-06-23 09:56:17 +03:00
|
|
|
public DateTime? AirDate { get; set; }
|
2011-06-18 07:39:02 +03:00
|
|
|
public string Overview { get; set; }
|
|
|
|
public Boolean Ignored { get; set; }
|
2011-10-12 06:44:19 +03:00
|
|
|
public PostDownloadStatusType PostDownloadStatus { get; set; }
|
2012-10-13 10:07:02 +03:00
|
|
|
public int AbsoluteEpisodeNumber { get; set; }
|
2012-10-17 08:00:28 +03:00
|
|
|
public int SceneAbsoluteEpisodeNumber { get; set; }
|
|
|
|
public int SceneSeasonNumber { get; set; }
|
|
|
|
public int SceneEpisodeNumber { get; set; }
|
2011-10-12 06:44:19 +03:00
|
|
|
|
2011-05-22 19:53:06 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the grab date.
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
|
|
|
/// Used to specify when the episode was grapped.
|
|
|
|
/// this filed is used by status as an expirable "Grabbed" status.
|
|
|
|
/// </remarks>
|
2011-06-18 07:39:02 +03:00
|
|
|
public DateTime? GrabDate { get; set; }
|
2011-05-22 19:53:06 +03:00
|
|
|
|
2011-06-20 06:08:09 +03:00
|
|
|
[ResultColumn]
|
2011-05-22 19:53:06 +03:00
|
|
|
public EpisodeStatusType Status
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2011-07-10 23:07:42 +03:00
|
|
|
if (EpisodeFileId != 0) return EpisodeStatusType.Ready;
|
|
|
|
|
2011-10-12 06:44:19 +03:00
|
|
|
if (GrabDate != null)
|
2011-05-22 19:53:06 +03:00
|
|
|
{
|
2011-10-12 06:44:19 +03:00
|
|
|
if (PostDownloadStatus == PostDownloadStatusType.Unpacking)
|
|
|
|
return EpisodeStatusType.Unpacking;
|
|
|
|
|
|
|
|
if (PostDownloadStatus == PostDownloadStatusType.Failed)
|
|
|
|
return EpisodeStatusType.Failed;
|
|
|
|
|
|
|
|
if (GrabDate.Value.AddDays(1) >= DateTime.Now)
|
|
|
|
return EpisodeStatusType.Downloading;
|
2011-05-22 19:53:06 +03:00
|
|
|
}
|
2011-06-04 04:56:53 +03:00
|
|
|
|
2011-10-12 06:44:19 +03:00
|
|
|
if (GrabDate != null && GrabDate.Value.AddDays(1) >= DateTime.Now)
|
|
|
|
return EpisodeStatusType.Downloading;
|
|
|
|
|
2012-03-03 23:11:26 +03:00
|
|
|
if (AirDate != null && AirDate.Value.Date == DateTime.Today)
|
|
|
|
return EpisodeStatusType.AirsToday;
|
|
|
|
|
2011-06-23 09:56:17 +03:00
|
|
|
if (AirDate != null && AirDate.Value.Date < DateTime.Now)
|
2011-05-22 19:53:06 +03:00
|
|
|
return EpisodeStatusType.Missing;
|
|
|
|
|
|
|
|
return EpisodeStatusType.NotAired;
|
|
|
|
}
|
|
|
|
}
|
2011-04-01 09:36:34 +03:00
|
|
|
|
2011-09-04 10:45:58 +03:00
|
|
|
[ResultColumn]
|
2011-06-18 07:39:02 +03:00
|
|
|
public Series Series { get; set; }
|
2010-10-24 10:46:58 +03:00
|
|
|
|
2011-06-20 03:23:23 +03:00
|
|
|
[ResultColumn]
|
2011-06-18 07:39:02 +03:00
|
|
|
public EpisodeFile EpisodeFile { get; set; }
|
2011-01-29 08:10:22 +02:00
|
|
|
|
2011-05-26 08:44:59 +03:00
|
|
|
public override string ToString()
|
|
|
|
{
|
2011-06-18 07:39:02 +03:00
|
|
|
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
2011-05-27 05:12:28 +03:00
|
|
|
|
2013-01-17 10:29:43 +03:00
|
|
|
if (Series != null && Series.IsDaily && AirDate.HasValue)
|
|
|
|
return string.Format("{0} - {1:yyyy-MM-dd}", seriesTitle, AirDate.Value);
|
2011-05-26 08:44:59 +03:00
|
|
|
|
2011-05-28 22:23:35 +03:00
|
|
|
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
|
2011-05-26 08:44:59 +03:00
|
|
|
}
|
2010-10-05 09:21:18 +03:00
|
|
|
}
|
2011-04-10 05:44:01 +03:00
|
|
|
}
|