using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Security;
using System.Text;
using System.Threading;
namespace MediaBrowser.LocalMetadata.Savers
{
    public class SeasonXmlSaver : IMetadataFileSaver
    {
        public string Name
        {
            get
            {
                return XmlProviderUtils.Name;
            }
        }
        private readonly IServerConfigurationManager _config;
        public SeasonXmlSaver(IServerConfigurationManager config)
        {
            _config = config;
        }
        
        /// 
        /// Determines whether [is enabled for] [the specified item].
        /// 
        /// The item.
        /// Type of the update.
        /// true if [is enabled for] [the specified item]; otherwise, false.
        public bool IsEnabledFor(IHasMetadata item, ItemUpdateType updateType)
        {
            if (!item.SupportsLocalMetadata)
            {
                return false;
            }
            if (!(item is Season))
            {
                return false;
            }
            return updateType >= ItemUpdateType.MetadataDownload || (updateType >= ItemUpdateType.MetadataImport && File.Exists(GetSavePath(item)));
        }
        private readonly CultureInfo _usCulture = new CultureInfo("en-US");
        /// 
        /// Saves the specified item.
        /// 
        /// The item.
        /// The cancellation token.
        /// Task.
        public void Save(IHasMetadata item, CancellationToken cancellationToken)
        {
            var builder = new StringBuilder();
            builder.Append("- ");
            var season = (Season)item;
            if (season.IndexNumber.HasValue)
            {
                builder.Append("" + SecurityElement.Escape(season.IndexNumber.Value.ToString(_usCulture)) + "");
            }
            
            XmlSaverHelpers.AddCommonNodes((Season)item, builder);
            builder.Append("");
            var xmlFilePath = GetSavePath(item);
            XmlSaverHelpers.Save(builder, xmlFilePath, new List
            {
                "SeasonNumber"
            }, _config);
        }
        /// 
        /// Gets the save path.
        /// 
        /// The item.
        /// System.String.
        public string GetSavePath(IHasMetadata item)
        {
            return Path.Combine(item.Path, "season.xml");
        }
    }
}