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