123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- using MediaBrowser.Controller.Library;
- using MediaBrowser.Controller.Localization;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.Querying;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Runtime.Serialization;
- namespace MediaBrowser.Controller.Entities.TV
- {
- /// <summary>
- /// Class Series
- /// </summary>
- public class Series : Folder, IHasSoundtracks, IHasTrailers, IHasTags
- {
- public List<Guid> SpecialFeatureIds { get; set; }
- public List<Guid> SoundtrackIds { get; set; }
- public int SeasonCount { get; set; }
- public Series()
- {
- AirDays = new List<DayOfWeek>();
- SpecialFeatureIds = new List<Guid>();
- SoundtrackIds = new List<Guid>();
- RemoteTrailers = new List<MediaUrl>();
- LocalTrailerIds = new List<Guid>();
- Tags = new List<string>();
- DisplaySpecialsWithSeasons = true;
- }
- public bool DisplaySpecialsWithSeasons { get; set; }
- public List<Guid> LocalTrailerIds { get; set; }
-
- public List<MediaUrl> RemoteTrailers { get; set; }
- /// <summary>
- /// Gets or sets the tags.
- /// </summary>
- /// <value>The tags.</value>
- public List<string> Tags { get; set; }
-
- /// <summary>
- /// Gets or sets the status.
- /// </summary>
- /// <value>The status.</value>
- public SeriesStatus? Status { get; set; }
- /// <summary>
- /// Gets or sets the air days.
- /// </summary>
- /// <value>The air days.</value>
- public List<DayOfWeek> AirDays { get; set; }
- /// <summary>
- /// Gets or sets the air time.
- /// </summary>
- /// <value>The air time.</value>
- public string AirTime { get; set; }
- /// <summary>
- /// Gets or sets the date last episode added.
- /// </summary>
- /// <value>The date last episode added.</value>
- public DateTime DateLastEpisodeAdded { get; set; }
- /// <summary>
- /// Series aren't included directly in indices - Their Episodes will roll up to them
- /// </summary>
- /// <value><c>true</c> if [include in index]; otherwise, <c>false</c>.</value>
- [IgnoreDataMember]
- public override bool IncludeInIndex
- {
- get
- {
- return false;
- }
- }
- /// <summary>
- /// Gets the user data key.
- /// </summary>
- /// <returns>System.String.</returns>
- public override string GetUserDataKey()
- {
- return this.GetProviderId(MetadataProviders.Tvdb) ?? this.GetProviderId(MetadataProviders.Tvcom) ?? base.GetUserDataKey();
- }
- // Studio, Genre and Rating will all be the same so makes no sense to index by these
- protected override IEnumerable<string> GetIndexByOptions()
- {
- return new List<string> {
- {LocalizedStrings.Instance.GetString("NoneDispPref")},
- {LocalizedStrings.Instance.GetString("PerformerDispPref")},
- {LocalizedStrings.Instance.GetString("DirectorDispPref")},
- {LocalizedStrings.Instance.GetString("YearDispPref")},
- };
- }
- /// <summary>
- /// Creates ResolveArgs on demand
- /// </summary>
- /// <param name="pathInfo">The path info.</param>
- /// <returns>ItemResolveArgs.</returns>
- protected internal override ItemResolveArgs CreateResolveArgs(FileSystemInfo pathInfo = null)
- {
- var args = base.CreateResolveArgs(pathInfo);
- Season.AddMetadataFiles(args);
- return args;
- }
- [IgnoreDataMember]
- public bool ContainsEpisodesWithoutSeasonFolders
- {
- get
- {
- return Children.OfType<Video>().Any();
- }
- }
- public override IEnumerable<BaseItem> GetChildren(User user, bool includeLinkedChildren)
- {
- return GetSeasons(user);
- }
- public IEnumerable<Season> GetSeasons(User user)
- {
- var config = user.Configuration;
- return GetSeasons(user, config.DisplayMissingEpisodes, config.DisplayUnairedEpisodes);
- }
- public IEnumerable<Season> GetSeasons(User user, bool includeMissingSeasons, bool includeVirtualUnaired)
- {
- var seasons = base.GetChildren(user, true)
- .OfType<Season>();
- if (!includeMissingSeasons && !includeVirtualUnaired)
- {
- seasons = seasons.Where(i => !i.IsMissingOrVirtualUnaired);
- }
- else
- {
- if (!includeMissingSeasons)
- {
- seasons = seasons.Where(i => !i.IsMissingSeason);
- }
- if (!includeVirtualUnaired)
- {
- seasons = seasons.Where(i => !i.IsVirtualUnaired);
- }
- }
- return LibraryManager
- .Sort(seasons, user, new[] { ItemSortBy.SortName }, SortOrder.Ascending)
- .Cast<Season>();
- }
- public IEnumerable<Episode> GetEpisodes(User user, int seasonNumber)
- {
- var config = user.Configuration;
- return GetEpisodes(user, seasonNumber, config.DisplayMissingEpisodes, config.DisplayUnairedEpisodes);
- }
- public IEnumerable<Episode> GetEpisodes(User user, int seasonNumber, bool includeMissingEpisodes, bool includeVirtualUnairedEpisodes)
- {
- var episodes = GetRecursiveChildren(user)
- .OfType<Episode>();
- episodes = FilterEpisodesBySeason(episodes, seasonNumber, DisplaySpecialsWithSeasons);
- if (!includeMissingEpisodes)
- {
- episodes = episodes.Where(i => !i.IsMissingEpisode);
- }
- if (!includeVirtualUnairedEpisodes)
- {
- episodes = episodes.Where(i => !i.IsVirtualUnaired);
- }
- var sortBy = seasonNumber == 0 ? ItemSortBy.SortName : ItemSortBy.AiredEpisodeOrder;
- return LibraryManager.Sort(episodes, user, new[] { sortBy }, SortOrder.Ascending)
- .Cast<Episode>();
- }
- /// <summary>
- /// Filters the episodes by season.
- /// </summary>
- /// <param name="episodes">The episodes.</param>
- /// <param name="seasonNumber">The season number.</param>
- /// <param name="includeSpecials">if set to <c>true</c> [include specials].</param>
- /// <returns>IEnumerable{Episode}.</returns>
- public static IEnumerable<Episode> FilterEpisodesBySeason(IEnumerable<Episode> episodes, int seasonNumber, bool includeSpecials)
- {
- if (!includeSpecials || seasonNumber < 1)
- {
- return episodes.Where(i => (i.PhysicalSeasonNumber ?? -1) == seasonNumber);
- }
- return episodes.Where(i =>
- {
- var episode = i;
- if (episode != null)
- {
- var currentSeasonNumber = episode.AiredSeasonNumber;
- return currentSeasonNumber.HasValue && currentSeasonNumber.Value == seasonNumber;
- }
- return false;
- });
- }
- }
- }
|