jellyfin/MediaBrowser.LocalMetadata/Savers/ArtistXmlSaver.cs

69 lines
2 KiB
C#
Raw Normal View History

using System.Collections.Generic;
2013-06-23 20:55:30 +02:00
using System.IO;
using System.Text;
using System.Threading;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Library;
2013-06-23 20:55:30 +02:00
namespace MediaBrowser.LocalMetadata.Savers
2013-06-23 20:55:30 +02:00
{
class ArtistXmlSaver : IMetadataFileSaver
2013-06-23 20:55:30 +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-23 20:55:30 +02:00
/// <summary>
/// Determines whether [is enabled for] [the specified item].
2013-06-23 20:55:30 +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-23 20:55:30 +02:00
{
2014-02-10 21:11:46 +01:00
if (!item.SupportsLocalMetadata)
2014-02-08 21:02:35 +01:00
{
return false;
}
2014-02-11 22:41:01 +01:00
return item is MusicArtist && updateType >= ItemUpdateType.MetadataDownload;
2013-06-23 20:55:30 +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-23 20:55:30 +02:00
{
var builder = new StringBuilder();
builder.Append("<Item>");
2014-02-02 14:36:31 +01:00
XmlSaverHelpers.AddCommonNodes((MusicArtist)item, builder);
2013-06-23 20:55:30 +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-23 20:55:30 +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-23 20:55:30 +02:00
{
return Path.Combine(item.Path, "artist.xml");
}
}
}