jellyfin-server/MediaBrowser.Providers/Savers/SeasonXmlSaver.cs

81 lines
2.5 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Configuration;
2013-06-27 14:51:40 +00:00
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
2014-02-02 13:36:31 +00:00
using MediaBrowser.Controller.Providers;
using System.Collections.Generic;
2013-06-27 14:51:40 +00:00
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;
}
2014-02-02 13:36:31 +00:00
public string Name
{
get
{
return "Media Browser xml";
}
}
2013-06-27 14:51:40 +00:00
/// <summary>
/// Determines whether [is enabled for] [the specified item].
2013-06-27 14:51:40 +00:00
/// </summary>
/// <param name="item">The item.</param>
/// <param name="updateType">Type of the update.</param>
/// <returns><c>true</c> if [is enabled for] [the specified item]; otherwise, <c>false</c>.</returns>
2014-02-02 13:36:31 +00:00
public bool IsEnabledFor(IHasMetadata item, ItemUpdateType updateType)
2013-06-27 14:51:40 +00:00
{
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 (item.IsSaveLocalMetadataEnabled() && (wasMetadataEdited || wasMetadataDownloaded))
2013-06-27 14:51:40 +00:00
{
return item is Season;
2013-06-27 14:51:40 +00:00
}
return false;
2013-06-27 14:51:40 +00:00
}
/// <summary>
/// Saves the specified item.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
2014-02-02 13:36:31 +00:00
public void Save(IHasMetadata item, CancellationToken cancellationToken)
2013-06-27 14:51:40 +00:00
{
var builder = new StringBuilder();
builder.Append("<Item>");
2014-02-02 13:36:31 +00:00
XmlSaverHelpers.AddCommonNodes((Season)item, builder);
2013-06-27 14:51:40 +00:00
builder.Append("</Item>");
var xmlFilePath = GetSavePath(item);
2013-09-25 15:11:23 +00:00
XmlSaverHelpers.Save(builder, xmlFilePath, new List<string> { });
2013-06-27 14:51:40 +00:00
}
/// <summary>
/// Gets the save path.
/// </summary>
/// <param name="item">The item.</param>
/// <returns>System.String.</returns>
2014-02-02 13:36:31 +00:00
public string GetSavePath(IHasMetadata item)
2013-06-27 14:51:40 +00:00
{
return Path.Combine(item.Path, "season.xml");
}
}
}