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

557 lines
20 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Emby.Naming.Video;
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;
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>
2014-12-04 06:24:41 +01:00
public class MovieResolver : BaseVideoResolver<Video>, IMultiItemResolver
2013-02-21 02:33:05 +01:00
{
2020-01-22 22:18:56 +01:00
private string[] _validCollectionTypes = new[]
{
CollectionType.Movies,
CollectionType.HomeVideos,
CollectionType.MusicVideos,
CollectionType.Movies,
CollectionType.Photos
};
private readonly IImageProcessor _imageProcessor;
/// <summary>
/// Initializes a new instance of the <see cref="MovieResolver"/> class.
/// </summary>
/// <param name="libraryManager">The library manager.</param>
/// <param name="imageProcessor">The image processor.</param>
public MovieResolver(ILibraryManager libraryManager, IImageProcessor imageProcessor)
: base(libraryManager)
{
_imageProcessor = imageProcessor;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public override ResolverPriority Priority => ResolverPriority.Third;
2013-02-21 02:33:05 +01:00
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,
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;
}
2019-07-06 16:15:38 +02:00
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))
{
2017-10-13 07:44:20 +02:00
return ResolveVideos<MusicVideo>(parent, files, directoryService, true, collectionType, 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
{
2017-10-13 07:44:20 +02:00
return ResolveVideos<Video>(parent, files, directoryService, false, collectionType, false);
2014-12-04 06:24:41 +01:00
}
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(collectionType))
2014-12-04 06:24:41 +01:00
{
// Owned items should just use the plain video type
if (parent == null)
{
2017-10-13 07:44:20 +02:00
return ResolveVideos<Video>(parent, files, directoryService, 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;
}
2017-10-13 07:44:20 +02:00
return ResolveVideos<Movie>(parent, files, directoryService, false, collectionType, true);
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
{
2017-10-13 07:44:20 +02:00
return ResolveVideos<Movie>(parent, files, directoryService, true, collectionType, true);
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,
IDirectoryService directoryService,
bool suppportMultiEditions,
string collectionType,
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>();
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-12-23 00:53:57 +01:00
// This is a hack but currently no better way to resolve a sometimes ambiguous situation
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(collectionType))
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
}
2019-07-06 16:15:38 +02:00
else if (!IsIgnored(child.Name))
2014-12-04 06:24:41 +01:00
{
files.Add(child);
}
}
2015-01-10 06:53:35 +01:00
var namingOptions = ((LibraryManager)LibraryManager).GetNamingOptions();
var resolver = new VideoListResolver(namingOptions);
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
};
2017-10-03 20:39:37 +02:00
var isInMixedFolder = resolverResult.Count > 1 || (parent != null && parent.IsTopParent);
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];
2014-12-04 06:24:41 +01:00
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,
2017-10-13 07:44:20 +02:00
Name = parseName ?
video.Name :
2017-11-01 20:50:30 +01:00
Path.GetFileNameWithoutExtension(video.Files[0].Path),
2017-08-10 20:01:31 +02:00
AdditionalParts = video.Files.Skip(1).Select(i => i.Path).ToArray(),
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;
}
private static bool IsIgnored(string filename)
2018-09-12 19:26:21 +02:00
{
// Ignore samples
2019-07-06 16:15:38 +02:00
Match m = Regex.Match(filename, @"\bsample\b", RegexOptions.IgnoreCase);
2018-09-12 19:26:21 +02:00
return m.Success;
2018-09-12 19:26:21 +02:00
}
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 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>
/// 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();
// Find movies with their own folders
2014-12-03 04:13:03 +01:00
if (args.IsDirectory)
{
2017-11-16 22:25:18 +01:00
if (IsInvalid(args.Parent, collectionType))
{
return null;
}
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))
{
2017-10-21 18:39:52 +02:00
return FindMovie<MusicVideo>(args, 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))
{
2017-10-21 18:39:52 +02:00
return FindMovie<Video>(args, 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)
{
2020-01-22 22:18:56 +01: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
{
2017-10-21 18:39:52 +02:00
return FindMovie<Movie>(args, 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
{
2017-10-21 18:39:52 +02:00
return FindMovie<Movie>(args, 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
}
2017-11-16 22:25:18 +01:00
// Handle owned items
2014-12-04 06:24:41 +01:00
if (args.Parent == null)
2017-11-16 22:25:18 +01:00
{
return base.Resolve(args);
}
if (IsInvalid(args.Parent, collectionType))
{
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);
}
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
}
/// <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)
2015-01-04 15:34:15 +01:00
var justName = item.IsInMixedFolder ? Path.GetFileName(item.Path) : Path.GetFileName(item.ContainingFolderPath);
2013-02-21 02:33:05 +01:00
2018-09-12 19:26:21 +02:00
if (!string.IsNullOrEmpty(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))
{
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
{
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))
{
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>
2017-10-21 18:39:52 +02:00
private T FindMovie<T>(ItemResolveArgs args, string path, Folder parent, List<FileSystemMetadata> fileSystemEntries, IDirectoryService directoryService, string 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
2017-10-21 18:39:52 +02:00
var libraryOptions = args.GetLibraryOptions();
var supportPhotos = string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase) && libraryOptions.EnablePhotos;
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
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;
}
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
2020-01-22 22:18:56 +01:00
var result = ResolveVideos<T>(parent, fileSystemEntries, directoryService, SupportsMultiVersion, collectionType, parseName) ??
2017-10-21 18:39:52 +02:00
new MultiItemResolverResult();
2017-10-21 18:39:52 +02:00
if (result.Items.Count == 1)
{
var videoPath = result.Items[0].Path;
2020-02-19 21:56:35 +01:00
var hasPhotos = photos.Any(i => !PhotoResolver.IsOwnedByResolvedMedia(LibraryManager, 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
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();
2020-01-22 22:18:56 +01:00
var result = new StackResolver(namingOptions).ResolveDirectories(folderPaths).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, 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;
}
}
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(collectionType))
{
return false;
}
2020-01-22 22:18:56 +01:00
return !_validCollectionTypes.Contains(collectionType, StringComparer.OrdinalIgnoreCase);
}
2013-02-21 02:33:05 +01:00
}
2015-09-20 19:36:09 +02:00
}