2014-07-26 10:30:15 -07:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2013-09-17 19:43:34 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-03-03 09:53:58 -07:00
|
|
|
|
using MediaBrowser.Controller.Resolvers;
|
2013-07-27 11:24:48 -07:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-07-26 10:30:15 -07:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-07-27 11:24:48 -07:00
|
|
|
|
using System;
|
2013-04-28 09:25:14 -07:00
|
|
|
|
using System.IO;
|
2013-04-27 17:44:38 -07:00
|
|
|
|
using System.Linq;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2013-03-02 23:58:04 -07:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers.Audio
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2013-02-23 00:57:11 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class MusicArtistResolver
|
|
|
|
|
/// </summary>
|
2013-03-02 23:58:04 -07:00
|
|
|
|
public class MusicArtistResolver : ItemResolver<MusicArtist>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2014-07-26 10:30:15 -07:00
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-11-16 13:44:08 -07:00
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2014-07-26 10:30:15 -07:00
|
|
|
|
|
2014-11-16 13:44:08 -07:00
|
|
|
|
public MusicArtistResolver(ILogger logger, IFileSystem fileSystem, ILibraryManager libraryManager)
|
2014-07-26 10:30:15 -07:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_fileSystem = fileSystem;
|
2014-11-16 13:44:08 -07:00
|
|
|
|
_libraryManager = libraryManager;
|
2014-07-26 10:30:15 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-23 00:57:11 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the priority.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The priority.</value>
|
2013-02-20 18:33:05 -07: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 00:57:11 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves the specified args.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
|
/// <returns>MusicArtist.</returns>
|
2013-02-20 18:33:05 -07: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 05:43:53 -07:00
|
|
|
|
// Don't allow nested artists
|
2014-12-14 22:16:23 -07:00
|
|
|
|
if (args.HasParent<MusicArtist>() || args.HasParent<MusicAlbum>())
|
2013-06-02 05:43:53 -07:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-17 19:43:34 -07:00
|
|
|
|
// Optimization
|
2014-12-14 22:16:23 -07:00
|
|
|
|
if (args.HasParent<BoxSet>() || args.HasParent<Series>() || args.HasParent<Season>())
|
2013-09-17 19:43:34 -07:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-04 10:07:35 -07:00
|
|
|
|
var collectionType = args.GetCollectionType();
|
2013-07-27 11:24:48 -07:00
|
|
|
|
|
2014-07-29 20:31:35 -07:00
|
|
|
|
var isMusicMediaFolder = string.Equals(collectionType, CollectionType.Music,
|
|
|
|
|
StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
2013-07-27 11:24:48 -07:00
|
|
|
|
// If there's a collection type and it's not music, it can't be a series
|
2014-07-29 20:31:35 -07:00
|
|
|
|
if (!isMusicMediaFolder)
|
2013-07-27 11:24:48 -07:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2014-02-12 22:11:54 -07:00
|
|
|
|
|
|
|
|
|
var directoryService = args.DirectoryService;
|
2013-07-27 11:24:48 -07:00
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
// If we contain an album assume we are an artist folder
|
2014-11-16 13:44:08 -07:00
|
|
|
|
return args.FileSystemChildren.Where(i => (i.Attributes & FileAttributes.Directory) == FileAttributes.Directory).Any(i => MusicAlbumResolver.IsMusicAlbum(i.FullName, directoryService, _logger, _fileSystem, _libraryManager)) ? new MusicArtist() : null;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|