#nullable disable
using System;
using System.Linq;
using Emby.Naming.Common;
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using Microsoft.Extensions.Logging;
namespace Emby.Server.Implementations.Library.Resolvers.TV
{
    /// 
    /// Class EpisodeResolver.
    /// 
    public class EpisodeResolver : BaseVideoResolver
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The logger.
        /// The naming options.
        /// The directory service.
        public EpisodeResolver(ILogger logger, NamingOptions namingOptions, IDirectoryService directoryService)
            : base(logger, namingOptions, directoryService)
        {
        }
        /// 
        /// Resolves the specified args.
        /// 
        /// The args.
        /// Episode.
        protected override Episode Resolve(ItemResolveArgs args)
        {
            var parent = args.Parent;
            if (parent is null)
            {
                return null;
            }
            // Just in case the user decided to nest episodes.
            // Not officially supported but in some cases we can handle it.
            var season = parent as Season ?? parent.GetParents().OfType().FirstOrDefault();
            // If the parent is a Season or Series and the parent is not an extras folder, then this is an Episode if the VideoResolver returns something
            // Also handle flat tv folders
            if (season is not null
                || args.GetCollectionType() == CollectionType.tvshows
                || args.HasParent())
            {
                var episode = ResolveVideo(args, false);
                // Ignore extras
                if (episode is null || episode.ExtraType is not null)
                {
                    return null;
                }
                var series = parent as Series ?? parent.GetParents().OfType().FirstOrDefault();
                if (series is not null)
                {
                    episode.SeriesId = series.Id;
                    episode.SeriesName = series.Name;
                }
                if (season is not null)
                {
                    episode.SeasonId = season.Id;
                    episode.SeasonName = season.Name;
                }
                // Assume season 1 if there's no season folder and a season number could not be determined
                if (season is null && !episode.ParentIndexNumber.HasValue && (episode.IndexNumber.HasValue || episode.PremiereDate.HasValue))
                {
                    episode.ParentIndexNumber = 1;
                }
                return episode;
            }
            return null;
        }
    }
}