#nullable disable
using System;
using System.Linq;
using System.Threading.Tasks;
using Emby.Naming.Audio;
using Emby.Naming.Common;
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Model.Entities;
using Microsoft.Extensions.Logging;
namespace Emby.Server.Implementations.Library.Resolvers.Audio
{
    /// 
    /// The music artist resolver.
    /// 
    public class MusicArtistResolver : ItemResolver
    {
        private readonly ILogger _logger;
        private readonly NamingOptions _namingOptions;
        private readonly IDirectoryService _directoryService;
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// Instance of the  interface.
        /// The .
        /// The directory service.
        public MusicArtistResolver(
            ILogger logger,
            NamingOptions namingOptions,
            IDirectoryService directoryService)
        {
            _logger = logger;
            _namingOptions = namingOptions;
            _directoryService = directoryService;
        }
        /// 
        /// Gets the priority.
        /// 
        /// The priority.
        public override ResolverPriority Priority => ResolverPriority.Second;
        /// 
        /// Resolves the specified resolver arguments.
        /// 
        /// The resolver arguments.
        /// A .
        protected override MusicArtist Resolve(ItemResolveArgs args)
        {
            if (!args.IsDirectory)
            {
                return null;
            }
            // Don't allow nested artists
            if (args.HasParent() || args.HasParent())
            {
                return null;
            }
            var collectionType = args.GetCollectionType();
            var isMusicMediaFolder = collectionType == CollectionType.music;
            // If there's a collection type and it's not music, it can't be a music artist
            if (!isMusicMediaFolder)
            {
                return null;
            }
            if (args.ContainsFileSystemEntryByName("artist.nfo"))
            {
                return new MusicArtist();
            }
            // Avoid mis-identifying top folders
            if (args.Parent.IsRoot)
            {
                return null;
            }
            var albumResolver = new MusicAlbumResolver(_logger, _namingOptions, _directoryService);
            var albumParser = new AlbumParser(_namingOptions);
            var directories = args.FileSystemChildren.Where(i => i.IsDirectory);
            var result = Parallel.ForEach(directories, (fileSystemInfo, state) =>
            {
                // 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))
                    {
                        // Stop once we see an artist subfolder
                        state.Stop();
                    }
                }
                // If the folder is a multi-disc folder, then it is not an artist folder
                if (albumParser.IsMultiPart(fileSystemInfo.FullName))
                {
                    return;
                }
                // If we contain a music album assume we are an artist folder
                if (albumResolver.IsMusicAlbum(fileSystemInfo.FullName, _directoryService))
                {
                    // Stop once we see a music album
                    state.Stop();
                }
            });
            return !result.IsCompleted ? new MusicArtist() : null;
        }
    }
}