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.
37 lines
1.3 KiB
37 lines
1.3 KiB
using System.IO;
|
|
using System.Threading;
|
|
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.IO;
|
|
using MediaBrowser.XbmcMetadata.Parsers;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MediaBrowser.XbmcMetadata.Providers
|
|
{
|
|
public class AlbumNfoProvider : BaseNfoProvider<MusicAlbum>
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IConfigurationManager _config;
|
|
private readonly IProviderManager _providerManager;
|
|
|
|
public AlbumNfoProvider(IFileSystem fileSystem, ILogger logger, IConfigurationManager config, IProviderManager providerManager)
|
|
: base(fileSystem)
|
|
{
|
|
_logger = logger;
|
|
_config = config;
|
|
_providerManager = providerManager;
|
|
}
|
|
|
|
protected override void Fetch(MetadataResult<MusicAlbum> result, string path, CancellationToken cancellationToken)
|
|
{
|
|
new BaseNfoParser<MusicAlbum>(_logger, _config, _providerManager).Fetch(result, path, cancellationToken);
|
|
}
|
|
|
|
protected override FileSystemMetadata GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
|
{
|
|
return directoryService.GetFile(Path.Combine(info.Path, "album.nfo"));
|
|
}
|
|
}
|
|
}
|