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