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

541 lines
18 KiB
C#
Raw Normal View History

2016-10-29 22:13:23 +02:00
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;
2015-01-17 21:12:02 +01:00
using MediaBrowser.Model.Extensions;
2014-11-29 20:51:30 +01:00
using MediaBrowser.Naming.Video;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;
2016-11-11 20:55:12 +01:00
using MediaBrowser.Model.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>
/// Class MovieResolver
/// </summary>
2014-12-04 06:24:41 +01:00
public class MovieResolver : BaseVideoResolver<Video>, IMultiItemResolver
2013-02-21 02:33:05 +01:00
{
2015-01-04 15:34:15 +01:00
public MovieResolver(ILibraryManager libraryManager)
: base(libraryManager)
2013-03-04 06:43:06 +01:00
{
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public override ResolverPriority Priority
{
get
{
// Give plugins a chance to catch iso's first
// Also since we have to loop through child files looking for videos,
// see if we can avoid some of that by letting other resolvers claim folders first
2014-12-04 06:24:41 +01:00
// Also run after series resolver
return ResolverPriority.Third;
2013-02-21 02:33:05 +01:00
}
}
2015-01-04 15:34:15 +01:00
public MultiItemResolverResult ResolveMultiple(Folder parent,
2015-10-04 05:38:46 +02:00
List<FileSystemMetadata> files,
2014-12-04 06:24:41 +01:00
string collectionType,
IDirectoryService directoryService)
{
var result = ResolveMultipleInternal(parent, files, collectionType, directoryService);
if (result != null)
{
foreach (var item in result.Items)
{
SetInitialItemValues((Video)item, null);
}
}
return result;
}
private MultiItemResolverResult ResolveMultipleInternal(Folder parent,
2015-10-04 05:38:46 +02:00
List<FileSystemMetadata> files,
string collectionType,
IDirectoryService directoryService)
2014-12-04 06:24:41 +01:00
{
if (IsInvalid(parent, collectionType))
2014-12-04 06:24:41 +01:00
{
return null;
}
if (string.Equals(collectionType, CollectionType.MusicVideos, StringComparison.OrdinalIgnoreCase))
{
return ResolveVideos<MusicVideo>(parent, files, directoryService, false);
2014-12-04 06:24:41 +01:00
}
2016-01-26 19:36:56 +01:00
if (string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase) ||
2016-02-25 16:12:22 +01:00
string.Equals(collectionType, CollectionType.Photos, StringComparison.OrdinalIgnoreCase))
2014-12-04 06:24:41 +01:00
{
return ResolveVideos<Video>(parent, files, directoryService, false);
2014-12-04 06:24:41 +01:00
}
if (string.IsNullOrEmpty(collectionType))
{
// Owned items should just use the plain video type
if (parent == null)
{
return ResolveVideos<Video>(parent, files, directoryService, 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;
}
return ResolveVideos<Movie>(parent, files, directoryService, false);
2014-12-04 06:24:41 +01:00
}
2014-12-19 05:20:07 +01:00
if (string.Equals(collectionType, CollectionType.Movies, StringComparison.OrdinalIgnoreCase))
2014-12-04 06:24:41 +01:00
{
return ResolveVideos<Movie>(parent, files, directoryService, true);
2014-12-04 06:24:41 +01:00
}
return null;
}
private MultiItemResolverResult ResolveVideos<T>(Folder parent, IEnumerable<FileSystemMetadata> fileSystemEntries, IDirectoryService directoryService, bool suppportMultiEditions)
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>();
2014-12-04 06:24:41 +01:00
var videos = new List<BaseItem>();
2015-10-04 05:38:46 +02:00
var leftOver = new List<FileSystemMetadata>();
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-10-25 21:02:04 +02:00
if (child.IsDirectory)
2014-12-04 06:24:41 +01:00
{
leftOver.Add(child);
2015-01-10 06:53:35 +01:00
}
else if (IsIgnored(child.Name))
{
2015-09-20 19:28:32 +02:00
2014-12-04 06:24:41 +01:00
}
else
{
files.Add(child);
}
}
2015-01-10 06:53:35 +01:00
var namingOptions = ((LibraryManager)LibraryManager).GetNamingOptions();
2016-11-11 20:55:12 +01:00
var resolver = new VideoListResolver(namingOptions, new NullLogger());
2016-10-29 22:02:21 +02:00
var resolverResult = resolver.Resolve(files, suppportMultiEditions).ToList();
2014-12-04 06:24:41 +01:00
var result = new MultiItemResolverResult
{
ExtraFiles = leftOver,
Items = videos
};
2015-01-14 05:20:30 +01:00
var isInMixedFolder = resolverResult.Count > 1;
2014-12-09 05:57:18 +01:00
2014-12-04 06:24:41 +01:00
foreach (var video in resolverResult)
{
var firstVideo = video.Files.First();
var videoItem = new T
{
Path = video.Files[0].Path,
2014-12-09 05:57:18 +01:00
IsInMixedFolder = isInMixedFolder,
2014-12-04 06:24:41 +01:00
ProductionYear = video.Year,
Name = video.Name,
2014-12-29 21:18:48 +01:00
AdditionalParts = video.Files.Skip(1).Select(i => i.Path).ToList(),
LocalAlternateVersions = video.AlternateVersions.Select(i => i.Path).ToList()
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;
}
2016-02-25 16:12:22 +01:00
private bool ContainsFile(List<VideoInfo> result, FileSystemMetadata file)
{
return result.Any(i => ContainsFile(i, file));
}
private bool ContainsFile(VideoInfo result, FileSystemMetadata file)
{
return result.Files.Any(i => ContainsFile(i, file)) ||
result.AlternateVersions.Any(i => ContainsFile(i, file)) ||
result.Extras.Any(i => ContainsFile(i, file));
}
private bool ContainsFile(VideoFileInfo result, FileSystemMetadata file)
{
return string.Equals(result.Path, file.FullName, StringComparison.OrdinalIgnoreCase);
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Resolves the specified args.
/// </summary>
/// <param name="args">The args.</param>
/// <returns>Video.</returns>
protected override Video Resolve(ItemResolveArgs args)
2013-02-21 02:33:05 +01:00
{
2014-12-04 06:24:41 +01:00
var collectionType = args.GetCollectionType();
if (IsInvalid(args.Parent, collectionType))
2013-02-21 02:33:05 +01:00
{
2014-12-04 06:24:41 +01:00
return null;
}
// Find movies with their own folders
2014-12-03 04:13:03 +01:00
if (args.IsDirectory)
{
2016-10-17 18:40:43 +02:00
var files = args.FileSystemChildren
.Where(i => !LibraryManager.IgnoreFile(i, args.Parent))
.ToList();
if (string.Equals(collectionType, CollectionType.MusicVideos, StringComparison.OrdinalIgnoreCase))
{
2016-10-17 18:40:43 +02:00
return FindMovie<MusicVideo>(args.Path, args.Parent, files, args.DirectoryService, collectionType, false);
2013-07-12 21:56:40 +02:00
}
2013-12-29 06:32:03 +01:00
if (string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase))
{
2016-10-17 18:40:43 +02:00
return FindMovie<Video>(args.Path, args.Parent, files, args.DirectoryService, collectionType, false);
2013-12-29 06:32:03 +01:00
}
2014-12-03 04:13:03 +01:00
if (string.IsNullOrEmpty(collectionType))
2013-07-12 21:56:40 +02:00
{
2016-10-07 17:08:13 +02:00
// Owned items will be caught by the plain video resolver
2014-12-03 04:13:03 +01:00
if (args.Parent == null)
{
2016-10-17 18:40:43 +02:00
//return FindMovie<Video>(args.Path, args.Parent, files, args.DirectoryService, collectionType);
2016-10-07 17:08:13 +02:00
return null;
2014-12-03 04:13:03 +01:00
}
2015-01-10 06:53:35 +01:00
if (args.HasParent<Series>())
{
return null;
}
2016-10-07 17:08:13 +02:00
{
2016-10-17 18:40:43 +02:00
return FindMovie<Movie>(args.Path, args.Parent, files, args.DirectoryService, collectionType, true);
2016-10-07 17:08:13 +02:00
}
}
2014-12-19 05:20:07 +01:00
if (string.Equals(collectionType, CollectionType.Movies, StringComparison.OrdinalIgnoreCase))
2014-12-03 04:13:03 +01:00
{
2016-10-17 18:40:43 +02:00
return FindMovie<Movie>(args.Path, args.Parent, files, args.DirectoryService, collectionType, true);
2014-12-03 04:13:03 +01:00
}
2014-12-04 06:24:41 +01:00
2013-08-29 23:00:27 +02:00
return null;
2013-02-21 02:33:05 +01:00
}
2014-12-04 06:24:41 +01:00
// Owned items will be caught by the plain video resolver
if (args.Parent == null)
{
return null;
}
Video item = null;
2014-03-31 23:04:22 +02:00
if (string.Equals(collectionType, CollectionType.MusicVideos, StringComparison.OrdinalIgnoreCase))
{
2014-12-04 06:24:41 +01:00
item = ResolveVideo<MusicVideo>(args, false);
}
// To find a movie file, the collection type must be movies or boxsets
2014-12-19 05:20:07 +01:00
else if (string.Equals(collectionType, CollectionType.Movies, StringComparison.OrdinalIgnoreCase))
{
2014-11-29 20:51:30 +01:00
item = ResolveVideo<Movie>(args, true);
}
2014-12-04 06:24:41 +01:00
2016-01-26 19:36:56 +01:00
else if (string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase) ||
string.Equals(collectionType, CollectionType.Photos, StringComparison.OrdinalIgnoreCase))
2015-03-19 04:47:21 +01:00
{
item = ResolveVideo<Video>(args, false);
}
2014-12-04 06:24:41 +01:00
else if (string.IsNullOrEmpty(collectionType))
{
2015-01-10 06:53:35 +01:00
if (args.HasParent<Series>())
{
return null;
}
item = ResolveVideo<Video>(args, false);
2014-12-04 06:24:41 +01:00
}
if (item != null)
{
item.IsInMixedFolder = true;
}
return item;
2013-02-21 02:33:05 +01:00
}
2015-01-10 06:53:35 +01:00
private bool IsIgnored(string filename)
{
// Ignore samples
var sampleFilename = " " + filename.Replace(".", " ", StringComparison.OrdinalIgnoreCase)
.Replace("-", " ", StringComparison.OrdinalIgnoreCase)
.Replace("_", " ", StringComparison.OrdinalIgnoreCase)
.Replace("!", " ", StringComparison.OrdinalIgnoreCase);
if (sampleFilename.IndexOf(" sample ", StringComparison.OrdinalIgnoreCase) != -1)
{
return true;
}
return false;
}
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>
2015-01-02 15:29:20 +01:00
private 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)
{
//we need to only look at the name of this actual item (not parents)
var justName = item.IsInMixedFolder ? Path.GetFileName(item.Path) : Path.GetFileName(item.ContainingFolderPath);
2013-02-21 02:33:05 +01:00
2015-09-10 05:22:52 +02:00
if (!string.IsNullOrWhiteSpace(justName))
2015-01-04 15:34:15 +01:00
{
2015-09-10 05:22:52 +02:00
// check for tmdb id
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))
{
item.SetProviderId(MetadataProviders.Tmdb, tmdbid);
}
}
2015-01-02 15:29:20 +01:00
2015-09-10 05:22:52 +02:00
if (!string.IsNullOrWhiteSpace(item.Path))
2015-01-04 15:34:15 +01:00
{
2015-09-10 05:22:52 +02:00
// check for imdb id - we use full media path, as we can assume, that this will match in any use case (wither id in parent dir or in file name)
var imdbid = item.Path.GetAttributeValue("imdbid");
if (!string.IsNullOrWhiteSpace(imdbid))
{
item.SetProviderId(MetadataProviders.Imdb, imdbid);
}
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>
/// Finds a movie based on a child file system entries
/// </summary>
2013-06-16 21:02:57 +02:00
/// <typeparam name="T"></typeparam>
2013-02-21 02:33:05 +01:00
/// <returns>Movie.</returns>
2016-10-17 18:40:43 +02:00
private T FindMovie<T>(string path, Folder parent, List<FileSystemMetadata> fileSystemEntries, IDirectoryService directoryService, string collectionType, bool allowFilesAsFolders)
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
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
}
2016-12-03 22:46:06 +01:00
if (IsBluRayDirectory(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.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;
}
2013-02-21 02:33:05 +01:00
}
2016-10-17 18:40:43 +02:00
if (allowFilesAsFolders)
{
// TODO: Allow GetMultiDiscMovie in here
var supportsMultiVersion = !string.Equals(collectionType, CollectionType.HomeVideos) &&
!string.Equals(collectionType, CollectionType.Photos) &&
!string.Equals(collectionType, CollectionType.MusicVideos);
2016-10-17 18:40:43 +02:00
var result = ResolveVideos<T>(parent, fileSystemEntries, directoryService, supportsMultiVersion);
2016-10-17 18:40:43 +02:00
if (result.Items.Count == 1)
{
var movie = (T)result.Items[0];
movie.IsInMixedFolder = false;
movie.Name = Path.GetFileName(movie.ContainingFolderPath);
return movie;
}
2013-06-16 21:02:57 +02:00
2016-10-17 18:40:43 +02:00
if (result.Items.Count == 0 && multiDiscFolders.Count > 0)
{
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>
/// <typeparam name="T"></typeparam>
/// <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
{
2014-12-09 05:57:18 +01:00
var subFileEntries = directoryService.GetFileSystemEntries(i)
.ToList();
var subfolders = subFileEntries
2016-10-25 21:02:04 +02: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;
}
2016-12-03 22:46:06 +01:00
if (subfolders.Any(s => IsBluRayDirectory(s.FullName, s.Name, directoryService)))
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;
2013-06-20 04:23:07 +02:00
}).OrderBy(i => i).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;
}
2015-01-10 06:53:35 +01:00
var namingOptions = ((LibraryManager)LibraryManager).GetNamingOptions();
2016-11-11 20:55:12 +01:00
var resolver = new StackResolver(namingOptions, new NullLogger());
2014-11-18 03:48:22 +01:00
var result = resolver.ResolveDirectories(folderPaths);
2014-11-18 03:48:22 +01:00
if (result.Stacks.Count != 1)
{
return null;
}
2014-12-04 06:24:41 +01:00
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],
2013-06-16 21:02:57 +02:00
2014-12-03 04:13:03 +01:00
AdditionalParts = folderPaths.Skip(1).ToList(),
2013-06-16 21:02:57 +02:00
2014-11-18 03:48:22 +01:00
VideoType = videoTypes[0],
Name = result.Stacks[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, string collectionType)
{
2014-12-04 06:24:41 +01:00
if (parent != null)
{
2014-12-04 06:24:41 +01:00
if (parent.IsRoot)
{
return true;
}
}
2014-12-04 06:24:41 +01:00
var validCollectionTypes = new[]
{
CollectionType.Movies,
CollectionType.HomeVideos,
CollectionType.MusicVideos,
2015-03-19 04:47:21 +01:00
CollectionType.Movies,
CollectionType.Photos
2014-12-04 06:24:41 +01:00
};
if (string.IsNullOrWhiteSpace(collectionType))
{
return false;
}
return !validCollectionTypes.Contains(collectionType, StringComparer.OrdinalIgnoreCase);
}
2013-02-21 02:33:05 +01:00
}
2015-09-20 19:36:09 +02:00
}