using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Entities.TV; using MediaBrowser.Controller.Library; using MediaBrowser.Providers.TV; using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Threading; namespace MediaBrowser.Providers.Savers { public class SeasonXmlSaver : IMetadataSaver { 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(BaseItem item, ItemUpdateType updateType) { var wasMetadataEdited = (updateType & ItemUpdateType.MetadataEdit) == ItemUpdateType.MetadataEdit; var wasMetadataDownloaded = (updateType & ItemUpdateType.MetadataDownload) == ItemUpdateType.MetadataDownload; // If new metadata has been downloaded and save local is on if (_config.Configuration.SaveLocalMeta && (wasMetadataEdited || wasMetadataDownloaded)) { return item is Season; } return false; } /// /// Saves the specified item. /// /// The item. /// The cancellation token. /// Task. public void Save(BaseItem item, CancellationToken cancellationToken) { var builder = new StringBuilder(); builder.Append(""); XmlSaverHelpers.AddCommonNodes(item, builder); builder.Append(""); var xmlFilePath = GetSavePath(item); XmlSaverHelpers.Save(builder, xmlFilePath, new List { }); SeasonProviderFromXml.Current.SetLastRefreshed(item, DateTime.UtcNow); } /// /// Gets the save path. /// /// The item. /// System.String. public string GetSavePath(BaseItem item) { return Path.Combine(item.Path, "season.xml"); } } }