2010-10-05 06:21:18 +00:00
|
|
|
|
using System;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
using System.Collections.Generic;
|
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 01:46:22 +00:00
|
|
|
|
|
2010-10-05 06:21:18 +00:00
|
|
|
|
public virtual int EpisodeId { get; set; }
|
2011-04-10 02:44:01 +00:00
|
|
|
|
|
2011-05-28 19:23:35 +00:00
|
|
|
|
public virtual int? TvDbEpisodeId { get; set; }
|
2011-04-23 20:33:24 +00:00
|
|
|
|
|
2010-10-21 01:49:23 +00:00
|
|
|
|
public virtual int SeriesId { get; set; }
|
2011-02-24 00:40:11 +00:00
|
|
|
|
public virtual int EpisodeFileId { get; set; }
|
2011-05-28 19:23:35 +00:00
|
|
|
|
public virtual int SeasonNumber { get; set; }
|
|
|
|
|
public virtual int EpisodeNumber { get; set; }
|
|
|
|
|
public virtual string Title { get; set; }
|
|
|
|
|
public virtual DateTime AirDate { get; set; }
|
2011-04-10 02:44:01 +00:00
|
|
|
|
|
2011-06-18 01:46:22 +00:00
|
|
|
|
|
2011-05-28 19:23:35 +00:00
|
|
|
|
public virtual string Overview { get; set; }
|
2011-04-10 02:44:01 +00:00
|
|
|
|
|
2011-05-28 19:23:35 +00:00
|
|
|
|
public virtual Boolean Ignored { get; set; }
|
2010-10-21 01:49:23 +00:00
|
|
|
|
|
2011-06-15 02:31:41 +00:00
|
|
|
|
[Ignore]
|
2011-05-27 03:54:28 +00:00
|
|
|
|
public Boolean IsDailyEpisode
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return EpisodeNumber == 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-01 06:36:34 +00:00
|
|
|
|
|
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-05-28 19:23:35 +00:00
|
|
|
|
public virtual DateTime? GrabDate { get; set; }
|
2011-05-22 16:53:06 +00:00
|
|
|
|
|
2011-06-18 01:46:22 +00:00
|
|
|
|
|
2011-06-15 02:31:41 +00:00
|
|
|
|
[Ignore]
|
2011-05-22 16:53:06 +00:00
|
|
|
|
public EpisodeStatusType Status
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (GrabDate != null && GrabDate.Value.AddDays(1) >= DateTime.Now)
|
|
|
|
|
{
|
|
|
|
|
return EpisodeStatusType.Downloading;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-02 01:16:17 +00:00
|
|
|
|
if (EpisodeFileId != 0) return EpisodeStatusType.Ready;
|
|
|
|
|
|
|
|
|
|
|
2011-06-04 01:56:53 +00:00
|
|
|
|
if (Ignored) return EpisodeStatusType.Ignored;
|
|
|
|
|
|
2011-05-22 17:29:10 +00:00
|
|
|
|
if (AirDate.Date.Year > 1900 && DateTime.Now.Date >= AirDate.Date)
|
2011-05-22 16:53:06 +00:00
|
|
|
|
{
|
|
|
|
|
return EpisodeStatusType.Missing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return EpisodeStatusType.NotAired;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-01 06:36:34 +00:00
|
|
|
|
|
2011-06-18 01:46:22 +00:00
|
|
|
|
|
2011-06-15 02:31:41 +00:00
|
|
|
|
[Ignore]
|
2011-04-21 01:26:13 +00:00
|
|
|
|
public virtual Series Series { get; set; }
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2011-06-18 01:46:22 +00:00
|
|
|
|
|
2011-06-15 02:31:41 +00:00
|
|
|
|
[Ignore]
|
2011-04-21 01:26:13 +00:00
|
|
|
|
public virtual EpisodeFile EpisodeFile { get; set; }
|
2011-01-29 06:10:22 +00:00
|
|
|
|
|
2011-06-18 01:46:22 +00:00
|
|
|
|
|
2011-06-15 02:31:41 +00:00
|
|
|
|
[Ignore]
|
2011-05-21 00:23:49 +00:00
|
|
|
|
public virtual IList<History> Histories { get; protected set; }
|
2011-04-22 20:48:05 +00:00
|
|
|
|
|
2011-05-26 05:44:59 +00:00
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
2011-05-27 02:12:28 +00:00
|
|
|
|
var seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
|
|
|
|
|
2011-05-27 03:54:28 +00:00
|
|
|
|
if (IsDailyEpisode)
|
2011-05-27 02:12:28 +00:00
|
|
|
|
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
|
|
|
|
}
|