| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.IO; |
| | 8 | | using Emby.Naming.Common; |
| | 9 | | using Emby.Naming.TV; |
| | 10 | | using Emby.Naming.Video; |
| | 11 | | using Jellyfin.Data.Enums; |
| | 12 | | using MediaBrowser.Controller.Entities.TV; |
| | 13 | | using MediaBrowser.Controller.Library; |
| | 14 | | using MediaBrowser.Controller.Resolvers; |
| | 15 | | using MediaBrowser.Model.Entities; |
| | 16 | | using MediaBrowser.Model.IO; |
| | 17 | | using Microsoft.Extensions.Logging; |
| | 18 | |
|
| | 19 | | namespace Emby.Server.Implementations.Library.Resolvers.TV |
| | 20 | | { |
| | 21 | | /// <summary> |
| | 22 | | /// Class SeriesResolver. |
| | 23 | | /// </summary> |
| | 24 | | public class SeriesResolver : GenericFolderResolver<Series> |
| | 25 | | { |
| | 26 | | private readonly ILogger<SeriesResolver> _logger; |
| | 27 | | private readonly NamingOptions _namingOptions; |
| | 28 | |
|
| | 29 | | /// <summary> |
| | 30 | | /// Initializes a new instance of the <see cref="SeriesResolver"/> class. |
| | 31 | | /// </summary> |
| | 32 | | /// <param name="logger">The logger.</param> |
| | 33 | | /// <param name="namingOptions">The naming options.</param> |
| 21 | 34 | | public SeriesResolver(ILogger<SeriesResolver> logger, NamingOptions namingOptions) |
| | 35 | | { |
| 21 | 36 | | _logger = logger; |
| 21 | 37 | | _namingOptions = namingOptions; |
| 21 | 38 | | } |
| | 39 | |
|
| | 40 | | /// <summary> |
| | 41 | | /// Gets the priority. |
| | 42 | | /// </summary> |
| | 43 | | /// <value>The priority.</value> |
| 21 | 44 | | public override ResolverPriority Priority => ResolverPriority.Second; |
| | 45 | |
|
| | 46 | | /// <summary> |
| | 47 | | /// Resolves the specified args. |
| | 48 | | /// </summary> |
| | 49 | | /// <param name="args">The args.</param> |
| | 50 | | /// <returns>Series.</returns> |
| | 51 | | protected override Series Resolve(ItemResolveArgs args) |
| | 52 | | { |
| 12 | 53 | | if (args.IsDirectory) |
| | 54 | | { |
| 0 | 55 | | if (args.HasParent<Series>() || args.HasParent<Season>()) |
| | 56 | | { |
| 0 | 57 | | return null; |
| | 58 | | } |
| | 59 | |
|
| 0 | 60 | | var seriesInfo = Naming.TV.SeriesResolver.Resolve(_namingOptions, args.Path); |
| | 61 | |
|
| 0 | 62 | | var collectionType = args.GetCollectionType(); |
| 0 | 63 | | if (collectionType == CollectionType.tvshows) |
| | 64 | | { |
| | 65 | | // TODO refactor into separate class or something, this is copied from LibraryManager.GetConfiguredC |
| 0 | 66 | | var configuredContentType = args.GetConfiguredContentType(); |
| 0 | 67 | | if (configuredContentType != CollectionType.tvshows) |
| | 68 | | { |
| 0 | 69 | | return new Series |
| 0 | 70 | | { |
| 0 | 71 | | Path = args.Path, |
| 0 | 72 | | Name = seriesInfo.Name |
| 0 | 73 | | }; |
| | 74 | | } |
| | 75 | | } |
| 0 | 76 | | else if (collectionType is null) |
| | 77 | | { |
| 0 | 78 | | if (args.ContainsFileSystemEntryByName("tvshow.nfo")) |
| | 79 | | { |
| 0 | 80 | | if (args.Parent is not null && args.Parent.IsRoot) |
| | 81 | | { |
| | 82 | | // For now, return null, but if we want to allow this in the future then add some additional |
| 0 | 83 | | return null; |
| | 84 | | } |
| | 85 | |
|
| 0 | 86 | | return new Series |
| 0 | 87 | | { |
| 0 | 88 | | Path = args.Path, |
| 0 | 89 | | Name = seriesInfo.Name |
| 0 | 90 | | }; |
| | 91 | | } |
| | 92 | |
|
| 0 | 93 | | if (args.Parent is not null && args.Parent.IsRoot) |
| | 94 | | { |
| 0 | 95 | | return null; |
| | 96 | | } |
| | 97 | |
|
| 0 | 98 | | if (IsSeriesFolder(args.Path, args.FileSystemChildren, false)) |
| | 99 | | { |
| 0 | 100 | | return new Series |
| 0 | 101 | | { |
| 0 | 102 | | Path = args.Path, |
| 0 | 103 | | Name = seriesInfo.Name |
| 0 | 104 | | }; |
| | 105 | | } |
| | 106 | | } |
| | 107 | | } |
| | 108 | |
|
| 12 | 109 | | return null; |
| | 110 | | } |
| | 111 | |
|
| | 112 | | private bool IsSeriesFolder( |
| | 113 | | string path, |
| | 114 | | IEnumerable<FileSystemMetadata> fileSystemChildren, |
| | 115 | | bool isTvContentType) |
| | 116 | | { |
| 0 | 117 | | foreach (var child in fileSystemChildren) |
| | 118 | | { |
| 0 | 119 | | if (child.IsDirectory) |
| | 120 | | { |
| 0 | 121 | | if (IsSeasonFolder(child.FullName, path, isTvContentType)) |
| | 122 | | { |
| 0 | 123 | | _logger.LogDebug("{Path} is a series because of season folder {Dir}.", path, child.FullName); |
| 0 | 124 | | return true; |
| | 125 | | } |
| | 126 | | } |
| | 127 | | else |
| | 128 | | { |
| 0 | 129 | | string fullName = child.FullName; |
| 0 | 130 | | if (VideoResolver.IsVideoFile(path, _namingOptions)) |
| | 131 | | { |
| 0 | 132 | | if (isTvContentType) |
| | 133 | | { |
| 0 | 134 | | return true; |
| | 135 | | } |
| | 136 | |
|
| 0 | 137 | | var namingOptions = _namingOptions; |
| | 138 | |
|
| 0 | 139 | | var episodeResolver = new Naming.TV.EpisodeResolver(namingOptions); |
| | 140 | |
|
| 0 | 141 | | var episodeInfo = episodeResolver.Resolve(fullName, false, true, false, fillExtendedInfo: false) |
| 0 | 142 | | if (episodeInfo is not null && episodeInfo.EpisodeNumber.HasValue) |
| | 143 | | { |
| 0 | 144 | | return true; |
| | 145 | | } |
| | 146 | | } |
| | 147 | | } |
| | 148 | | } |
| | 149 | |
|
| 0 | 150 | | _logger.LogDebug("{Path} is not a series folder.", path); |
| 0 | 151 | | return false; |
| 0 | 152 | | } |
| | 153 | |
|
| | 154 | | /// <summary> |
| | 155 | | /// Determines whether [is season folder] [the specified path]. |
| | 156 | | /// </summary> |
| | 157 | | /// <param name="path">The path.</param> |
| | 158 | | /// <param name="parentPath">The parentpath.</param> |
| | 159 | | /// <param name="isTvContentType">if set to <c>true</c> [is tv content type].</param> |
| | 160 | | /// <returns><c>true</c> if [is season folder] [the specified path]; otherwise, <c>false</c>.</returns> |
| | 161 | | private static bool IsSeasonFolder(string path, string parentPath, bool isTvContentType) |
| | 162 | | { |
| 0 | 163 | | var seasonNumber = SeasonPathParser.Parse(path, parentPath, isTvContentType, isTvContentType).SeasonNumber; |
| | 164 | |
|
| 0 | 165 | | return seasonNumber.HasValue; |
| | 166 | | } |
| | 167 | |
|
| | 168 | | /// <summary> |
| | 169 | | /// Sets the initial item values. |
| | 170 | | /// </summary> |
| | 171 | | /// <param name="item">The item.</param> |
| | 172 | | /// <param name="args">The args.</param> |
| | 173 | | protected override void SetInitialItemValues(Series item, ItemResolveArgs args) |
| | 174 | | { |
| 0 | 175 | | base.SetInitialItemValues(item, args); |
| | 176 | |
|
| 0 | 177 | | SetProviderIdFromPath(item, args.Path); |
| 0 | 178 | | } |
| | 179 | |
|
| | 180 | | /// <summary> |
| | 181 | | /// Sets the provider id from path. |
| | 182 | | /// </summary> |
| | 183 | | /// <param name="item">The item.</param> |
| | 184 | | /// <param name="path">The path.</param> |
| | 185 | | private static void SetProviderIdFromPath(Series item, string path) |
| | 186 | | { |
| 0 | 187 | | var justName = Path.GetFileName(path.AsSpan()); |
| | 188 | |
|
| 0 | 189 | | var imdbId = justName.GetAttributeValue("imdbid"); |
| 0 | 190 | | item.TrySetProviderId(MetadataProvider.Imdb, imdbId); |
| | 191 | |
|
| 0 | 192 | | var tvdbId = justName.GetAttributeValue("tvdbid"); |
| 0 | 193 | | item.TrySetProviderId(MetadataProvider.Tvdb, tvdbId); |
| | 194 | |
|
| 0 | 195 | | var tvmazeId = justName.GetAttributeValue("tvmazeid"); |
| 0 | 196 | | item.TrySetProviderId(MetadataProvider.TvMaze, tvmazeId); |
| | 197 | |
|
| 0 | 198 | | var tmdbId = justName.GetAttributeValue("tmdbid"); |
| 0 | 199 | | item.TrySetProviderId(MetadataProvider.Tmdb, tmdbId); |
| | 200 | |
|
| 0 | 201 | | var anidbId = justName.GetAttributeValue("anidbid"); |
| 0 | 202 | | item.TrySetProviderId("AniDB", anidbId); |
| | 203 | |
|
| 0 | 204 | | var aniListId = justName.GetAttributeValue("anilistid"); |
| 0 | 205 | | item.TrySetProviderId("AniList", aniListId); |
| | 206 | |
|
| 0 | 207 | | var aniSearchId = justName.GetAttributeValue("anisearchid"); |
| 0 | 208 | | item.TrySetProviderId("AniSearch", aniSearchId); |
| 0 | 209 | | } |
| | 210 | | } |
| | 211 | | } |