using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; namespace MediaBrowser.Controller.Entities.TV { /// /// Class Episode /// public class Episode : Video { /// /// Episodes have a special Metadata folder /// /// The meta location. [IgnoreDataMember] public override string MetaLocation { get { return System.IO.Path.Combine(Parent.Path, "metadata"); } } [IgnoreDataMember] protected override bool UseParentPathToCreateResolveArgs { get { return false; } } /// /// We want to group into series not show individually in an index /// /// true if [group in index]; otherwise, false. [IgnoreDataMember] public override bool GroupInIndex { get { return true; } } /// /// We roll up into series /// /// The index container. [IgnoreDataMember] public override Folder IndexContainer { get { return Season; } } /// /// Gets the user data key. /// /// System.String. public override string GetUserDataKey() { if (Series != null && ParentIndexNumber.HasValue && IndexNumber.HasValue) { return Series.GetUserDataKey() + ParentIndexNumber.Value.ToString("000") + IndexNumber.Value.ToString("000"); } return base.GetUserDataKey(); } /// /// Override this if you need to combine/collapse person information /// /// All people. [IgnoreDataMember] public override IEnumerable AllPeople { get { if (People == null) return Series != null ? Series.People : People; return Series != null && Series.People != null ? People.Concat(Series.People) : base.AllPeople; } } /// /// Gets all genres. /// /// All genres. [IgnoreDataMember] public override IEnumerable AllGenres { get { if (Genres == null) return Series != null ? Series.Genres : Genres; return Series != null && Series.Genres != null ? Genres.Concat(Series.Genres) : base.AllGenres; } } /// /// Gets all studios. /// /// All studios. [IgnoreDataMember] public override IEnumerable AllStudios { get { if (Studios == null) return Series != null ? Series.Studios : Studios; return Series != null && Series.Studios != null ? Studios.Concat(Series.Studios) : base.AllStudios; } } /// /// Our rating comes from our series /// [IgnoreDataMember] public override string OfficialRatingForComparison { get { return Series != null ? Series.OfficialRatingForComparison : base.OfficialRatingForComparison; } } /// /// Our rating comes from our series /// [IgnoreDataMember] public override string CustomRatingForComparison { get { return Series != null ? Series.CustomRatingForComparison : base.CustomRatingForComparison; } } /// /// The _series /// private Series _series; /// /// This Episode's Series Instance /// /// The series. [IgnoreDataMember] public Series Series { get { return _series ?? (_series = FindParent()); } } /// /// The _season /// private Season _season; /// /// This Episode's Season Instance /// /// The season. [IgnoreDataMember] public Season Season { get { return _season ?? (_season = FindParent()); } } /// /// This is the ending episode number for double episodes. /// /// The index number. public int? IndexNumberEnd { get; set; } /// /// Creates the name of the sort. /// /// System.String. protected override string CreateSortName() { return (ParentIndexNumber != null ? ParentIndexNumber.Value.ToString("000-") : "") + (IndexNumber != null ? IndexNumber.Value.ToString("0000 - ") : "") + Name; } } }