using System; using System.Linq; using MediaBrowser.Controller.Entities.TV; using MediaBrowser.Controller.Library; using MediaBrowser.Model.Entities; namespace Emby.Server.Implementations.Library.Resolvers.TV { /// /// Class EpisodeResolver. /// public class EpisodeResolver : BaseVideoResolver { /// /// Resolves the specified args. /// /// The args. /// Episode. protected override Episode Resolve(ItemResolveArgs args) { var parent = args.Parent; if (parent == null) { return null; } var season = parent as Season; // Just in case the user decided to nest episodes. // Not officially supported but in some cases we can handle it. if (season == null) { season = parent.GetParents().OfType().FirstOrDefault(); } // If the parent is a Season or Series, then this is an Episode if the VideoResolver returns something // Also handle flat tv folders if (season != null || string.Equals(args.GetCollectionType(), CollectionType.TvShows, StringComparison.OrdinalIgnoreCase) || args.HasParent()) { var episode = ResolveVideo(args, false); if (episode != null) { var series = parent as Series; if (series == null) { series = parent.GetParents().OfType().FirstOrDefault(); } if (series != null) { episode.SeriesId = series.Id; episode.SeriesName = series.Name; } if (season != null) { episode.SeasonId = season.Id; episode.SeasonName = season.Name; } // Assume season 1 if there's no season folder and a season number could not be determined if (season == null && !episode.ParentIndexNumber.HasValue && (episode.IndexNumber.HasValue || episode.PremiereDate.HasValue)) { episode.ParentIndexNumber = 1; } } return episode; } return null; } /// /// Initializes a new instance of the class. /// /// The library manager. public EpisodeResolver(ILibraryManager libraryManager) : base(libraryManager) { } } }