using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Entities.Audio; using MediaBrowser.Controller.Entities.Movies; using MediaBrowser.Controller.Entities.TV; using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Providers; using System.Collections.Generic; using System.IO; using System.Text; using System.Threading; using MediaBrowser.Model.Entities; namespace MediaBrowser.Providers.Savers { public class FolderXmlSaver : IMetadataFileSaver { private readonly IServerConfigurationManager _config; public FolderXmlSaver(IServerConfigurationManager config) { _config = config; } public string Name { get { return "Media Browser Xml"; } } /// /// 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) { var locationType = item.LocationType; if (locationType == LocationType.Remote || locationType == LocationType.Virtual) { return false; } var folder = item as Folder; if (folder == null) { return false; } 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 (wasMetadataEdited || wasMetadataDownloaded) { if (!(item is Series) && !(item is BoxSet) && !(item is MusicArtist) && !(item is MusicAlbum) && !(item is Season) && !(item is GameSystem)) { return true; } } return false; } /// /// Saves the specified item. /// /// The item. /// The cancellation token. /// Task. public void Save(IHasMetadata item, CancellationToken cancellationToken) { var builder = new StringBuilder(); builder.Append(""); XmlSaverHelpers.AddCommonNodes((Folder)item, builder); builder.Append(""); var xmlFilePath = GetSavePath(item); XmlSaverHelpers.Save(builder, xmlFilePath, new List { }); } /// /// Gets the save path. /// /// The item. /// System.String. public string GetSavePath(IHasMetadata item) { return Path.Combine(item.Path, "folder.xml"); } } }