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