using MediaBrowser.Common.IO; using MediaBrowser.Controller.Entities.Audio; using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Providers; using MediaBrowser.Controller.Resolvers; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Logging; using MediaBrowser.Naming.Audio; using MediaBrowser.Server.Implementations.Logging; using System; using System.Collections.Generic; using System.IO; namespace MediaBrowser.Server.Implementations.Library.Resolvers.Audio { /// /// Class MusicAlbumResolver /// public class MusicAlbumResolver : ItemResolver { private readonly ILogger _logger; private readonly IFileSystem _fileSystem; private readonly ILibraryManager _libraryManager; public MusicAlbumResolver(ILogger logger, IFileSystem fileSystem, ILibraryManager libraryManager) { _logger = logger; _fileSystem = fileSystem; _libraryManager = libraryManager; } /// /// Gets the priority. /// /// The priority. public override ResolverPriority Priority { get { // Behind special folder resolver return ResolverPriority.Second; } } /// /// Resolves the specified args. /// /// The args. /// MusicAlbum. protected override MusicAlbum Resolve(ItemResolveArgs args) { if (!args.IsDirectory) return null; // Avoid mis-identifying top folders if (args.Parent.IsRoot) return null; if (args.HasParent()) return null; var collectionType = args.GetCollectionType(); var isMusicMediaFolder = string.Equals(collectionType, CollectionType.Music, StringComparison.OrdinalIgnoreCase); // If there's a collection type and it's not music, don't allow it. if (!isMusicMediaFolder) { return null; } return IsMusicAlbum(args) ? new MusicAlbum() : null; } /// /// Determine if the supplied file data points to a music album /// /// The path. /// The directory service. /// true if [is music album] [the specified data]; otherwise, false. public bool IsMusicAlbum(string path, IDirectoryService directoryService) { return ContainsMusic(directoryService.GetFileSystemEntries(path), true, directoryService, _logger, _fileSystem, _libraryManager); } /// /// Determine if the supplied resolve args should be considered a music album /// /// The args. /// true if [is music album] [the specified args]; otherwise, false. private bool IsMusicAlbum(ItemResolveArgs args) { // 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 if (ContainsMusic(args.FileSystemChildren, true, args.DirectoryService, _logger, _fileSystem, _libraryManager)) return true; } return false; } /// /// Determine if the supplied list contains what we should consider music /// /// The list. /// if set to true [allow subfolders]. /// The directory service. /// The logger. /// The file system. /// The library manager. /// true if the specified list contains music; otherwise, false. private bool ContainsMusic(IEnumerable list, bool allowSubfolders, IDirectoryService directoryService, ILogger logger, IFileSystem fileSystem, ILibraryManager libraryManager) { var discSubfolderCount = 0; var notMultiDisc = false; foreach (var fileSystemInfo in list) { if ((fileSystemInfo.Attributes & FileAttributes.Directory) == FileAttributes.Directory) { if (allowSubfolders) { var path = fileSystemInfo.FullName; var isMultiDisc = IsMultiDiscFolder(path); if (isMultiDisc) { var hasMusic = ContainsMusic(directoryService.GetFileSystemEntries(path), false, directoryService, logger, fileSystem, libraryManager); if (hasMusic) { logger.Debug("Found multi-disc folder: " + path); discSubfolderCount++; } } else { var hasMusic = ContainsMusic(directoryService.GetFileSystemEntries(path), false, directoryService, logger, fileSystem, libraryManager); if (hasMusic) { // If there are folders underneath with music that are not multidisc, then this can't be a multi-disc album notMultiDisc = true; } } } } var fullName = fileSystemInfo.FullName; if (libraryManager.IsAudioFile(fullName)) { return true; } } if (notMultiDisc) { return false; } return discSubfolderCount > 0; } private bool IsMultiDiscFolder(string path) { var namingOptions = ((LibraryManager)_libraryManager).GetNamingOptions(); var parser = new AlbumParser(namingOptions, new PatternsLogger()); var result = parser.ParseMultiPart(path); return result.IsMultiPart; } } }