Sonarr/NzbDrone.Core/Repository/Episode.cs

95 lines
2.8 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
{
2011-05-28 19:23:35 +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
2011-05-28 19:23:35 +00:00
public virtual int? TvDbEpisodeId { get; set; }
public virtual int SeriesId { get; set; }
public virtual int EpisodeFileId { get; set; }
public virtual int SeasonId { 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
[SubSonicLongString]
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; }
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>
2011-05-28 19:23:35 +00:00
public virtual DateTime? GrabDate { get; set; }
[SubSonicIgnore]
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;
var season = Season;
if (Ignored || (season != null && !season.Monitored)) return EpisodeStatusType.Ignored;
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);
2011-05-28 19:23:35 +00:00
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
}
2010-10-05 06:21:18 +00:00
}
2011-04-10 02:44:01 +00:00
}