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