jellyfin/MediaBrowser.LocalMetadata/Savers/BoxSetXmlSaver.cs

52 lines
1.9 KiB
C#
Raw Normal View History

using System.IO;
2022-01-22 23:36:42 +01: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 21:02:04 +02:00
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2013-06-27 16:51:40 +02:00
namespace MediaBrowser.LocalMetadata.Savers
2013-06-27 16:51:40 +02:00
{
/// <summary>
/// Box set xml saver.
/// </summary>
2016-10-30 08:02:23 +01:00
public class BoxSetXmlSaver : BaseXmlSaver
2013-06-27 16:51:40 +02: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 14:40:09 +02:00
public BoxSetXmlSaver(IFileSystem fileSystem, IServerConfigurationManager configurationManager, ILibraryManager libraryManager, ILogger<BoxSetXmlSaver> logger)
: base(fileSystem, configurationManager, libraryManager, logger)
{
}
/// <inheritdoc />
2018-09-12 19:26:21 +02:00
public override bool IsEnabledFor(BaseItem 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;
}
2014-02-11 22:41:01 +01:00
return item is BoxSet && updateType >= ItemUpdateType.MetadataDownload;
2013-06-27 16:51:40 +02:00
}
/// <inheritdoc />
2022-01-22 23:36:42 +01:00
protected override Task WriteCustomElementsAsync(BaseItem item, XmlWriter writer)
=> Task.CompletedTask;
2013-06-27 16:51:40 +02:00
/// <inheritdoc />
2018-09-12 19:26:21 +02:00
protected override string GetLocalSavePath(BaseItem item)
2013-06-27 16:51:40 +02:00
{
return Path.Combine(item.Path, "collection.xml");
}
}
}