| | 1 | | using System.IO; |
| | 2 | | using System.Threading; |
| | 3 | | using MediaBrowser.Common.Configuration; |
| | 4 | | using MediaBrowser.Controller.Entities.Audio; |
| | 5 | | using MediaBrowser.Controller.Library; |
| | 6 | | using MediaBrowser.Controller.Providers; |
| | 7 | | using MediaBrowser.Model.IO; |
| | 8 | | using MediaBrowser.XbmcMetadata.Parsers; |
| | 9 | | using Microsoft.Extensions.Logging; |
| | 10 | |
|
| | 11 | | namespace MediaBrowser.XbmcMetadata.Providers |
| | 12 | | { |
| | 13 | | /// <summary> |
| | 14 | | /// Nfo provider for artists. |
| | 15 | | /// </summary> |
| | 16 | | public class ArtistNfoProvider : BaseNfoProvider<MusicArtist> |
| | 17 | | { |
| | 18 | | private readonly ILogger<ArtistNfoProvider> _logger; |
| | 19 | | private readonly IConfigurationManager _config; |
| | 20 | | private readonly IProviderManager _providerManager; |
| | 21 | | private readonly IUserManager _userManager; |
| | 22 | | private readonly IUserDataManager _userDataManager; |
| | 23 | | private readonly IDirectoryService _directoryService; |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// Initializes a new instance of the <see cref="ArtistNfoProvider"/> class. |
| | 27 | | /// </summary> |
| | 28 | | /// <param name="logger">Instance of the <see cref="ILogger{ArtistNfoProvider}"/> interface.</param> |
| | 29 | | /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param> |
| | 30 | | /// <param name="config">Instance of the <see cref="IConfigurationManager"/> interface.</param> |
| | 31 | | /// <param name="providerManager">Instance of the <see cref="IProviderManager"/> interface.</param> |
| | 32 | | /// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param> |
| | 33 | | /// <param name="userDataManager">Instance of the <see cref="IUserDataManager"/> interface.</param> |
| | 34 | | /// <param name="directoryService">Instance of the <see cref="IDirectoryService"/> interface.</param> |
| | 35 | | public ArtistNfoProvider( |
| | 36 | | IFileSystem fileSystem, |
| | 37 | | ILogger<ArtistNfoProvider> logger, |
| | 38 | | IConfigurationManager config, |
| | 39 | | IProviderManager providerManager, |
| | 40 | | IUserManager userManager, |
| | 41 | | IUserDataManager userDataManager, |
| | 42 | | IDirectoryService directoryService) |
| 21 | 43 | | : base(fileSystem) |
| | 44 | | { |
| 21 | 45 | | _logger = logger; |
| 21 | 46 | | _config = config; |
| 21 | 47 | | _providerManager = providerManager; |
| 21 | 48 | | _userManager = userManager; |
| 21 | 49 | | _userDataManager = userDataManager; |
| 21 | 50 | | _directoryService = directoryService; |
| 21 | 51 | | } |
| | 52 | |
|
| | 53 | | /// <inheritdoc /> |
| | 54 | | protected override void Fetch(MetadataResult<MusicArtist> result, string path, CancellationToken cancellationTok |
| | 55 | | { |
| 0 | 56 | | new BaseNfoParser<MusicArtist>(_logger, _config, _providerManager, _userManager, _userDataManager, _director |
| 0 | 57 | | } |
| | 58 | |
|
| | 59 | | /// <inheritdoc /> |
| | 60 | | protected override FileSystemMetadata? GetXmlFile(ItemInfo info, IDirectoryService directoryService) |
| 0 | 61 | | => directoryService.GetFile(Path.Combine(info.Path, "artist.nfo")); |
| | 62 | | } |
| | 63 | | } |