|
|
|
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;
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Controller.Resolvers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.Library.Resolvers.Movies
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class MovieResolver.
|
|
|
|
/// </summary>
|
|
|
|
public class MovieResolver : BaseVideoResolver<Video>, IMultiItemResolver
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the priority.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The priority.</value>
|
|
|
|
public override ResolverPriority Priority => ResolverPriority.Third;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public MultiItemResolverResult ResolveMultiple(
|
|
|
|
Folder parent,
|
|
|
|
List<FileSystemMetadata> files,
|
|
|
|
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,
|
|
|
|
List<FileSystemMetadata> files,
|
|
|
|
string collectionType,
|
|
|
|
IDirectoryService directoryService)
|
|
|
|
{
|
|
|
|
if (IsInvalid(parent, collectionType))
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.Equals(collectionType, CollectionType.MusicVideos, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return ResolveVideos<MusicVideo>(parent, files, directoryService, true, collectionType, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase) ||
|
|
|
|
string.Equals(collectionType, CollectionType.Photos, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return ResolveVideos<Video>(parent, files, directoryService, false, collectionType, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(collectionType))
|
|
|
|
{
|
|
|
|
// Owned items should just use the plain video type
|
|
|
|
if (parent == null)
|
|
|
|
{
|
|
|
|
return ResolveVideos<Video>(parent, files, directoryService, false, collectionType, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parent is Series || parent.GetParents().OfType<Series>().Any())
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ResolveVideos<Movie>(parent, files, directoryService, false, collectionType, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.Equals(collectionType, CollectionType.Movies, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return ResolveVideos<Movie>(parent, files, directoryService, true, collectionType, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private MultiItemResolverResult ResolveVideos<T>(
|
|
|
|
Folder parent,
|
|
|
|
IEnumerable<FileSystemMetadata> fileSystemEntries,
|
|
|
|
IDirectoryService directoryService,
|
|
|
|
bool suppportMultiEditions,
|
|
|
|
string collectionType,
|
|
|
|
bool parseName)
|
|
|
|
where T : Video, new()
|
|
|
|
{
|
|
|
|
var files = new List<FileSystemMetadata>();
|
|
|
|
var videos = new List<BaseItem>();
|
|
|
|
var leftOver = new List<FileSystemMetadata>();
|
|
|
|
|
|
|
|
// Loop through each child file/folder and see if we find a video
|
|
|
|
foreach (var child in fileSystemEntries)
|
|
|
|
{
|
|
|
|
// This is a hack but currently no better way to resolve a sometimes ambiguous situation
|
|
|
|
if (string.IsNullOrEmpty(collectionType))
|
|
|
|
{
|
|
|
|
if (string.Equals(child.Name, "tvshow.nfo", StringComparison.OrdinalIgnoreCase)
|
|
|
|
|| string.Equals(child.Name, "season.nfo", StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (child.IsDirectory)
|
|
|
|
{
|
|
|
|
leftOver.Add(child);
|
|
|
|
}
|
|
|
|
else if (!IsIgnored(child.Name))
|
|
|
|
{
|
|
|
|
files.Add(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var namingOptions = ((LibraryManager)LibraryManager).GetNamingOptions();
|
|
|
|
|
|
|
|
var resolver = new VideoListResolver(namingOptions);
|
|
|
|
var resolverResult = resolver.Resolve(files, suppportMultiEditions).ToList();
|
|
|
|
|
|
|
|
var result = new MultiItemResolverResult
|
|
|
|
{
|
|
|
|
ExtraFiles = leftOver,
|
|
|
|
Items = videos
|
|
|
|
};
|
|
|
|
|
|
|
|
var isInMixedFolder = resolverResult.Count > 1 || (parent != null && parent.IsTopParent);
|
|
|
|
|
|
|
|
foreach (var video in resolverResult)
|
|
|
|
{
|
|
|
|
var firstVideo = video.Files[0];
|
|
|
|
|
|
|
|
var videoItem = new T
|
|
|
|
{
|
|
|
|
Path = video.Files[0].Path,
|
|
|
|
IsInMixedFolder = isInMixedFolder,
|
|
|
|
ProductionYear = video.Year,
|
|
|
|
Name = parseName ?
|
|
|
|
video.Name :
|
|
|
|
Path.GetFileNameWithoutExtension(video.Files[0].Path),
|
|
|
|
AdditionalParts = video.Files.Skip(1).Select(i => i.Path).ToArray(),
|
|
|
|
LocalAlternateVersions = video.AlternateVersions.Select(i => i.Path).ToArray()
|
|
|
|
};
|
|
|
|
|
|
|
|
SetVideoType(videoItem, firstVideo);
|
|
|
|
Set3DFormat(videoItem, firstVideo);
|
|
|
|
|
|
|
|
result.Items.Add(videoItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
result.ExtraFiles.AddRange(files.Where(i => !ContainsFile(resolverResult, i)));
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static bool IsIgnored(string filename)
|
|
|
|
{
|
|
|
|
// Ignore samples
|
|
|
|
Match m = Regex.Match(filename, @"\bsample\b", RegexOptions.IgnoreCase);
|
|
|
|
|
|
|
|
return m.Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
return string.Equals(result.Path, file.FullName, StringComparison.OrdinalIgnoreCase);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <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;
|
|
|
|
}
|
|
|
|
|
|
|
|
var files = args.FileSystemChildren
|
|
|
|
.Where(i => !LibraryManager.IgnoreFile(i, args.Parent))
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
if (string.Equals(collectionType, CollectionType.MusicVideos, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return FindMovie<MusicVideo>(args, args.Path, args.Parent, files, args.DirectoryService, collectionType, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return FindMovie<Video>(args, args.Path, args.Parent, files, args.DirectoryService, collectionType, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(collectionType))
|
|
|
|
{
|
|
|
|
// Owned items will be caught by the plain video resolver
|
|
|
|
if (args.Parent == null)
|
|
|
|
{
|
|
|
|
// return FindMovie<Video>(args.Path, args.Parent, files, args.DirectoryService, collectionType);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.HasParent<Series>())
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
return FindMovie<Movie>(args, args.Path, args.Parent, files, args.DirectoryService, collectionType, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.Equals(collectionType, CollectionType.Movies, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return FindMovie<Movie>(args, args.Path, args.Parent, files, args.DirectoryService, collectionType, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle owned items
|
|
|
|
if (args.Parent == null)
|
|
|
|
{
|
|
|
|
return base.Resolve(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsInvalid(args.Parent, collectionType))
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
Video item = null;
|
|
|
|
|
|
|
|
if (string.Equals(collectionType, CollectionType.MusicVideos, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
item = ResolveVideo<MusicVideo>(args, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// To find a movie file, the collection type must be movies or boxsets
|
|
|
|
else if (string.Equals(collectionType, CollectionType.Movies, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
item = ResolveVideo<Movie>(args, true);
|
|
|
|
}
|
|
|
|
else if (string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase) ||
|
|
|
|
string.Equals(collectionType, CollectionType.Photos, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
item = ResolveVideo<Video>(args, false);
|
|
|
|
}
|
|
|
|
else if (string.IsNullOrEmpty(collectionType))
|
|
|
|
{
|
|
|
|
if (args.HasParent<Series>())
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
item = ResolveVideo<Video>(args, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item != null)
|
|
|
|
{
|
|
|
|
item.IsInMixedFolder = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <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)
|
|
|
|
{
|
|
|
|
base.SetInitialItemValues(item, args);
|
|
|
|
|
|
|
|
SetProviderIdsFromPath(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sets the provider id from path.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
private static void SetProviderIdsFromPath(Video item)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(justName))
|
|
|
|
{
|
|
|
|
// check for tmdb id
|
|
|
|
var tmdbid = justName.GetAttributeValue("tmdbid");
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(tmdbid))
|
|
|
|
{
|
|
|
|
item.SetProviderId(MetadataProvider.Tmdb, tmdbid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(item.Path))
|
|
|
|
{
|
|
|
|
// 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(MetadataProvider.Imdb, imdbid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Finds a movie based on a child file system entries.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>Movie.</returns>
|
|
|
|
private T FindMovie<T>(ItemResolveArgs args, string path, Folder parent, List<FileSystemMetadata> fileSystemEntries, IDirectoryService directoryService, string collectionType, bool parseName)
|
|
|
|
where T : Video, new()
|
|
|
|
{
|
|
|
|
var multiDiscFolders = new List<FileSystemMetadata>();
|
|
|
|
|
|
|
|
var libraryOptions = args.GetLibraryOptions();
|
|
|
|
var supportPhotos = string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase) && libraryOptions.EnablePhotos;
|
|
|
|
var photos = new List<FileSystemMetadata>();
|
|
|
|
|
|
|
|
// Search for a folder rip
|
|
|
|
foreach (var child in fileSystemEntries)
|
|
|
|
{
|
|
|
|
var filename = child.Name;
|
|
|
|
|
|
|
|
if (child.IsDirectory)
|
|
|
|
{
|
|
|
|
if (IsDvdDirectory(child.FullName, filename, directoryService))
|
|
|
|
{
|
|
|
|
var movie = new T
|
|
|
|
{
|
|
|
|
Path = path,
|
|
|
|
VideoType = VideoType.Dvd
|
|
|
|
};
|
|
|
|
Set3DFormat(movie);
|
|
|
|
return movie;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsBluRayDirectory(child.FullName, filename, directoryService))
|
|
|
|
{
|
|
|
|
var movie = new T
|
|
|
|
{
|
|
|
|
Path = path,
|
|
|
|
VideoType = VideoType.BluRay
|
|
|
|
};
|
|
|
|
Set3DFormat(movie);
|
|
|
|
return movie;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiDiscFolders.Add(child);
|
|
|
|
}
|
|
|
|
else if (IsDvdFile(filename))
|
|
|
|
{
|
|
|
|
var movie = new T
|
|
|
|
{
|
|
|
|
Path = path,
|
|
|
|
VideoType = VideoType.Dvd
|
|
|
|
};
|
|
|
|
Set3DFormat(movie);
|
|
|
|
return movie;
|
|
|
|
}
|
|
|
|
else if (supportPhotos && PhotoResolver.IsImageFile(child.FullName, _imageProcessor))
|
|
|
|
{
|
|
|
|
photos.Add(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Allow GetMultiDiscMovie in here
|
|
|
|
const bool SupportsMultiVersion = true;
|
|
|
|
|
|
|
|
var result = ResolveVideos<T>(parent, fileSystemEntries, directoryService, SupportsMultiVersion, collectionType, parseName) ??
|
|
|
|
new MultiItemResolverResult();
|
|
|
|
|
|
|
|
if (result.Items.Count == 1)
|
|
|
|
{
|
|
|
|
var videoPath = result.Items[0].Path;
|
|
|
|
var hasPhotos = photos.Any(i => !PhotoResolver.IsOwnedByResolvedMedia(LibraryManager, videoPath, i.Name));
|
|
|
|
|
|
|
|
if (!hasPhotos)
|
|
|
|
{
|
|
|
|
var movie = (T)result.Items[0];
|
|
|
|
movie.IsInMixedFolder = false;
|
|
|
|
movie.Name = Path.GetFileName(movie.ContainingFolderPath);
|
|
|
|
return movie;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (result.Items.Count == 0 && multiDiscFolders.Count > 0)
|
|
|
|
{
|
|
|
|
return GetMultiDiscMovie<T>(multiDiscFolders, directoryService);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the multi disc movie.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="multiDiscFolders">The folders.</param>
|
|
|
|
/// <param name="directoryService">The directory service.</param>
|
|
|
|
/// <returns>``0.</returns>
|
|
|
|
private T GetMultiDiscMovie<T>(List<FileSystemMetadata> multiDiscFolders, IDirectoryService directoryService)
|
|
|
|
where T : Video, new()
|
|
|
|
{
|
|
|
|
var videoTypes = new List<VideoType>();
|
|
|
|
|
|
|
|
var folderPaths = multiDiscFolders.Select(i => i.FullName).Where(i =>
|
|
|
|
{
|
|
|
|
var subFileEntries = directoryService.GetFileSystemEntries(i);
|
|
|
|
|
|
|
|
var subfolders = subFileEntries
|
|
|
|
.Where(e => e.IsDirectory)
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
if (subfolders.Any(s => IsDvdDirectory(s.FullName, s.Name, directoryService)))
|
|
|
|
{
|
|
|
|
videoTypes.Add(VideoType.Dvd);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (subfolders.Any(s => IsBluRayDirectory(s.FullName, s.Name, directoryService)))
|
|
|
|
{
|
|
|
|
videoTypes.Add(VideoType.BluRay);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
var subFiles = subFileEntries
|
|
|
|
.Where(e => !e.IsDirectory)
|
|
|
|
.Select(d => d.Name);
|
|
|
|
|
|
|
|
if (subFiles.Any(IsDvdFile))
|
|
|
|
{
|
|
|
|
videoTypes.Add(VideoType.Dvd);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}).OrderBy(i => i).ToList();
|
|
|
|
|
|
|
|
// If different video types were found, don't allow this
|
|
|
|
if (videoTypes.Distinct().Count() > 1)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (folderPaths.Count == 0)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
var namingOptions = ((LibraryManager)LibraryManager).GetNamingOptions();
|
|
|
|
|
|
|
|
var result = new StackResolver(namingOptions).ResolveDirectories(folderPaths).ToList();
|
|
|
|
|
|
|
|
if (result.Count != 1)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
int additionalPartsLen = folderPaths.Count - 1;
|
|
|
|
var additionalParts = new string[additionalPartsLen];
|
|
|
|
folderPaths.CopyTo(1, additionalParts, 0, additionalPartsLen);
|
|
|
|
|
|
|
|
var returnVideo = new T
|
|
|
|
{
|
|
|
|
Path = folderPaths[0],
|
|
|
|
AdditionalParts = additionalParts,
|
|
|
|
VideoType = videoTypes[0],
|
|
|
|
Name = result[0].Name
|
|
|
|
};
|
|
|
|
|
|
|
|
SetIsoType(returnVideo);
|
|
|
|
|
|
|
|
return returnVideo;
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool IsInvalid(Folder parent, string collectionType)
|
|
|
|
{
|
|
|
|
if (parent != null)
|
|
|
|
{
|
|
|
|
if (parent.IsRoot)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(collectionType))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return !_validCollectionTypes.Contains(collectionType, StringComparer.OrdinalIgnoreCase);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|