2013-02-21 01:33:05 +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-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-03-03 16:53:58 +00:00
|
|
|
|
using MediaBrowser.Controller.Resolvers;
|
2013-07-27 18:24:48 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System;
|
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;
|
|
|
|
|
|
2013-06-02 12:43:53 +00:00
|
|
|
|
// Don't allow nested artists
|
|
|
|
|
if (args.Parent is MusicArtist)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-18 02:43:34 +00:00
|
|
|
|
// Optimization
|
|
|
|
|
if (args.Parent is BoxSet || args.Parent is Series || args.Parent is Season)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-04 17:07:35 +00:00
|
|
|
|
var collectionType = args.GetCollectionType();
|
2013-07-27 18:24:48 +00:00
|
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
// If we contain an album assume we are an artist folder
|
2013-06-11 20:35:54 +00:00
|
|
|
|
return args.FileSystemChildren.Where(i => (i.Attributes & FileAttributes.Directory) == FileAttributes.Directory).Any(i => MusicAlbumResolver.IsMusicAlbum(i.FullName)) ? new MusicArtist() : null;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|