jellyfin/MediaBrowser.Providers/Savers/GameSystemXmlSaver.cs

89 lines
2.8 KiB
C#
Raw Normal View History

2013-09-26 17:15:18 +02:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
2014-02-02 14:36:31 +01:00
using MediaBrowser.Controller.Providers;
2013-09-26 17:15:18 +02:00
using System.Collections.Generic;
using System.IO;
2014-02-02 14:36:31 +01:00
using System.Security;
2013-09-26 17:15:18 +02:00
using System.Text;
using System.Threading;
namespace MediaBrowser.Providers.Savers
{
public class GameSystemXmlSaver : IMetadataFileSaver
2013-09-26 17:15:18 +02:00
{
private readonly IServerConfigurationManager _config;
public GameSystemXmlSaver(IServerConfigurationManager config)
{
_config = config;
}
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-09-26 17:15:18 +02:00
/// <summary>
/// Determines whether [is enabled for] [the specified item].
/// </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-09-26 17:15:18 +02: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-09-26 17:15:18 +02:00
{
return item is GameSystem;
}
return false;
}
/// <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-09-26 17:15:18 +02:00
{
2014-02-02 14:36:31 +01:00
var gameSystem = (GameSystem)item;
2013-09-26 17:15:18 +02:00
var builder = new StringBuilder();
builder.Append("<Item>");
2014-02-02 14:36:31 +01:00
if (!string.IsNullOrEmpty(gameSystem.GameSystemName))
{
builder.Append("<GameSystem>" + SecurityElement.Escape(gameSystem.GameSystemName) + "</GameSystem>");
}
XmlSaverHelpers.AddCommonNodes(gameSystem, builder);
2013-09-26 17:15:18 +02:00
builder.Append("</Item>");
var xmlFilePath = GetSavePath(item);
XmlSaverHelpers.Save(builder, xmlFilePath, new List<string> { });
}
/// <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-09-26 17:15:18 +02:00
{
return Path.Combine(item.Path, "gamesystem.xml");
}
}
}