| | 1 | | using System.IO; |
| | 2 | | using System.Threading; |
| | 3 | | using MediaBrowser.Controller.Entities.Movies; |
| | 4 | | using MediaBrowser.Controller.Providers; |
| | 5 | | using MediaBrowser.LocalMetadata.Parsers; |
| | 6 | | using MediaBrowser.Model.IO; |
| | 7 | | using Microsoft.Extensions.Logging; |
| | 8 | |
|
| | 9 | | namespace MediaBrowser.LocalMetadata.Providers |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// Class BoxSetXmlProvider. |
| | 13 | | /// </summary> |
| | 14 | | public class BoxSetXmlProvider : BaseXmlProvider<BoxSet> |
| | 15 | | { |
| | 16 | | private readonly ILogger<BoxSetXmlParser> _logger; |
| | 17 | | private readonly IProviderManager _providerManager; |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// Initializes a new instance of the <see cref="BoxSetXmlProvider"/> class. |
| | 21 | | /// </summary> |
| | 22 | | /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param> |
| | 23 | | /// <param name="logger">Instance of the <see cref="ILogger{BoxSetXmlParser}"/> interface.</param> |
| | 24 | | /// <param name="providerManager">Instance of the <see cref="IProviderManager"/> interface.</param> |
| | 25 | | public BoxSetXmlProvider(IFileSystem fileSystem, ILogger<BoxSetXmlParser> logger, IProviderManager providerManag |
| 21 | 26 | | : base(fileSystem) |
| | 27 | | { |
| 21 | 28 | | _logger = logger; |
| 21 | 29 | | _providerManager = providerManager; |
| 21 | 30 | | } |
| | 31 | |
|
| | 32 | | /// <inheritdoc /> |
| | 33 | | protected override void Fetch(MetadataResult<BoxSet> result, string path, CancellationToken cancellationToken) |
| | 34 | | { |
| 0 | 35 | | new BoxSetXmlParser(_logger, _providerManager).Fetch(result, path, cancellationToken); |
| 0 | 36 | | } |
| | 37 | |
|
| | 38 | | /// <inheritdoc /> |
| | 39 | | protected override FileSystemMetadata? GetXmlFile(ItemInfo info, IDirectoryService directoryService) |
| | 40 | | { |
| 0 | 41 | | return directoryService.GetFile(Path.Combine(info.Path, "collection.xml")); |
| | 42 | | } |
| | 43 | | } |
| | 44 | | } |