2016-03-27 14:11:27 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
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;
|
2015-10-03 21:23:11 -07:00
|
|
|
|
using CommonIO;
|
2016-10-07 08:08:13 -07:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
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;
|
2016-10-07 08:08:13 -07:00
|
|
|
|
private readonly IServerConfigurationManager _config;
|
2014-07-26 10:30:15 -07:00
|
|
|
|
|
2016-10-07 08:08:13 -07:00
|
|
|
|
public MusicArtistResolver(ILogger logger, IFileSystem fileSystem, ILibraryManager libraryManager, IServerConfigurationManager config)
|
2014-07-26 10:30:15 -07:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_fileSystem = fileSystem;
|
2014-11-16 13:44:08 -07:00
|
|
|
|
_libraryManager = libraryManager;
|
2016-10-07 08:08:13 -07:00
|
|
|
|
_config = config;
|
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
|
|
|
|
|
{
|
2014-12-19 23:06:27 -07:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// Behind special folder resolver
|
|
|
|
|
return ResolverPriority.Second;
|
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
|
2014-12-19 23:06:27 -07:00
|
|
|
|
// Avoid mis-identifying top folders
|
2013-02-20 18:33:05 -07:00
|
|
|
|
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-04 10:07:35 -07:00
|
|
|
|
var collectionType = args.GetCollectionType();
|
2013-07-27 11:24:48 -07:00
|
|
|
|
|
2014-12-19 23:06:27 -07:00
|
|
|
|
var isMusicMediaFolder = string.Equals(collectionType, CollectionType.Music, StringComparison.OrdinalIgnoreCase);
|
2014-07-29 20:31:35 -07:00
|
|
|
|
|
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
|
|
|
|
|
2016-10-07 08:08:13 -07:00
|
|
|
|
if (args.IsDirectory)
|
|
|
|
|
{
|
|
|
|
|
if (args.ContainsFileSystemEntryByName("artist.nfo"))
|
|
|
|
|
{
|
|
|
|
|
return new MusicArtist();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_config.Configuration.EnableSimpleArtistDetection)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-12 22:11:54 -07:00
|
|
|
|
var directoryService = args.DirectoryService;
|
2015-01-09 22:53:35 -07:00
|
|
|
|
|
|
|
|
|
var albumResolver = new MusicAlbumResolver(_logger, _fileSystem, _libraryManager);
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
// If we contain an album assume we are an artist folder
|
2016-08-12 22:49:00 -07:00
|
|
|
|
return args.FileSystemChildren.Where(i => (i.Attributes & FileAttributes.Directory) == FileAttributes.Directory).Any(i => albumResolver.IsMusicAlbum(i.FullName, directoryService, args.GetLibraryOptions())) ? new MusicArtist() : null;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|