| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.IO; |
| | 6 | | using System.Linq; |
| | 7 | | using System.Text.RegularExpressions; |
| | 8 | | using Emby.Naming.Common; |
| | 9 | | using Emby.Naming.Video; |
| | 10 | | using Jellyfin.Data.Enums; |
| | 11 | | using Jellyfin.Extensions; |
| | 12 | | using MediaBrowser.Controller.Drawing; |
| | 13 | | using MediaBrowser.Controller.Entities; |
| | 14 | | using MediaBrowser.Controller.Entities.Movies; |
| | 15 | | using MediaBrowser.Controller.Entities.TV; |
| | 16 | | using MediaBrowser.Controller.Library; |
| | 17 | | using MediaBrowser.Controller.Providers; |
| | 18 | | using MediaBrowser.Controller.Resolvers; |
| | 19 | | using MediaBrowser.Model.Entities; |
| | 20 | | using MediaBrowser.Model.IO; |
| | 21 | | using Microsoft.Extensions.Logging; |
| | 22 | |
|
| | 23 | | namespace Emby.Server.Implementations.Library.Resolvers.Movies |
| | 24 | | { |
| | 25 | | /// <summary> |
| | 26 | | /// Class MovieResolver. |
| | 27 | | /// </summary> |
| | 28 | | public partial class MovieResolver : BaseVideoResolver<Video>, IMultiItemResolver |
| | 29 | | { |
| | 30 | | private readonly IImageProcessor _imageProcessor; |
| | 31 | |
|
| 0 | 32 | | private static readonly CollectionType[] _validCollectionTypes = new[] |
| 0 | 33 | | { |
| 0 | 34 | | CollectionType.movies, |
| 0 | 35 | | CollectionType.homevideos, |
| 0 | 36 | | CollectionType.musicvideos, |
| 0 | 37 | | CollectionType.tvshows, |
| 0 | 38 | | CollectionType.photos |
| 0 | 39 | | }; |
| | 40 | |
|
| | 41 | | /// <summary> |
| | 42 | | /// Initializes a new instance of the <see cref="MovieResolver"/> class. |
| | 43 | | /// </summary> |
| | 44 | | /// <param name="imageProcessor">The image processor.</param> |
| | 45 | | /// <param name="logger">The logger.</param> |
| | 46 | | /// <param name="namingOptions">The naming options.</param> |
| | 47 | | /// <param name="directoryService">The directory service.</param> |
| | 48 | | public MovieResolver(IImageProcessor imageProcessor, ILogger<MovieResolver> logger, NamingOptions namingOptions, |
| 22 | 49 | | : base(logger, namingOptions, directoryService) |
| | 50 | | { |
| 22 | 51 | | _imageProcessor = imageProcessor; |
| 22 | 52 | | } |
| | 53 | |
|
| | 54 | | /// <summary> |
| | 55 | | /// Gets the priority. |
| | 56 | | /// </summary> |
| | 57 | | /// <value>The priority.</value> |
| 21 | 58 | | public override ResolverPriority Priority => ResolverPriority.Fourth; |
| | 59 | |
|
| | 60 | | [GeneratedRegex(@"\bsample\b", RegexOptions.IgnoreCase)] |
| | 61 | | private static partial Regex IsIgnoredRegex(); |
| | 62 | |
|
| | 63 | | /// <inheritdoc /> |
| | 64 | | public MultiItemResolverResult ResolveMultiple( |
| | 65 | | Folder parent, |
| | 66 | | List<FileSystemMetadata> files, |
| | 67 | | CollectionType? collectionType, |
| | 68 | | IDirectoryService directoryService) |
| | 69 | | { |
| 40 | 70 | | var result = ResolveMultipleInternal(parent, files, collectionType); |
| | 71 | |
|
| 40 | 72 | | if (result is not null) |
| | 73 | | { |
| 0 | 74 | | foreach (var item in result.Items) |
| | 75 | | { |
| 0 | 76 | | SetInitialItemValues((Video)item, null); |
| | 77 | | } |
| | 78 | | } |
| | 79 | |
|
| 40 | 80 | | return result; |
| | 81 | | } |
| | 82 | |
|
| | 83 | | /// <summary> |
| | 84 | | /// Resolves the specified args. |
| | 85 | | /// </summary> |
| | 86 | | /// <param name="args">The args.</param> |
| | 87 | | /// <returns>Video.</returns> |
| | 88 | | protected override Video Resolve(ItemResolveArgs args) |
| | 89 | | { |
| 13 | 90 | | var collectionType = args.GetCollectionType(); |
| | 91 | |
|
| | 92 | | // Find movies with their own folders |
| 13 | 93 | | if (args.IsDirectory) |
| | 94 | | { |
| 0 | 95 | | if (IsInvalid(args.Parent, collectionType)) |
| | 96 | | { |
| 0 | 97 | | return null; |
| | 98 | | } |
| | 99 | |
|
| 0 | 100 | | Video movie = null; |
| 0 | 101 | | var files = args.GetActualFileSystemChildren().ToList(); |
| | 102 | |
|
| 0 | 103 | | if (collectionType == CollectionType.musicvideos) |
| | 104 | | { |
| 0 | 105 | | movie = FindMovie<MusicVideo>(args, args.Path, args.Parent, files, DirectoryService, collectionType, |
| | 106 | | } |
| | 107 | |
|
| 0 | 108 | | if (collectionType == CollectionType.homevideos) |
| | 109 | | { |
| 0 | 110 | | movie = FindMovie<Video>(args, args.Path, args.Parent, files, DirectoryService, collectionType, fals |
| | 111 | | } |
| | 112 | |
|
| 0 | 113 | | if (collectionType is null) |
| | 114 | | { |
| | 115 | | // Owned items will be caught by the video extra resolver |
| 0 | 116 | | if (args.Parent is null) |
| | 117 | | { |
| 0 | 118 | | return null; |
| | 119 | | } |
| | 120 | |
|
| 0 | 121 | | if (args.HasParent<Series>()) |
| | 122 | | { |
| 0 | 123 | | return null; |
| | 124 | | } |
| | 125 | |
|
| 0 | 126 | | movie = FindMovie<Movie>(args, args.Path, args.Parent, files, DirectoryService, collectionType, true |
| | 127 | | } |
| | 128 | |
|
| 0 | 129 | | if (collectionType == CollectionType.movies) |
| | 130 | | { |
| 0 | 131 | | movie = FindMovie<Movie>(args, args.Path, args.Parent, files, DirectoryService, collectionType, true |
| | 132 | | } |
| | 133 | |
|
| | 134 | | // ignore extras |
| 0 | 135 | | return movie?.ExtraType is null ? movie : null; |
| | 136 | | } |
| | 137 | |
|
| 13 | 138 | | if (args.Parent is null) |
| | 139 | | { |
| 1 | 140 | | return base.Resolve(args); |
| | 141 | | } |
| | 142 | |
|
| 12 | 143 | | if (IsInvalid(args.Parent, collectionType)) |
| | 144 | | { |
| 12 | 145 | | return null; |
| | 146 | | } |
| | 147 | |
|
| 0 | 148 | | Video item = null; |
| | 149 | |
|
| 0 | 150 | | if (collectionType == CollectionType.musicvideos) |
| | 151 | | { |
| 0 | 152 | | item = ResolveVideo<MusicVideo>(args, false); |
| | 153 | | } |
| | 154 | |
|
| | 155 | | // To find a movie file, the collection type must be movies or boxsets |
| 0 | 156 | | else if (collectionType == CollectionType.movies) |
| | 157 | | { |
| 0 | 158 | | item = ResolveVideo<Movie>(args, true); |
| | 159 | | } |
| 0 | 160 | | else if (collectionType == CollectionType.homevideos || collectionType == CollectionType.photos) |
| | 161 | | { |
| 0 | 162 | | item = ResolveVideo<Video>(args, false); |
| | 163 | | } |
| 0 | 164 | | else if (collectionType is null) |
| | 165 | | { |
| 0 | 166 | | if (args.HasParent<Series>()) |
| | 167 | | { |
| 0 | 168 | | return null; |
| | 169 | | } |
| | 170 | |
|
| 0 | 171 | | item = ResolveVideo<Video>(args, false); |
| | 172 | | } |
| | 173 | |
|
| | 174 | | // Ignore extras |
| 0 | 175 | | if (item?.ExtraType is not null) |
| | 176 | | { |
| 0 | 177 | | return null; |
| | 178 | | } |
| | 179 | |
|
| 0 | 180 | | if (item is not null) |
| | 181 | | { |
| 0 | 182 | | item.IsInMixedFolder = true; |
| | 183 | | } |
| | 184 | |
|
| 0 | 185 | | return item; |
| | 186 | | } |
| | 187 | |
|
| | 188 | | private MultiItemResolverResult ResolveMultipleInternal( |
| | 189 | | Folder parent, |
| | 190 | | List<FileSystemMetadata> files, |
| | 191 | | CollectionType? collectionType) |
| | 192 | | { |
| 40 | 193 | | if (IsInvalid(parent, collectionType)) |
| | 194 | | { |
| 40 | 195 | | return null; |
| | 196 | | } |
| | 197 | |
|
| 0 | 198 | | if (collectionType is CollectionType.musicvideos) |
| | 199 | | { |
| 0 | 200 | | return ResolveVideos<MusicVideo>(parent, files, true, collectionType, false); |
| | 201 | | } |
| | 202 | |
|
| 0 | 203 | | if (collectionType == CollectionType.homevideos || collectionType == CollectionType.photos) |
| | 204 | | { |
| 0 | 205 | | return ResolveVideos<Video>(parent, files, false, collectionType, false); |
| | 206 | | } |
| | 207 | |
|
| 0 | 208 | | if (collectionType is null) |
| | 209 | | { |
| | 210 | | // Owned items should just use the plain video type |
| 0 | 211 | | if (parent is null) |
| | 212 | | { |
| 0 | 213 | | return ResolveVideos<Video>(parent, files, false, collectionType, false); |
| | 214 | | } |
| | 215 | |
|
| 0 | 216 | | if (parent is Series || parent.GetParents().OfType<Series>().Any()) |
| | 217 | | { |
| 0 | 218 | | return null; |
| | 219 | | } |
| | 220 | |
|
| 0 | 221 | | return ResolveVideos<Movie>(parent, files, false, collectionType, true); |
| | 222 | | } |
| | 223 | |
|
| 0 | 224 | | if (collectionType == CollectionType.movies) |
| | 225 | | { |
| 0 | 226 | | return ResolveVideos<Movie>(parent, files, true, collectionType, true); |
| | 227 | | } |
| | 228 | |
|
| 0 | 229 | | if (collectionType == CollectionType.tvshows) |
| | 230 | | { |
| 0 | 231 | | return ResolveVideos<Episode>(parent, files, false, collectionType, true); |
| | 232 | | } |
| | 233 | |
|
| 0 | 234 | | return null; |
| | 235 | | } |
| | 236 | |
|
| | 237 | | private MultiItemResolverResult ResolveVideos<T>( |
| | 238 | | Folder parent, |
| | 239 | | IEnumerable<FileSystemMetadata> fileSystemEntries, |
| | 240 | | bool supportMultiEditions, |
| | 241 | | CollectionType? collectionType, |
| | 242 | | bool parseName) |
| | 243 | | where T : Video, new() |
| | 244 | | { |
| 0 | 245 | | var files = new List<FileSystemMetadata>(); |
| 0 | 246 | | var leftOver = new List<FileSystemMetadata>(); |
| 0 | 247 | | var hasCollectionType = collectionType is not null; |
| | 248 | |
|
| | 249 | | // Loop through each child file/folder and see if we find a video |
| 0 | 250 | | foreach (var child in fileSystemEntries) |
| | 251 | | { |
| | 252 | | // This is a hack but currently no better way to resolve a sometimes ambiguous situation |
| 0 | 253 | | if (!hasCollectionType) |
| | 254 | | { |
| 0 | 255 | | if (string.Equals(child.Name, "tvshow.nfo", StringComparison.OrdinalIgnoreCase) |
| 0 | 256 | | || string.Equals(child.Name, "season.nfo", StringComparison.OrdinalIgnoreCase)) |
| | 257 | | { |
| 0 | 258 | | return null; |
| | 259 | | } |
| | 260 | | } |
| | 261 | |
|
| 0 | 262 | | if (child.IsDirectory) |
| | 263 | | { |
| 0 | 264 | | leftOver.Add(child); |
| | 265 | | } |
| 0 | 266 | | else if (!IsIgnoredRegex().IsMatch(child.Name)) |
| | 267 | | { |
| 0 | 268 | | files.Add(child); |
| | 269 | | } |
| | 270 | | } |
| | 271 | |
|
| 0 | 272 | | var videoInfos = files |
| 0 | 273 | | .Select(i => VideoResolver.Resolve(i.FullName, i.IsDirectory, NamingOptions, parseName, parent.Containin |
| 0 | 274 | | .Where(f => f is not null) |
| 0 | 275 | | .ToList(); |
| | 276 | |
|
| 0 | 277 | | var resolverResult = VideoListResolver.Resolve(videoInfos, NamingOptions, supportMultiEditions, parseName, p |
| | 278 | |
|
| 0 | 279 | | var result = new MultiItemResolverResult |
| 0 | 280 | | { |
| 0 | 281 | | ExtraFiles = leftOver |
| 0 | 282 | | }; |
| | 283 | |
|
| 0 | 284 | | var isInMixedFolder = resolverResult.Count > 1 || parent?.IsTopParent == true; |
| | 285 | |
|
| 0 | 286 | | foreach (var video in resolverResult) |
| | 287 | | { |
| 0 | 288 | | var firstVideo = video.Files[0]; |
| 0 | 289 | | var path = firstVideo.Path; |
| 0 | 290 | | if (video.ExtraType is not null) |
| | 291 | | { |
| 0 | 292 | | result.ExtraFiles.Add(files.Find(f => string.Equals(f.FullName, path, StringComparison.OrdinalIgnore |
| 0 | 293 | | continue; |
| | 294 | | } |
| | 295 | |
|
| 0 | 296 | | var additionalParts = video.Files.Count > 1 ? video.Files.Skip(1).Select(i => i.Path).ToArray() : Array. |
| | 297 | |
|
| 0 | 298 | | var videoItem = new T |
| 0 | 299 | | { |
| 0 | 300 | | Path = path, |
| 0 | 301 | | IsInMixedFolder = isInMixedFolder, |
| 0 | 302 | | ProductionYear = video.Year, |
| 0 | 303 | | Name = parseName ? video.Name : firstVideo.Name, |
| 0 | 304 | | AdditionalParts = additionalParts, |
| 0 | 305 | | LocalAlternateVersions = video.AlternateVersions.Select(i => i.Path).ToArray() |
| 0 | 306 | | }; |
| | 307 | |
|
| 0 | 308 | | SetVideoType(videoItem, firstVideo); |
| 0 | 309 | | Set3DFormat(videoItem, firstVideo); |
| | 310 | |
|
| 0 | 311 | | result.Items.Add(videoItem); |
| | 312 | | } |
| | 313 | |
|
| 0 | 314 | | result.ExtraFiles.AddRange(files.Where(i => !ContainsFile(resolverResult, i))); |
| | 315 | |
|
| 0 | 316 | | return result; |
| 0 | 317 | | } |
| | 318 | |
|
| | 319 | | private static bool ContainsFile(IReadOnlyList<VideoInfo> result, FileSystemMetadata file) |
| | 320 | | { |
| 0 | 321 | | for (var i = 0; i < result.Count; i++) |
| | 322 | | { |
| 0 | 323 | | var current = result[i]; |
| 0 | 324 | | for (var j = 0; j < current.Files.Count; j++) |
| | 325 | | { |
| 0 | 326 | | if (ContainsFile(current.Files[j], file)) |
| | 327 | | { |
| 0 | 328 | | return true; |
| | 329 | | } |
| | 330 | | } |
| | 331 | |
|
| 0 | 332 | | for (var j = 0; j < current.AlternateVersions.Count; j++) |
| | 333 | | { |
| 0 | 334 | | if (ContainsFile(current.AlternateVersions[j], file)) |
| | 335 | | { |
| 0 | 336 | | return true; |
| | 337 | | } |
| | 338 | | } |
| | 339 | | } |
| | 340 | |
|
| 0 | 341 | | return false; |
| | 342 | | } |
| | 343 | |
|
| | 344 | | private static bool ContainsFile(VideoFileInfo result, FileSystemMetadata file) |
| | 345 | | { |
| 0 | 346 | | return string.Equals(result.Path, file.FullName, StringComparison.OrdinalIgnoreCase); |
| | 347 | | } |
| | 348 | |
|
| | 349 | | /// <summary> |
| | 350 | | /// Sets the initial item values. |
| | 351 | | /// </summary> |
| | 352 | | /// <param name="item">The item.</param> |
| | 353 | | /// <param name="args">The args.</param> |
| | 354 | | protected override void SetInitialItemValues(Video item, ItemResolveArgs args) |
| | 355 | | { |
| 0 | 356 | | base.SetInitialItemValues(item, args); |
| | 357 | |
|
| 0 | 358 | | SetProviderIdsFromPath(item); |
| 0 | 359 | | } |
| | 360 | |
|
| | 361 | | /// <summary> |
| | 362 | | /// Sets the provider id from path. |
| | 363 | | /// </summary> |
| | 364 | | /// <param name="item">The item.</param> |
| | 365 | | private static void SetProviderIdsFromPath(Video item) |
| | 366 | | { |
| 0 | 367 | | if (item is Movie || item is MusicVideo) |
| | 368 | | { |
| | 369 | | // We need to only look at the name of this actual item (not parents) |
| 0 | 370 | | var justName = item.IsInMixedFolder ? Path.GetFileName(item.Path.AsSpan()) : Path.GetFileName(item.Conta |
| | 371 | |
|
| 0 | 372 | | if (!justName.IsEmpty) |
| | 373 | | { |
| | 374 | | // Check for TMDb id |
| 0 | 375 | | var tmdbid = justName.GetAttributeValue("tmdbid"); |
| 0 | 376 | | item.TrySetProviderId(MetadataProvider.Tmdb, tmdbid); |
| | 377 | | } |
| | 378 | |
|
| 0 | 379 | | if (!string.IsNullOrEmpty(item.Path)) |
| | 380 | | { |
| | 381 | | // Check for IMDb id - we use full media path, as we can assume that this will match in any use case |
| 0 | 382 | | var imdbid = item.Path.AsSpan().GetAttributeValue("imdbid"); |
| 0 | 383 | | item.TrySetProviderId(MetadataProvider.Imdb, imdbid); |
| | 384 | | } |
| | 385 | | } |
| 0 | 386 | | } |
| | 387 | |
|
| | 388 | | /// <summary> |
| | 389 | | /// Finds a movie based on a child file system entries. |
| | 390 | | /// </summary> |
| | 391 | | /// <returns>Movie.</returns> |
| | 392 | | private T FindMovie<T>(ItemResolveArgs args, string path, Folder parent, List<FileSystemMetadata> fileSystemEntr |
| | 393 | | where T : Video, new() |
| | 394 | | { |
| 0 | 395 | | var multiDiscFolders = new List<FileSystemMetadata>(); |
| | 396 | |
|
| 0 | 397 | | var libraryOptions = args.LibraryOptions; |
| 0 | 398 | | var supportPhotos = collectionType == CollectionType.homevideos && libraryOptions.EnablePhotos; |
| 0 | 399 | | var photos = new List<FileSystemMetadata>(); |
| | 400 | |
|
| | 401 | | // Search for a folder rip |
| 0 | 402 | | foreach (var child in fileSystemEntries) |
| | 403 | | { |
| 0 | 404 | | var filename = child.Name; |
| | 405 | |
|
| 0 | 406 | | if (child.IsDirectory) |
| | 407 | | { |
| 0 | 408 | | if (IsDvdDirectory(child.FullName, filename, directoryService)) |
| | 409 | | { |
| 0 | 410 | | var movie = new T |
| 0 | 411 | | { |
| 0 | 412 | | Path = path, |
| 0 | 413 | | VideoType = VideoType.Dvd |
| 0 | 414 | | }; |
| 0 | 415 | | Set3DFormat(movie); |
| 0 | 416 | | return movie; |
| | 417 | | } |
| | 418 | |
|
| 0 | 419 | | if (IsBluRayDirectory(filename)) |
| | 420 | | { |
| 0 | 421 | | var movie = new T |
| 0 | 422 | | { |
| 0 | 423 | | Path = path, |
| 0 | 424 | | VideoType = VideoType.BluRay |
| 0 | 425 | | }; |
| 0 | 426 | | Set3DFormat(movie); |
| 0 | 427 | | return movie; |
| | 428 | | } |
| | 429 | |
|
| 0 | 430 | | multiDiscFolders.Add(child); |
| | 431 | | } |
| 0 | 432 | | else if (IsDvdFile(filename)) |
| | 433 | | { |
| 0 | 434 | | var movie = new T |
| 0 | 435 | | { |
| 0 | 436 | | Path = path, |
| 0 | 437 | | VideoType = VideoType.Dvd |
| 0 | 438 | | }; |
| 0 | 439 | | Set3DFormat(movie); |
| 0 | 440 | | return movie; |
| | 441 | | } |
| 0 | 442 | | else if (supportPhotos && PhotoResolver.IsImageFile(child.FullName, _imageProcessor)) |
| | 443 | | { |
| 0 | 444 | | photos.Add(child); |
| | 445 | | } |
| | 446 | | } |
| | 447 | |
|
| | 448 | | // TODO: Allow GetMultiDiscMovie in here |
| | 449 | | const bool SupportsMultiVersion = true; |
| | 450 | |
|
| 0 | 451 | | var result = ResolveVideos<T>(parent, fileSystemEntries, SupportsMultiVersion, collectionType, parseName) ?? |
| 0 | 452 | | new MultiItemResolverResult(); |
| | 453 | |
|
| 0 | 454 | | var isPhotosCollection = collectionType == CollectionType.homevideos || collectionType == CollectionType.pho |
| 0 | 455 | | if (!isPhotosCollection && result.Items.Count == 1) |
| | 456 | | { |
| 0 | 457 | | var videoPath = result.Items[0].Path; |
| 0 | 458 | | var hasPhotos = photos.Any(i => !PhotoResolver.IsOwnedByResolvedMedia(videoPath, i.Name)); |
| | 459 | |
|
| 0 | 460 | | if (!hasPhotos) |
| | 461 | | { |
| 0 | 462 | | var movie = (T)result.Items[0]; |
| 0 | 463 | | movie.IsInMixedFolder = false; |
| 0 | 464 | | movie.Name = Path.GetFileName(movie.ContainingFolderPath); |
| 0 | 465 | | return movie; |
| | 466 | | } |
| | 467 | | } |
| 0 | 468 | | else if (result.Items.Count == 0 && multiDiscFolders.Count > 0) |
| | 469 | | { |
| 0 | 470 | | return GetMultiDiscMovie<T>(multiDiscFolders, directoryService); |
| | 471 | | } |
| | 472 | |
|
| 0 | 473 | | return null; |
| 0 | 474 | | } |
| | 475 | |
|
| | 476 | | /// <summary> |
| | 477 | | /// Gets the multi disc movie. |
| | 478 | | /// </summary> |
| | 479 | | /// <param name="multiDiscFolders">The folders.</param> |
| | 480 | | /// <param name="directoryService">The directory service.</param> |
| | 481 | | /// <returns>``0.</returns> |
| | 482 | | private T GetMultiDiscMovie<T>(List<FileSystemMetadata> multiDiscFolders, IDirectoryService directoryService) |
| | 483 | | where T : Video, new() |
| | 484 | | { |
| 0 | 485 | | var videoTypes = new List<VideoType>(); |
| | 486 | |
|
| 0 | 487 | | var folderPaths = multiDiscFolders.Select(i => i.FullName).Where(i => |
| 0 | 488 | | { |
| 0 | 489 | | var subFileEntries = directoryService.GetFileSystemEntries(i); |
| 0 | 490 | |
|
| 0 | 491 | | var subfolders = subFileEntries |
| 0 | 492 | | .Where(e => e.IsDirectory) |
| 0 | 493 | | .ToList(); |
| 0 | 494 | |
|
| 0 | 495 | | if (subfolders.Any(s => IsDvdDirectory(s.FullName, s.Name, directoryService))) |
| 0 | 496 | | { |
| 0 | 497 | | videoTypes.Add(VideoType.Dvd); |
| 0 | 498 | | return true; |
| 0 | 499 | | } |
| 0 | 500 | |
|
| 0 | 501 | | if (subfolders.Any(s => IsBluRayDirectory(s.Name))) |
| 0 | 502 | | { |
| 0 | 503 | | videoTypes.Add(VideoType.BluRay); |
| 0 | 504 | | return true; |
| 0 | 505 | | } |
| 0 | 506 | |
|
| 0 | 507 | | var subFiles = subFileEntries |
| 0 | 508 | | .Where(e => !e.IsDirectory) |
| 0 | 509 | | .Select(d => d.Name); |
| 0 | 510 | |
|
| 0 | 511 | | if (subFiles.Any(IsDvdFile)) |
| 0 | 512 | | { |
| 0 | 513 | | videoTypes.Add(VideoType.Dvd); |
| 0 | 514 | | return true; |
| 0 | 515 | | } |
| 0 | 516 | |
|
| 0 | 517 | | return false; |
| 0 | 518 | | }).Order().ToList(); |
| | 519 | |
|
| | 520 | | // If different video types were found, don't allow this |
| 0 | 521 | | if (videoTypes.Distinct().Count() > 1) |
| | 522 | | { |
| 0 | 523 | | return null; |
| | 524 | | } |
| | 525 | |
|
| 0 | 526 | | if (folderPaths.Count == 0) |
| | 527 | | { |
| 0 | 528 | | return null; |
| | 529 | | } |
| | 530 | |
|
| 0 | 531 | | var result = StackResolver.ResolveDirectories(folderPaths, NamingOptions).ToList(); |
| | 532 | |
|
| 0 | 533 | | if (result.Count != 1) |
| | 534 | | { |
| 0 | 535 | | return null; |
| | 536 | | } |
| | 537 | |
|
| 0 | 538 | | int additionalPartsLen = folderPaths.Count - 1; |
| 0 | 539 | | var additionalParts = new string[additionalPartsLen]; |
| 0 | 540 | | folderPaths.CopyTo(1, additionalParts, 0, additionalPartsLen); |
| | 541 | |
|
| 0 | 542 | | var returnVideo = new T |
| 0 | 543 | | { |
| 0 | 544 | | Path = folderPaths[0], |
| 0 | 545 | | AdditionalParts = additionalParts, |
| 0 | 546 | | VideoType = videoTypes[0], |
| 0 | 547 | | Name = result[0].Name |
| 0 | 548 | | }; |
| | 549 | |
|
| 0 | 550 | | SetIsoType(returnVideo); |
| | 551 | |
|
| 0 | 552 | | return returnVideo; |
| | 553 | | } |
| | 554 | |
|
| | 555 | | private bool IsInvalid(Folder parent, CollectionType? collectionType) |
| | 556 | | { |
| 52 | 557 | | if (parent is not null) |
| | 558 | | { |
| 52 | 559 | | if (parent.IsRoot) |
| | 560 | | { |
| 52 | 561 | | return true; |
| | 562 | | } |
| | 563 | | } |
| | 564 | |
|
| 0 | 565 | | if (collectionType is null) |
| | 566 | | { |
| 0 | 567 | | return false; |
| | 568 | | } |
| | 569 | |
|
| 0 | 570 | | return !_validCollectionTypes.Contains(collectionType.Value); |
| | 571 | | } |
| | 572 | | } |
| | 573 | | } |