using MediaBrowser.Controller.Entities.Audio; using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Resolvers; using MediaBrowser.Model.Entities; using System; using System.IO; using System.Linq; namespace MediaBrowser.Server.Implementations.Library.Resolvers.Audio { /// /// Class MusicArtistResolver /// public class MusicArtistResolver : ItemResolver { private readonly ILibraryManager _libraryManager; public MusicArtistResolver(ILibraryManager libraryManager) { _libraryManager = libraryManager; } /// /// Gets the priority. /// /// The priority. public override ResolverPriority Priority { get { return ResolverPriority.Third; } // we need to be ahead of the generic folder resolver but behind the movie one } /// /// Resolves the specified args. /// /// The args. /// MusicArtist. protected override MusicArtist 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; // Don't allow nested artists if (args.Parent is MusicArtist) { return null; } var collectionType = args.Parent == null ? null : _libraryManager.FindCollectionType(args.Parent); // If there's a collection type and it's not music, it can't be a series if (!string.IsNullOrEmpty(collectionType) && !string.Equals(collectionType, CollectionType.Music, StringComparison.OrdinalIgnoreCase)) { return null; } // If we contain an album assume we are an artist folder return args.FileSystemChildren.Where(i => (i.Attributes & FileAttributes.Directory) == FileAttributes.Directory).Any(i => MusicAlbumResolver.IsMusicAlbum(i.FullName)) ? new MusicArtist() : null; } } }