using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Entities.TV; using MediaBrowser.Controller.Library; using MediaBrowser.Model.Entities; 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) { // If new metadata has been downloaded and save local is on, OR metadata was manually edited, proceed if ((_config.Configuration.SaveLocalMeta && (updateType & ItemUpdateType.MetadataDownload) == ItemUpdateType.MetadataDownload) || (updateType & ItemUpdateType.MetadataEdit) == ItemUpdateType.MetadataEdit) { 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 string[] { }); } /// /// Gets the save path. /// /// The item. /// System.String. public string GetSavePath(BaseItem item) { return Path.Combine(item.Path, "season.xml"); } } }