You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.7 KiB
45 lines
1.7 KiB
using System.IO;
|
|
using System.Threading;
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.LocalMetadata.Parsers;
|
|
using MediaBrowser.Model.IO;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MediaBrowser.LocalMetadata.Providers
|
|
{
|
|
/// <summary>
|
|
/// Class BoxSetXmlProvider.
|
|
/// </summary>
|
|
public class BoxSetXmlProvider : BaseXmlProvider<BoxSet>
|
|
{
|
|
private readonly ILogger<BoxSetXmlParser> _logger;
|
|
private readonly IProviderManager _providerManager;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="BoxSetXmlProvider"/> class.
|
|
/// </summary>
|
|
/// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
|
|
/// <param name="logger">Instance of the <see cref="ILogger{BoxSetXmlParser}"/> interface.</param>
|
|
/// <param name="providerManager">Instance of the <see cref="IProviderManager"/> interface.</param>
|
|
public BoxSetXmlProvider(IFileSystem fileSystem, ILogger<BoxSetXmlParser> logger, IProviderManager providerManager)
|
|
: base(fileSystem)
|
|
{
|
|
_logger = logger;
|
|
_providerManager = providerManager;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Fetch(MetadataResult<BoxSet> result, string path, CancellationToken cancellationToken)
|
|
{
|
|
new BoxSetXmlParser(_logger, _providerManager).Fetch(result, path, cancellationToken);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override FileSystemMetadata? GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
|
{
|
|
return directoryService.GetFile(Path.Combine(info.Path, "collection.xml"));
|
|
}
|
|
}
|
|
}
|