1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Core/Repository/Episode.cs

74 lines
2.2 KiB
C#
Raw Normal View History

2010-10-05 08:21:18 +02:00
using System;
using System.Collections.Generic;
using NzbDrone.Core.Model;
2010-10-05 08:21:18 +02:00
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
2010-10-05 08:21:18 +02:00
{
public class Episode
2010-10-05 08:21:18 +02:00
{
[SubSonicPrimaryKey]
2010-10-05 08:21:18 +02:00
public virtual int EpisodeId { get; set; }
2011-04-10 04:44:01 +02:00
public int? TvDbEpisodeId { get; set; }
public virtual int SeriesId { get; set; }
public virtual int EpisodeFileId { get; set; }
public virtual int SeasonId { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
2010-10-05 08:21:18 +02:00
public string Title { get; set; }
public DateTime AirDate { get; set; }
2011-04-10 04:44:01 +02:00
[SubSonicLongString]
2010-10-05 08:21:18 +02:00
public string Overview { get; set; }
2011-04-10 04:44:01 +02:00
public Boolean Ignored { get; set; }
/// <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>
public DateTime? GrabDate { get; set; }
[SubSonicIgnore]
public EpisodeStatusType Status
{
get
{
if (Ignored || (Season != null && !Season.Monitored)) return EpisodeStatusType.Ignored;
if (GrabDate != null && GrabDate.Value.AddDays(1) >= DateTime.Now)
{
return EpisodeStatusType.Downloading;
}
if (EpisodeFileId != 0) return EpisodeStatusType.Ready;
if (DateTime.Now.Date >= AirDate.Date)
{
return EpisodeStatusType.Missing;
}
return EpisodeStatusType.NotAired;
}
}
2010-10-05 08:21:18 +02:00
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Season Season { get; set; }
2010-10-12 04:49:27 +02:00
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Series Series { get; set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual EpisodeFile EpisodeFile { get; set; }
[SubSonicToManyRelation]
public virtual IList<History> Histories { get; protected set; }
2011-04-22 22:48:05 +02:00
2010-10-05 08:21:18 +02:00
}
2011-04-10 04:44:01 +02:00
}