| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Linq; |
| | 5 | | using Emby.Naming.Common; |
| | 6 | | using Jellyfin.Data.Enums; |
| | 7 | | using MediaBrowser.Controller.Entities.TV; |
| | 8 | | using MediaBrowser.Controller.Library; |
| | 9 | | using MediaBrowser.Controller.Providers; |
| | 10 | | using MediaBrowser.Model.Entities; |
| | 11 | | using Microsoft.Extensions.Logging; |
| | 12 | |
|
| | 13 | | namespace Emby.Server.Implementations.Library.Resolvers.TV |
| | 14 | | { |
| | 15 | | /// <summary> |
| | 16 | | /// Class EpisodeResolver. |
| | 17 | | /// </summary> |
| | 18 | | public class EpisodeResolver : BaseVideoResolver<Episode> |
| | 19 | | { |
| | 20 | | /// <summary> |
| | 21 | | /// Initializes a new instance of the <see cref="EpisodeResolver"/> class. |
| | 22 | | /// </summary> |
| | 23 | | /// <param name="logger">The logger.</param> |
| | 24 | | /// <param name="namingOptions">The naming options.</param> |
| | 25 | | /// <param name="directoryService">The directory service.</param> |
| | 26 | | public EpisodeResolver(ILogger<EpisodeResolver> logger, NamingOptions namingOptions, IDirectoryService directory |
| 23 | 27 | | : base(logger, namingOptions, directoryService) |
| | 28 | | { |
| 23 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> |
| | 32 | | /// Resolves the specified args. |
| | 33 | | /// </summary> |
| | 34 | | /// <param name="args">The args.</param> |
| | 35 | | /// <returns>Episode.</returns> |
| | 36 | | protected override Episode Resolve(ItemResolveArgs args) |
| | 37 | | { |
| 14 | 38 | | var parent = args.Parent; |
| | 39 | |
|
| 14 | 40 | | if (parent is null) |
| | 41 | | { |
| 0 | 42 | | return null; |
| | 43 | | } |
| | 44 | |
|
| | 45 | | // Just in case the user decided to nest episodes. |
| | 46 | | // Not officially supported but in some cases we can handle it. |
| | 47 | |
|
| 14 | 48 | | var season = parent as Season ?? parent.GetParents().OfType<Season>().FirstOrDefault(); |
| | 49 | |
|
| | 50 | | // If the parent is a Season or Series and the parent is not an extras folder, then this is an Episode if th |
| | 51 | | // Also handle flat tv folders |
| 14 | 52 | | if (season is not null |
| 14 | 53 | | || args.GetCollectionType() == CollectionType.tvshows |
| 14 | 54 | | || args.HasParent<Series>()) |
| | 55 | | { |
| 2 | 56 | | var episode = ResolveVideo<Episode>(args, false); |
| | 57 | |
|
| | 58 | | // Ignore extras |
| 2 | 59 | | if (episode is null || episode.ExtraType is not null) |
| | 60 | | { |
| 1 | 61 | | return null; |
| | 62 | | } |
| | 63 | |
|
| 1 | 64 | | var series = parent as Series ?? parent.GetParents().OfType<Series>().FirstOrDefault(); |
| | 65 | |
|
| 1 | 66 | | if (series is not null) |
| | 67 | | { |
| 1 | 68 | | episode.SeriesId = series.Id; |
| 1 | 69 | | episode.SeriesName = series.Name; |
| | 70 | | } |
| | 71 | |
|
| 1 | 72 | | if (season is not null) |
| | 73 | | { |
| 0 | 74 | | episode.SeasonId = season.Id; |
| 0 | 75 | | episode.SeasonName = season.Name; |
| | 76 | | } |
| | 77 | |
|
| | 78 | | // Assume season 1 if there's no season folder and a season number could not be determined |
| 1 | 79 | | if (season is null && !episode.ParentIndexNumber.HasValue && (episode.IndexNumber.HasValue || episode.Pr |
| | 80 | | { |
| 0 | 81 | | episode.ParentIndexNumber = 1; |
| | 82 | | } |
| | 83 | |
|
| 1 | 84 | | return episode; |
| | 85 | | } |
| | 86 | |
|
| 12 | 87 | | return null; |
| | 88 | | } |
| | 89 | | } |
| | 90 | | } |