2013-10-01 18:24:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-07-01 18:17:55 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-02-02 13:36:31 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-10-28 14:56:57 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-10-01 18:24:27 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-07-01 18:17:55 +00:00
|
|
|
|
using System.Globalization;
|
|
|
|
|
using System.IO;
|
2013-08-13 14:51:26 +00:00
|
|
|
|
using System.Security;
|
2013-07-01 18:17:55 +00:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.Savers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves game.xml for games
|
|
|
|
|
/// </summary>
|
2014-02-02 16:59:14 +00:00
|
|
|
|
public class GameXmlSaver : IMetadataFileSaver
|
2013-07-01 18:17:55 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly IServerConfigurationManager _config;
|
|
|
|
|
|
|
|
|
|
public GameXmlSaver(IServerConfigurationManager config)
|
|
|
|
|
{
|
|
|
|
|
_config = config;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-02 13:36:31 +00:00
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-02-03 05:35:43 +00:00
|
|
|
|
return "Media Browser Xml";
|
2014-02-02 13:36:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-01 18:17:55 +00: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 13:36:31 +00:00
|
|
|
|
public bool IsEnabledFor(IHasMetadata item, ItemUpdateType updateType)
|
2013-07-01 18:17:55 +00:00
|
|
|
|
{
|
|
|
|
|
var wasMetadataEdited = (updateType & ItemUpdateType.MetadataEdit) == ItemUpdateType.MetadataEdit;
|
|
|
|
|
var wasMetadataDownloaded = (updateType & ItemUpdateType.MetadataDownload) == ItemUpdateType.MetadataDownload;
|
|
|
|
|
|
2013-10-02 14:14:10 +00:00
|
|
|
|
// If new metadata has been downloaded and save local is on
|
2014-01-01 18:26:31 +00:00
|
|
|
|
if (item.IsSaveLocalMetadataEnabled() && (wasMetadataEdited || wasMetadataDownloaded))
|
2013-07-01 18:17:55 +00:00
|
|
|
|
{
|
|
|
|
|
return item is Game;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
|
|
|
|
|
|
|
|
|
|
/// <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-07-01 18:17:55 +00:00
|
|
|
|
{
|
|
|
|
|
var builder = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
builder.Append("<Item>");
|
|
|
|
|
|
2013-07-01 18:27:19 +00:00
|
|
|
|
var game = (Game)item;
|
|
|
|
|
|
|
|
|
|
if (game.PlayersSupported.HasValue)
|
|
|
|
|
{
|
|
|
|
|
builder.Append("<Players>" + SecurityElement.Escape(game.PlayersSupported.Value.ToString(UsCulture)) + "</Players>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(game.GameSystem))
|
|
|
|
|
{
|
2013-09-25 15:11:23 +00:00
|
|
|
|
builder.Append("<GameSystem>" + SecurityElement.Escape(game.GameSystem) + "</GameSystem>");
|
2013-07-01 18:27:19 +00:00
|
|
|
|
}
|
2013-10-02 14:14:10 +00:00
|
|
|
|
|
2013-10-28 14:56:57 +00:00
|
|
|
|
var val = game.GetProviderId(MetadataProviders.NesBox);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(val))
|
|
|
|
|
{
|
|
|
|
|
builder.Append("<NesBox>" + SecurityElement.Escape(val) + "</NesBox>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val = game.GetProviderId(MetadataProviders.NesBoxRom);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(val))
|
|
|
|
|
{
|
|
|
|
|
builder.Append("<NesBoxRom>" + SecurityElement.Escape(val) + "</NesBoxRom>");
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-02 13:36:31 +00:00
|
|
|
|
XmlSaverHelpers.AddCommonNodes(game, builder);
|
2013-07-01 18:17:55 +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-07-01 18:17:55 +00:00
|
|
|
|
{
|
2013-07-01 18:27:19 +00:00
|
|
|
|
"Players",
|
2013-10-28 14:56:57 +00:00
|
|
|
|
"GameSystem",
|
|
|
|
|
"NesBox",
|
|
|
|
|
"NesBoxRom"
|
2013-07-01 18:17:55 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-02 13:36:31 +00:00
|
|
|
|
public string GetSavePath(IHasMetadata item)
|
2013-07-01 18:17:55 +00:00
|
|
|
|
{
|
2014-02-02 13:36:31 +00:00
|
|
|
|
return GetGameSavePath((Game)item);
|
2013-10-01 18:24:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-02 13:36:31 +00:00
|
|
|
|
public static string GetGameSavePath(Game item)
|
2013-10-01 18:24:27 +00:00
|
|
|
|
{
|
|
|
|
|
if (item.IsInMixedFolder)
|
|
|
|
|
{
|
|
|
|
|
return Path.ChangeExtension(item.Path, ".xml");
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 14:51:26 +00:00
|
|
|
|
return Path.Combine(item.MetaLocation, "game.xml");
|
2013-07-01 18:17:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|