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

115 lines
3.9 KiB
C#
Raw Normal View History

#nullable disable
using System;
using System.Linq;
using System.Threading.Tasks;
using Emby.Naming.Common;
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Entities.Audio;
2013-02-21 01:33:05 +00:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Model.Entities;
using Microsoft.Extensions.Logging;
2013-02-21 01:33:05 +00:00
namespace Emby.Server.Implementations.Library.Resolvers.Audio
2013-02-21 01:33:05 +00:00
{
2013-02-23 07:57:11 +00:00
/// <summary>
2022-03-31 14:17:37 +00:00
/// The music artist resolver.
2013-02-23 07:57:11 +00:00
/// </summary>
public class MusicArtistResolver : ItemResolver<MusicArtist>
2013-02-21 01:33:05 +00:00
{
private readonly ILogger<MusicAlbumResolver> _logger;
private readonly NamingOptions _namingOptions;
private readonly IDirectoryService _directoryService;
2014-07-26 17:30:15 +00:00
2019-11-01 17:38:54 +00:00
/// <summary>
/// Initializes a new instance of the <see cref="MusicArtistResolver"/> class.
/// </summary>
2022-03-31 14:17:37 +00:00
/// <param name="logger">Instance of the <see cref="MusicAlbumResolver"/> interface.</param>
/// <param name="namingOptions">The <see cref="NamingOptions"/>.</param>
/// <param name="directoryService">The directory service.</param>
public MusicArtistResolver(
ILogger<MusicAlbumResolver> logger,
NamingOptions namingOptions,
IDirectoryService directoryService)
2014-07-26 17:30:15 +00:00
{
_logger = logger;
_namingOptions = namingOptions;
_directoryService = directoryService;
2014-07-26 17:30:15 +00:00
}
2013-02-23 07:57:11 +00:00
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public override ResolverPriority Priority => ResolverPriority.Second;
2013-02-21 01:33:05 +00:00
2013-02-23 07:57:11 +00:00
/// <summary>
2022-03-31 14:17:37 +00:00
/// Resolves the specified resolver arguments.
2013-02-23 07:57:11 +00:00
/// </summary>
2022-03-31 14:17:37 +00:00
/// <param name="args">The resolver arguments.</param>
/// <returns>A <see cref="MusicArtist"/>.</returns>
2013-02-21 01:33:05 +00:00
protected override MusicArtist Resolve(ItemResolveArgs args)
{
2019-11-01 17:38:54 +00:00
if (!args.IsDirectory)
{
return null;
}
2013-02-21 01:33:05 +00:00
2013-06-02 12:43:53 +00:00
// Don't allow nested artists
2014-12-15 05:16:23 +00:00
if (args.HasParent<MusicArtist>() || args.HasParent<MusicAlbum>())
2013-06-02 12:43:53 +00:00
{
return null;
}
var collectionType = args.GetCollectionType();
var isMusicMediaFolder = collectionType == CollectionType.music;
2014-07-30 03:31:35 +00:00
// If there's a collection type and it's not music, it can't be a music artist
2014-07-30 03:31:35 +00:00
if (!isMusicMediaFolder)
{
return null;
}
2014-02-13 05:11:54 +00:00
2016-10-09 07:18:43 +00:00
if (args.ContainsFileSystemEntryByName("artist.nfo"))
2016-10-07 15:08:13 +00:00
{
2016-10-09 07:18:43 +00:00
return new MusicArtist();
2016-10-07 15:08:13 +00:00
}
2017-02-08 18:50:33 +00:00
// Avoid mis-identifying top folders
2020-02-19 20:56:35 +00:00
if (args.Parent.IsRoot)
{
return null;
}
2016-10-09 07:18:43 +00:00
var albumResolver = new MusicAlbumResolver(_logger, _namingOptions, _directoryService);
2015-01-10 05:53:35 +00:00
var directories = args.FileSystemChildren.Where(i => i.IsDirectory);
var result = Parallel.ForEach(directories, (fileSystemInfo, state) =>
{
2022-03-31 14:17:37 +00:00
// If we contain a artist subfolder assume we are an artist folder
foreach (var subfolder in _namingOptions.ArtistSubfolders)
{
if (fileSystemInfo.Name.Equals(subfolder, StringComparison.OrdinalIgnoreCase))
{
2022-03-31 14:17:37 +00:00
// Stop once we see an artist subfolder
state.Stop();
}
}
2022-03-31 14:17:37 +00:00
// If we contain a music album assume we are an artist folder
if (albumResolver.IsMusicAlbum(fileSystemInfo.FullName, _directoryService))
{
2022-03-31 14:17:37 +00:00
// Stop once we see a music album
state.Stop();
}
});
return !result.IsCompleted ? new MusicArtist() : null;
2013-02-21 01:33:05 +00:00
}
}
}