jellyfin/MediaBrowser.LocalMetadata/Savers/BoxSetXmlSaver.cs

54 lines
2.1 KiB
C#
Raw Normal View History

using System.IO;
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="userManager">Instance of the <see cref="IUserManager"/> interface.</param>
/// <param name="userDataManager">Instance of the <see cref="IUserDataManager"/> interface.</param>
/// <param name="logger">Instance of the <see cref="ILogger{BoxSetXmlSaver}"/> interface.</param>
public BoxSetXmlSaver(IFileSystem fileSystem, IServerConfigurationManager configurationManager, ILibraryManager libraryManager, IUserManager userManager, IUserDataManager userDataManager, ILogger<BoxSetXmlSaver> logger)
: base(fileSystem, configurationManager, libraryManager, userManager, userDataManager, 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 />
2018-09-12 17:26:21 +00:00
protected override void WriteCustomElements(BaseItem item, XmlWriter writer)
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");
}
}
}