jellyfin/MediaBrowser.Providers/Savers/BoxSetXmlSaver.cs

79 lines
2.4 KiB
C#
Raw Normal View History

2014-02-10 19:39:41 +01:00
using MediaBrowser.Controller.Entities;
2013-06-27 16:51:40 +02:00
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Library;
2014-02-10 19:39:41 +01:00
using MediaBrowser.Model.Entities;
using System.Collections.Generic;
2013-06-27 16:51:40 +02:00
using System.IO;
using System.Text;
using System.Threading;
namespace MediaBrowser.Providers.Savers
{
public class BoxSetXmlSaver : IMetadataFileSaver
2013-06-27 16:51:40 +02:00
{
2014-02-02 14:36:31 +01:00
public string Name
{
get
{
2014-02-03 06:35:43 +01:00
return "Media Browser Xml";
2014-02-02 14:36:31 +01:00
}
}
2013-06-27 16:51:40 +02:00
/// <summary>
/// Determines whether [is enabled for] [the specified item].
2013-06-27 16:51:40 +02: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 14:36:31 +01:00
public bool IsEnabledFor(IHasMetadata item, ItemUpdateType updateType)
2013-06-27 16:51:40 +02:00
{
2014-02-10 21:11:46 +01:00
if (!item.SupportsLocalMetadata)
2014-02-08 21:02:35 +01:00
{
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)
2013-06-27 16:51:40 +02:00
{
return item is BoxSet;
2013-06-27 16:51:40 +02:00
}
return false;
2013-06-27 16:51:40 +02: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 14:36:31 +01:00
public void Save(IHasMetadata item, CancellationToken cancellationToken)
2013-06-27 16:51:40 +02:00
{
var builder = new StringBuilder();
builder.Append("<Item>");
2014-02-02 14:36:31 +01:00
XmlSaverHelpers.AddCommonNodes((BoxSet)item, builder);
2013-06-27 16:51:40 +02:00
builder.Append("</Item>");
var xmlFilePath = GetSavePath(item);
2013-09-25 17:11:23 +02:00
XmlSaverHelpers.Save(builder, xmlFilePath, new List<string> { });
2013-06-27 16:51:40 +02:00
}
/// <summary>
/// Gets the save path.
/// </summary>
/// <param name="item">The item.</param>
/// <returns>System.String.</returns>
2014-02-02 14:36:31 +01:00
public string GetSavePath(IHasMetadata item)
2013-06-27 16:51:40 +02:00
{
return Path.Combine(item.Path, "collection.xml");
}
}
}