jellyfin/MediaBrowser.LocalMetadata/Savers/BoxSetXmlSaver.cs

52 lines
1.9 KiB
C#
Raw Normal View History

using System.IO;
2022-01-22 22:36:42 +00:00
using System.Threading.Tasks;
using System.Xml;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Library;
2016-10-25 19:02:04 +00:00
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2013-06-27 14:51:40 +00:00
namespace MediaBrowser.LocalMetadata.Savers
2013-06-27 14:51:40 +00:00
{
/// <summary>
/// Box set xml saver.
/// </summary>
2016-10-30 07:02:23 +00:00
public class BoxSetXmlSaver : BaseXmlSaver
2013-06-27 14:51:40 +00:00
{
/// <summary>
/// Initializes a new instance of the <see cref="BoxSetXmlSaver"/> class.
/// </summary>
/// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
/// <param name="configurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface.</param>
/// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
/// <param name="logger">Instance of the <see cref="ILogger{BoxSetXmlSaver}"/> interface.</param>
2021-08-04 12:40:09 +00:00
public BoxSetXmlSaver(IFileSystem fileSystem, IServerConfigurationManager configurationManager, ILibraryManager libraryManager, ILogger<BoxSetXmlSaver> logger)
: base(fileSystem, configurationManager, libraryManager, logger)
{
}
/// <inheritdoc />
2018-09-12 17:26:21 +00:00
public override bool IsEnabledFor(BaseItem item, ItemUpdateType updateType)
2013-06-27 14:51:40 +00:00
{
2014-02-10 20:11:46 +00:00
if (!item.SupportsLocalMetadata)
2014-02-08 20:02:35 +00:00
{
return false;
}
2014-02-11 21:41:01 +00:00
return item is BoxSet && updateType >= ItemUpdateType.MetadataDownload;
2013-06-27 14:51:40 +00:00
}
/// <inheritdoc />
2022-01-22 22:36:42 +00:00
protected override Task WriteCustomElementsAsync(BaseItem item, XmlWriter writer)
=> Task.CompletedTask;
2013-06-27 14:51:40 +00:00
/// <inheritdoc />
2018-09-12 17:26:21 +00:00
protected override string GetLocalSavePath(BaseItem item)
2013-06-27 14:51:40 +00:00
{
return Path.Combine(item.Path, "collection.xml");
}
}
}