jellyfin/Emby.Server.Implementations/Library/Resolvers/Movies/MovieResolver.cs

582 lines
20 KiB
C#
Raw Normal View History

#nullable disable
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Emby.Naming.Common;
using Emby.Naming.Video;
using Jellyfin.Data.Enums;
using Jellyfin.Extensions;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.Entities;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities.Movies;
2015-01-10 06:53:35 +01:00
using MediaBrowser.Controller.Entities.TV;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Library;
2014-02-13 06:11:54 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2013-02-21 02:33:05 +01:00
namespace Emby.Server.Implementations.Library.Resolvers.Movies
2013-02-21 02:33:05 +01:00
{
/// <summary>
2019-11-01 18:38:54 +01:00
/// Class MovieResolver.
2013-02-21 02:33:05 +01:00
/// </summary>
2023-05-22 22:48:09 +02:00
public partial class MovieResolver : BaseVideoResolver<Video>, IMultiItemResolver
2013-02-21 02:33:05 +01:00
{
2021-10-02 19:59:58 +02:00
private readonly IImageProcessor _imageProcessor;
private static readonly CollectionType[] _validCollectionTypes = new[]
2020-01-22 22:18:56 +01:00
{
CollectionType.movies,
CollectionType.homevideos,
CollectionType.musicvideos,
CollectionType.tvshows,
CollectionType.photos
2020-01-22 22:18:56 +01:00
};
/// <summary>
/// Initializes a new instance of the <see cref="MovieResolver"/> class.
/// </summary>
/// <param name="imageProcessor">The image processor.</param>
/// <param name="logger">The logger.</param>
/// <param name="namingOptions">The naming options.</param>
/// <param name="directoryService">The directory service.</param>
public MovieResolver(IImageProcessor imageProcessor, ILogger<MovieResolver> logger, NamingOptions namingOptions, IDirectoryService directoryService)
: base(logger, namingOptions, directoryService)
2020-01-22 22:18:56 +01:00
{
_imageProcessor = imageProcessor;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public override ResolverPriority Priority => ResolverPriority.Fourth;
2013-02-21 02:33:05 +01:00
2023-05-22 22:48:09 +02:00
[GeneratedRegex(@"\bsample\b", RegexOptions.IgnoreCase)]
private static partial Regex IsIgnoredRegex();
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
2019-07-06 16:15:38 +02:00
public MultiItemResolverResult ResolveMultiple(
Folder parent,
2015-10-04 05:38:46 +02:00
List<FileSystemMetadata> files,
CollectionType? collectionType,
2014-12-04 06:24:41 +01:00
IDirectoryService directoryService)
{
2021-12-07 15:18:17 +01:00
var result = ResolveMultipleInternal(parent, files, collectionType);
2022-12-05 15:01:13 +01:00
if (result is not null)
{
foreach (var item in result.Items)
{
SetInitialItemValues((Video)item, null);
}
}
return result;
}
/// <summary>
/// Resolves the specified args.
/// </summary>
/// <param name="args">The args.</param>
/// <returns>Video.</returns>
protected override Video Resolve(ItemResolveArgs args)
{
var collectionType = args.GetCollectionType();
// Find movies with their own folders
if (args.IsDirectory)
{
if (IsInvalid(args.Parent, collectionType))
{
return null;
}
2021-12-07 15:18:17 +01:00
Video movie = null;
var files = args.GetActualFileSystemChildren().ToList();
if (collectionType == CollectionType.musicvideos)
{
movie = FindMovie<MusicVideo>(args, args.Path, args.Parent, files, DirectoryService, collectionType, false);
}
if (collectionType == CollectionType.homevideos)
{
movie = FindMovie<Video>(args, args.Path, args.Parent, files, DirectoryService, collectionType, false);
}
if (collectionType is null)
{
2021-12-22 22:37:49 +01:00
// Owned items will be caught by the video extra resolver
2022-12-05 15:00:20 +01:00
if (args.Parent is null)
{
return null;
}
if (args.HasParent<Series>())
{
return null;
}
movie = FindMovie<Movie>(args, args.Path, args.Parent, files, DirectoryService, collectionType, true);
}
if (collectionType == CollectionType.movies)
{
movie = FindMovie<Movie>(args, args.Path, args.Parent, files, DirectoryService, collectionType, true);
}
2021-12-07 15:18:17 +01:00
// ignore extras
2022-12-05 15:00:20 +01:00
return movie?.ExtraType is null ? movie : null;
}
2022-12-05 15:00:20 +01:00
if (args.Parent is null)
{
return base.Resolve(args);
}
if (IsInvalid(args.Parent, collectionType))
{
return null;
}
Video item = null;
if (collectionType == CollectionType.musicvideos)
{
item = ResolveVideo<MusicVideo>(args, false);
}
// To find a movie file, the collection type must be movies or boxsets
else if (collectionType == CollectionType.movies)
{
item = ResolveVideo<Movie>(args, true);
}
else if (collectionType == CollectionType.homevideos || collectionType == CollectionType.photos)
{
item = ResolveVideo<Video>(args, false);
}
else if (collectionType is null)
{
if (args.HasParent<Series>())
{
return null;
}
item = ResolveVideo<Video>(args, false);
}
2021-12-07 15:18:17 +01:00
// Ignore extras
2022-12-05 15:01:13 +01:00
if (item?.ExtraType is not null)
2021-12-07 15:18:17 +01:00
{
return null;
}
2022-12-05 15:01:13 +01:00
if (item is not null)
{
item.IsInMixedFolder = true;
}
return item;
}
2019-07-06 16:15:38 +02:00
private MultiItemResolverResult ResolveMultipleInternal(
Folder parent,
2015-10-04 05:38:46 +02:00
List<FileSystemMetadata> files,
CollectionType? collectionType)
2014-12-04 06:24:41 +01:00
{
if (IsInvalid(parent, collectionType))
2014-12-04 06:24:41 +01:00
{
return null;
}
if (collectionType is CollectionType.musicvideos)
2014-12-04 06:24:41 +01:00
{
2021-12-07 15:18:17 +01:00
return ResolveVideos<MusicVideo>(parent, files, true, collectionType, false);
2014-12-04 06:24:41 +01:00
}
if (collectionType == CollectionType.homevideos || collectionType == CollectionType.photos)
2014-12-04 06:24:41 +01:00
{
2021-12-07 15:18:17 +01:00
return ResolveVideos<Video>(parent, files, false, collectionType, false);
2014-12-04 06:24:41 +01:00
}
if (collectionType is null)
2014-12-04 06:24:41 +01:00
{
// Owned items should just use the plain video type
2022-12-05 15:00:20 +01:00
if (parent is null)
2014-12-04 06:24:41 +01:00
{
2021-12-07 15:18:17 +01:00
return ResolveVideos<Video>(parent, files, false, collectionType, false);
2014-12-04 06:24:41 +01:00
}
2015-11-11 15:56:31 +01:00
if (parent is Series || parent.GetParents().OfType<Series>().Any())
2015-01-10 06:53:35 +01:00
{
return null;
}
2021-12-07 15:18:17 +01:00
return ResolveVideos<Movie>(parent, files, false, collectionType, true);
2014-12-04 06:24:41 +01:00
}
if (collectionType == CollectionType.movies)
2014-12-04 06:24:41 +01:00
{
2021-12-07 15:18:17 +01:00
return ResolveVideos<Movie>(parent, files, true, collectionType, true);
2014-12-04 06:24:41 +01:00
}
if (collectionType == CollectionType.tvshows)
2022-02-04 20:44:38 +01:00
{
return ResolveVideos<Episode>(parent, files, false, collectionType, true);
2022-02-04 20:44:38 +01:00
}
2014-12-04 06:24:41 +01:00
return null;
}
2019-07-06 16:15:38 +02:00
private MultiItemResolverResult ResolveVideos<T>(
Folder parent,
IEnumerable<FileSystemMetadata> fileSystemEntries,
2021-12-07 15:18:17 +01:00
bool supportMultiEditions,
CollectionType? collectionType,
2019-07-06 16:15:38 +02:00
bool parseName)
2014-12-04 06:24:41 +01:00
where T : Video, new()
{
2015-10-04 05:38:46 +02:00
var files = new List<FileSystemMetadata>();
var leftOver = new List<FileSystemMetadata>();
var hasCollectionType = collectionType is not null;
2014-12-04 06:24:41 +01:00
// Loop through each child file/folder and see if we find a video
foreach (var child in fileSystemEntries)
{
2016-12-23 00:53:57 +01:00
// This is a hack but currently no better way to resolve a sometimes ambiguous situation
2021-12-07 15:18:17 +01:00
if (!hasCollectionType)
2016-12-23 00:53:57 +01:00
{
2019-07-06 16:15:38 +02:00
if (string.Equals(child.Name, "tvshow.nfo", StringComparison.OrdinalIgnoreCase)
|| string.Equals(child.Name, "season.nfo", StringComparison.OrdinalIgnoreCase))
2016-12-23 00:53:57 +01:00
{
return null;
}
}
2016-10-25 21:02:04 +02:00
if (child.IsDirectory)
2014-12-04 06:24:41 +01:00
{
leftOver.Add(child);
2018-09-12 19:26:21 +02:00
}
2023-05-22 22:48:09 +02:00
else if (!IsIgnoredRegex().IsMatch(child.Name))
2014-12-04 06:24:41 +01:00
{
files.Add(child);
}
}
2021-12-20 12:15:20 +01:00
var videoInfos = files
.Select(i => VideoResolver.Resolve(i.FullName, i.IsDirectory, NamingOptions, parseName))
2022-12-05 15:01:13 +01:00
.Where(f => f is not null)
2021-12-20 12:15:20 +01:00
.ToList();
var resolverResult = VideoListResolver.Resolve(videoInfos, NamingOptions, supportMultiEditions, parseName);
2014-12-04 06:24:41 +01:00
var result = new MultiItemResolverResult
{
2021-12-07 15:18:17 +01:00
ExtraFiles = leftOver
2014-12-04 06:24:41 +01:00
};
2021-12-07 15:18:17 +01:00
var isInMixedFolder = resolverResult.Count > 1 || parent?.IsTopParent == true;
2014-12-09 05:57:18 +01:00
2014-12-04 06:24:41 +01:00
foreach (var video in resolverResult)
{
2020-01-22 22:18:56 +01:00
var firstVideo = video.Files[0];
2021-12-07 15:18:17 +01:00
var path = firstVideo.Path;
2022-12-05 15:01:13 +01:00
if (video.ExtraType is not null)
2021-12-07 15:18:17 +01:00
{
2021-12-07 19:23:30 +01:00
result.ExtraFiles.Add(files.Find(f => string.Equals(f.FullName, path, StringComparison.OrdinalIgnoreCase)));
2021-12-07 15:18:17 +01:00
continue;
}
var additionalParts = video.Files.Count > 1 ? video.Files.Skip(1).Select(i => i.Path).ToArray() : Array.Empty<string>();
2014-12-04 06:24:41 +01:00
var videoItem = new T
{
2021-12-07 15:18:17 +01:00
Path = path,
2014-12-09 05:57:18 +01:00
IsInMixedFolder = isInMixedFolder,
2014-12-04 06:24:41 +01:00
ProductionYear = video.Year,
2021-12-07 15:18:17 +01:00
Name = parseName ? video.Name : firstVideo.Name,
AdditionalParts = additionalParts,
2017-08-10 20:01:31 +02:00
LocalAlternateVersions = video.AlternateVersions.Select(i => i.Path).ToArray()
2014-12-04 06:24:41 +01:00
};
SetVideoType(videoItem, firstVideo);
Set3DFormat(videoItem, firstVideo);
result.Items.Add(videoItem);
}
2016-02-25 16:12:22 +01:00
result.ExtraFiles.AddRange(files.Where(i => !ContainsFile(resolverResult, i)));
2014-12-04 06:24:41 +01:00
return result;
}
2021-12-07 15:18:17 +01:00
private static bool ContainsFile(IReadOnlyList<VideoInfo> result, FileSystemMetadata file)
2016-02-25 16:12:22 +01:00
{
2021-12-07 15:18:17 +01:00
for (var i = 0; i < result.Count; i++)
{
var current = result[i];
for (var j = 0; j < current.Files.Count; j++)
{
if (ContainsFile(current.Files[j], file))
{
return true;
}
}
2016-02-25 16:12:22 +01:00
2021-12-07 15:18:17 +01:00
for (var j = 0; j < current.AlternateVersions.Count; j++)
{
if (ContainsFile(current.AlternateVersions[j], file))
{
return true;
}
}
}
return false;
2016-02-25 16:12:22 +01:00
}
private static bool ContainsFile(VideoFileInfo result, FileSystemMetadata file)
2016-02-25 16:12:22 +01:00
{
return string.Equals(result.Path, file.FullName, StringComparison.OrdinalIgnoreCase);
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Sets the initial item values.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="args">The args.</param>
protected override void SetInitialItemValues(Video item, ItemResolveArgs args)
2013-02-21 02:33:05 +01:00
{
base.SetInitialItemValues(item, args);
2015-01-02 15:29:20 +01:00
SetProviderIdsFromPath(item);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Sets the provider id from path.
/// </summary>
/// <param name="item">The item.</param>
private static void SetProviderIdsFromPath(Video item)
2013-02-21 02:33:05 +01:00
{
2015-01-04 15:34:15 +01:00
if (item is Movie || item is MusicVideo)
{
2020-01-22 22:18:56 +01:00
// We need to only look at the name of this actual item (not parents)
2021-11-28 00:10:43 +01:00
var justName = item.IsInMixedFolder ? Path.GetFileName(item.Path.AsSpan()) : Path.GetFileName(item.ContainingFolderPath.AsSpan());
2013-02-21 02:33:05 +01:00
2021-11-28 00:10:43 +01:00
if (!justName.IsEmpty)
2015-01-04 15:34:15 +01:00
{
// Check for TMDb id
2015-09-10 05:22:52 +02:00
var tmdbid = justName.GetAttributeValue("tmdbid");
2015-01-02 15:29:20 +01:00
2015-09-10 05:22:52 +02:00
if (!string.IsNullOrWhiteSpace(tmdbid))
{
2020-06-06 21:17:49 +02:00
item.SetProviderId(MetadataProvider.Tmdb, tmdbid);
2015-09-10 05:22:52 +02:00
}
}
2015-01-02 15:29:20 +01:00
2018-09-12 19:26:21 +02:00
if (!string.IsNullOrEmpty(item.Path))
2015-01-04 15:34:15 +01:00
{
2022-04-27 13:08:54 +02:00
// Check for IMDb id - we use full media path, as we can assume that this will match in any use case (whether id in parent dir or in file name)
2021-11-28 00:10:43 +01:00
var imdbid = item.Path.AsSpan().GetAttributeValue("imdbid");
2015-09-10 05:22:52 +02:00
if (!string.IsNullOrWhiteSpace(imdbid))
{
2020-06-06 21:17:49 +02:00
item.SetProviderId(MetadataProvider.Imdb, imdbid);
2015-09-10 05:22:52 +02:00
}
2015-01-04 15:34:15 +01:00
}
2015-01-02 15:29:20 +01:00
}
2013-02-21 02:33:05 +01:00
}
/// <summary>
2020-01-22 22:18:56 +01:00
/// Finds a movie based on a child file system entries.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <returns>Movie.</returns>
private T FindMovie<T>(ItemResolveArgs args, string path, Folder parent, List<FileSystemMetadata> fileSystemEntries, IDirectoryService directoryService, CollectionType? collectionType, bool parseName)
2013-06-16 21:02:57 +02:00
where T : Video, new()
2013-02-21 02:33:05 +01:00
{
2015-10-04 05:38:46 +02:00
var multiDiscFolders = new List<FileSystemMetadata>();
2015-01-04 15:34:15 +01:00
2021-05-05 15:30:32 +02:00
var libraryOptions = args.LibraryOptions;
var supportPhotos = collectionType == CollectionType.homevideos && libraryOptions.EnablePhotos;
2017-10-21 18:39:52 +02:00
var photos = new List<FileSystemMetadata>();
2014-12-04 06:24:41 +01:00
// Search for a folder rip
2013-06-16 21:02:57 +02:00
foreach (var child in fileSystemEntries)
2013-02-21 02:33:05 +01:00
{
2013-06-20 04:23:07 +02:00
var filename = child.Name;
2016-10-25 21:02:04 +02:00
if (child.IsDirectory)
2013-02-21 02:33:05 +01:00
{
2016-12-03 22:46:06 +01:00
if (IsDvdDirectory(child.FullName, filename, directoryService))
2013-02-21 02:33:05 +01:00
{
2014-12-04 06:24:41 +01:00
var movie = new T
2013-02-21 02:33:05 +01:00
{
2013-06-16 21:02:57 +02:00
Path = path,
2013-02-21 02:33:05 +01:00
VideoType = VideoType.Dvd
};
2014-12-04 06:24:41 +01:00
Set3DFormat(movie);
return movie;
2013-02-21 02:33:05 +01:00
}
2020-01-22 22:18:56 +01:00
2021-08-29 00:32:50 +02:00
if (IsBluRayDirectory(filename))
2013-02-21 02:33:05 +01:00
{
2014-12-04 06:24:41 +01:00
var movie = new T
2013-02-21 02:33:05 +01:00
{
2013-06-16 21:02:57 +02:00
Path = path,
2013-02-21 02:33:05 +01:00
VideoType = VideoType.BluRay
};
2014-12-04 06:24:41 +01:00
Set3DFormat(movie);
return movie;
2013-02-21 02:33:05 +01:00
}
2013-06-16 21:02:57 +02:00
2014-11-18 03:48:22 +01:00
multiDiscFolders.Add(child);
2013-02-21 02:33:05 +01:00
}
2014-12-09 05:57:18 +01:00
else if (IsDvdFile(filename))
{
var movie = new T
{
Path = path,
VideoType = VideoType.Dvd
};
Set3DFormat(movie);
return movie;
}
2018-09-12 19:26:21 +02:00
else if (supportPhotos && PhotoResolver.IsImageFile(child.FullName, _imageProcessor))
2017-10-21 18:39:52 +02:00
{
photos.Add(child);
}
2013-02-21 02:33:05 +01:00
}
2017-10-21 18:39:52 +02:00
// TODO: Allow GetMultiDiscMovie in here
2020-01-22 22:18:56 +01:00
const bool SupportsMultiVersion = true;
2017-10-21 18:39:52 +02:00
2021-12-07 15:18:17 +01:00
var result = ResolveVideos<T>(parent, fileSystemEntries, SupportsMultiVersion, collectionType, parseName) ??
2017-10-21 18:39:52 +02:00
new MultiItemResolverResult();
var isPhotosCollection = collectionType == CollectionType.homevideos || collectionType == CollectionType.photos;
if (!isPhotosCollection && result.Items.Count == 1)
2017-10-21 18:39:52 +02:00
{
var videoPath = result.Items[0].Path;
var hasPhotos = photos.Any(i => !PhotoResolver.IsOwnedByResolvedMedia(videoPath, i.Name));
2017-10-21 18:39:52 +02:00
if (!hasPhotos)
2016-10-17 18:40:43 +02:00
{
var movie = (T)result.Items[0];
movie.IsInMixedFolder = false;
movie.Name = Path.GetFileName(movie.ContainingFolderPath);
return movie;
}
2017-10-21 18:39:52 +02:00
}
2020-02-19 21:56:35 +01:00
else if (result.Items.Count == 0 && multiDiscFolders.Count > 0)
2017-10-21 18:39:52 +02:00
{
return GetMultiDiscMovie<T>(multiDiscFolders, directoryService);
2013-06-16 21:02:57 +02:00
}
return null;
2013-02-21 02:33:05 +01:00
}
2013-06-16 21:02:57 +02:00
/// <summary>
/// Gets the multi disc movie.
/// </summary>
/// <param name="multiDiscFolders">The folders.</param>
2014-11-18 03:48:22 +01:00
/// <param name="directoryService">The directory service.</param>
2013-06-16 21:02:57 +02:00
/// <returns>``0.</returns>
2015-10-04 05:38:46 +02:00
private T GetMultiDiscMovie<T>(List<FileSystemMetadata> multiDiscFolders, IDirectoryService directoryService)
2013-06-16 21:02:57 +02:00
where T : Video, new()
{
var videoTypes = new List<VideoType>();
2013-06-16 21:02:57 +02:00
var folderPaths = multiDiscFolders.Select(i => i.FullName).Where(i =>
2013-06-16 21:02:57 +02:00
{
var subFileEntries = directoryService.GetFileSystemEntries(i);
2014-12-09 05:57:18 +01:00
var subfolders = subFileEntries
2020-01-22 22:18:56 +01:00
.Where(e => e.IsDirectory)
2014-11-18 03:48:22 +01:00
.ToList();
2013-06-16 21:02:57 +02:00
2016-12-03 22:46:06 +01:00
if (subfolders.Any(s => IsDvdDirectory(s.FullName, s.Name, directoryService)))
2013-06-16 21:02:57 +02:00
{
videoTypes.Add(VideoType.Dvd);
2013-06-16 21:02:57 +02:00
return true;
}
2020-01-22 22:18:56 +01:00
2021-08-29 00:32:50 +02:00
if (subfolders.Any(s => IsBluRayDirectory(s.Name)))
2013-06-16 21:02:57 +02:00
{
videoTypes.Add(VideoType.BluRay);
2013-06-16 21:02:57 +02:00
return true;
}
2014-12-09 05:57:18 +01:00
var subFiles = subFileEntries
2016-10-25 21:02:04 +02:00
.Where(e => !e.IsDirectory)
2014-12-09 05:57:18 +01:00
.Select(d => d.Name);
if (subFiles.Any(IsDvdFile))
{
videoTypes.Add(VideoType.Dvd);
return true;
}
2013-06-16 21:02:57 +02:00
return false;
}).Order().ToList();
2013-06-16 21:02:57 +02:00
// If different video types were found, don't allow this
2014-11-18 03:48:22 +01:00
if (videoTypes.Distinct().Count() > 1)
{
return null;
}
2013-06-20 04:23:07 +02:00
if (folderPaths.Count == 0)
2013-06-16 21:02:57 +02:00
{
return null;
}
2021-12-07 15:18:17 +01:00
var result = StackResolver.ResolveDirectories(folderPaths, NamingOptions).ToList();
2020-01-22 22:18:56 +01:00
if (result.Count != 1)
{
return null;
}
2014-12-04 06:24:41 +01:00
2020-02-19 21:56:35 +01:00
int additionalPartsLen = folderPaths.Count - 1;
var additionalParts = new string[additionalPartsLen];
folderPaths.CopyTo(1, additionalParts, 0, additionalPartsLen);
2016-02-09 05:09:29 +01:00
var returnVideo = new T
2013-06-16 21:02:57 +02:00
{
2013-06-20 04:23:07 +02:00
Path = folderPaths[0],
2020-02-19 21:56:35 +01:00
AdditionalParts = additionalParts,
2014-11-18 03:48:22 +01:00
VideoType = videoTypes[0],
2020-01-22 22:18:56 +01:00
Name = result[0].Name
2013-06-16 21:02:57 +02:00
};
2016-02-09 05:09:29 +01:00
SetIsoType(returnVideo);
return returnVideo;
2013-06-16 21:02:57 +02:00
}
private bool IsInvalid(Folder parent, CollectionType? collectionType)
{
2022-12-05 15:01:13 +01:00
if (parent is not null)
{
2014-12-04 06:24:41 +01:00
if (parent.IsRoot)
{
return true;
}
}
if (collectionType is null)
{
return false;
}
return !_validCollectionTypes.Contains(collectionType.Value);
}
2013-02-21 02:33:05 +01:00
}
2015-09-20 19:36:09 +02:00
}