2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-03-03 16:53:58 +00:00
|
|
|
|
using MediaBrowser.Controller.Resolvers;
|
2013-04-28 16:25:14 +00:00
|
|
|
|
using System.IO;
|
2013-04-28 00:44:38 +00:00
|
|
|
|
using System.Linq;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-03-03 06:58:04 +00:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers.Audio
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-23 07:57:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class MusicArtistResolver
|
|
|
|
|
/// </summary>
|
2013-03-03 06:58:04 +00:00
|
|
|
|
public class MusicArtistResolver : ItemResolver<MusicArtist>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-23 07:57:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the priority.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The priority.</value>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public override ResolverPriority Priority
|
|
|
|
|
{
|
|
|
|
|
get { return ResolverPriority.Third; } // we need to be ahead of the generic folder resolver but behind the movie one
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-23 07:57:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves the specified args.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
|
/// <returns>MusicArtist.</returns>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
// If we contain an album assume we are an artist folder
|
2013-04-28 16:25:14 +00:00
|
|
|
|
return args.FileSystemChildren.Where(i => i.Attributes.HasFlag(FileAttributes.Directory)).Any(i => MusicAlbumResolver.IsMusicAlbum(i.FullName)) ? new MusicArtist() : null;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|