Sonarr/NzbDrone.Core/Repository/Episode.cs

92 lines
2.7 KiB
C#
Raw Normal View History

2010-10-05 06:21:18 +00:00
using System;
using System.Collections.Generic;
using NzbDrone.Core.Model;
2010-10-05 06:21:18 +00:00
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
2010-10-05 06:21:18 +00:00
{
public class Episode
2010-10-05 06:21:18 +00:00
{
[SubSonicPrimaryKey]
2010-10-05 06:21:18 +00:00
public virtual int EpisodeId { get; set; }
2011-04-10 02:44:01 +00: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 06:21:18 +00:00
public string Title { get; set; }
public DateTime AirDate { get; set; }
2011-04-10 02:44:01 +00:00
[SubSonicLongString]
2010-10-05 06:21:18 +00:00
public string Overview { get; set; }
2011-04-10 02:44:01 +00:00
public Boolean Ignored { get; set; }
2011-05-27 03:54:28 +00:00
[SubSonicIgnore]
public Boolean IsDailyEpisode
{
get
{
return EpisodeNumber == 0;
}
}
/// <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;
2011-05-22 17:29:10 +00:00
if (AirDate.Date.Year > 1900 && DateTime.Now.Date >= AirDate.Date)
{
return EpisodeStatusType.Missing;
}
return EpisodeStatusType.NotAired;
}
}
2010-10-05 06:21:18 +00:00
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Season Season { get; set; }
2010-10-12 02:49:27 +00: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 20:48:05 +00:00
public override string ToString()
{
var seriesTitle = Series == null ? "[NULL]" : Series.Title;
2011-05-27 03:54:28 +00:00
if (IsDailyEpisode)
return string.Format("{0} - {1}", seriesTitle, AirDate.Date);
return string.Format("{0} - S{1:00}E{2}", seriesTitle, SeasonNumber, EpisodeNumber);
}
2010-10-05 06:21:18 +00:00
}
2011-04-10 02:44:01 +00:00
}