1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-04 18:38:14 +00:00
Lidarr/NzbDrone.Core/Repository/Episode.cs

98 lines
2.8 KiB
C#
Raw Normal View History

2010-10-04 23:21:18 -07:00
using System;
using System.Collections.Generic;
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;
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)]
public class Episode
2010-10-04 23:21:18 -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; }
public virtual int SeriesId { get; set; }
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
[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; }
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;
}
}
/// <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; }
[SubSonicIgnore]
2011-06-14 19:31:41 -07:00
[Ignore]
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;
if (Ignored) return EpisodeStatusType.Ignored;
2011-05-22 10:29:10 -07:00
if (AirDate.Date.Year > 1900 && DateTime.Now.Date >= AirDate.Date)
{
return EpisodeStatusType.Missing;
}
return EpisodeStatusType.NotAired;
}
}
2010-10-11 19:49:27 -07:00
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
2011-06-14 19:31:41 -07:00
[Ignore]
public virtual Series Series { get; set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
2011-06-14 19:31:41 -07:00
[Ignore]
public virtual EpisodeFile EpisodeFile { get; set; }
[SubSonicToManyRelation]
2011-06-14 19:31:41 -07:00
[Ignore]
public virtual IList<History> Histories { get; protected set; }
2011-04-22 13:48:05 -07:00
public override string ToString()
{
var seriesTitle = Series == null ? "[NULL]" : Series.Title;
2011-05-26 20:54:28 -07:00
if (IsDailyEpisode)
return string.Format("{0} - {1}", seriesTitle, AirDate.Date);
2011-05-28 12:23:35 -07:00
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
}
2010-10-04 23:21:18 -07:00
}
2011-04-09 19:44:01 -07:00
}