2014-07-26 17:30:15 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-09-20 15:16:58 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2013-09-18 02:43:34 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-02-13 05:11:54 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-03-03 16:53:58 +00:00
|
|
|
|
using MediaBrowser.Controller.Resolvers;
|
2013-07-27 18:24:48 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-07-26 17:30:15 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-07-27 18:24:48 +00:00
|
|
|
|
using System;
|
2013-05-12 14:06:08 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers.Audio
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class MusicAlbumResolver
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MusicAlbumResolver : ItemResolver<MusicAlbum>
|
|
|
|
|
{
|
2014-07-26 17:30:15 +00:00
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
|
|
|
|
|
|
public MusicAlbumResolver(ILogger logger, IFileSystem fileSystem)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_fileSystem = fileSystem;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-03 06:58:04 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the priority.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The priority.</value>
|
|
|
|
|
public override ResolverPriority Priority
|
|
|
|
|
{
|
|
|
|
|
get { return ResolverPriority.Third; } // we need to be ahead of the generic folder resolver but behind the movie one
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves the specified args.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
|
/// <returns>MusicAlbum.</returns>
|
|
|
|
|
protected override MusicAlbum Resolve(ItemResolveArgs args)
|
|
|
|
|
{
|
|
|
|
|
if (!args.IsDirectory) return null;
|
|
|
|
|
|
|
|
|
|
//Avoid mis-identifying top folders
|
|
|
|
|
if (args.Parent == null) return null;
|
|
|
|
|
if (args.Parent.IsRoot) return null;
|
2013-05-12 14:06:08 +00:00
|
|
|
|
if (args.Parent is MusicAlbum) return null;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
|
2013-09-18 02:43:34 +00:00
|
|
|
|
// Optimization
|
|
|
|
|
if (args.Parent is BoxSet || args.Parent is Series || args.Parent is Season)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2014-06-29 17:58:04 +00:00
|
|
|
|
|
2013-09-04 17:07:35 +00:00
|
|
|
|
var collectionType = args.GetCollectionType();
|
2013-07-27 18:24:48 +00:00
|
|
|
|
|
2014-07-30 03:31:35 +00:00
|
|
|
|
var isMusicMediaFolder = string.Equals(collectionType, CollectionType.Music,
|
|
|
|
|
StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
2014-03-06 05:17:13 +00:00
|
|
|
|
// If there's a collection type and it's not music, don't allow it.
|
2014-07-30 03:31:35 +00:00
|
|
|
|
if (!isMusicMediaFolder)
|
2013-07-27 18:24:48 +00:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2014-06-29 17:58:04 +00:00
|
|
|
|
|
2014-07-30 03:31:35 +00:00
|
|
|
|
return IsMusicAlbum(args, isMusicMediaFolder) ? new MusicAlbum() : null;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determine if the supplied file data points to a music album
|
|
|
|
|
/// </summary>
|
2013-04-28 00:44:38 +00:00
|
|
|
|
/// <param name="path">The path.</param>
|
2014-07-30 03:31:35 +00:00
|
|
|
|
/// <param name="isMusicMediaFolder">if set to <c>true</c> [is music media folder].</param>
|
2014-02-13 05:11:54 +00:00
|
|
|
|
/// <param name="directoryService">The directory service.</param>
|
2014-07-26 17:30:15 +00:00
|
|
|
|
/// <param name="logger">The logger.</param>
|
|
|
|
|
/// <param name="fileSystem">The file system.</param>
|
2013-03-03 06:58:04 +00:00
|
|
|
|
/// <returns><c>true</c> if [is music album] [the specified data]; otherwise, <c>false</c>.</returns>
|
2014-07-30 03:31:35 +00:00
|
|
|
|
public static bool IsMusicAlbum(string path, bool isMusicMediaFolder, IDirectoryService directoryService, ILogger logger, IFileSystem fileSystem)
|
2013-03-03 06:58:04 +00:00
|
|
|
|
{
|
2014-07-30 03:31:35 +00:00
|
|
|
|
return ContainsMusic(directoryService.GetFileSystemEntries(path), isMusicMediaFolder, true, directoryService, logger, fileSystem);
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-04-28 00:44:38 +00:00
|
|
|
|
/// Determine if the supplied resolve args should be considered a music album
|
2013-03-03 06:58:04 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="args">The args.</param>
|
2014-07-30 03:31:35 +00:00
|
|
|
|
/// <param name="isMusicMediaFolder">if set to <c>true</c> [is music media folder].</param>
|
2013-03-03 06:58:04 +00:00
|
|
|
|
/// <returns><c>true</c> if [is music album] [the specified args]; otherwise, <c>false</c>.</returns>
|
2014-07-30 03:31:35 +00:00
|
|
|
|
private bool IsMusicAlbum(ItemResolveArgs args, bool isMusicMediaFolder)
|
2013-03-03 06:58:04 +00:00
|
|
|
|
{
|
|
|
|
|
// Args points to an album if parent is an Artist folder or it directly contains music
|
|
|
|
|
if (args.IsDirectory)
|
|
|
|
|
{
|
|
|
|
|
//if (args.Parent is MusicArtist) return true; //saves us from testing children twice
|
2014-07-30 03:31:35 +00:00
|
|
|
|
if (ContainsMusic(args.FileSystemChildren, isMusicMediaFolder, true, args.DirectoryService, _logger, _fileSystem)) return true;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determine if the supplied list contains what we should consider music
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="list">The list.</param>
|
2014-07-30 03:31:35 +00:00
|
|
|
|
/// <param name="isMusicMediaFolder">if set to <c>true</c> [is music media folder].</param>
|
2014-06-29 17:58:04 +00:00
|
|
|
|
/// <param name="allowSubfolders">if set to <c>true</c> [allow subfolders].</param>
|
|
|
|
|
/// <param name="directoryService">The directory service.</param>
|
2014-07-26 17:30:15 +00:00
|
|
|
|
/// <param name="logger">The logger.</param>
|
|
|
|
|
/// <param name="fileSystem">The file system.</param>
|
2013-03-03 06:58:04 +00:00
|
|
|
|
/// <returns><c>true</c> if the specified list contains music; otherwise, <c>false</c>.</returns>
|
2014-08-27 03:25:39 +00:00
|
|
|
|
private static bool ContainsMusic(IEnumerable<FileSystemInfo> list,
|
2014-07-30 03:31:35 +00:00
|
|
|
|
bool isMusicMediaFolder,
|
2014-08-27 03:25:39 +00:00
|
|
|
|
bool allowSubfolders,
|
|
|
|
|
IDirectoryService directoryService,
|
|
|
|
|
ILogger logger,
|
2014-07-30 03:31:35 +00:00
|
|
|
|
IFileSystem fileSystem)
|
2013-03-03 06:58:04 +00:00
|
|
|
|
{
|
|
|
|
|
// If list contains at least 2 audio files or at least one and no video files consider it to contain music
|
|
|
|
|
var foundAudio = 0;
|
2013-04-28 00:44:38 +00:00
|
|
|
|
|
2014-07-26 17:30:15 +00:00
|
|
|
|
var discSubfolderCount = 0;
|
|
|
|
|
|
2014-06-25 15:12:39 +00:00
|
|
|
|
foreach (var fileSystemInfo in list)
|
2013-03-03 06:58:04 +00:00
|
|
|
|
{
|
2014-06-25 15:12:39 +00:00
|
|
|
|
if ((fileSystemInfo.Attributes & FileAttributes.Directory) == FileAttributes.Directory)
|
|
|
|
|
{
|
2014-07-30 03:31:35 +00:00
|
|
|
|
if (isMusicMediaFolder && allowSubfolders && IsAlbumSubfolder(fileSystemInfo, true, directoryService, logger, fileSystem))
|
2014-06-29 17:58:04 +00:00
|
|
|
|
{
|
2014-07-26 17:30:15 +00:00
|
|
|
|
discSubfolderCount++;
|
2014-06-29 17:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
if (!IsAdditionalSubfolderAllowed(fileSystemInfo))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-06-25 15:12:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var fullName = fileSystemInfo.FullName;
|
2013-09-18 02:43:34 +00:00
|
|
|
|
|
2014-06-25 15:12:39 +00:00
|
|
|
|
if (EntityResolutionHelper.IsAudioFile(fullName))
|
|
|
|
|
{
|
|
|
|
|
// Don't resolve these into audio files
|
2014-07-30 03:31:35 +00:00
|
|
|
|
if (string.Equals(fileSystem.GetFileNameWithoutExtension(fullName), BaseItem.ThemeSongFilename))
|
2014-06-25 15:12:39 +00:00
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foundAudio++;
|
|
|
|
|
}
|
2014-07-30 03:31:35 +00:00
|
|
|
|
else if (EntityResolutionHelper.IsVideoFile(fullName)) return false;
|
|
|
|
|
else if (EntityResolutionHelper.IsVideoPlaceHolder(fullName)) return false;
|
2014-08-27 03:25:39 +00:00
|
|
|
|
|
2013-03-03 06:58:04 +00:00
|
|
|
|
if (foundAudio >= 2)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// or a single audio file and no video files
|
2014-07-26 17:30:15 +00:00
|
|
|
|
return foundAudio > 0 || discSubfolderCount > 0;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
2014-06-29 17:58:04 +00:00
|
|
|
|
|
2014-07-30 03:31:35 +00:00
|
|
|
|
private static bool IsAlbumSubfolder(FileSystemInfo directory, bool isMusicMediaFolder, IDirectoryService directoryService, ILogger logger, IFileSystem fileSystem)
|
2014-06-29 17:58:04 +00:00
|
|
|
|
{
|
|
|
|
|
var path = directory.FullName;
|
|
|
|
|
|
|
|
|
|
if (IsMultiDiscFolder(path))
|
|
|
|
|
{
|
2014-07-26 17:30:15 +00:00
|
|
|
|
logger.Debug("Found multi-disc folder: " + path);
|
|
|
|
|
|
2014-07-30 03:31:35 +00:00
|
|
|
|
return ContainsMusic(directoryService.GetFileSystemEntries(path), isMusicMediaFolder, false, directoryService, logger, fileSystem);
|
2014-06-29 17:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-27 03:25:39 +00:00
|
|
|
|
public static bool IsMultiDiscFolder(string path)
|
2014-06-29 17:58:04 +00:00
|
|
|
|
{
|
2014-08-27 03:25:39 +00:00
|
|
|
|
return EntityResolutionHelper.IsMultiDiscAlbumFolder(path);
|
2014-06-29 17:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static bool IsAdditionalSubfolderAllowed(FileSystemInfo directory)
|
|
|
|
|
{
|
2014-06-29 19:59:52 +00:00
|
|
|
|
// Resolver will ignore them based on rules engine
|
|
|
|
|
return true;
|
2014-06-29 17:58:04 +00:00
|
|
|
|
}
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|