using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Logging;
using MediaBrowser.Naming.Common;
using MediaBrowser.Naming.TV;
using MediaBrowser.Server.Implementations.Logging;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using CommonIO;
namespace MediaBrowser.Server.Implementations.Library.Resolvers.TV
{
    /// 
    /// Class SeriesResolver
    /// 
    public class SeriesResolver : FolderResolver
    {
        private readonly IFileSystem _fileSystem;
        private readonly ILogger _logger;
        private readonly ILibraryManager _libraryManager;
        public SeriesResolver(IFileSystem fileSystem, ILogger logger, ILibraryManager libraryManager)
        {
            _fileSystem = fileSystem;
            _logger = logger;
            _libraryManager = libraryManager;
        }
        /// 
        /// Gets the priority.
        /// 
        /// The priority.
        public override ResolverPriority Priority
        {
            get
            {
                return ResolverPriority.Second;
            }
        }
        /// 
        /// Resolves the specified args.
        /// 
        /// The args.
        /// Series.
        protected override Series Resolve(ItemResolveArgs args)
        {
            if (args.IsDirectory)
            {
                var collectionType = args.GetCollectionType();
                if (string.Equals(collectionType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase))
                {
                    if (args.HasParent())
                    {
                        return null;
                    }
                    var configuredContentType = _libraryManager.GetConfiguredContentType(args.Path);
                    if (!string.Equals(configuredContentType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase))
                    {
                        return new Series
                        {
                            Path = args.Path,
                            Name = Path.GetFileName(args.Path)
                        };
                    }
                }
                else
                {
                    if (string.IsNullOrWhiteSpace(collectionType))
                    {
                        if (args.HasParent())
                        {
                            return null;
                        }
                        if (args.Parent.IsRoot)
                        {
                            return null;
                        }
                        if (IsSeriesFolder(args.Path, args.FileSystemChildren, args.DirectoryService, _fileSystem, _logger, _libraryManager, false))
                        {
                            return new Series
                            {
                                Path = args.Path,
                                Name = Path.GetFileName(args.Path)
                            };
                        }
                    }
                }
            }
            return null;
        }
        public static bool IsSeriesFolder(string path,
            IEnumerable fileSystemChildren,
            IDirectoryService directoryService,
            IFileSystem fileSystem,
            ILogger logger,
            ILibraryManager libraryManager,
            bool isTvContentType)
        {
            foreach (var child in fileSystemChildren)
            {
                var attributes = child.Attributes;
                //if ((attributes & FileAttributes.Hidden) == FileAttributes.Hidden)
                //{
                //    //logger.Debug("Igoring series file or folder marked hidden: {0}", child.FullName);
                //    continue;
                //}
                // Can't enforce this because files saved by Bitcasa are always marked System
                //if ((attributes & FileAttributes.System) == FileAttributes.System)
                //{
                //    logger.Debug("Igoring series subfolder marked system: {0}", child.FullName);
                //    continue;
                //}
                if ((attributes & FileAttributes.Directory) == FileAttributes.Directory)
                {
                    if (IsSeasonFolder(child.FullName, isTvContentType, libraryManager))
                    {
                        //logger.Debug("{0} is a series because of season folder {1}.", path, child.FullName);
                        return true;
                    }
                }
                else
                {
                    string fullName = child.FullName;
                    if (libraryManager.IsVideoFile(fullName))
                    {
                        if (isTvContentType)
                        {
                            return true;
                        }
                        var namingOptions = ((LibraryManager)libraryManager).GetNamingOptions();
                        // In mixed folders we need to be conservative and avoid expressions that may result in false positives (e.g. movies with numbers in the title)
                        if (!isTvContentType)
                        {
                            namingOptions.EpisodeExpressions = namingOptions.EpisodeExpressions
                                .Where(i => i.IsNamed && !i.IsOptimistic)
                                .ToList();
                        }
                        var episodeResolver = new Naming.TV.EpisodeResolver(namingOptions, new PatternsLogger());
                        var episodeInfo = episodeResolver.Resolve(fullName, false, false);
                        if (episodeInfo != null && episodeInfo.EpisodeNumber.HasValue)
                        {
                            return true;
                        }
                    }
                }
            }
            logger.Debug("{0} is not a series folder.", path);
            return false;
        }
        /// 
        /// Determines whether [is place holder] [the specified path].
        /// 
        /// The path.
        /// true if [is place holder] [the specified path]; otherwise, false.
        /// path
        private static bool IsVideoPlaceHolder(string path)
        {
            if (string.IsNullOrEmpty(path))
            {
                throw new ArgumentNullException("path");
            }
            var extension = Path.GetExtension(path);
            return string.Equals(extension, ".disc", StringComparison.OrdinalIgnoreCase);
        }
        /// 
        /// Determines whether [is season folder] [the specified path].
        /// 
        /// The path.
        /// if set to true [is tv content type].
        /// The library manager.
        /// true if [is season folder] [the specified path]; otherwise, false.
        private static bool IsSeasonFolder(string path, bool isTvContentType, ILibraryManager libraryManager)
        {
            var namingOptions = ((LibraryManager)libraryManager).GetNamingOptions();
            var seasonNumber = new SeasonPathParser(namingOptions, new RegexProvider()).Parse(path, isTvContentType, isTvContentType).SeasonNumber;
            return seasonNumber.HasValue;
        }
        /// 
        /// Sets the initial item values.
        /// 
        /// The item.
        /// The args.
        protected override void SetInitialItemValues(Series item, ItemResolveArgs args)
        {
            base.SetInitialItemValues(item, args);
            SetProviderIdFromPath(item, args.Path);
        }
        /// 
        /// Sets the provider id from path.
        /// 
        /// The item.
        /// The path.
        private void SetProviderIdFromPath(Series item, string path)
        {
            var justName = Path.GetFileName(path);
            var id = justName.GetAttributeValue("tvdbid");
            if (!string.IsNullOrEmpty(id))
            {
                item.SetProviderId(MetadataProviders.Tvdb, id);
            }
        }
    }
}