2019-01-13 13:02:23 -07:00
|
|
|
using System.IO;
|
2019-01-13 12:25:45 -07:00
|
|
|
using System.Threading;
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
2014-01-30 14:23:54 -07:00
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-06-29 20:04:50 -07:00
|
|
|
using MediaBrowser.LocalMetadata.Parsers;
|
2016-10-25 12:02:04 -07:00
|
|
|
using MediaBrowser.Model.IO;
|
2019-01-13 12:25:45 -07:00
|
|
|
using Microsoft.Extensions.Logging;
|
2014-01-30 14:23:54 -07:00
|
|
|
|
2014-06-29 20:04:50 -07:00
|
|
|
namespace MediaBrowser.LocalMetadata.Providers
|
2014-01-30 14:23:54 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2014-02-03 13:51:28 -07:00
|
|
|
/// Class BoxSetXmlProvider.
|
2014-01-30 14:23:54 -07:00
|
|
|
/// </summary>
|
2014-02-05 21:39:16 -07:00
|
|
|
public class BoxSetXmlProvider : BaseXmlProvider<BoxSet>
|
2014-01-30 14:23:54 -07:00
|
|
|
{
|
2020-06-05 17:15:56 -07:00
|
|
|
private readonly ILogger<BoxSetXmlParser> _logger;
|
2016-08-26 21:33:18 -07:00
|
|
|
private readonly IProviderManager _providerManager;
|
2014-01-30 14:23:54 -07:00
|
|
|
|
2020-06-13 19:04:53 -07:00
|
|
|
/// <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>
|
2020-06-05 17:15:56 -07:00
|
|
|
public BoxSetXmlProvider(IFileSystem fileSystem, ILogger<BoxSetXmlParser> logger, IProviderManager providerManager)
|
2014-01-30 14:23:54 -07:00
|
|
|
: base(fileSystem)
|
|
|
|
{
|
|
|
|
_logger = logger;
|
2016-08-26 21:33:18 -07:00
|
|
|
_providerManager = providerManager;
|
2014-01-30 14:23:54 -07:00
|
|
|
}
|
|
|
|
|
2020-06-13 19:04:53 -07:00
|
|
|
/// <inheritdoc />
|
2015-08-02 10:31:08 -07:00
|
|
|
protected override void Fetch(MetadataResult<BoxSet> result, string path, CancellationToken cancellationToken)
|
2014-01-30 14:23:54 -07:00
|
|
|
{
|
2019-02-01 09:43:31 -07:00
|
|
|
new BoxSetXmlParser(_logger, _providerManager).Fetch(result, path, cancellationToken);
|
2014-01-30 14:23:54 -07:00
|
|
|
}
|
|
|
|
|
2020-06-13 19:04:53 -07:00
|
|
|
/// <inheritdoc />
|
2015-10-03 20:38:46 -07:00
|
|
|
protected override FileSystemMetadata GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
2014-01-30 14:23:54 -07:00
|
|
|
{
|
2014-02-10 21:55:01 -07:00
|
|
|
return directoryService.GetFile(Path.Combine(info.Path, "collection.xml"));
|
2014-01-30 14:23:54 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|