2010-10-05 06:21:18 +00:00
|
|
|
|
using System;
|
2011-02-18 16:36:50 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-06-15 02:31:41 +00:00
|
|
|
|
using PetaPoco;
|
2011-05-30 07:22:20 +00:00
|
|
|
|
|
2010-10-21 01:49:23 +00:00
|
|
|
|
namespace NzbDrone.Core.Repository
|
2010-10-05 06:21:18 +00:00
|
|
|
|
{
|
2011-06-16 06:33:01 +00:00
|
|
|
|
[TableName("Episodes")]
|
|
|
|
|
[PrimaryKey("EpisodeId", autoIncrement = true)]
|
2011-06-04 01:56:53 +00:00
|
|
|
|
public class Episode
|
2010-10-05 06:21:18 +00:00
|
|
|
|
{
|
2011-06-18 04:39:02 +00:00
|
|
|
|
public int EpisodeId { get; set; }
|
2011-06-18 01:46:22 +00:00
|
|
|
|
|
2011-06-18 04:39:02 +00:00
|
|
|
|
public int? TvDbEpisodeId { get; set; }
|
2011-04-10 02:44:01 +00:00
|
|
|
|
|
2011-06-18 04:39:02 +00: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 06:56:17 +00:00
|
|
|
|
public DateTime? AirDate { get; set; }
|
2011-04-23 20:33:24 +00:00
|
|
|
|
|
2011-06-18 04:39:02 +00:00
|
|
|
|
public string Overview { get; set; }
|
2011-06-18 01:46:22 +00:00
|
|
|
|
|
2011-06-18 04:39:02 +00:00
|
|
|
|
public Boolean Ignored { get; set; }
|
2010-10-21 01:49:23 +00:00
|
|
|
|
|
2011-10-12 03:44:19 +00:00
|
|
|
|
public PostDownloadStatusType PostDownloadStatus { get; set; }
|
|
|
|
|
|
2011-05-22 16:53:06 +00: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 04:39:02 +00:00
|
|
|
|
public DateTime? GrabDate { get; set; }
|
2011-05-22 16:53:06 +00:00
|
|
|
|
|
2011-06-20 03:08:09 +00:00
|
|
|
|
[ResultColumn]
|
2011-05-22 16:53:06 +00:00
|
|
|
|
public EpisodeStatusType Status
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2011-07-10 20:07:42 +00:00
|
|
|
|
if (EpisodeFileId != 0) return EpisodeStatusType.Ready;
|
|
|
|
|
|
2011-10-12 03:44:19 +00:00
|
|
|
|
if (GrabDate != null)
|
2011-05-22 16:53:06 +00:00
|
|
|
|
{
|
2011-10-12 03:44:19 +00: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 16:53:06 +00:00
|
|
|
|
}
|
2011-06-04 01:56:53 +00:00
|
|
|
|
|
2011-10-12 03:44:19 +00:00
|
|
|
|
if (GrabDate != null && GrabDate.Value.AddDays(1) >= DateTime.Now)
|
|
|
|
|
return EpisodeStatusType.Downloading;
|
|
|
|
|
|
2011-06-23 06:56:17 +00:00
|
|
|
|
if (AirDate != null && AirDate.Value.Date < DateTime.Now)
|
2011-05-22 16:53:06 +00:00
|
|
|
|
return EpisodeStatusType.Missing;
|
|
|
|
|
|
|
|
|
|
return EpisodeStatusType.NotAired;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-01 06:36:34 +00:00
|
|
|
|
|
2011-09-04 07:45:58 +00:00
|
|
|
|
[ResultColumn]
|
2011-06-18 04:39:02 +00:00
|
|
|
|
public Series Series { get; set; }
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2011-06-20 00:23:23 +00:00
|
|
|
|
[ResultColumn]
|
2011-06-18 04:39:02 +00:00
|
|
|
|
public EpisodeFile EpisodeFile { get; set; }
|
2011-01-29 06:10:22 +00:00
|
|
|
|
|
2011-05-26 05:44:59 +00:00
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
2011-06-18 04:39:02 +00:00
|
|
|
|
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
2011-05-27 02:12:28 +00:00
|
|
|
|
|
2011-06-18 06:39:14 +00:00
|
|
|
|
//if (IsDailyEpisode)
|
|
|
|
|
// return string.Format("{0} - {1}", seriesTitle, AirDate.Date);
|
2011-05-26 05:44:59 +00:00
|
|
|
|
|
2011-05-28 19:23:35 +00:00
|
|
|
|
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
|
2011-05-26 05:44:59 +00:00
|
|
|
|
}
|
2010-10-05 06:21:18 +00:00
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|