jellyfin/Emby.Server.Implementations/Library/Resolvers/Audio/MusicArtistResolver.cs

108 lines
3.6 KiB
C#
Raw Normal View History

using System;
using System.Linq;
using System.Threading.Tasks;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities.Audio;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Model.Entities;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2013-02-21 02:33:05 +01:00
namespace Emby.Server.Implementations.Library.Resolvers.Audio
2013-02-21 02:33:05 +01:00
{
2013-02-23 08:57:11 +01:00
/// <summary>
2019-11-01 18:38:54 +01:00
/// Class MusicArtistResolver.
2013-02-23 08:57:11 +01:00
/// </summary>
public class MusicArtistResolver : ItemResolver<MusicArtist>
2013-02-21 02:33:05 +01:00
{
private readonly ILogger<MusicAlbumResolver> _logger;
2014-07-26 19:30:15 +02:00
private readonly IFileSystem _fileSystem;
2014-11-16 21:44:08 +01:00
private readonly ILibraryManager _libraryManager;
2016-10-07 17:08:13 +02:00
private readonly IServerConfigurationManager _config;
2014-07-26 19:30:15 +02:00
2019-11-01 18:38:54 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="MusicArtistResolver"/> class.
/// </summary>
/// <param name="logger">The logger for the created <see cref="MusicAlbumResolver"/> instances.</param>
2019-11-01 18:38:54 +01:00
/// <param name="fileSystem">The file system.</param>
/// <param name="libraryManager">The library manager.</param>
/// <param name="config">The configuration manager.</param>
public MusicArtistResolver(
ILogger<MusicAlbumResolver> logger,
IFileSystem fileSystem,
ILibraryManager libraryManager,
IServerConfigurationManager config)
2014-07-26 19:30:15 +02:00
{
_logger = logger;
_fileSystem = fileSystem;
2014-11-16 21:44:08 +01:00
_libraryManager = libraryManager;
2016-10-07 17:08:13 +02:00
_config = config;
2014-07-26 19:30:15 +02:00
}
2013-02-23 08:57:11 +01:00
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public override ResolverPriority Priority => ResolverPriority.Second;
2013-02-21 02:33:05 +01:00
2013-02-23 08:57:11 +01:00
/// <summary>
/// Resolves the specified args.
/// </summary>
/// <param name="args">The args.</param>
/// <returns>MusicArtist.</returns>
2013-02-21 02:33:05 +01:00
protected override MusicArtist Resolve(ItemResolveArgs args)
{
2019-11-01 18:38:54 +01:00
if (!args.IsDirectory)
{
return null;
}
2013-02-21 02:33:05 +01:00
2013-06-02 14:43:53 +02:00
// Don't allow nested artists
2014-12-15 06:16:23 +01:00
if (args.HasParent<MusicArtist>() || args.HasParent<MusicAlbum>())
2013-06-02 14:43:53 +02:00
{
return null;
}
var collectionType = args.GetCollectionType();
2014-12-20 07:06:27 +01:00
var isMusicMediaFolder = string.Equals(collectionType, CollectionType.Music, StringComparison.OrdinalIgnoreCase);
2014-07-30 05:31:35 +02:00
// If there's a collection type and it's not music, it can't be a series
2014-07-30 05:31:35 +02:00
if (!isMusicMediaFolder)
{
return null;
}
2014-02-13 06:11:54 +01:00
2016-10-09 09:18:43 +02:00
if (args.ContainsFileSystemEntryByName("artist.nfo"))
2016-10-07 17:08:13 +02:00
{
2016-10-09 09:18:43 +02:00
return new MusicArtist();
2016-10-07 17:08:13 +02:00
}
2017-02-08 19:50:33 +01:00
// Avoid mis-identifying top folders
2020-02-19 21:56:35 +01:00
if (args.Parent.IsRoot)
{
return null;
}
2016-10-09 09:18:43 +02:00
2017-02-08 19:50:33 +01:00
var directoryService = args.DirectoryService;
2015-01-10 06:53:35 +01:00
2017-02-08 19:50:33 +01:00
var albumResolver = new MusicAlbumResolver(_logger, _fileSystem, _libraryManager);
2015-01-10 06:53:35 +01:00
2017-02-08 19:50:33 +01:00
// If we contain an album assume we are an artist folder
var directories = args.FileSystemChildren.Where(i => i.IsDirectory);
var result = Parallel.ForEach(directories, (fileSystemInfo, state) =>
{
if (albumResolver.IsMusicAlbum(fileSystemInfo.FullName, directoryService))
{
// stop once we see a music album
state.Stop();
}
});
return !result.IsCompleted ? new MusicArtist() : null;
2013-02-21 02:33:05 +01:00
}
}
}